hexsha string | size int64 | ext string | lang string | max_stars_repo_path string | max_stars_repo_name string | max_stars_repo_head_hexsha string | max_stars_repo_licenses list | max_stars_count int64 | max_stars_repo_stars_event_min_datetime string | max_stars_repo_stars_event_max_datetime string | max_issues_repo_path string | max_issues_repo_name string | max_issues_repo_head_hexsha string | max_issues_repo_licenses list | max_issues_count int64 | max_issues_repo_issues_event_min_datetime string | max_issues_repo_issues_event_max_datetime string | max_forks_repo_path string | max_forks_repo_name string | max_forks_repo_head_hexsha string | max_forks_repo_licenses list | max_forks_count int64 | max_forks_repo_forks_event_min_datetime string | max_forks_repo_forks_event_max_datetime string | content string | avg_line_length float64 | max_line_length int64 | alphanum_fraction float64 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
c8a016f9980da4303852371e29887f3c72aaad4b | 325 | js | JavaScript | src/ng/document.js | slavitto/angular-doc | e072d3cfb47da85ca6932cec15d3810023d687fb | [
"MIT"
] | 106 | 2015-01-05T08:30:55.000Z | 2020-09-20T11:49:38.000Z | src/ng/document.js | slavitto/angular-doc | e072d3cfb47da85ca6932cec15d3810023d687fb | [
"MIT"
] | 4 | 2015-01-19T12:15:29.000Z | 2016-06-22T20:44:03.000Z | src/ng/document.js | slavitto/angular-doc | e072d3cfb47da85ca6932cec15d3810023d687fb | [
"MIT"
] | 177 | 2015-01-04T23:05:27.000Z | 2021-12-04T15:29:57.000Z | 'use strict';
/**
* @ngdoc object
* @name ng.$document
* @requires $window
*
* @description
* Это {@link angular.element jQuery (lite)}-обертка, ссылающаяся на элемент браузера `window.document`.
*/
function $DocumentProvider(){
this.$get = ['$window', function(window){
return jqLite(window.document);
}];
}
| 20.3125 | 104 | 0.664615 |
c8a021bf30caaf82b20ce3b9ea72ae0d217807b6 | 278 | js | JavaScript | data/js/ac/5d/10/00/00/00.24.js | p-g-krish/deepmac-tracker | 44d625a6b1ec30bf52f8d12a44b0afc594eb5f94 | [
"CC-BY-4.0",
"MIT"
] | null | null | null | data/js/ac/5d/10/00/00/00.24.js | p-g-krish/deepmac-tracker | 44d625a6b1ec30bf52f8d12a44b0afc594eb5f94 | [
"CC-BY-4.0",
"MIT"
] | null | null | null | data/js/ac/5d/10/00/00/00.24.js | p-g-krish/deepmac-tracker | 44d625a6b1ec30bf52f8d12a44b0afc594eb5f94 | [
"CC-BY-4.0",
"MIT"
] | null | null | null | deepmacDetailCallback("ac5d10000000/24",[{"d":"2012-10-27","t":"add","a":"1764 Automation Parkway\nSan Jose Ca 95131\n\n","c":"UNITED STATES","o":"Pace Americas"},{"d":"2015-08-27","t":"change","a":"1764 Automation Parkway San Jose Ca US 95131","c":"US","o":"Pace Americas"}]);
| 139 | 277 | 0.658273 |
c8a04492d89d5a2fa8de1e1c10fb9e295875029a | 4,245 | js | JavaScript | docs/assets/src/js/docs.js | and0111/bootstrap-italia | 6fc54c81b9e9cfb976e19f1f98a5afaa736849b6 | [
"BSD-3-Clause"
] | null | null | null | docs/assets/src/js/docs.js | and0111/bootstrap-italia | 6fc54c81b9e9cfb976e19f1f98a5afaa736849b6 | [
"BSD-3-Clause"
] | null | null | null | docs/assets/src/js/docs.js | and0111/bootstrap-italia | 6fc54c81b9e9cfb976e19f1f98a5afaa736849b6 | [
"BSD-3-Clause"
] | null | null | null | // NOTICE!! DO NOT USE ANY OF THIS JAVASCRIPT
// IT'S ALL JUST JUNK FOR OUR DOCS!
// ++++++++++++++++++++++++++++++++++++++++++
(function ($, particlesJS) {
'use strict'
$(function () {
$('[data-toggle="tooltip"]').tooltip()
// Tooltip and popover demos
$('.tooltip-demo').tooltip({
selector: '[data-toggle="tooltip"]',
container: 'body'
})
$('[data-toggle="popover"]').popover()
// Demos within modals
$('.tooltip-test').tooltip()
$('.popover-test').popover()
// Indeterminate checkbox example
$('.bd-example-indeterminate [type="checkbox"]').prop('indeterminate', true)
// Disable empty links in docs examples
$('.bd-content [href="#"]').click(function (e) {
e.preventDefault()
})
// Modal relatedTarget demo
$('#exampleModal').on('show.bs.modal', function (event) {
var $button = $(event.relatedTarget) // Button that triggered the modal
var recipient = $button.data('whatever') // Extract info from data-* attributes
// If necessary, you could initiate an AJAX request here (and then do the updating in a callback).
// Update the modal's content. We'll use jQuery here, but you could use a data binding library or other methods instead.
var $modal = $(this)
$modal.find('.modal-title').text('New message to ' + recipient)
$modal.find('.modal-body input').val(recipient)
})
// Activate animated progress bar
$('.bd-toggle-animated-progress').on('click', function () {
$(this).siblings('.progress').find('.progress-bar-striped').toggleClass('progress-bar-animated')
})
// Insert copy to clipboard button before .highlight
$('.highlight').each(function () {
var btnHtml = '<div class="bd-clipboard"><button class="btn-clipboard" title="Copy to clipboard">Copy</button></div>'
$(this).before(btnHtml)
$('.btn-clipboard')
.tooltip()
.on('mouseleave', function () {
// explicitly hide tooltip, since after clicking it remains
// focused (as it's a button), so tooltip would otherwise
// remain visible until focus is moved away
$(this).tooltip('hide')
})
})
// ClipboardJS - Docs copy code handling
var clipboard = new Clipboard('.btn-clipboard', {
target: function (trigger) {
return trigger.parentNode.nextElementSibling
}
})
clipboard.on('success', function (e) {
$(e.trigger)
.attr('title', 'Copied!')
.tooltip('_fixTitle')
.tooltip('show')
.attr('title', 'Copy to clipboard')
.tooltip('_fixTitle')
e.clearSelection()
})
clipboard.on('error', function (e) {
var modifierKey = /Mac/i.test(navigator.userAgent) ? '\u2318' : 'Ctrl-'
var fallbackMsg = 'Press ' + modifierKey + 'C to copy'
$(e.trigger)
.attr('title', fallbackMsg)
.tooltip('_fixTitle')
.tooltip('show')
.attr('title', 'Copy to clipboard')
.tooltip('_fixTitle')
})
// AnchorJS - Shows Anchors
anchors.options = {
icon: '#'
}
anchors.add('.bd-content > h2, .bd-content > h3, .bd-content > h4, .bd-content > h5')
$('.bd-content > h2, .bd-content > h3, .bd-content > h4, .bd-content > h5').wrapInner('<div></div>')
});
// ParticlesJS - Docs homepage particles
if ($('#particles-js').length) {
const particlesJSON = {
"particles": {
"number":{"value":160,"density":{"enable":true,"value_area":800}},
"color":{"value":"#FFF"},
"shape":{"type":"circle","stroke":{"width":0,"color":"#000000"}},
"opacity":{"value":0.8,"random":true,"anim":{"enable":true,"speed":1,"opacity_min":0,"sync":false}},
"size":{"value":2,"random":true,"anim":{"enable":false,"speed":4,"size_min":0.3,"sync":false}},
"line_linked":{"enable":false,"distance":150,"color":"#ffffff","opacity":0.1,"width":1},
"move":{"enable":true,"speed":0.2,"direction":"top","random":true,"straight":false,"out_mode":"out","bounce":false,"attract":{"enable":false,"rotateX":600,"rotateY":600}}
},
"retina_detect":true
}
particlesJS('particles-js', particlesJSON);
}
}(jQuery, particlesJS))
| 36.594828 | 178 | 0.589164 |
c8a13baf2257269c830c36b289d2ac7ec4666f3a | 148 | js | JavaScript | Doxygen/html/search/all_2.js | Kennyvandoorn/IPASS | 4699267d22d13375d38b0668b4af0a6bcd8c915d | [
"BSL-1.0"
] | null | null | null | Doxygen/html/search/all_2.js | Kennyvandoorn/IPASS | 4699267d22d13375d38b0668b4af0a6bcd8c915d | [
"BSL-1.0"
] | null | null | null | Doxygen/html/search/all_2.js | Kennyvandoorn/IPASS | 4699267d22d13375d38b0668b4af0a6bcd8c915d | [
"BSL-1.0"
] | 1 | 2021-06-28T10:10:02.000Z | 2021-06-28T10:10:02.000Z | var searchData=
[
['flush_3',['flush',['../classssd1331__spi__dc__cs__res.html#a127b07c2719c21215b89c225136e467b',1,'ssd1331_spi_dc_cs_res']]]
];
| 29.6 | 126 | 0.77027 |
c8a194ec8db181af210b0039504e15099e3063c1 | 2,917 | js | JavaScript | src/views/author/store/action/author.action.js | dattran01477/dashboard-library-hcmute | 5b9379477d30e2bca0eaac00ddefb04516f32e86 | [
"MIT"
] | null | null | null | src/views/author/store/action/author.action.js | dattran01477/dashboard-library-hcmute | 5b9379477d30e2bca0eaac00ddefb04516f32e86 | [
"MIT"
] | null | null | null | src/views/author/store/action/author.action.js | dattran01477/dashboard-library-hcmute | 5b9379477d30e2bca0eaac00ddefb04516f32e86 | [
"MIT"
] | null | null | null | import axios from "axios";
import { base_url } from "../../../../constants";
import * as contants from "../../../../constants";
export const GET_AUTHOR = "GET_AUTHOR";
export const DELETE_AUTHOR = "DELETE_AUTHOR";
export const ADD_AUTHOR = "ADD_AUTHOR";
export const UPDATE_AUTHOR = "UPDATE_AUTHOR";
export const HANDLE_CHANGE_AUTHOR = "HANDLE_CHANGE_AUTHOR";
export const OPEN_NEW_AUTHOR_DIALOG = "OPEN_NEW_AUTHOR_DIALOG";
export const CLOSE_NEW_AUTHOR_DIALOG = "CLOSE_NEW_AUTHOR_DIALOG";
export const OPEN_EDIT_AUTHOR_DIALOG = "OPEN_EDIT_AUTHOR_DIALOG";
export const CLOSE_EDIT_AUTHOR_DIALOG = "CLOSE_EDIT_AUTHOR_DIALOG";
export const SET_STATUS_ACTION = "SET_STATUS_ACTION";
export function getAuthorById(authorId) {
const request = axios.get(`${base_url}/app/authors/${authorId}`);
return dispatch =>
request.then(response =>
dispatch({
type: GET_AUTHOR,
data: response.data
})
);
}
export function addAuthor(author) {
return (dispatch, getState) => {
const request = axios.post(`${base_url}/app/authors`, author);
return request.then(response =>
Promise.all([
dispatch({
type: ADD_AUTHOR
})
])
.then(() => {
dispatch(setStatusAction(contants.STATUS_ACTION_SUCCESSED));
})
.catch(err => {
dispatch(setStatusAction(contants.STATUS_ACTION_FAILED));
})
);
};
}
export function setStatusAction(status) {
return {
type: SET_STATUS_ACTION,
statusAction: status
};
}
export function updateAuthor(author) {
return (dispatch, getState) => {
const request = axios.put(`${base_url}/app/authors/${author.id}`, author);
return request.then(response =>
Promise.all([
dispatch({
type: UPDATE_AUTHOR
})
])
.then(() => {
dispatch(setStatusAction(contants.STATUS_ACTION_SUCCESSED));
})
.catch(err => {
dispatch(setStatusAction(contants.STATUS_ACTION_FAILED));
})
);
};
}
export function deleteAuthor(authorId) {
return (dispatch, getState) => {
const request = axios.delete(`${base_url}/app/authors/${authorId}`);
return request.then(response =>
Promise.all([
dispatch({
type: DELETE_AUTHOR
})
])
.then(() => {
dispatch(setStatusAction(contants.STATUS_ACTION_SUCCESSED));
})
.catch(err => {
dispatch(setStatusAction(contants.STATUS_ACTION_FAILED));
})
);
};
}
export function openNewContactDialog() {
return {
type: OPEN_NEW_AUTHOR_DIALOG
};
}
export function closeNewContactDialog() {
return {
type: CLOSE_NEW_AUTHOR_DIALOG
};
}
export function openEditContactDialog(data) {
return {
type: OPEN_EDIT_AUTHOR_DIALOG,
data
};
}
export function closeEditContactDialog() {
return {
type: CLOSE_EDIT_AUTHOR_DIALOG
};
}
| 25.146552 | 78 | 0.645526 |
c8a21c53515feded3f00432ee58c2b9c156c4b47 | 15,594 | js | JavaScript | lib/photoride.js | BeneathTheInk/photoride | 082117789a1772672b8042192cb38a5ec29103cc | [
"MIT"
] | null | null | null | lib/photoride.js | BeneathTheInk/photoride | 082117789a1772672b8042192cb38a5ec29103cc | [
"MIT"
] | null | null | null | lib/photoride.js | BeneathTheInk/photoride | 082117789a1772672b8042192cb38a5ec29103cc | [
"MIT"
] | null | null | null | if (typeof Tap === "undefined") require("tapjs");
var _ = require("underscore");
var EventEmitter = require("events").EventEmitter;
var Modernizr = require("./modernizr");
function Photoride(cont, options) {
EventEmitter.call(this);
var self = this;
this.options = _.extend({
loop: true,
showCount: true,
showNav: true,
resizeEvent: true,
enableTouch: Modernizr.touch,
enableArrowKeys: true
}, options || {});
if (cont == null) cont = document.createElement("div");
if (typeof cont === "string") {
cont = document.querySelector(cont);
if (cont == null) throw new Error("Could not locate container element.");
}
this.container = cont;
this.container.innerHTML = "";
this.container.classList.add("photoride");
this.container.classList[this.option("showNav") ? "remove" : "add"]("photoride-nav-disabled");
this.photoCount = document.createElement("div");
this.photoCount.style.display = this.option("showCount") ? "" : "none";
this.photoCount.classList.add("photoride-count");
this.container.appendChild(this.photoCount);
this.scroll = document.createElement("div");
this.scroll.classList.add("photoride-scroll");
this.container.appendChild(this.scroll);
this.nextBtn = document.createElement("a");
this.nextBtn.href = "#";
this.nextBtn.classList.add("photoride-btn", "photoride-btn-next");
this.nextBtn.addEventListener("tap", this.next.bind(this, null));
this.container.appendChild(this.nextBtn);
this.prevBtn = document.createElement("a");
this.prevBtn.href = "#";
this.prevBtn.classList.add("photoride-btn", "photoride-btn-previous");
this.prevBtn.addEventListener("tap", this.previous.bind(this, null));
this.container.appendChild(this.prevBtn);
this.current = 0;
this.photos = [];
this.refresh = _.debounce(this._refresh, 50);
this.init();
}
module.exports = Photoride;
Photoride.Photo = Photo;
Photoride.prototype = Object.create(EventEmitter.prototype);
_.extend(Photoride.prototype, {
init: function() {
if (Modernizr.overflowscrolling) this._scrollDetect();
if (this.option("resizeEvent") !== false) {
var onResize;
window.addEventListener("resize", onResize = this.refresh.bind(this));
this.once("destroy", function() {
window.removeEventListener("resize", onResize);
});
}
if (this.option("enableTouch") !== false) {
var onTouch;
this.container.addEventListener("touchstart", onTouch = this._onTouchStart.bind(this));
this.once("destroy", function() {
this.container.removeEventListener("touchstart", onTouch);
});
}
if (this.option("enableArrowKeys") !== false) {
var onKeypress;
document.addEventListener("keyup", onKeypress = this._onArrowPress.bind(this));
this.once("destroy", function() {
document.removeEventListener("keyup", onKeypress);
});
}
this.refresh();
},
option: function(prop) {
var value = this.options == null ? void 0 : this.options[prop];
var args = Array.prototype.slice.call(arguments, 1);
return _.isFunction(value) ? value.apply(this, args) : value;
},
destroy: function() {
this.scroll.innerHTML = "";
this.photos = [];
this.current = 0;
this.emit("destroy");
this.refresh();
return this;
},
findBySource: function(src) {
return _.find(this.photos, function(photo) {
return photo.source === src;
});
},
_refresh: function() {
this.width = this.container.clientWidth;
this.height = this.container.clientHeight;
this.scroll.style.width = (this.photos.length * this.width) + "px";
_.each(this.photos, function(photo) {
photo.container.style.width = this.width + "px";
photo.refresh();
}, this);
var onAnimEnd;
var left = (-1 * (this.current * this.width)) + "px";
var eleft = this.scroll.style.left;
if (eleft && eleft !== "auto" && eleft !== left) {
this.scroll.classList.add("photoride-scroll-transition");
addPrefixedEvent(this.scroll, "TransitionEnd", onAnimEnd = function(e) {
removePrefixedEvent(this, "TransitionEnd", onAnimEnd);
this.classList.remove("photoride-scroll-transition");
});
}
this.photoCount.textContent = (this.current + 1) + " / " + this.photos.length;
this.scroll.style.left = left;
if (this.option("showNav")) {
var enough = this.photos.length > 1;
this.nextBtn.style.display = !enough ? "none" : "";
this.prevBtn.style.display = !enough ? "none" : "";
if (!this.option("loop")) {
this.nextBtn.classList[this.current === (this.photos.length - 1) ? "add" : "remove"]("photoride-btn-disabled");
this.prevBtn.classList[this.current === 0 ? "add" : "remove"]("photoride-btn-disabled");
}
}
},
getCurrent: function() {
return this.photos[this.current];
},
push: function(src, options) {
return this.add(this.photos.length, src, options);
},
add: function(index, src, options) {
var photo = new Photo(src, _.extend({}, this.options, options));
var index = this.photos.length;
this.photos.splice(index, 0, photo);
this.scroll.appendChild(photo.container);
this.refresh();
return photo;
},
goto: function(n) {
if (typeof n !== "number" || isNaN(n)) n = 0;
this.current = Math.max(0, Math.min(this.photos.length - 1, n));
this.refresh();
return this;
},
next: function(loop) {
var n = this.current + 1;
if (loop == null) loop = this.option("loop");
if (loop && n >= this.photos.length) n = 0;
return this.goto(n);
},
previous: function(loop) {
var n = this.current - 1;
if (loop == null) loop = this.option("loop");
if (loop && n < 0) n = this.photos.length - 1;
return this.goto(n);
},
_onTouchStart: function(e) {
var touchMove, touchEnd;
var touch = e.touches[0],
ix = touch.pageX,
iy = touch.pageY,
horz = false,
self = this,
dx, dy, left;
this.container.addEventListener("touchmove", touchMove = function(e) {
if (horz) return;
var touch = e.touches[0];
dx = ix - touch.pageX;
dy = iy - touch.pageY;
if (Math.abs(dy) >= 50) {
horz = true;
self.goto(self.current);
} else if (Math.abs(dx) >= 10) {
left = (self.current * self.width) + dx;
self.scroll.style.left = (-1 * left) + "px";
}
});
this.container.addEventListener("touchend", touchEnd = function(e) {
this.removeEventListener("touchmove", touchMove);
this.removeEventListener("touchend", touchEnd);
var chg;
if (!horz && dx != null && Math.abs(dx) > 10) {
chg = dx >= 40 ? 1 : dx <= -40 ? -1 : 0;
} else {
chg = 0;
}
self.goto(self.current + chg);
});
},
_onArrowPress: function(e) {
if (e.keyCode !== 37 && e.keyCode !== 39) return;
e.preventDefault();
this[e.keyCode === 37 ? "previous" : "next"](this.option("loop"));
},
_scrollDetect: function() {
if (this._scrollFix) return this;
this.once("destroy", function() {
if (this._scrollFix) {
cancelAnimationFrame(this._scrollFix);
delete this._scrollFix;
}
});
var refresh = _.bind(function() {
var photo = this.getCurrent();
if (photo != null) photo.refresh();
next();
}, this);
function next() {
this._scrollFix = requestAnimationFrame(refresh);
}
next();
return this;
}
});
function Photo(src, options) {
this.options = _.extend({
backgroundSize: "cover",
backgroundColor: "black",
scrollDuration: 300,
maxFade: 0.75,
gradientSize: 0.3
}, options || {});
this.container = document.createElement("div");
this.container.classList.add("photoride-image", "photoride-image-loading");
this.view = document.createElement("div");
this.view.classList.add("photoride-image-view");
this.view.style.backgroundSize = this.option("backgroundSize");
this.view.style.backgroundColor = this.option("backgroundColor");
this.container.appendChild(this.view);
this.content = document.createElement("div");
this.content.classList.add("photoride-image-content");
this.content.addEventListener("scroll", _.throttle(this.refresh.bind(this), 16));
this.container.appendChild(this.content);
this.inner = document.createElement("div");
this.inner.classList.add("photoride-image-inner");
this.content.appendChild(this.inner);
this.paddingBox = document.createElement("div");
this.paddingBox.classList.add("photoride-image-padding");
this.inner.appendChild(this.paddingBox);
this.title = document.createElement("div");
this.title.classList.add("photoride-image-title");
this.inner.appendChild(this.title);
this.caption = document.createElement("div");
this.caption.classList.add("photoride-image-caption");
this.inner.appendChild(this.caption);
this.moreBtn = document.createElement("a");
this.moreBtn.href = "#";
this.moreBtn.classList.add("photoride-btn", "photoride-btn-more");
this.moreBtn.addEventListener("tap", _.bind(function(e) {
var contentHeight = this.getContentHeight() - this.title.offsetHeight;
this.scrollTo(this.content.scrollTop > 20 ? 0 : Math.min(contentHeight, this.content.scrollHeight - contentHeight));
}, this));
this.container.appendChild(this.moreBtn);
this.setSource(src);
this.setTitle(this.option("title"));
this.setCaption(this.option("caption"));
}
_.extend(Photo.prototype, {
option: Photoride.prototype.option,
setSource: function(src) {
this.source = src;
this.view.style.backgroundImage = "url('" + src + "')";
return this;
},
setTitle: function(title) {
if (!title) {
this.title.textContent = "";
this.title.classList.add("photoride-image-title-empty");
}
else {
this.title.textContent = title;
this.title.classList.remove("photoride-image-title-empty");
}
return this;
},
setCaption: function(content) {
if (content == null) content = "";
if (typeof content === "string") {
if (!content) this.caption.style.display = "none";
else {
this.caption.style.display = "";
this.caption.innerHTML = content;
}
return this;
}
this.caption.innerHTML = "";
if (typeof content.nodeType === "number") {
this.caption.appendChild(el);
} else if (content.length) {
_.each(content, function(el) {
this.caption.appendChild(el);
}, this);
}
return this;
},
scrollTo: function(to) {
if (this._scrollFrame) {
cancelAnimationFrame(this._scrollFrame);
delete this._scrollFrame;
}
var self = this;
var scrollTop = this.content.scrollTop;
var duration = this.option("scrollDuration");
// find difference between current scroll position(relative to document.body) and the bink element to which we are scrolling to
var difference = to - scrollTop;
// if target bink is within the upper part of window's view then don't scroll
if (duration < 0 || !difference) return;
// variable for holding time count
var start;
function runScroll() {
// use time stamp to calculate time
var t = new Date();
if (start == null) start = t;
// difference in time
var tDiff = t - start;
// if difference in time is greater than our initially set duration, animation is complete
if (tDiff >= duration){
self.content.scrollTop = to;
delete self._scrollFrame;
return;
}
// increment the scrollTop position
self.content.scrollTop = scrollTop + ((tDiff/duration) * difference);
// rerun function until animation is complete
self._scrollFrame = requestAnimationFrame(runScroll);
};
this._scrollFrame = requestAnimationFrame(runScroll);
return this;
},
getContentHeight: function() {
var height = this.content.clientHeight;
var contentStyle = getComputedStyle(this.content);
var paddingTop = parseInt(contentStyle.paddingTop, 10);
if (isNaN(paddingTop)) paddingTop = 0;
var paddingBottom = parseInt(contentStyle.paddingBottom, 10);
if (isNaN(paddingBottom)) paddingBottom = 0;
return height - paddingTop - paddingBottom;
},
refresh: function() {
this.content.style.backgroundColor = "";
this.content.style.backgroundImage = "";
var hasCaption = this.caption.hasChildNodes();
var hasTitle = this.title.textContent !== "";
var contentHeight = this.getContentHeight();
var clientHeight = this.content.clientHeight;
var scrollTop = this.content.scrollTop;
var height = Math.min(this.content.scrollHeight - clientHeight, clientHeight * 0.6);
var perc = scrollTop / height;
perc = isNaN(perc) ? 0 : Math.min(1, perc);
var fade = this.option("maxFade");
var lead = fade * perc;
var css = this.content.style.cssText;
var gradientSize = Math.min(100, Math.max(0, Math.round((1 - this.option("gradientSize")) * 100)));
this.moreBtn.style.display = hasCaption ? "" : "none";
this.moreBtn.classList[!hasCaption || scrollTop < 20 ? "remove" : "add"]("photoride-btn-more-flipped");
this.paddingBox.style.height = (contentHeight - this.title.offsetHeight) + "px";
if (hasCaption || hasTitle) {
if (fade !== lead) {
var gradient = [
"rgba(0, 0, 0, " + lead + ") 0%",
"rgba(0, 0, 0, " + lead + ") " + gradientSize + "%",
"rgba(0, 0, 0, " + fade + ") 100%"
].join(", ");
[
"-webkit-linear-gradient(top, ",
"-moz-linear-gradient(top, ",
"-o-linear-gradient(top, ",
"linear-gradient(to bottom, "
].forEach(function(s) {
css += " background-image: " + s + gradient + ");";
});
} else {
css += " background-color: rgba(0, 0, 0, " + fade + ");";
}
}
this.content.style.cssText = css;
this.container.classList.remove("photoride-image-loading");
}
});
require("domready")(function() {
_.each(document.querySelectorAll("[data-photoride]"), function(cont) {
var options = autoCoerce(cont.dataset);
var imgs = _.map(cont.querySelectorAll("img"), function(img) {
var captionQuery = img.dataset.caption;
var caption, captionel;
if (captionQuery) {
captionel = cont.querySelector(captionQuery);
if (captionel != null) caption = _.toArray(captionel.childNodes);
}
var biggerWidth = img.naturalWidth >= cont.clientWidth;
var biggerHeight = img.naturalHeight >= cont.clientHeight;
var opts = _.extend({
backgroundSize: options.backgroundSize || (
biggerWidth && biggerHeight ? "cover" :
biggerWidth || biggerHeight ? "contain" :
"auto" )
}, autoCoerce(img.dataset), {
title: img.getAttribute("title"),
caption: caption
});
return [ img.src, opts ];
});
var photoride = cont.photoride = new Photoride(cont, options);
imgs.forEach(function(args) {
photoride.push.apply(photoride, args);
});
});
});
var requestAnimationFrame =
window.requestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.oRequestAnimationFrame ||
function (f) { return setTimeout(f, 16); };
var cancelAnimationFrame =
window.cancelAnimationFrame ||
window.mozCancelAnimationFrame ||
window.webkitCancelAnimationFrame ||
window.oCancelAnimationFrame ||
function (t) { return clearTimeout(t); };
var pfx = ["webkit", "moz", "MS", "o", ""];
function addPrefixedEvent(element, type, callback) {
for (var p = 0; p < pfx.length; p++) {
if (!pfx[p]) type = type.toLowerCase();
element.addEventListener(pfx[p]+type, callback, false);
}
}
function removePrefixedEvent(element, type, callback) {
for (var p = 0; p < pfx.length; p++) {
if (!pfx[p]) type = type.toLowerCase();
element.removeEventListener(pfx[p]+type, callback, false);
}
}
var numex = /^-?[0-9]*(?:\.[0-9]+)?$/,
boolex = /^true|false$/i;
function autoCoerce(v) {
if (typeof v === "string") {
var trimmed = v.trim();
if (numex.test(trimmed)) return parseFloat(v, 10);
if (boolex.test(trimmed)) return trimmed === "true";
}
if (typeof v === "object") {
v = _.clone(v);
_.each(v, function(val, key) {
v[key] = autoCoerce(val);
});
}
return v;
}
| 28.508227 | 129 | 0.667949 |
c8a26d3eda0d71d0c49be551ea50d08cd73a269e | 5,276 | js | JavaScript | src/modules/ocupacao/OcupacaoChart.js | dfernandosales/erp-hermes-web | 4f1611f2b5c2f9b480bd0fe2ce727ac4061cf3d0 | [
"MIT"
] | null | null | null | src/modules/ocupacao/OcupacaoChart.js | dfernandosales/erp-hermes-web | 4f1611f2b5c2f9b480bd0fe2ce727ac4061cf3d0 | [
"MIT"
] | null | null | null | src/modules/ocupacao/OcupacaoChart.js | dfernandosales/erp-hermes-web | 4f1611f2b5c2f9b480bd0fe2ce727ac4061cf3d0 | [
"MIT"
] | 1 | 2021-02-28T00:16:31.000Z | 2021-02-28T00:16:31.000Z | import { Card, Tooltip, Typography, Grid, FormControlLabel } from '@material-ui/core'
import React, { useState, useEffect } from 'react'
import { PieChart, BarChart, Pie, Cell, ResponsiveContainer, XAxis, YAxis, CartesianGrid, Legend, Bar } from 'recharts';
import { withStyles } from "@material-ui/core/styles";
import ocupacaoRepository from './ocupacaoRepository';
import Checkbox from '@material-ui/core/Checkbox';
const styles = theme => ({
card: {
padding: theme.spacing(4),
},
title: {
marginBottom: theme.spacing(3),
},
});
const OcupacaoChart = (props) => {
const { classes } = props;
const [ocupados, setOcupados] = useState(0)
const [vagos, setVagos] = useState(0)
const [dataLine, setDataLine] = useState();
const [allChart, setAllChart] = useState(false);
const [categoryChart, setCategoryChart] = useState(false);
useEffect(async () => {
const dataTudo = await ocupacaoRepository.list({ query: { type: "Tudo" } });
setVagos(dataTudo.data.livre.total);
setOcupados(dataTudo.data.ocupado.total);
const data = await ocupacaoRepository.list();
setDataLine(data.data);
}, [])
const data = [
{ name: 'Livre', value: vagos },
{ name: 'Ocupado', value: ocupados },
];
const COLORS = ['#4caf50', '#f44336'];
return (
<>
<Card className={classes.card}>
<Grid container>
<Grid item sm={6} xs={12}>
<FormControlLabel
value="end"
control={<Checkbox
checked={allChart}
onChange={() => setAllChart(!allChart)}
value="checkedA"
/>}
label="Grafico da ocupacao dos quartos(GERAL)"
labelPlacement="end"
/>
</Grid>
<Grid item sm={6} xs={12}>
<FormControlLabel
value="end"
control={<Checkbox
checked={categoryChart}
onChange={() => setCategoryChart(!categoryChart)}
/>}
label="Grafico da ocupacao dos quartos por categoria"
labelPlacement="end"
/>
</Grid>
</Grid>
</Card>
{allChart && <Card className={classes.card}>
<Typography variant="h4"
className={classes.title}>
Geral
</Typography>
{(vagos || ocupados) ?
<ResponsiveContainer height={400}>
<PieChart width={800} height={800}>
<Legend />
<Tooltip />
<Pie
data={data}
cx="50%"
cy="50%"
outerRadius={150}
fill="#8884d8"
dataKey="value"
>
{data.map((entry, index) => (
<Cell key={`cell-${index}`} fill={COLORS[index % COLORS.length]} />
))}
</Pie>
</PieChart>
</ResponsiveContainer> : <Typography align="center" variant="h5"> Ainda nao foi cadastrado um quarto no sistema.</Typography>}
</Card>}
{ categoryChart &&
<Card className={classes.card}>
<Typography variant="h4"
className={classes.title}>
Categoria
</Typography>
{categoryChart && dataLine?.length > 0 ? <ResponsiveContainer height={400}>
<BarChart
width={300}
height={300}
data={dataLine}
margin={{
top: 5,
right: 30,
left: 20,
bottom: 5,
}}
>
<CartesianGrid strokeDasharray="3 3" />
<XAxis dataKey="name" />
<YAxis />
<Tooltip />
<Legend />
<Bar dataKey="Livre" fill="#4caf50" />
<Bar dataKey="Ocupado" fill="#f44336" />
</BarChart>
</ResponsiveContainer> : <Typography align="center" variant="h5"> Ainda nao foi cadastrado um quarto no sistema.</Typography>}
</Card>
}
</>
)
}
export default withStyles(styles)(OcupacaoChart) | 40.584615 | 146 | 0.4058 |
c8a2ba7636a1a9238c21d95bda3064913a66162c | 618 | js | JavaScript | src/app/pages/rooms/rooms.Directive.js | ashwink6361/admin-hirundo | ab218f74b305043832996c9e00d8e6d090e1a1d4 | [
"MIT"
] | null | null | null | src/app/pages/rooms/rooms.Directive.js | ashwink6361/admin-hirundo | ab218f74b305043832996c9e00d8e6d090e1a1d4 | [
"MIT"
] | null | null | null | src/app/pages/rooms/rooms.Directive.js | ashwink6361/admin-hirundo | ab218f74b305043832996c9e00d8e6d090e1a1d4 | [
"MIT"
] | null | null | null | /**
* @author s.gautam@huulke.com
* created on 25.01.2018
*/
(function () {
'use strict';
angular.module('BlurAdmin.pages.rooms').directive('roomsList', roomsList)
.directive('stepList', stepList);
/** @ngInject */
function roomsList() {
return {
restrict: 'EA',
controller: 'RoomsController',
templateUrl: 'app/pages/rooms/views/list.html'
};
}
function stepList() {
return {
restrict: 'EA',
controller: 'StepsController',
templateUrl: 'app/pages/rooms/views/steps.html'
};
}
})();
| 24.72 | 77 | 0.546926 |
c8a2bae9d922f4f74524e40bb0aba24cd4bf67d4 | 4,325 | js | JavaScript | node_modules/_vant@2.12.10@vant/es/image/index.js | githubsgeek/163music | 2169c25bcc293a4883d651e2bcc745934d66a9b2 | [
"MIT"
] | 1 | 2020-10-14T15:15:04.000Z | 2020-10-14T15:15:04.000Z | node_modules/vant/es/image/index.js | Cai-ting99/imitateWangYiYun | 8831a5db68b6438746b42dbfb02837fe351371de | [
"Apache-2.0"
] | null | null | null | node_modules/vant/es/image/index.js | Cai-ting99/imitateWangYiYun | 8831a5db68b6438746b42dbfb02837fe351371de | [
"Apache-2.0"
] | null | null | null | import _mergeJSXProps2 from "@vue/babel-helper-vue-jsx-merge-props";
import _mergeJSXProps from "@vue/babel-helper-vue-jsx-merge-props";
import { createNamespace, isDef, addUnit, inBrowser } from '../utils';
import Icon from '../icon';
var _createNamespace = createNamespace('image'),
createComponent = _createNamespace[0],
bem = _createNamespace[1];
export default createComponent({
props: {
src: String,
fit: String,
alt: String,
round: Boolean,
width: [Number, String],
height: [Number, String],
radius: [Number, String],
lazyLoad: Boolean,
iconPrefix: String,
showError: {
type: Boolean,
default: true
},
showLoading: {
type: Boolean,
default: true
},
errorIcon: {
type: String,
default: 'photo-fail'
},
loadingIcon: {
type: String,
default: 'photo'
}
},
data: function data() {
return {
loading: true,
error: false
};
},
watch: {
src: function src() {
this.loading = true;
this.error = false;
}
},
computed: {
style: function style() {
var style = {};
if (isDef(this.width)) {
style.width = addUnit(this.width);
}
if (isDef(this.height)) {
style.height = addUnit(this.height);
}
if (isDef(this.radius)) {
style.overflow = 'hidden';
style.borderRadius = addUnit(this.radius);
}
return style;
}
},
created: function created() {
var $Lazyload = this.$Lazyload;
if ($Lazyload && inBrowser) {
$Lazyload.$on('loaded', this.onLazyLoaded);
$Lazyload.$on('error', this.onLazyLoadError);
}
},
beforeDestroy: function beforeDestroy() {
var $Lazyload = this.$Lazyload;
if ($Lazyload) {
$Lazyload.$off('loaded', this.onLazyLoaded);
$Lazyload.$off('error', this.onLazyLoadError);
}
},
methods: {
onLoad: function onLoad(event) {
this.loading = false;
this.$emit('load', event);
},
onLazyLoaded: function onLazyLoaded(_ref) {
var el = _ref.el;
if (el === this.$refs.image && this.loading) {
this.onLoad();
}
},
onLazyLoadError: function onLazyLoadError(_ref2) {
var el = _ref2.el;
if (el === this.$refs.image && !this.error) {
this.onError();
}
},
onError: function onError(event) {
this.error = true;
this.loading = false;
this.$emit('error', event);
},
onClick: function onClick(event) {
this.$emit('click', event);
},
genPlaceholder: function genPlaceholder() {
var h = this.$createElement;
if (this.loading && this.showLoading) {
return h("div", {
"class": bem('loading')
}, [this.slots('loading') || h(Icon, {
"attrs": {
"name": this.loadingIcon,
"classPrefix": this.iconPrefix
},
"class": bem('loading-icon')
})]);
}
if (this.error && this.showError) {
return h("div", {
"class": bem('error')
}, [this.slots('error') || h(Icon, {
"attrs": {
"name": this.errorIcon,
"classPrefix": this.iconPrefix
},
"class": bem('error-icon')
})]);
}
},
genImage: function genImage() {
var h = this.$createElement;
var imgData = {
class: bem('img'),
attrs: {
alt: this.alt
},
style: {
objectFit: this.fit
}
};
if (this.error) {
return;
}
if (this.lazyLoad) {
return h("img", _mergeJSXProps([{
"ref": "image",
"directives": [{
name: "lazy",
value: this.src
}]
}, imgData]));
}
return h("img", _mergeJSXProps2([{
"attrs": {
"src": this.src
},
"on": {
"load": this.onLoad,
"error": this.onError
}
}, imgData]));
}
},
render: function render() {
var h = arguments[0];
return h("div", {
"class": bem({
round: this.round
}),
"style": this.style,
"on": {
"click": this.onClick
}
}, [this.genImage(), this.genPlaceholder(), this.slots()]);
}
}); | 22.883598 | 70 | 0.513988 |
c8a2df02f6ba078c64844d2133beeffd21f9de7f | 11,279 | js | JavaScript | modules/porter.js | onezeronine/csnlp | 9d8246140a4f6996930d2b1ab0445a308444d34d | [
"MIT"
] | 1 | 2015-08-17T08:44:37.000Z | 2015-08-17T08:44:37.000Z | modules/porter.js | onezeronine/csnlp | 9d8246140a4f6996930d2b1ab0445a308444d34d | [
"MIT"
] | null | null | null | modules/porter.js | onezeronine/csnlp | 9d8246140a4f6996930d2b1ab0445a308444d34d | [
"MIT"
] | null | null | null | /* Porter's Stemmer Algorithm for English
* http://snowball.tartarus.org/algorithms/english/stemmer.html
*/
var VOWELS = 'aeiouy';
var DOUBLES = ['bb','dd','ff','gg','mm','nn','pp','rr','tt'];
var LI_ENDINGS = 'cdeghkmnrt';
var regionOne = 0;
var regionTwo = 0;
var debug = false;
/* jshint -W121 */
//Polyfill String.prototype.endsWith if not using ECMAScript 6 (2015)
if (!String.prototype.endsWith) {
String.prototype.endsWith = function(searchString, position) {
var subjectString = this.toString();
if (position === undefined || position > subjectString.length) {
position = subjectString.length;
}
position -= searchString.length;
var lastIndex = subjectString.indexOf(searchString, position);
return lastIndex !== -1 && lastIndex === position;
};
}
function isVowel(c) {
return VOWELS.indexOf(c) >= 0;
}
/* R1 is the region after the first non-vowel following a vowel, or is the null
* region at the end of the word if there is no such non-vowel.
*/
function r1(word) {
var i = 0;
if(word.length <= 0) { return 0; }
while(!isVowel(word[i]) && i < word.length) { ++i; }
while(isVowel(word[i]) && i < word.length) { ++i; }
return i + 1;
}
/* R2 is the region after the first non-vowel following a vowel in R1, or is the
* null region at the end of the word if there is no such non-vowel.
*/
function r2(word) {
var i = r1(word);
if(i >= word.length) { return i; }
while(!isVowel(word[i]) && i < word.length) { ++i; }
while(isVowel(word[i]) && i < word.length) { ++i; }
return i + 1;
}
/* Define a short syllable in a word as either (a) a vowel followed by a non-vowel
* other than w, x or Y and preceded by a non-vowel, or * (b) a vowel at the beginning
* of the word followed by a non-vowel.
* So rap, trap, entrap end with a short syllable, and ow, on, at are classed as
* short syllables. But uproot, bestow, disturb do not end with a short syllable.
*
* A word is called short if it ends in a short syllable, and if R1 is null.
*
* So bed, shed and shred are short words, bead, embed, beds are not short words.
*/
function isShort(word) {
var i = word.length;
if(word.length <= 1) { return 0; }
var cnda = i > 2 &&
'bcdfghjklmnpqrstvz'.indexOf(word[i - 1]) >= 0 &&
isVowel(word[i - 2]) &&
!isVowel(word[i - 3]);
var cndb = i === 2 &&
isVowel(word[i - 2]) &&
!isVowel(word[i - 1]);
return (cnda || cndb) && r1(word) === word.length;
}
//Returns true if the last two letters of the word, ends with equal character
//otherwise false
function endsWithDouble(word) {
var len = word.length;
if(len >= 2) {
return word[len - 1] === word[len - 2];
}
return false;
}
function takeLongestSuffix(conditions, word) {
for(var i = 0; i < conditions.length; ++i) {
if(conditions[i].pattern.test(word)) {
return word.replace(conditions[i].pattern, conditions[i].action);
}
}
return word;
}
function takeLongestSuffixAndR1(conditions, word) {
for(var i = 0; i < conditions.length; ++i) {
if(conditions[i].pattern.test(word)) {
var region = word.substr(regionOne, word.length - regionOne);
if(conditions[i].pattern.test(region)) {
return word.replace(conditions[i].pattern, conditions[i].action);
}
}
}
return word;
}
function takeLongestSuffixAndR2(conditions, word) {
for(var i = 0; i < conditions.length; ++i) {
if(conditions[i].pattern.test(word)) {
var region = word.substr(regionTwo, word.length - regionTwo);
if(conditions[i].pattern.test(region)) {
return word.replace(conditions[i].pattern, conditions[i].action);
}
}
}
return word;
}
//Search for the longest among the suffixes
// ' 's 's'
//and removed if found
function step0(word) {
return word.replace(/\'s\'|\'s|\'$/, '');
}
//Search for the longest among the following suffixes, and perform the action indicated.
//sses => replace by ss
//ied+ ies* => replace by i if preceded by more than one letter,
// otherwise by ie (so ties -> tie, cries -> cri)
//s => delete if the preceding word part contains a vowel not immediately before
// the s (so gas and this retain the s, gaps and kiwis lose it)
//us+ ss => do nothing
function step1a(word) {
var conditions = [
{ pattern: /sses$/, action: 'ss' },
{ pattern: /(.*?)(ied$|ies$)/,
action: function(w) {
if(w.length > 4) { return w.replace(/ied$|ies$/, '') + 'i'; }
return w.replace(/ied$|ies$/, '') + 'ie';
}},
{ pattern: /us|ss/, action: function(w) { return w; } },
{ pattern: /(\w*[aeiouy]\w+[aeiou])(s)$|(\w*[aeiouy]\w+)(s)$/,
action: function(w) {
return w.replace(/s$/, '');
}}
];
return takeLongestSuffix(conditions, word);
}
//Search for the longest among the following suffixes, and perform the action indicated.
//eed eedly+ => replace by ee if in R1
//ed edly+ ing ingly+ => delete if the preceding word part contains a vowel, and after the deletion:
// if the word ends at, bl or iz add e (so luxuriat -> luxuriate), or
// if the word ends with a double remove the last letter (so hopp -> hop), or
// if the word is short, add e (so hop -> hope)
function step1b(word) {
var c1 = /eed$|eedly$/;
var c2 = /ed$|edly$|ing$|ingly$/;
if(c1.test(word)) {
var region = word.substr(regionOne, word.length - regionOne);
if(c1.test(region)) {
return word.replace(c1, 'ee');
}
}
if(c2.test(word)) {
var after = word.replace(c2, '');
if(/[aeiouy]/.test(after)) {
word = after;
if(/at$|bl$|iz$/.test(word)) {
return word + 'e';
}
if(endsWithDouble(word)) {
return word.substr(0, word.length - 1);
}
if(isShort(word)) {
return word + 'e';
}
}
}
return word;
}
//replace suffix y or Y by i if preceded by a non-vowel which is not the first
// letter of the word (so cry -> cri, by -> by, say -> say)
function step1c(word) {
return word.replace(/.+[bcdfghjklmnpqrstvz][yY]$/, function(w) {
return w.substr(0, w.length - 1) + 'i';
});
}
// Search for the longest among the following suffixes, and, if found and in R1, perform the action indicated.
// tional: replace by tion
// enci: replace by ence
// anci: replace by ance
// abli: replace by able
// entli: replace by ent
// izer ization: replace by ize
// ational ation ator: replace by ate
// alism aliti alli: replace by al
// fulness: replace by ful
// ousli ousness: replace by ous
// iveness iviti: replace by ive
// biliti bli+: replace by ble
// ogi+: replace by og if preceded by l
// fulli+: replace by ful
// lessli+: replace by less
// li+: delete if preceded by a valid li-ending
function step2(word) {
var conditions = [
{ pattern: /ization$/, action: 'ize' },
{ pattern: /tional$/, action: 'tion' },
{ pattern: /lessli$/, action: 'less' },
{ pattern: /entli$/, action: 'ent' },
{ pattern: /ational$|ation$|ator$/, action: 'ate' },
{ pattern: /alism$|aliti$|alli$/, action: 'al' },
{ pattern: /fulness$/, action: 'ful' },
{ pattern: /ousli$|ousness$/, action: 'ous' },
{ pattern: /iveness$|iviti$/, action: 'ive' },
{ pattern: /biliti$|bli$/, action: 'ble' },
{ pattern: /logi$/, action: 'log' },
{ pattern: /fulli$/, action: 'ful' },
{ pattern: /enci$/, action: 'ence' },
{ pattern: /anci$/, action: 'ance' },
{ pattern: /abli$/, action: 'able' },
{ pattern: /izer$/, action: 'ize' },
{ pattern: /(.)(li)$/,
action: function(w) {
if(w[0].indexOf(LI_ENDINGS) >= 0) {
return w[0];
}
return w[0] + w[1];
}
},
];
return takeLongestSuffixAndR1(conditions, word);
}
//Search for the longest among the following suffixes, and, if found and in R1, perform the action indicated.
//tional+ => replace by tion
//ational+ => replace by ate
//alize => replace by al
//icate iciti ical => replace by ic
//ful ness: => delete
//ative*: => delete if in R2
function step3(word) {
var conditions = [
{ pattern: /ational$/, action: 'ate' },
{ pattern: /tional$/, action: 'tion' },
{ pattern: /alize$/, action: 'al' },
{ pattern: /icate$|iciti$|ical$/, ation: 'ic' },
{ pattern: /ful$|ness$/, action: '' },
{ pattern: /ative$/, action: function(item) {
var region = word.substr(regionTwo, word.length - regionTwo);
if(/ative$/.test(region)) {
return '';
}
return item;
}},
];
return takeLongestSuffixAndR1(conditions, word);
}
//Search for the longest among the following suffixes, and, if found and in R2, perform the action indicated.
//al ance ence er ic able ible ant
//ement ment ent ism ate iti ous ive ize => delete
//ion => delete if preceded by s or t
function step4(word) {
var conditions = [
{ pattern: /ement$/, action: '' },
{ pattern: /ment$/, action: '' },
{ pattern: /ance$/, action: '' },
{ pattern: /ence$/, action: '' },
{ pattern: /able$/, action: '' },
{ pattern: /ible$/, action: '' },
{ pattern: /ant$/, action: '' },
{ pattern: /ent$/, action: '' },
{ pattern: /ism$/, action: '' },
{ pattern: /ate$/, action: '' },
{ pattern: /iti$/, action: '' },
{ pattern: /ous$/, action: '' },
{ pattern: /ive$/, action: '' },
{ pattern: /ize$/, action: '' },
{ pattern: /al$/, action: '' },
{ pattern: /er$/, action: '' },
{ pattern: /ic$/, action: '' },
{ pattern: /[ts]ion$/,
action: function(item) {
return item[0];
}
},
];
return takeLongestSuffixAndR2(conditions, word);
}
//Search for the the following suffixes, and, if found, perform the action indicated.
//e => delete if in R2, or in R1 and not preceded by a short syllable
//l => delete if in R2 and preceded by l
function step5(word) {
var r1 = word.substr(regionOne, word.length - regionOne);
var r2 = word.substr(regionTwo, word.length - regionTwo);
if(word.length > 1) {
if(word.endsWith('e')) {
if(/e$/.test(r1) || /e$/.test(r2)) {
if(!isShort(word)) {
return word.replace(/e$/, '');
}
}
} else if(word.endsWith('l')) {
if(/ll$/.test(r2)) {
return word.replace(/l$/, '');
}
}
}
return word;
}
function afterProcess(word) {
return word.replace(/Y/g, 'y');
}
function doSteps(word) {
//Remove initial ', if present
word = word.replace(/^\'/, '');
//Set initial y, or y after a vowel, to Y
word = word
.replace(/^y/, 'Y')
.replace(/[aeiouy]y/, function(item) { return item[0] + 'Y'; });
//Establish regions
regionOne = r1(word);
regionTwo = r2(word);
var result =
step5(step4(step3(step2(
step1c(step1b(step1a(step0(word))))
))));
return afterProcess(result);
}
module.exports.stem = function(word) {
if(!word) { return null; }
if(typeof word === 'string' || word instanceof String) {
//If the word has two letters or less, leave it as it is.
if(word.length <= 2) {
return word;
}
return doSteps(word);
} else {
return null;
}
};
| 31.771831 | 110 | 0.589857 |
c8a39bf11c2e4a4560e459dfd9a81b80dfb284d2 | 140 | js | JavaScript | lib/models/errordb.js | tywalch/zuuljs | 47defb9b82dc075c6d0cf22fc5317463a67e52da | [
"MIT"
] | 7 | 2017-01-12T01:22:29.000Z | 2020-03-27T17:10:37.000Z | lib/models/errordb.js | tywalch/zuuljs | 47defb9b82dc075c6d0cf22fc5317463a67e52da | [
"MIT"
] | 1 | 2017-01-26T20:43:59.000Z | 2017-01-29T18:17:29.000Z | lib/models/errordb.js | tywalch/zuuljs | 47defb9b82dc075c6d0cf22fc5317463a67e52da | [
"MIT"
] | null | null | null | var addNewError = function(reqDetails) {
console.error('errordb 10', reqDetails);
};
module.exports = {
addNewError: addNewError
}; | 20 | 44 | 0.7 |
c8a39fbfddd1ba0423787f70525624aa73c7a38a | 700 | js | JavaScript | app/scripts/modules/core/src/pipeline/config/stages/tagImage/tagImageStage.module.js | copartit/deck | 7323cdd22dabcb8facc889333fcc905ba1862366 | [
"Apache-2.0"
] | 291 | 2015-11-16T17:55:07.000Z | 2022-03-25T04:34:56.000Z | app/scripts/modules/core/src/pipeline/config/stages/tagImage/tagImageStage.module.js | nawodyaishan/deck | 6cebaa4214ff9d849d3a72873f5b17811bb9396a | [
"Apache-2.0"
] | 3,413 | 2015-11-18T23:32:02.000Z | 2022-03-29T06:56:59.000Z | app/scripts/modules/core/src/pipeline/config/stages/tagImage/tagImageStage.module.js | nawodyaishan/deck | 6cebaa4214ff9d849d3a72873f5b17811bb9396a | [
"Apache-2.0"
] | 1,114 | 2015-11-16T19:34:42.000Z | 2022-03-28T18:31:34.000Z | 'use strict';
import { module } from 'angular';
import { STAGE_COMMON_MODULE } from '../common/stage.common.module';
import { CORE_PIPELINE_CONFIG_STAGES_STAGE_MODULE } from '../stage.module';
import { CORE_PIPELINE_CONFIG_STAGES_TAGIMAGE_TAGIMAGESTAGE } from './tagImageStage';
export const CORE_PIPELINE_CONFIG_STAGES_TAGIMAGE_TAGIMAGESTAGE_MODULE = 'spinnaker.core.pipeline.stage.tagImage';
export const name = CORE_PIPELINE_CONFIG_STAGES_TAGIMAGE_TAGIMAGESTAGE_MODULE; // for backwards compatibility
module(CORE_PIPELINE_CONFIG_STAGES_TAGIMAGE_TAGIMAGESTAGE_MODULE, [
CORE_PIPELINE_CONFIG_STAGES_STAGE_MODULE,
STAGE_COMMON_MODULE,
CORE_PIPELINE_CONFIG_STAGES_TAGIMAGE_TAGIMAGESTAGE,
]);
| 43.75 | 114 | 0.841429 |
c8a4ba87512e59f6f4fd5f869f16145b51cbf154 | 6,588 | js | JavaScript | src/Administration/Resources/administration/src/module/sw-settings-custom-field/component/sw-custom-field-list/index.js | hendrikleyendeckers/platform | 23ba734c2b319ba3fedbe89728df3fd581e3caa5 | [
"MIT"
] | 1 | 2020-01-11T08:06:44.000Z | 2020-01-11T08:06:44.000Z | src/Administration/Resources/administration/src/module/sw-settings-custom-field/component/sw-custom-field-list/index.js | hendrikleyendeckers/platform | 23ba734c2b319ba3fedbe89728df3fd581e3caa5 | [
"MIT"
] | 32 | 2019-08-05T11:37:43.000Z | 2022-02-26T01:39:41.000Z | src/Administration/Resources/administration/src/module/sw-settings-custom-field/component/sw-custom-field-list/index.js | Gamingpc/gss | f6a636c116f73d7747db0f7eb009cc6104b3699b | [
"MIT"
] | null | null | null | import { Component, State, Mixin } from 'src/core/shopware';
import CriteriaFactory from 'src/core/factory/criteria.factory';
import types from 'src/core/service/utils/types.utils';
import template from './sw-custom-field-list.html.twig';
import './sw-custom-field-list.scss';
Component.register('sw-custom-field-list', {
template,
mixins: [
Mixin.getByName('listing'),
Mixin.getByName('sw-inline-snippet')
],
provide() {
return {
SwCustomFieldListIsCustomFieldNameUnique: this.isCustomFieldNameUnique
};
},
props: {
set: {
type: Object,
required: true
}
},
data() {
return {
limit: 10,
customFields: [],
isLoading: false,
currentCustomField: null,
deleteButtonDisabled: true,
disableRouteParams: true
};
},
computed: {
customFieldAssociationStore() {
return this.set.getAssociation('customFields');
},
customFieldStore() {
return State.getStore('custom_field');
}
},
methods: {
onSearch(value) {
if (!this.hasExistingCustomFields()) {
this.term = '';
return;
}
this.term = value;
this.page = 1;
this.getList();
},
hasExistingCustomFields() {
return Object.values(this.customFieldAssociationStore.store).some((item) => {
return !item.isLocal;
});
},
getList() {
this.isLoading = true;
const params = this.getListingParams();
params.sortBy = 'config.customFieldPosition';
if (params.term) {
params.criteria = CriteriaFactory.multi(
'OR',
...this.getLocaleCriterias(params.term),
CriteriaFactory.contains('name', params.term)
);
params.term = '';
}
this.customFields = [];
return this.customFieldAssociationStore.getList(params).then((response) => {
this.total = response.total;
this.customFields = response.items;
this.isLoading = false;
this.buildGridArray();
return this.customFields;
});
},
getLocaleCriterias(term) {
const criterias = [];
const locales = Object.keys(this.$root.$i18n.messages);
locales.forEach(locale => {
criterias.push(CriteriaFactory.contains(`config.label.\"${locale}\"`, term));
});
return criterias;
},
selectionChanged() {
const selection = this.$refs.grid.getSelection();
this.deleteButtonDisabled = Object.keys(selection).length <= 0;
},
newItems() {
const items = [];
this.customFieldAssociationStore.forEach((item) => {
if (item.isLocal) {
items.push(item);
}
});
return items;
},
onCustomFieldDelete(customField) {
customField.delete();
if (customField.isLocal) {
this.customFieldAssociationStore.removeById(customField.id);
this.customFields.forEach((item, index) => {
if (item.id === customField.id) {
this.customFields.splice(index, 1);
}
});
this.buildGridArray();
}
},
onDeleteCustomFields() {
const selection = this.$refs.grid.getSelection();
Object.values(selection).forEach((customField) => {
this.onCustomFieldDelete(customField);
this.$refs.grid.selectItem(false, customField);
});
},
onAddCustomField() {
const customField = this.customFieldAssociationStore.create();
this.customFieldAssociationStore.removeById(customField.id);
this.onCustomFieldEdit(customField);
},
onCancelCustomField() {
this.currentCustomField = null;
},
onSaveCustomField() {
this.removeEmptyProperties(this.currentCustomField.config);
if (!this.customFieldAssociationStore.hasId(this.currentCustomField.id)) {
this.customFieldAssociationStore.add(this.currentCustomField);
this.buildGridArray();
}
this.currentCustomField = null;
},
onCustomFieldResetDelete(customField) {
customField.isDeleted = false;
},
onInlineEditCancel(customField) {
customField.discardChanges();
},
onCustomFieldEdit(customField) {
this.currentCustomField = customField;
},
buildGridArray() {
this.customFields = this.customFields.filter((value) => {
return value.isLocal === false;
});
this.customFields.unshift(...this.newItems());
},
removeEmptyProperties(config) {
Object.keys(config).forEach((property) => {
if (['number', 'boolean'].includes(typeof config[property])) {
return;
}
if (types.isObject(config[property]) || types.isArray(config[property])) {
this.removeEmptyProperties(config[property]);
}
if ((types.isEmpty(config[property]) || config[property] === undefined) && config[property !== null]) {
this.$delete(config, property);
}
});
},
isCustomFieldNameUnique(customField) {
// Search in local customField list for name
const isUnique = !this.customFields.some((attr) => {
if (customField.id === attr.id) {
return false;
}
return attr.name === customField.name;
});
if (!isUnique) {
return Promise.resolve(false);
}
// Search the server for the customField name
const criteria = CriteriaFactory.equals('name', customField.name);
return this.customFieldStore.getList({ criteria }).then((res) => {
return res.total === 0;
});
}
}
});
| 29.809955 | 119 | 0.513965 |
c8a502c1143b82bfbe237ff383493ba0adaee7dc | 478 | js | JavaScript | packages/material-ui-icons/lib/esm/Pageview.js | good-gym/material-ui | d73990ec5d29f53baeecd0e983c9e48673540b4e | [
"MIT"
] | 51,124 | 2017-11-20T16:24:00.000Z | 2022-02-06T13:55:28.000Z | packages/material-ui-icons/lib/esm/Pageview.js | good-gym/material-ui | d73990ec5d29f53baeecd0e983c9e48673540b4e | [
"MIT"
] | 21,058 | 2017-11-20T16:48:30.000Z | 2022-02-06T12:55:00.000Z | packages/material-ui-icons/lib/esm/Pageview.js | good-gym/material-ui | d73990ec5d29f53baeecd0e983c9e48673540b4e | [
"MIT"
] | 28,842 | 2017-11-20T17:30:48.000Z | 2022-02-06T13:21:32.000Z | import createSvgIcon from './utils/createSvgIcon';
import { jsx as _jsx } from "react/jsx-runtime";
export default createSvgIcon( /*#__PURE__*/_jsx("path", {
d: "M11.5 9C10.12 9 9 10.12 9 11.5s1.12 2.5 2.5 2.5 2.5-1.12 2.5-2.5S12.88 9 11.5 9zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-3.21 14.21-2.91-2.91c-.69.44-1.51.7-2.39.7C9.01 16 7 13.99 7 11.5S9.01 7 11.5 7 16 9.01 16 11.5c0 .88-.26 1.69-.7 2.39l2.91 2.9-1.42 1.42z"
}), 'Pageview'); | 95.6 | 303 | 0.648536 |
c8a522e67e01a31282922e7f4fcb0c7f76a69c74 | 2,066 | js | JavaScript | components/Footer/index.js | joelsonRamos/palpite-box | 372750fcb8ddf3787cc0d6a9d9f708575aac1e04 | [
"MIT"
] | null | null | null | components/Footer/index.js | joelsonRamos/palpite-box | 372750fcb8ddf3787cc0d6a9d9f708575aac1e04 | [
"MIT"
] | 11 | 2020-07-21T11:41:56.000Z | 2022-03-27T02:56:27.000Z | components/Footer/index.js | joelsonRamos/palpite-box | 372750fcb8ddf3787cc0d6a9d9f708575aac1e04 | [
"MIT"
] | null | null | null | import React, { Component } from 'react'
import Icon from '@mdi/react'
import {
mdiYoutube ,
mdiFacebook,
mdiInstagram,
mdiMapMarker } from '@mdi/js'
const Footer = () => {
return(
<div className="bg-gray-900 p-4">
<div className="container mx-auto text-center text-white ">
<p className="block font-bold">Siga nas redes Sociais:</p>
<div className="mt-1 flex justify-center text-center mb-3 ">
<div className="mr-4">
<a className="px-2 hover:underline" href="https://www.youtube.com" target="_blank"><Icon path={mdiYoutube} title="youtube" size={1} /></a>
</div>
<div className="mr-4">
<a className="px-2 hover:underline" href="https://www.facebook.com" target="_blank"><Icon path={mdiFacebook} title="facebook" size={1} /></a>
</div>
<div>
<a className="px-2 hover:underline" href="https://www.instagram.com" target="_blank"><Icon path={mdiInstagram} title="instagram" size={1} /></a>
</div>
</div>
<div className="flex justify-center inline mb-4">
<div>
<Icon path={mdiMapMarker} color="red" title="localização" size={1} />
</div>
<div>
<p className="font-serif text-sm">
Rua Atílio Brunetti, 1164 <br/> Capão Raso, Curitiba
</p>
</div>
</div>
<p className="font-serif text-sm ">© 2020 - Todos os direitos reservados - <a className="px-2 hover:underline" href="https://www.linkedin.com/in/joelson-ramos/" target="_blank">Joelson</a> </p>
</div>
</div>
)
}
export default Footer | 40.509804 | 214 | 0.46757 |
c8a57f786b6ddb337b199025d6c89169e2fd06ea | 514 | js | JavaScript | more_webpack_learning/more_webpack/CircularDependencyPlugin/src/login/login/index.js | 2550756431/webpack_react | 1f91114f1e2805526f98f52f26d09ca7fe9d2b0c | [
"MIT"
] | null | null | null | more_webpack_learning/more_webpack/CircularDependencyPlugin/src/login/login/index.js | 2550756431/webpack_react | 1f91114f1e2805526f98f52f26d09ca7fe9d2b0c | [
"MIT"
] | null | null | null | more_webpack_learning/more_webpack/CircularDependencyPlugin/src/login/login/index.js | 2550756431/webpack_react | 1f91114f1e2805526f98f52f26d09ca7fe9d2b0c | [
"MIT"
] | null | null | null | import * as React from "react";
import {
HashRouter, Route, Switch
} from "react-router-dom";
import UserLogin from "./UserLogin/index.js";
import Home from "./Home/index.js"
export default class Login extends React.Component {
render() {
return (
<HashRouter>
<Switch>
<Route path="/UserLogin" component={UserLogin} />
<Route path="/Home" component={Home} />
</Switch>
</HashRouter>
)
}
} | 28.555556 | 69 | 0.538911 |
c8a5ac6c29c725be30275f18ab88951eb70bbd38 | 877 | js | JavaScript | server/game/cards/14-HCWM/ArielleMoriah.js | PesiTheWizard/townsquare | 068cbf0b367b5f11d1fdb2f513ca46a65f88e2a2 | [
"MIT"
] | 8 | 2021-03-30T21:34:58.000Z | 2021-09-12T23:55:36.000Z | server/game/cards/14-HCWM/ArielleMoriah.js | PesiTheWizard/townsquare | 068cbf0b367b5f11d1fdb2f513ca46a65f88e2a2 | [
"MIT"
] | 771 | 2021-03-17T14:49:11.000Z | 2022-03-24T13:43:26.000Z | server/game/cards/14-HCWM/ArielleMoriah.js | PesiTheWizard/townsquare | 068cbf0b367b5f11d1fdb2f513ca46a65f88e2a2 | [
"MIT"
] | 9 | 2021-03-17T12:34:48.000Z | 2021-12-01T21:53:02.000Z | const DudeCard = require('../../dudecard.js');
const GameActions = require('../../GameActions');
/** @typedef {import('../../AbilityDsl')} AbilityDsl */
class ArielleMoriah extends DudeCard {
/** @param {AbilityDsl} ability */
setupCardAbilities() {
this.reaction({
title: 'React: Arielle Moriah',
when: {
onCardBooted: event => event.card === this && event.context &&
event.context.source && event.context.source.hasKeyword('miracle')
},
message: context =>
this.game.addMessage('{0} uses {1} to unboot her', context.player, this),
handler: context => {
this.game.resolveGameAction(GameActions.unbootCard({ card: this }), context);
}
});
}
}
ArielleMoriah.code = '22006';
module.exports = ArielleMoriah;
| 33.730769 | 93 | 0.562144 |
c8a5b193faf76395d28339d6304438cf544fe775 | 579 | js | JavaScript | app/authenticated/clusters/cluster/hosts/controller.js | vimniky/rancher-ui-v2.0-tp1 | 85fbacc1fb6b55d77f628d192b096f4e407fc00c | [
"Apache-2.0"
] | null | null | null | app/authenticated/clusters/cluster/hosts/controller.js | vimniky/rancher-ui-v2.0-tp1 | 85fbacc1fb6b55d77f628d192b096f4e407fc00c | [
"Apache-2.0"
] | null | null | null | app/authenticated/clusters/cluster/hosts/controller.js | vimniky/rancher-ui-v2.0-tp1 | 85fbacc1fb6b55d77f628d192b096f4e407fc00c | [
"Apache-2.0"
] | null | null | null | import Ember from 'ember';
import { headersCluster as hostHeaders } from 'ui/components/host-row/component';
export default Ember.Controller.extend({
prefs: Ember.inject.service(),
projects: Ember.inject.service(),
projectController: Ember.inject.controller('authenticated.project'),
sortBy: 'name',
queryParams: ['sortBy'],
expandedHosts: null,
searchText: '',
init() {
this._super(...arguments);
this.set('expandedHosts',[]);
},
headers: hostHeaders,
extraSearchFields: [
'displayUserLabelStrings',
'requireAnyLabelStrings',
],
});
| 22.269231 | 81 | 0.696028 |
c8a5c0892188731b067558cc5018c656555762b0 | 11,551 | js | JavaScript | src/debug/games/xiangqi/dark-gwangsanghui-view.js | stepney141/Dagaz | e9ba29647ad69d0de0b63b35c2617f37d27df3d5 | [
"MIT"
] | 37 | 2015-11-03T08:18:55.000Z | 2022-03-24T20:30:10.000Z | src/debug/games/xiangqi/dark-gwangsanghui-view.js | stepney141/Dagaz | e9ba29647ad69d0de0b63b35c2617f37d27df3d5 | [
"MIT"
] | 4 | 2018-01-10T14:52:47.000Z | 2021-02-08T16:46:39.000Z | src/debug/games/xiangqi/dark-gwangsanghui-view.js | stepney141/Dagaz | e9ba29647ad69d0de0b63b35c2617f37d27df3d5 | [
"MIT"
] | 4 | 2017-11-06T03:26:43.000Z | 2021-02-02T12:38:01.000Z | (function() {
Dagaz.Model.invisible = [];
Dagaz.Model.invisibleOld = [];
var checkVersion = Dagaz.Model.checkVersion;
Dagaz.Model.checkVersion = function(design, name, value) {
if (name != "dark-gwangsanghui-view") {
checkVersion(design, name, value);
}
}
var checkStep = function(design, board, player, pos, dir, n, visible) {
for (;n > 0; n--) {
var p = design.navigate(player, pos, dir);
if (p === null) return;
var piece = board.getPiece(p);
if (piece === null) {
if (player == 1) visible.push(p);
} else {
if (piece.player != player) visible.push(p);
break;
}
}
}
var checkStepZone = function(design, board, player, pos, dir, zone, visible) {
if (!design.inZone(zone, player, pos)) return;
var p = design.navigate(player, pos, dir);
if (p === null) return;
if (!design.inZone(zone, player, p)) return;
var piece = board.getPiece(p);
if (piece === null) {
if (player == 1) visible.push(p);
} else {
if (piece.player != player) visible.push(p);
}
}
var checkKnightJump = function(design, board, player, pos, o, d, visible) {
var p = design.navigate(player, pos, o);
if (p === null) return;
if (board.getPiece(p) !== null) return;
p = design.navigate(player, p, d);
if (p === null) return;
var piece = board.getPiece(p);
if (piece === null) {
if (player == 1) visible.push(p);
} else {
if (piece.player != player) visible.push(p);
}
}
var checkElephantJump = function(design, board, player, pos, o, d, visible) {
var p = design.navigate(player, pos, o);
if (p === null) return;
if (board.getPiece(p) !== null) return;
p = design.navigate(player, p, d);
if (p === null) return;
p = design.navigate(player, p, d);
if (p === null) return;
var piece = board.getPiece(p);
if (piece === null) {
if (player == 1) visible.push(p);
} else {
if (piece.player != player) visible.push(p);
}
}
var checkSlide = function(design, board, player, pos, dir, visible) {
var p = design.navigate(player, pos, dir);
while (p !== null) {
var piece = board.getPiece(p);
if (piece !== null) {
if (piece.player != player) {
visible.push(p);
}
return;
}
if (player == 1) visible.push(p);
p = design.navigate(player, p, dir);
}
}
var checkSlideZone = function(design, board, player, pos, dir, zone, visible) {
if (!design.inZone(zone, player, pos)) return;
var p = design.navigate(player, pos, dir);
while (p !== null) {
if (!design.inZone(zone, player, p)) return;
var piece = board.getPiece(p);
if (piece !== null) {
if (piece.player != player) {
visible.push(p);
}
return;
}
if (player == 1) visible.push(p);
p = design.navigate(player, p, dir);
}
}
var isCannon = function(type) {
return (type == 14) || (type == 15) || (type == 16);
}
var checkShoot = function(design, board, player, pos, dir, visible) {
var p = design.navigate(player, pos, dir);
while (p !== null) {
var piece = board.getPiece(p);
p = design.navigate(player, p, dir);
if (piece !== null) {
if (isCannon(+piece.type)) return;
break;
}
}
while (p !== null) {
var piece = board.getPiece(p);
if (piece !== null) {
if ((piece.player != player) && !isCannon(+piece.type)) {
visible.push(p);
}
return;
}
if (player == 1) visible.push(p);
p = design.navigate(player, p, dir);
}
}
var checkShootZone = function(design, board, player, pos, dir, zone, visible) {
if (!design.inZone(zone, player, pos)) return;
var p = design.navigate(player, pos, dir);
while (p !== null) {
if (!design.inZone(zone, player, p)) return;
var piece = board.getPiece(p);
p = design.navigate(player, p, dir);
if (piece !== null) {
if (isCannon(+piece.type)) return;
break;
}
}
while (p !== null) {
if (!design.inZone(zone, player, p)) return;
var piece = board.getPiece(p);
if (piece !== null) {
if ((piece.player != player) && !isCannon(+piece.type)) {
visible.push(p);
}
return;
}
if (player == 1) visible.push(p);
p = design.navigate(player, p, dir);
}
}
Dagaz.Model.Done = function(design, board) {
var visible = [];
var n = design.getDirection("n"); var w = design.getDirection("w");
var s = design.getDirection("s"); var e = design.getDirection("e");
var nw = design.getDirection("nw"); var sw = design.getDirection("sw");
var ne = design.getDirection("ne"); var se = design.getDirection("se");
_.each(design.allPositions(), function(pos) {
var piece = board.getPiece(pos);
if (piece !== null) {
if (piece.type == 0) {
checkStep(design, board, piece.player, pos, n, 1, visible);
checkStep(design, board, piece.player, pos, w, 1, visible);
checkStep(design, board, piece.player, pos, e, 1, visible);
checkStepZone(design, board, piece.player, pos, nw, 1, visible);
checkStepZone(design, board, piece.player, pos, ne, 1, visible);
}
if (piece.type == 1) {
checkStep(design, board, piece.player, pos, nw, 1, visible);
checkStep(design, board, piece.player, pos, ne, 1, visible);
checkStepZone(design, board, piece.player, pos, n, 0, visible);
checkStepZone(design, board, piece.player, pos, w, 0, visible);
checkStepZone(design, board, piece.player, pos, e, 0, visible);
}
if ((piece.type == 2) || (piece.type == 3) || (piece.type == 4) || (piece.type == 5) || (piece.type == 6) || (piece.type == 7)) {
checkStepZone(design, board, piece.player, pos, n, 0, visible);
checkStepZone(design, board, piece.player, pos, e, 0, visible);
checkStepZone(design, board, piece.player, pos, w, 0, visible);
checkStepZone(design, board, piece.player, pos, s, 0, visible);
checkStepZone(design, board, piece.player, pos, nw, 1, visible);
checkStepZone(design, board, piece.player, pos, ne, 1, visible);
checkStepZone(design, board, piece.player, pos, sw, 1, visible);
checkStepZone(design, board, piece.player, pos, se, 1, visible);
}
if ((piece.type == 8) || (piece.type == 9) || (piece.type == 10)) {
checkElephantJump(design, board, piece.player, pos, n, nw, visible);
checkElephantJump(design, board, piece.player, pos, n, ne, visible);
checkElephantJump(design, board, piece.player, pos, s, sw, visible);
checkElephantJump(design, board, piece.player, pos, s, se, visible);
checkElephantJump(design, board, piece.player, pos, w, nw, visible);
checkElephantJump(design, board, piece.player, pos, w, sw, visible);
checkElephantJump(design, board, piece.player, pos, e, ne, visible);
checkElephantJump(design, board, piece.player, pos, e, se, visible);
}
if ((piece.type == 11) || (piece.type == 12) || (piece.type == 13)) {
checkSlide(design, board, piece.player, pos, n, visible);
checkSlide(design, board, piece.player, pos, e, visible);
checkSlide(design, board, piece.player, pos, w, visible);
checkSlide(design, board, piece.player, pos, s, visible);
checkSlideZone(design, board, piece.player, pos, nw, 1, visible);
checkSlideZone(design, board, piece.player, pos, ne, 1, visible);
checkSlideZone(design, board, piece.player, pos, sw, 1, visible);
checkSlideZone(design, board, piece.player, pos, se, 1, visible);
}
if ((piece.type == 14) || (piece.type == 15) || (piece.type == 16)) {
checkShoot(design, board, piece.player, pos, n, visible);
checkShoot(design, board, piece.player, pos, e, visible);
checkShoot(design, board, piece.player, pos, w, visible);
checkShoot(design, board, piece.player, pos, s, visible);
checkShootZone(design, board, piece.player, pos, nw, 1, visible);
checkShootZone(design, board, piece.player, pos, ne, 1, visible);
checkShootZone(design, board, piece.player, pos, sw, 1, visible);
checkShootZone(design, board, piece.player, pos, se, 1, visible);
}
if ((piece.type == 17) || (piece.type == 18) || (piece.type == 19)) {
checkKnightJump(design, board, piece.player, pos, n, nw, visible);
checkKnightJump(design, board, piece.player, pos, n, ne, visible);
checkKnightJump(design, board, piece.player, pos, s, sw, visible);
checkKnightJump(design, board, piece.player, pos, s, se, visible);
checkKnightJump(design, board, piece.player, pos, w, nw, visible);
checkKnightJump(design, board, piece.player, pos, w, sw, visible);
checkKnightJump(design, board, piece.player, pos, e, ne, visible);
checkKnightJump(design, board, piece.player, pos, e, se, visible);
}
if (piece.type == 20) {
checkStep(design, board, piece.player, pos, n, 2, visible);
checkStep(design, board, piece.player, pos, e, 2, visible);
checkStep(design, board, piece.player, pos, w, 2, visible);
checkStep(design, board, piece.player, pos, s, 2, visible);
}
if (piece.type == 22) {
checkStep(design, board, piece.player, pos, nw, 1, visible);
checkStep(design, board, piece.player, pos, ne, 1, visible);
checkStep(design, board, piece.player, pos, sw, 1, visible);
checkStep(design, board, piece.player, pos, se, 1, visible);
}
}
});
Dagaz.Model.invisibleOld = [];
_.each(Dagaz.Model.invisible, function(p) {
if (board.getPiece(p) === null) {
Dagaz.Model.invisibleOld.push(p);
}
});
Dagaz.Model.invisible = [];
_.each(design.allPositions(), function(pos) {
var piece = board.getPiece(pos);
if ((piece !== null) && (_.indexOf(visible, pos) < 0)) {
Dagaz.Model.invisible.push(pos);
}
});
var ko = [];
_.each(design.allPositions(), function(pos) {
if (_.indexOf(visible, pos) >= 0) return;
var piece = board.getPiece(pos);
if ((piece !== null) && (piece.player == 1)) return;
ko.push(pos);
});
if (ko.length > 0) {
board.ko = ko;
}
}
Dagaz.View.showPiece = function(view, ctx, frame, pos, piece, model, x, y, setup) {
var isSaved = false;
if (_.indexOf(_.union(Dagaz.Model.invisible, Dagaz.Model.invisibleOld), setup.pos) >= 0) {
ctx.save();
if (model.player == 1) {
ctx.globalAlpha = 0.70;
} else {
ctx.globalAlpha = 0;
}
isSaved = true;
}
ctx.drawImage(piece.h, x, y, piece.dx, piece.dy);
if (isSaved) {
ctx.restore();
}
}
})();
| 40.388112 | 140 | 0.5519 |
c8a5c7a78d7432863058488c7a3d8ee90cf71dbb | 1,936 | js | JavaScript | server/controllers/auth.js | Mr-Robot-25/to-view-list | 15d711b9770aa1b0b7707778d6a5a842fea061c0 | [
"MIT"
] | 1 | 2022-03-28T08:36:38.000Z | 2022-03-28T08:36:38.000Z | server/controllers/auth.js | Mr-Robot-25/to-view-list | 15d711b9770aa1b0b7707778d6a5a842fea061c0 | [
"MIT"
] | null | null | null | server/controllers/auth.js | Mr-Robot-25/to-view-list | 15d711b9770aa1b0b7707778d6a5a842fea061c0 | [
"MIT"
] | null | null | null | const jwt = require('jsonwebtoken');
const bcrypt = require('bcrypt');
const User = require('../models/user');
const validator = require('validator');
const { SECRET } = require('../utils/config');
const loginUser = async (req, res) => {
const { email, password } = req.body;
const user = await User.findOne({ email });
if (!user) {
return res
.status(400)
.send({ error: 'No account with this email has been registered.' });
}
const credentialsValid = await bcrypt.compare(password, user.passwordHash);
if (!credentialsValid) {
return res.status(401).send({ error: 'Invalid credentials.' });
}
const payloadForToken = {
id: user._id,
};
const token = jwt.sign(payloadForToken, SECRET);
res
.status(200)
.send({ token, displayName: user.displayName, email: user.email });
};
const registerUser = async (req, res) => {
const { displayName, email, password } = req.body;
if (!password || password.length < 6) {
return res
.status(400)
.send({ error: 'Password needs to be atleast 6 characters long.' });
}
if (!email || !validator.isEmail(email)) {
return res.status(400).send({ error: 'Valid email address is required.' });
}
const existingUser = await User.findOne({ email });
if (existingUser) {
return res
.status(400)
.send({ error: 'An account with this email already exists.' });
}
const saltRounds = 10;
const passwordHash = await bcrypt.hash(password, saltRounds);
const user = new User({
displayName,
email,
passwordHash,
});
const savedUser = await user.save();
const payloadForToken = {
id: savedUser._id,
};
const token = jwt.sign(payloadForToken, SECRET);
res.status(200).send({
token,
displayName: savedUser.displayName,
email: savedUser.email,
});
res.status(201).json({
success:savedUser
})
};
module.exports = { loginUser, registerUser };
| 23.325301 | 79 | 0.640496 |
c8a63c79f4ef914bcb85737b7a1ffc468d92362e | 7,694 | js | JavaScript | src/components/admin/newTrainer/newtrainer.js | jamshithp/lcubes-frontend | 45e997eda65cfd55d901307829eb18d711af2e42 | [
"MIT"
] | null | null | null | src/components/admin/newTrainer/newtrainer.js | jamshithp/lcubes-frontend | 45e997eda65cfd55d901307829eb18d711af2e42 | [
"MIT"
] | null | null | null | src/components/admin/newTrainer/newtrainer.js | jamshithp/lcubes-frontend | 45e997eda65cfd55d901307829eb18d711af2e42 | [
"MIT"
] | null | null | null | import React, { Component } from 'react'
import './newtrainer.css';
import { Form } from '@ant-design/compatible';
import { Input, Button, Select } from 'antd';
import {SecurePost} from '../../../services/axiosCall';
import apis from '../../../services/Apis';
import { connect } from 'react-redux';
import {
ChangeTrainerConfirmDirty,
ChangeTrainerModalState,
ChangeTrainerTableData
} from '../../../actions/adminAction';
import Alert from '../../../components/common/alert';
const { Option } = Select;
class NewTrainer extends Component {
compareToFirstPassword = (rule, value, callback) => {
const form = this.props.form;
if (value && value !== form.getFieldValue('password')) {
callback('passwords are not same !');
} else {
callback();
}
};
validateToNextPassword = (rule, value, callback) => {
const form = this.props.form;
if (value && this.props.admin.TrainerconfirmDirty) {
form.validateFields(['confirm'], { force: true });
}
callback();
};
handleSubmit = e => {
e.preventDefault();
this.props.form.validateFieldsAndScroll((err, values) => {
if (!err) {
SecurePost({
url : `${apis.CREATE_TRAINER}`,
data : {
_id : this.props.admin.trainerId,
name :values.name,
password : values.password,
emailid : values.emailid,
contact : values.prefix+values.contact
}
}).then((response)=>{
if(response.data.success){
this.props.ChangeTrainerModalState(false,null,'Register');
Alert('success','Success',response.data.message);
this.props.ChangeTrainerTableData();
}
else{
this.props.ChangeTrainerModalState(false,null,'Register');
return Alert('warning','Warning!',response.data.message);
}
}).catch((error)=>{
this.props.ChangeTrainerModalState(false,null,'Register');
return Alert('error','Error!','Server Error');
})
}
});
};
render() {
const { getFieldDecorator } = this.props.form;
const prefixSelector = getFieldDecorator('prefix', {
initialValue: this.props.admin.trainerdetails.prefix || '+91',
rules: [{ required: true, message: 'Please enter contact no prefix' }],
})(
<Select style={{ width: 70 }}>
<Option value="+91">+91</Option>
</Select>,
);
return (
<div className="register-trainer-form">
<div className="register-trainer-form-body">
<Form onSubmit={this.handleSubmit}>
<Form.Item label="Name" hasFeedback className="input-admin-trainer">
{getFieldDecorator('name', {
initialValue : this.props.admin.trainerdetails.name,
rules: [{ required: true, message: 'Please input your name!', whitespace: true }],
})(<Input />)}
</Form.Item>
{ !this.props.admin.trainerId ? <Form.Item label="E-mail" hasFeedback className="input-admin-trainer">
{getFieldDecorator('emailid', {
initialValue : this.props.admin.trainerdetails.emailid,
rules: [
{
type: 'email',
message: 'The input is not valid E-mail!',
},
{
required: true,
message: 'Please input your E-mail!',
},
],
})(<Input />)}
</Form.Item> : null }
<Form.Item label="Phone Number" className="input-admin-trainer">
{getFieldDecorator('contact', {
initialValue : this.props.admin.trainerdetails.contact,
rules: [
{
required: true,
message: 'Please input your phone number!'
},
{
len:10,
message:'Contact number must be 10 digit long'
}],
})(<Input addonBefore={prefixSelector} min={10} max={10} />)}
</Form.Item>
{ !this.props.admin.trainerId ? <div><Form.Item label="Password" hasFeedback className="input-admin-trainer">
{getFieldDecorator('password', {
initialValue : this.props.admin.trainerdetails.password,
rules: [
{
required: true,
message: 'Please input your password!',
},
{
validator: this.validateToNextPassword,
},
],
})(<Input.Password />)}
</Form.Item>
<Form.Item label="Confirm Password" hasFeedback className="input-admin-trainer">
{getFieldDecorator('confirm', {
initialValue : this.props.admin.trainerdetails.confirmpassword,
rules: [
{
required: true,
message: 'Please confirm your password!',
},
{
validator: this.compareToFirstPassword,
},
],
})(<Input.Password onBlur={this.handleConfirmBlur} />)}
</Form.Item></div> : null}
<Form.Item>
<Button type="primary" htmlType="submit" block>
{this.props.admin.Trainermode}
</Button>
</Form.Item>
</Form>
</div>
</div>
)
}
}
const mapStateToProps = state => ({
admin : state.admin
});
const NewTrainerForm = Form.create({ name: 'register' })(NewTrainer);
export default connect(mapStateToProps,{
ChangeTrainerConfirmDirty,
ChangeTrainerModalState,
ChangeTrainerTableData
})(NewTrainerForm);
| 43.965714 | 133 | 0.403041 |
c8a6427344c2f39119e8eea54e16c47b096ed231 | 647 | js | JavaScript | test/reactor/expire-test.js | oroce/godot | fc2397c8282ad97de17a807b2ea4498a0365e77e | [
"MIT"
] | 62 | 2015-01-14T07:34:41.000Z | 2021-07-14T13:52:59.000Z | test/reactor/expire-test.js | oroce/godot | fc2397c8282ad97de17a807b2ea4498a0365e77e | [
"MIT"
] | 2 | 2017-12-03T09:57:54.000Z | 2020-12-20T19:04:51.000Z | test/reactor/expire-test.js | nodejitsu/godot | fc2397c8282ad97de17a807b2ea4498a0365e77e | [
"MIT"
] | 16 | 2015-02-26T22:17:07.000Z | 2021-01-10T19:49:11.000Z | /*
* expire-test.js: Tests for the Expire reactor stream.
*
* (C) 2012, Nodejitsu Inc.
*
*/
var assert = require('assert'),
vows = require('vows'),
godot = require('../../lib/godot'),
macros = require('../macros').reactor;
vows.describe('godot/reactor/expire').addBatch({
"Godot aggregate": {
"ttl 100ms": {
"sent 200ms": macros.shouldExpireSync(
godot
.reactor()
.expire(100),
'health',
200
),
"sent 50ms": macros.shouldNotExpireSync(
godot
.reactor()
.expire(100),
'health',
50
)
}
}
}).export(module); | 20.21875 | 55 | 0.520866 |
c8a67dc86cbecbd58c3b9b2961bc1b713f87d025 | 1,620 | js | JavaScript | src/auro-demo.js | AlaskaAirlines/auroCore-demo | 3beeee188521cdd219ad53d2c68fda497ab3d654 | [
"Apache-2.0"
] | null | null | null | src/auro-demo.js | AlaskaAirlines/auroCore-demo | 3beeee188521cdd219ad53d2c68fda497ab3d654 | [
"Apache-2.0"
] | null | null | null | src/auro-demo.js | AlaskaAirlines/auroCore-demo | 3beeee188521cdd219ad53d2c68fda497ab3d654 | [
"Apache-2.0"
] | null | null | null | // Copyright (c) 2020 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
// See LICENSE in the project root for license information.
// ---------------------------------------------------------------------
// If use litElement base class
import { LitElement, html, css } from "lit-element";
// If using auroElement base class
// See instructions for importing auroElement base class https://git.io/JULq4
// import { html, css } from "lit-element";
// import AuroElement from '@alaskaairux/orion-web-core-style-sheets/dist/auroElement/auroElement';
// Import touch detection lib
import "focus-visible/dist/focus-visible.min.js";
import styleCss from "./style-css.js";
// See https://git.io/JJ6SJ for "How to document your components using JSDoc"
/**
* auro-demo provides users a way to ...
*
* @attr {String} cssClass - Applies designated CSS class to DOM element.
*/
// build the component class
class AuroDemo extends LitElement {
// constructor() {
// super();
// }
// function to define props used within the scope of this component
static get properties() {
return {
// ...super.properties,
cssClass: { type: String }
};
}
static get styles() {
return css`
${styleCss}
`;
}
// function that renders the HTML and CSS into the scope of the component
render() {
return html`
<div class=${this.cssClass}>
<slot></slot>
</div>
`;
}
}
/* istanbul ignore else */
// define the name of the custom component
if (!customElements.get("auro-demo")) {
customElements.define("auro-demo", AuroDemo);
}
| 27 | 99 | 0.642593 |
c8a736b810e25f4c7c24fa5667e1780458ffdb7a | 7,399 | js | JavaScript | src/App.js | koyuspace/gemproxy | c5f498fc69fd729c8f397b81d3e388ca2dad331b | [
"MIT"
] | 6 | 2021-06-20T14:41:00.000Z | 2022-01-14T15:47:59.000Z | src/App.js | koyuspace/gemproxy | c5f498fc69fd729c8f397b81d3e388ca2dad331b | [
"MIT"
] | null | null | null | src/App.js | koyuspace/gemproxy | c5f498fc69fd729c8f397b81d3e388ca2dad331b | [
"MIT"
] | 1 | 2021-11-21T01:54:34.000Z | 2021-11-21T01:54:34.000Z | import React from 'react';
import './App.css';
import config from './config.json';
import $ from 'jquery';
import twemoji from 'twemoji';
const parse = require('gemini-to-html/parse')
const render = require('gemini-to-html/render')
export default class App extends React.Component {
componentDidMount() {
//Git info
$.get(config.backend+"api/v1/gitid", function(data) {
$("#git-id").html(data);
});
$.ajax({
url: config.backend+"api/v1/check",
success: function() {
$("#gitid").show();
$("#proxiedfrom").show();
$("#content").removeAttr("style");
$("#header").show();
},
error: function() {
$("#content").html("<h1>Error!</h1>\n<p>The backend server is currently unavailable. Please check back later!</p>\n<p><img src=\"/cat.jpg\" height=\"300\"></p>");
$("#content").attr("style", "text-align:center;");
$("#gitid").hide();
$("#proxiedfrom").hide();
$("#header").hide();
},
timeout: 30000
});
//Current Gemini URL
var gemurl = window.location.href.split("/")[3];
var slashcount = window.location.href.split("/").length - 1;
if (slashcount > 2) {
$("#addressbar").attr("value", "gemini:/"+window.location.href.replaceAll(window.location.protocol+"//"+window.location.host, ""));
} else {
$("#addressbar").attr("value", "gemini://geminispace.info/"+gemurl);
}
if (!$("#addressbar").val().includes(".")) {
$("#addressbar").val($("#addressbar").val().replaceAll("gemini://", "gemini://geminispace.info/"));
}
if ($("#addressbar").val().split("/").length - 1 < 3) {
window.location.href = window.location.href+"/";
}
$("#gemurl").attr("href", $("#addressbar").val());
$("#gemurl").html($("#addressbar").val());
if (!$("#addressbar").val().replaceAll("gemini://", "").includes(".jpg") && !$("#addressbar").val().replaceAll("gemini://", "").includes(".png")) {
$.get(config.backend+"api/v1/get/"+$("#addressbar").val().replaceAll("gemini://", "").split("/")[0]+"/favicon.txt", function(data) {
$("#gitid").show();
$("#proxiedfrom").show();
$("#content").removeAttr("style");
if (!data.includes("# Error ")) {
$("#favicon").html(data);
$("#favicon").html(twemoji.parse($("#favicon").html()));
}
});
$.get(config.backend+"api/v1/get/"+$("#addressbar").val().replaceAll("gemini://", "").replaceAll("?", "$"), function(data) {
if (!data.startsWith("$$$input$$$")) {
var parsed = parse(data);
var content = "";
if ($("#addressbar").val().replaceAll("gemini://", "").split("/")[0] !== "geminispace.info") {
content = render(parsed).replaceAll("href=\"/", "href=\"");
} else {
content = render(parsed);
}
//Open external links in new tab
content = content.replaceAll("href=\"https://", "target=\"_blank\" href=\"https://");
//Output page
$("#content").html(content);
//Parse URLs
$('#content a[href*="gemini://"]').each(function() {
$(this).attr("href", $(this).attr("href").replaceAll("gemini://", "/"))
});
//Display inline-images
$('a[href*=".jpg"]').each(function() {
var styles = "";
if ($(this).html().includes("_right")) {
styles = "float:right;padding:5px;";
}
var imguri = new URL($(this).attr("href"), config.backend+"api/v1/get/"+$("#addressbar").val().replaceAll("gemini://", "").replaceAll("?", "$")).href;
if (!imguri.includes("/api/v1/get/")) {
imguri = imguri.replaceAll(config.backend, config.backend+"api/v1/get/");
}
$(this).html("<img src=\""+imguri+"\" style=\""+styles+"\" width=\"300\">");
$(this).attr("target", "_blank");
$(this).attr("href", imguri);
$(this).attr("style", "border:0;");
});
$('a[href*=".png"]').each(function() {
var styles = "";
if ($(this).html().includes("_right")) {
styles = "float:right;padding:5px;";
}
var imguri = new URL($(this).attr("href"), config.backend+"api/v1/get/"+$("#addressbar").val().replaceAll("gemini://", "").replaceAll("?", "$")).href;
if (!imguri.includes("/api/v1/get/")) {
imguri = imguri.replaceAll(config.backend, config.backend+"api/v1/get/");
}
$(this).html("<img src=\""+imguri+"\" style=\""+styles+"\" width=\"300\">");
$(this).attr("target", "_blank");
$(this).attr("href", imguri);
$(this).attr("style", "border:0;");
});
} else {
$.get(config.backend+"api/v1/get/"+$("#addressbar").val().replaceAll("gemini://", "").replaceAll("?", "$"), function(cnt) {
$.get("/input.html", function(data) {
$("#content").html(data.replaceAll("%title%", cnt.replaceAll("$$$input$$$ ", "").replaceAll("$$$input$$$", "")));
$("#inputtext").focus();
$("#inputtext").keypress((e) => {
if (e.which === 13) {
if ($("#inputtext").val().replaceAll(" ", "") !== "") {
window.location.href = window.location.href+"?"+$("#inputtext").val();
e.preventDefault();
}
}
});
});
});
}
$("#content").html(twemoji.parse($("#content").html()));
if ($("h1").html() !== undefined) {
document.title = $("h1").html()+" - GemProxy";
}
});
} else {
$("html").html("<img src=\""+config.backend+"api/v1/get/"+$("#addressbar").val().replaceAll("gemini://", "").replaceAll("?", "$")+"\">");
}
//Address bar handler
$("#addressbar").keypress((e) => {
if (e.which === 13) {
if ($("#addressbar").val().replaceAll(" ", "") !== "") {
var newlocation = "/"+$("#addressbar").val().replace("gemini://", "")+"/";
window.location.href = newlocation.replaceAll("//", "/");
e.preventDefault();
}
}
})
}
render() {
return (
<div className="App">
<div id="header">
<p><a href=".." id="oneup" style={{marginLeft: "20px"}}>↑ One up</a> | <a href="/search" id="search"><i className="fa fa-search" aria-hidden="true"></i> Search</a></p>
<div id="proxyui">
<span id="favicon"></span><input type="text" id="addressbar" style={{width: "100%"}} autoComplete="off" />
</div>
</div>
<div id="content">
Loading...
</div>
<hr />
<p id="proxiedfrom">♊️ Proxied content from <a id="gemurl" href="gemini://geminispace.info">gemini://geminispace.info</a></p>
<p>GemProxy v{process.env.REACT_APP_VERSION} <span id="gitid">(<span id="git-id"></span>) </span>| <a href="https:/github.com/koyuspace/gemproxy" target="_blank" rel="noreferrer"><i className="fa fa-github" aria-hidden="true"></i> Source code</a> | <a href="https://creators.mstdn.social/koyuspace" target="_blank" rel="noreferrer"><i className="fa fa-heart" aria-hidden="true"></i> Donate</a></p>
</div>
);
}
}
| 45.956522 | 405 | 0.4975 |
c8a9eca5275d4453d8b5e84055ba723f4172cd88 | 5,327 | js | JavaScript | argus/apps/camera/docs/doxygen/html/search/functions_69.js | gwli/JetPack_tegra_multimedia_api_sample | 554e27757a707515f8505006bac2ef7f37c42e44 | [
"Unlicense"
] | 2 | 2020-01-09T21:20:13.000Z | 2020-05-26T11:22:02.000Z | argus/apps/camera/docs/doxygen/html/search/functions_69.js | gwli/JetPack_tegra_multimedia_api_sample | 554e27757a707515f8505006bac2ef7f37c42e44 | [
"Unlicense"
] | null | null | null | argus/apps/camera/docs/doxygen/html/search/functions_69.js | gwli/JetPack_tegra_multimedia_api_sample | 554e27757a707515f8505006bac2ef7f37c42e44 | [
"Unlicense"
] | 1 | 2020-05-20T02:33:52.000Z | 2020-05-20T02:33:52.000Z | var searchData=
[
['iappmodule',['IAppModule',['../classArgusSamples_1_1IAppModule.html#a0c18a8a792e1da3ea6f9a8b7592d2a7a',1,'ArgusSamples::IAppModule']]],
['infinite',['infinite',['../classArgusSamples_1_1TimeValue.html#a219468b789b81e21580e641ada39e800',1,'ArgusSamples::TimeValue']]],
['info',['info',['../classArgusSamples_1_1AppModuleGeneric.html#a3e29a9691571ae9ff7476b9ecfbe180b',1,'ArgusSamples::AppModuleGeneric']]],
['initialize',['initialize',['../classArgusSamples_1_1ConditionVariable.html#a5f896a8d46016ebd9b0ea22af70006a2',1,'ArgusSamples::ConditionVariable::initialize()'],['../classArgusSamples_1_1Mutex.html#ab8d8b96aa573b87267a33926f995b54e',1,'ArgusSamples::Mutex::initialize()'],['../classArgusSamples_1_1Dispatcher.html#a96489be07c841a020c8298e869aea26f',1,'ArgusSamples::Dispatcher::initialize()'],['../classArgusSamples_1_1ITask.html#a667493a1aae5fcd54cde4c447e43d4f5',1,'ArgusSamples::ITask::initialize()'],['../classArgusSamples_1_1PerfTracker.html#a65422ffb2aecec8aef0cbf5b16352363',1,'ArgusSamples::PerfTracker::initialize()'],['../classArgusSamples_1_1GalleryItem.html#a571062797f738175e71cff9b76d0974d',1,'ArgusSamples::GalleryItem::initialize()'],['../classArgusSamples_1_1GalleryItemImage.html#a6787bec0a6c9d5a58340b4cf1780df20',1,'ArgusSamples::GalleryItemImage::initialize()'],['../classArgusSamples_1_1GalleryItemVideo.html#a8e249ec7030e8092658248e4683ea5c5',1,'ArgusSamples::GalleryItemVideo::initialize()'],['../classArgusSamples_1_1GalleryThread.html#a1186576444659a43c92b50fca0d79b5e',1,'ArgusSamples::GalleryThread::initialize()'],['../classArgusSamples_1_1TaskGallery.html#a429be15094915506dc792e119a9ef2a8',1,'ArgusSamples::TaskGallery::initialize()'],['../classArgusSamples_1_1TaskMultiExposure.html#aaf5d9c41f374d63864658ed91994ff5a',1,'ArgusSamples::TaskMultiExposure::initialize()'],['../classArgusSamples_1_1TaskMultiExposure_1_1ExpLevel.html#ae666afa543c453341ceaeeeb6eac4260',1,'ArgusSamples::TaskMultiExposure::ExpLevel::initialize()'],['../classArgusSamples_1_1TaskMultiSession.html#ac4a5c60483701597e3993de571eeb8f3',1,'ArgusSamples::TaskMultiSession::initialize()'],['../classArgusSamples_1_1TaskMultiSession_1_1Session.html#aeedeeeac75287de1f2dcaa5602965d1a',1,'ArgusSamples::TaskMultiSession::Session::initialize()'],['../classArgusSamples_1_1TaskStillCapture.html#ade81b0f85ee819d5f3e0581c7b5b64d9',1,'ArgusSamples::TaskStillCapture::initialize()'],['../classArgusSamples_1_1TaskVideoRecord.html#a721db3422a0f4a257c2fb9edf6cdfa08',1,'ArgusSamples::TaskVideoRecord::initialize()'],['../classArgusSamples_1_1Composer.html#a7a9d1d85d583c069251b962dd185539b',1,'ArgusSamples::Composer::initialize()'],['../classArgusSamples_1_1StreamConsumer.html#aab6b96e7569bfadff2f2641aa163dca4',1,'ArgusSamples::StreamConsumer::initialize()'],['../classArgusSamples_1_1CameraApp.html#a2a241abb2f5dae8e4b36df963412054a',1,'ArgusSamples::CameraApp::initialize()'],['../classArgusSamples_1_1AppModuleCapture.html#a72759a9523f523a5492b21bcb2e9d5ec',1,'ArgusSamples::AppModuleCapture::initialize()'],['../classArgusSamples_1_1App.html#a30110fcd3c585e5ed7fea8548bb55b3f',1,'ArgusSamples::App::initialize()'],['../classArgusSamples_1_1AppModuleGeneric.html#a1686ebc3219c3a0870003714b571d0b5',1,'ArgusSamples::AppModuleGeneric::initialize()'],['../classArgusSamples_1_1IAppModule.html#ad30cfdacb8ef6de9a89055a54035f183',1,'ArgusSamples::IAppModule::initialize()'],['../classArgusSamples_1_1AppModuleGallery.html#a298558396682f8eab6d15275d59884fc',1,'ArgusSamples::AppModuleGallery::initialize()'],['../classArgusSamples_1_1AppModuleMultiExposure.html#acba80f2522a340c0bab01b25ee93bcbd',1,'ArgusSamples::AppModuleMultiExposure::initialize()'],['../classArgusSamples_1_1AppModuleMultiSession.html#a6e52012a8e1422e82a656b545d59db9b',1,'ArgusSamples::AppModuleMultiSession::initialize()'],['../classArgusSamples_1_1AppModuleVideo.html#a05eb1f40836d5d9886fdbc08dd0bcfc7',1,'ArgusSamples::AppModuleVideo::initialize()']]],
['iseglstream',['isEGLStream',['../classArgusSamples_1_1StreamConsumer.html#aaa78fdc9618d0baf29aa710ea0e512c5',1,'ArgusSamples::StreamConsumer']]],
['isinterface',['isInterface',['../classArgusSamples_1_1IObserverForInterface.html#af3995c20e07afeaa717a1511ac217305',1,'ArgusSamples::IObserverForInterface::isInterface()'],['../classArgusSamples_1_1DenoiseSettingsObserver.html#aedc546b86ce9a922ebab962ae5b3accc',1,'ArgusSamples::DenoiseSettingsObserver::isInterface()'],['../classArgusSamples_1_1EdgeEnhanceSettingsObserver.html#a3d37cc771f11cb0e4a2d38fcac7083d9',1,'ArgusSamples::EdgeEnhanceSettingsObserver::isInterface()'],['../classArgusSamples_1_1VideoStabilizationSettingsObserver.html#abd71f755cb0c11ee42b6d2c0e73a21f1',1,'ArgusSamples::VideoStabilizationSettingsObserver::isInterface()'],['../classArgusSamples_1_1SourceSettingsObserver.html#a0a640d6d498f7d3ef37731caa8524404',1,'ArgusSamples::SourceSettingsObserver::isInterface()'],['../classArgusSamples_1_1AutoControlSettingsObserver.html#a621be80058fa09c5e5c68be736b94c10',1,'ArgusSamples::AutoControlSettingsObserver::isInterface()'],['../classArgusSamples_1_1DeFogSettingsObserver.html#a319b81d2943beb1a980f694745daaa8f',1,'ArgusSamples::DeFogSettingsObserver::isInterface()']]],
['itask',['ITask',['../classArgusSamples_1_1ITask.html#a6073cd9834619b5265eb81aac0fc0a90',1,'ArgusSamples::ITask']]]
];
| 484.272727 | 3,523 | 0.838183 |
c8aa377c62e5779fd3ca52fb9577976bb37adfef | 2,018 | js | JavaScript | lib/redux-disbatch.spec.js | b2io/redux-disbatch | d5a6dbfe47a95538f86def9b454b389424d32cd2 | [
"MIT"
] | null | null | null | lib/redux-disbatch.spec.js | b2io/redux-disbatch | d5a6dbfe47a95538f86def9b454b389424d32cd2 | [
"MIT"
] | null | null | null | lib/redux-disbatch.spec.js | b2io/redux-disbatch | d5a6dbfe47a95538f86def9b454b389424d32cd2 | [
"MIT"
] | null | null | null | const { applyMiddlewareWithBatching } = require("./redux-disbatch");
const { createStore } = require("redux");
const add = (n, meta = false) => ({ meta, payload: n, type: "ADD" });
const noop = () => ({ type: "@@SKIP" });
const reject = () => ({ type: "@@REJECT" });
const noopMiddleware = store => next => action =>
action.type === "@@SKIP" ? null : next(action);
const rejectMiddleware = store => next => action => {
if (action.type === "@@REJECT") throw new Error("@@REJECT");
return next(action);
};
const reducer = (state = 0, action) =>
action.type === "ADD" ? state + action.payload : state;
const configureStore = () =>
createStore(
reducer,
applyMiddlewareWithBatching(noopMiddleware, rejectMiddleware)
);
test("should dispatch multiple actions notifying subscribers once", () => {
const listener = jest.fn();
const store = configureStore();
store.subscribe(listener);
store.dispatch([add(1), add(2), add(3)]);
expect(listener).toHaveBeenCalledTimes(1);
expect(store.getState()).toEqual(6);
});
test("should not affect normal actions", () => {
const listener = jest.fn();
const store = configureStore();
store.subscribe(listener);
store.dispatch(add(1));
store.dispatch(add(2));
store.dispatch(add(3));
expect(listener).toHaveBeenCalledTimes(3);
expect(store.getState()).toEqual(6);
});
test("should work with other middleware", () => {
const listener = jest.fn();
const store = configureStore();
store.subscribe(listener);
store.dispatch([add(1), noop(), add(2), add(3)]);
store.dispatch(noop());
expect(listener).toHaveBeenCalledTimes(1);
expect(store.getState()).toEqual(6);
});
test("should abort batching if dispatch throws", () => {
const listener = jest.fn();
const store = configureStore();
store.subscribe(listener);
expect(() => store.dispatch([add(1), add(2), reject(), add(3)])).toThrow(
new Error("@@REJECT")
);
expect(listener).toHaveBeenCalledTimes(1);
expect(store.getState()).toEqual(3);
});
| 26.552632 | 75 | 0.650644 |
c8ab1281bae8a2b5f19ad08ac3f0048fd80c12ff | 3,903 | js | JavaScript | static/core/input.js | jadonk/blockly-bonescript | e2bf9c8b93863c4ac15b66c16b97c83898cbee39 | [
"Apache-2.0"
] | 5 | 2015-01-15T22:13:59.000Z | 2019-03-03T15:06:55.000Z | core/input.js | velniukas/blockly.cascading.jruby | 91f14bdc9b7d1add2b7dc4f3b38ee6024c7a2f85 | [
"Apache-2.0"
] | null | null | null | core/input.js | velniukas/blockly.cascading.jruby | 91f14bdc9b7d1add2b7dc4f3b38ee6024c7a2f85 | [
"Apache-2.0"
] | 3 | 2016-07-08T13:06:50.000Z | 2019-07-12T00:02:20.000Z | /**
* Visual Blocks Editor
*
* Copyright 2012 Google Inc.
* http://blockly.googlecode.com/
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @fileoverview Object representing an input (value, statement, or dummy).
* @author fraser@google.com (Neil Fraser)
*/
'use strict';
goog.provide('Blockly.Input');
// TODO(scr): Fix circular dependencies
// goog.require('Blockly.Block');
goog.require('Blockly.Connection');
goog.require('Blockly.FieldLabel');
/**
* Class for an input with an optional title.
* @param {number} type The type of the input.
* @param {string} name Language-neutral identifier which may used to find this
* input again.
* @param {!Blockly.Block} block The block containing this input.
* @param {Blockly.Connection} connection Optional connection for this input.
* @constructor
*/
Blockly.Input = function(type, name, block, connection) {
this.type = type;
this.name = name;
this.sourceBlock_ = block;
this.connection = connection;
this.titleRow = [];
this.align = Blockly.ALIGN_LEFT;
};
/**
* Add an item to the end of the input's title row.
* @param {*} title Something to add as a title.
* @param {string} opt_name Language-neutral identifier which may used to find
* this title again. Should be unique to the host block.
* @return {!Blockly.Input} The input being append to (to allow chaining).
*/
Blockly.Input.prototype.appendTitle = function(title, opt_name) {
// Null or undefined generates no title.
if (!goog.isDefAndNotNull(title)) {
return this;
}
// Generate a FieldLabel when given a plain text title.
if (goog.isString(title)) {
title = new Blockly.FieldLabel(/** @type {string} */ (title));
}
if (this.sourceBlock_.svg_) {
title.init(this.sourceBlock_);
}
title.name = opt_name;
// Add the title to the title row.
this.titleRow.push(title);
if (this.sourceBlock_.rendered) {
this.sourceBlock_.render();
// Adding a title will cause the block to change shape.
this.sourceBlock_.bumpNeighbours_();
}
return this;
};
/**
* Change a connection's compatibility.
* @param {*} check Compatible value type or list of value types.
* Null if all types are compatible.
* @return {!Blockly.Input} The input being modified (to allow chaining).
*/
Blockly.Input.prototype.setCheck = function(check) {
if (!this.connection) {
throw 'This input does not have a connection.';
}
this.connection.setCheck(check);
return this;
};
/**
* Change the alignment of the connection's title(s).
* @param {number} align One of Blockly.ALIGN_LEFT, ALIGN_CENTRE, ALIGN_RIGHT.
* In RTL mode directions are reversed, and ALIGN_RIGHT aligns to the left.
* @return {!Blockly.Input} The input being modified (to allow chaining).
*/
Blockly.Input.prototype.setAlign = function(align) {
this.align = align;
if (this.sourceBlock_.rendered) {
this.sourceBlock_.render();
}
return this;
};
/**
* Initialize the titles on this input.
*/
Blockly.Input.prototype.init = function() {
for (var x = 0; x < this.titleRow.length; x++) {
this.titleRow[x].init(this.sourceBlock_);
}
};
/**
* Sever all links to this input.
*/
Blockly.Input.prototype.dispose = function() {
for (var i = 0, title; title = this.titleRow[i]; i++) {
title.dispose();
}
if (this.connection) {
this.connection.dispose();
}
this.sourceBlock_ = null;
};
| 29.568182 | 79 | 0.694594 |
c8ab2c64902fc51773514918c884d32905c00a93 | 156 | js | JavaScript | src/store/backup.js | AkbarMaliki/lightjourney | 34892398f202060f6221a9f91438ee6c9f3c15fc | [
"MIT"
] | null | null | null | src/store/backup.js | AkbarMaliki/lightjourney | 34892398f202060f6221a9f91438ee6c9f3c15fc | [
"MIT"
] | 1 | 2021-01-06T07:27:42.000Z | 2021-01-06T07:27:42.000Z | src/store/backup.js | AkbarMaliki/lightjourney | 34892398f202060f6221a9f91438ee6c9f3c15fc | [
"MIT"
] | null | null | null | import axios from 'axios'
export default {
namespaced: true,
state: {
post: 'ini dari modules'
},
getters: {},
mutations: {},
actions: {}
}
| 14.181818 | 28 | 0.596154 |
c8abacaf447cf5b011cfe2039b861cf41e65746c | 214 | js | JavaScript | routes/index.js | swarghade/shubham-portfolio | c6d0553ea40e1bc6e8e8c8d3e5559aa1be596c99 | [
"MIT"
] | null | null | null | routes/index.js | swarghade/shubham-portfolio | c6d0553ea40e1bc6e8e8c8d3e5559aa1be596c99 | [
"MIT"
] | null | null | null | routes/index.js | swarghade/shubham-portfolio | c6d0553ea40e1bc6e8e8c8d3e5559aa1be596c99 | [
"MIT"
] | null | null | null |
const constructorMethod = (app) => {
app.get('/', (req,res) => {
res.render('layouts/main');
});
app.use('*', (req, res) => {
res.sendStatus(404);
});
};
module.exports = constructorMethod; | 14.266667 | 36 | 0.537383 |
c8ac9ad4a745d33282525048236d87265505ed8a | 2,473 | js | JavaScript | assets/js/quicktour.js | mizterjones/slicklightbox | 55b03344ecfb5f63beedc9211dcefe3ae788dd84 | [
"MIT"
] | null | null | null | assets/js/quicktour.js | mizterjones/slicklightbox | 55b03344ecfb5f63beedc9211dcefe3ae788dd84 | [
"MIT"
] | null | null | null | assets/js/quicktour.js | mizterjones/slicklightbox | 55b03344ecfb5f63beedc9211dcefe3ae788dd84 | [
"MIT"
] | null | null | null | (($) => {
$(() => {
// Slick slider lightbox wrapper
$('#quick-tour').slickLightbox({
closeOnBackdropClick: false,
itemSelector: 'ul li',
slick: {
appendArrows: '.slick-list',
dots: true,
fade: true,
speed: 500,
infinite: true,
slidesToShow: 1,
slidesToScroll: 1,
mobileFirst: true
}
});
// Open the quicktour
$('#open-quick-tour').click((e) => {
e.preventDefault();
$('#quick-tour ul li:first-child').trigger('click');
let slider = $('#quick-tour')[0].slickLightbox.slick,
items = $('#quick-tour-guide .columns');
// Quick tour legend
slider.on('beforeChange', function(event, slick, currentSlide, nextSlide){
if (slider[0].clientWidth <= 768) {
$('#quick-tour-guide').hide();
return false;
}
$('#quick-tour-guide').show();
$(items[currentSlide - 1]).find('.img-wrapper').removeClass('active');
$(items[nextSlide - 1]).find('.img-wrapper').addClass('active');
});
// Bind click event to legend
$('#quick-tour-guide li').bind('click', function(e) {
var slideIdClass = e.currentTarget.classList[4],
slideId = slideIdClass.substr(slideIdClass.length - 1);
$('#quick-tour')[0].slickLightbox.slick.slick('goTo', parseInt(slideId));
});
// Hides or shows arrows after slide change
slider.on('afterChange', function(event, slick, currentSlide, nextSlide){
if (currentSlide == 0) {
$('.slick-prev').hide();
$('.slick-next').fadeIn('fast');
} else if (currentSlide == 1) {
$('.slick-next').fadeIn('fast');
$('.slick-prev').removeClass('active').hide()
} else if (currentSlide == 6) {
$('.slick-next').hide();
$('.slick-prev').addClass('active').fadeIn('fast');
} else {
$('.slick-next').fadeIn('fast');
$('.slick-prev').addClass('active').fadeIn('fast');
}
});
});
});
})(jQuery); | 42.637931 | 89 | 0.446017 |
c8ad25dcee8d8b3005749f90dc8ede3150f415e9 | 107 | js | JavaScript | src/MaterialUI/SVGIcon/Icon/FormatListBulletedOutlined.js | matoruru/purescript-react-material-ui-svgicon | e5ea02a5ef5165f5756bea9d21cf056c5f16e635 | [
"MIT"
] | null | null | null | src/MaterialUI/SVGIcon/Icon/FormatListBulletedOutlined.js | matoruru/purescript-react-material-ui-svgicon | e5ea02a5ef5165f5756bea9d21cf056c5f16e635 | [
"MIT"
] | 2 | 2019-07-15T09:55:03.000Z | 2019-07-15T10:56:16.000Z | src/MaterialUI/SVGIcon/Icon/FormatListBulletedOutlined.js | matoruru/purescript-react-material-ui-svgicon | e5ea02a5ef5165f5756bea9d21cf056c5f16e635 | [
"MIT"
] | null | null | null | exports.formatListBulletedOutlinedImpl = require('@material-ui/icons/FormatListBulletedOutlined').default;
| 53.5 | 106 | 0.859813 |
c8ad2ba7942a0f63dac73a0f5caff680b8bc7dc8 | 1,133 | js | JavaScript | js/grunt-barm/commands/import.js | iseeyou911/JS-HTML-P-GP | 515fc20c1fe62f8475c1ef84e34dc00b536e6c0b | [
"MIT"
] | null | null | null | js/grunt-barm/commands/import.js | iseeyou911/JS-HTML-P-GP | 515fc20c1fe62f8475c1ef84e34dc00b536e6c0b | [
"MIT"
] | null | null | null | js/grunt-barm/commands/import.js | iseeyou911/JS-HTML-P-GP | 515fc20c1fe62f8475c1ef84e34dc00b536e6c0b | [
"MIT"
] | null | null | null | /**
* Created by Timofey Novitskiy on 24.11.2015.
*/
var grunt = require('grunt');
module.exports = (function () {
function _import(line, patternO, ml, processor) {
var matcher = line.match(patternO),
commands, condition, file, oldText, type, result;
if (matcher) {
commands = processor.patternMapper(matcher);
condition = commands['if'];
file = commands['file'];
oldText = commands['innerText'];
type = commands['type'];
if (condition == null || processor.checkCondition(condition)) {
try {
result = null;
if (type == 'css') {
result = '<style type="text/css">' + (grunt.file.read(processor.replacePlaceHolder(file))) + '</style>';
} else {
result = (grunt.file.read(processor.replacePlaceHolder(file)));
}
return result;
} catch (e) {
return "";
}
}
}
}
return _import;
})(); | 30.621622 | 128 | 0.468667 |
c8ad9a912425099cbb7786679474aba6aa80d29c | 284 | js | JavaScript | public/assets/js/admin/page-js/attendance.js | lim2481284/fitnergist_laravel | 584d9795a5e42b7f72cfed5c9c02a558329f56eb | [
"MIT"
] | null | null | null | public/assets/js/admin/page-js/attendance.js | lim2481284/fitnergist_laravel | 584d9795a5e42b7f72cfed5c9c02a558329f56eb | [
"MIT"
] | null | null | null | public/assets/js/admin/page-js/attendance.js | lim2481284/fitnergist_laravel | 584d9795a5e42b7f72cfed5c9c02a558329f56eb | [
"MIT"
] | null | null | null | // on change select input
$('.fitcampListection').change(function(){
var fitcampID = $(this).val();
fitnergistAPI.getAllFitcampRegisterAPI(fitcampID)
$('.closeBtnSection').show();
$('.tableSection').show();
});
fitnergistAPI.getAllFitcampAPI_admin_attendance();
| 18.933333 | 53 | 0.690141 |
c8adf107990d9466e81528b8aa4f1aeb4947259c | 982 | js | JavaScript | packages/relay-compiler/runner/__mocks__/FSMock.js | erictaylor/relay | fa1c75d263b8257cfbea541e8bcfa1bc69e75367 | [
"MIT"
] | 18,545 | 2015-08-11T19:32:49.000Z | 2022-03-31T10:17:36.000Z | packages/relay-compiler/runner/__mocks__/FSMock.js | erictaylor/relay | fa1c75d263b8257cfbea541e8bcfa1bc69e75367 | [
"MIT"
] | 3,562 | 2015-08-11T20:02:55.000Z | 2022-03-30T23:08:05.000Z | packages/relay-compiler/runner/__mocks__/FSMock.js | erictaylor/relay | fa1c75d263b8257cfbea541e8bcfa1bc69e75367 | [
"MIT"
] | 2,165 | 2015-08-11T19:32:04.000Z | 2022-03-15T19:18:50.000Z | /**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @emails oncall+relay
* @flow strict-local
* @format
*/
// flowlint ambiguous-object-type:error
'use strict';
const actualDeletedFiles = [];
const expectedDeletedFiles = [];
function install() {
beforeEach(beforeEachCallback);
afterEach(afterEachCallback);
}
function beforeEachCallback() {
jest.mock('fs', () => ({
unlinkSync(name: string): void {
actualDeletedFiles.push(name);
},
existsSync(name: string): boolean {
return true;
},
}));
actualDeletedFiles.length = 0;
expectedDeletedFiles.length = 0;
}
function afterEachCallback() {
expect(actualDeletedFiles).toEqual(expectedDeletedFiles);
}
function expectDeletion(filepath: string): void {
expectedDeletedFiles.push(filepath);
}
module.exports = {
install,
expectDeletion,
};
| 20.040816 | 66 | 0.699593 |
c8ae663d7c3554dccb3a0b80264a70d2902021d3 | 10,225 | js | JavaScript | assets/js/l10n/de.js | Rolf-B/cforum_ex | 2dcdfc76f0788824a5aa173c249a7051c61af0c4 | [
"MIT"
] | null | null | null | assets/js/l10n/de.js | Rolf-B/cforum_ex | 2dcdfc76f0788824a5aa173c249a7051c61af0c4 | [
"MIT"
] | 103 | 2021-10-13T04:24:01.000Z | 2022-03-31T04:26:23.000Z | assets/js/l10n/de.js | Rolf-B/cforum_ex | 2dcdfc76f0788824a5aa173c249a7051c61af0c4 | [
"MIT"
] | null | null | null | export const lang = {
"expand menu": "Menü anzeigen",
"show password": "Passwort anzeigen",
"hide password": "Passwort verbergen",
"search user": "Benutzer suchen",
clear: "löschen",
"Close this dialog window": "dieses Dialog-Fenster schließen",
"Search user": "Benutzer suchen",
username: "Benutzername",
"select user": "Benutzer selektieren",
"none found": "keinen Benutzer gefunden",
"none selected": "bisher kein Benutzer selektiert",
"unselect user": "Benutzer deselektieren",
"choose selected users": "selektierte Benutzer auswählen",
"found users": "gefundene Benutzer",
"selected users": "selektierte Benutzer",
"remove user": "Benutzer entfernen",
cancel: "abbrechen",
"add new element": "neues Element hinzufügen",
"remove element": "Element entfernen",
threads: "Threads",
messages: "Beiträge",
"number of threads": "Anzahl Threads",
"number of messages": "Anzahl Beiträge",
"number of users": "Anzahl Benutzer",
users: "Benutzer",
active: "aktiv",
delete: "löschen",
forum: "Forum",
"posting text": "Beitragstext",
"excerpt content": "Einleitung",
"chosen tags": "ausgewählte Schlagwörter",
"enter new tag": "neues Schlagwort eingeben",
"is unknown": "ist unbekannt",
"tag suggestions": "Schlagwort-Vorschläge",
"no tag suggestions available": "keine Vorschläge verfügbar",
"click to add tag": "klicken, um das Schlagwort hinzuzufügen",
"klick to remove chosen tag": "klicken, um ein ausgewähltes Schlagwort zu entfernen",
"please choose at least {count} tags": "Bitte wählen Sie mindestens {count} Schlagwörter",
"please choose at least {count} tag": "Bitte wählen Sie mindestens ein Schlagwort",
"{count} unread mails": "{count} ungelesene Mails",
"You've got a new mail from {sender}: {subject}": "neue Mail von {sender}: „{subject}“",
"{points} points": "{points} Punkte",
"{count} new notifications": "{count} neue Benachrichtigungen",
"You've got a new notification: {subject}": "{subject}",
"badge management": "Medaillen-Verwaltung",
"found badges": "gefundene Medaillen",
"add new badge": "neue Medaille hinzufügen",
"Search badge": "Medaille suchen",
"badge name": "Medaillen-Name",
"no badges found": "Keine Medaillen gefunden",
"select badge": "Medaille auswählen",
"You gained a new badge: {name}": "Sie haben eine neue Medaille erhalten: {name}",
"(hyphen minus)": "(Bindestrich-Minus/Mittestrich, U+002D)",
"(minus sign)": "(Minus-Sybmol, U+2212)",
"(en dash sign)": "(Halbgeviertstrich/Bis-Strich/Gedankenstrich, U+2013)",
"(em dash sign)": "(Geviertstrich, U+2014)",
preview: "Vorschau",
bold: "fett",
italic: "kursiv",
header: "Überschrift",
link: "Link",
image: "Bild",
"unordered list": "Liste",
"ordered list": "numerierte Liste",
code: "Quelltext",
cite: "Zitat",
"emoji picker": "Emojis",
"strong text": "fetter Text",
"italic text": "kursiver Text",
"strike-through text": "durchgestrichener Text",
"list text here": "Listen-Text hier",
"code here": "Quelltext hier",
"Add new link": "neuen Link hinzufügen",
"link description": "Linkbeschreibung",
"link target": "Linkziel",
"add link": "füge Link hinzu",
"You have to define at least the URL of the link!": "Sie müssen mindestens das Linkziel definieren!",
"Add code block": "Quelltext-Block erzeugen",
"add code block": "erzeuge Quelltext-Block",
"code language": "Quelltext-Sprache",
"drop file here or click here to upload": "Bild hier ablegen oder hier klicken, um es hochzuladen",
"Add new image": "neues Bild hinzufügen",
"choose image": "Bild auswählen",
"enter image description": "Bitte geben Sie eine Bild-Beschreibung an",
"enter image title": "Bitte geben Sie einen Bild-Titel an",
"add image": "Bild hinzufügen",
author: "Autor",
subject: "Betreff",
"e.g. “replace float:left”": "z.B. „float:left mit einem Flexbox-Konstrukt ersetzen“",
email: "E-Mail-Adresse",
"voluntarily, publicly visible": "freiwillig, öffentlich sichtbar",
homepage: "Homepage",
"e.g. “http://example.com/”": "z.B. „https://example.com“",
"problematic site": "problematische Seite",
"e.g. “https://example.com/float-example.html”": "z.B. „https://example.com/float-example.html“",
"save message": "Nachricht speichern",
pause: "unterbrechen",
discard: "verwerfen",
"There is a saved draft": "Es gibt einen Entwurf",
"There is a saved draft for this post. Do you want to restore it?":
"Es gibt einen gespeicherten Entwurf für diesen Beitrag. Möchten Sie ihn wiederherstellen?",
"Yes, restore the draft": "Ja, Entwurf wiederherstellen",
"No, delete the draft": "Nein, Entwurf löschen",
highcharts: {
decimalPoint: ",",
thousandsSep: ".",
loading: "Daten werden geladen...",
months: [
"Januar",
"Februar",
"März",
"April",
"Mai",
"Juni",
"Juli",
"August",
"September",
"Oktober",
"November",
"Dezember",
],
weekdays: ["Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag"],
shortMonths: ["Jan", "Feb", "Mär", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez"],
exportButtonTitle: "Exportieren",
printButtonTitle: "Drucken",
rangeSelectorFrom: "Von",
rangeSelectorTo: "Bis",
rangeSelectorZoom: "Zeitraum",
downloadPNG: "Download als PNG-Bild",
downloadJPEG: "Download als JPEG-Bild",
downloadPDF: "Download als PDF-Dokument",
downloadSVG: "Download als SVG-Bild",
resetZoom: "Zoom zurücksetzen",
resetZoomTitle: "Zoom zurücksetzen",
},
dateTimeInputLocalFormat: "l, j. F Y, H:i \\U\\h\\r",
dateInputFormat: "l, j. F Y",
timeInputFormat: "H:i",
fold: "einklappen",
unfold: "ausklappen",
"unfold all": "alle ausklappen",
"fold all": "alle einklappen",
"Oops, something went wrong!": "Uups, etwas ist schief gegangen!",
emojimart: {
search: "suchen",
notfound: "kein Emoji gefunden",
skintext: "Wählen Sie Ihre Default-Emojifarbe",
categories: {
search: "Suchergebnisse",
recent: "häufig genutzt",
people: "Smileys & Leute",
nature: "Tiere & Natur",
foods: "Essen & Getränke",
activity: "Aktivitäten",
places: "Reisen & Orte",
objects: "Objekte",
symbols: "Symbole",
flags: "Flaggen",
custom: "benutzerdefiniert",
},
},
"number of new cites": "Anzahl neuer Zitate",
"new cites": "neue Zitate",
"mark selected notifications as read": "markiere die selektierten Benachrichtigungen als gelesen",
"mark all notifications as read": "markiere alle Benachrichtigungen als gelesen",
"mark selected notifications as unread": "markiere die selektierten Benachrichtigungen als ungelesen",
"mark all notifications as unread": "markiere alle Benachrichtigungen als ungelesen",
"delete selected notifications": "lösche die selektierten Benachrichtigungen",
"delete all notifications": "lösche alle Benachrichtigungen",
"number of new messages": "Anzahl neuer Beiträge",
"new messages": "neue Beiträge",
"You successfully accepted this answer.": "Dieser Beitrag wird jetzt als Lösung akzeptiert.",
"You successfully unaccepted this answer.": "Dieser Beitrag wird nicht länger als Lösung akzeptiert.",
"You successfully took back you vote.": "Sie haben ihre Bewertung erfolgreich zurück genommen",
"You successfully voted this message positively.": "Sie haben diesen Beitrag erfolgreich positiv bewertet.",
"You successfully voted this message negatively.": "Sie haben diesen Beitrag erfolgreich negativ bewertet.",
"scoring: no scores": "Bewertung: keine Bewertung",
"scoring: {score}": "Bewertung: {score}",
"I agree": "Ich stimme zu",
"I changed my mind": "Ich habe meine Meinung geändert",
'You are using a very old browser. You might consider <a href="https://www.browser-update.org/de/update.html">upgrading</a>.':
'Sie benutzen einen sehr alten Browser. Vielleicht möchten Sie <a href="https://www.browser-update.org/de/update.html">updaten</a>?',
"The image you tried to paste exceeds the size limit of {maxSize} mb":
"Das Bild, dass Sie einfügen wollten, ist leider größer als das zulässige Limit von {maxSize} mb",
"more…": "mehr…",
"mark message interesting": "Beitrag als interessant markieren",
"mark message boring": "Interessant-Markierung entfernen",
"unsubscribe message": "Baum deabonnieren",
"subscribe message": "Baum abonnieren",
"save my identity in a cookie": "speichere die Identität in einem Cookie",
"identity description":
"Die Identität in einem Cookie zu speichern erlaubt es Ihnen, Ihre Beiträge zu editieren. Außerdem müssen Sie dann bei neuen Beiträgen nicht mehr die Felder Name, E-Mail und Homepage ausfüllen.",
"delete message without public reason": "lösche Beitrag ohne öffentliche Begründung",
"delete message": "lösche Beitrag",
"restore this message": "diesen Beitrag wiederherstellen",
"delete this message": "diesen Beitrag löschen",
"forbid answering to this message": "antworten auf diesen Beitrag verbieten",
"forbid answering to this message without public reason":
"verbiete antworten auf diesen Beitrag ohne öffentliche Begründung",
"allow answering to this message": "antworten auf diesen Beitrag erlauben",
"message is off-topic": "Beitrag ist außerhalb des durch dieses Forum abgedeckten Themenbereichs",
"message is not constructive": "Beitrag ist unkonstruktiv",
"message is illegal": "Beitrag ist rechtlich problematisch",
"message is a duplicate": "Beitrag ist ein Duplikat eines anderen Beitrags",
"message is spam": "Beitrag ist Spam",
"custom reason": "sonstiger Grund",
"may not be empty": "darf nicht leer sein",
"should have at least {minLen} characters": "sollte mindestens {minLen} Zeichen haben",
"should have at most {maxLen} characters": "sollte nicht mehr als {maxLen} Zeichen haben",
"should be an URL": "sollte eine URL sein",
"should be an email": "sollte eine E-Mail-Adresse sein",
"no user chosen": "kein Benutzer ausgewählt",
thumbnail: "Beitragsbild",
optional: "optional",
"save as a draft": "als Entwurf speichern",
"alt text": "Alt-Text",
};
| 39.941406 | 199 | 0.691051 |
c8ae987b8572028e1095428649baf32e5cfc4540 | 423 | js | JavaScript | lib/middleware/corsmiddleware.js | jodinkansagor/daily-card-pulls | c46e16800048459ae3bc68737431121ef9f234c2 | [
"Unlicense"
] | 1 | 2021-08-23T04:30:11.000Z | 2021-08-23T04:30:11.000Z | lib/middleware/corsmiddleware.js | jodinkansagor/daily-card-pulls | c46e16800048459ae3bc68737431121ef9f234c2 | [
"Unlicense"
] | 1 | 2021-05-11T00:08:05.000Z | 2021-05-11T00:08:05.000Z | lib/middleware/corsmiddleware.js | jodinkansagor/daily-card-pulls | c46e16800048459ae3bc68737431121ef9f234c2 | [
"Unlicense"
] | null | null | null | module.exports = (req, res, next) => {
res.setHeader('Access-Control-Allow-Origin', 'GET');
res.setHeader('Access-Control-Allow-Methods', 'GET, POST, OPTIONS, PUT, PATCH, DELETE');
res.setHeader('Access-Control-Allow-Headers', 'X-Requested-With,content-type, Authorization');
res.setHeader('Access-Control-Allow-Credentials', true);
if('OPTIONS' === req.method) {
res.send(204);
} else {
next();
}
};
| 35.25 | 96 | 0.669031 |
c8af73f21add0c3bb401b5bd5363b97aba2eae25 | 33,441 | js | JavaScript | lib/text/ttml_text_parser.js | ICC453/shaka-player | 4c6325de08a42b2e1b4fa72d2b301af1ed10d47f | [
"Apache-2.0"
] | null | null | null | lib/text/ttml_text_parser.js | ICC453/shaka-player | 4c6325de08a42b2e1b4fa72d2b301af1ed10d47f | [
"Apache-2.0"
] | null | null | null | lib/text/ttml_text_parser.js | ICC453/shaka-player | 4c6325de08a42b2e1b4fa72d2b301af1ed10d47f | [
"Apache-2.0"
] | 3 | 2019-11-19T18:54:58.000Z | 2019-12-05T18:15:12.000Z | /**
* @license
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
goog.provide('shaka.text.TtmlTextParser');
goog.require('goog.asserts');
goog.require('shaka.log');
goog.require('shaka.text.Cue');
goog.require('shaka.text.CueRegion');
goog.require('shaka.text.TextEngine');
goog.require('shaka.util.ArrayUtils');
goog.require('shaka.util.Error');
goog.require('shaka.util.StringUtils');
goog.require('shaka.util.XmlUtils');
/**
* @implements {shaka.extern.TextParser}
*/
shaka.text.TtmlTextParser = class {
/** @override */
parseInit(data) {
goog.asserts.assert(false, 'TTML does not have init segments');
}
/** @override */
parseMedia(data, time) {
const TtmlTextParser = shaka.text.TtmlTextParser;
const XmlUtils = shaka.util.XmlUtils;
const ttpNs = TtmlTextParser.parameterNs_;
const str = shaka.util.StringUtils.fromUTF8(data);
const ret = [];
const parser = new DOMParser();
let xml = null;
// dont try to parse empty string as
// DOMParser will not throw error but return an errored xml
if (str == '') {
return ret;
}
try {
xml = parser.parseFromString(str, 'text/xml');
} catch (exception) {
throw new shaka.util.Error(
shaka.util.Error.Severity.CRITICAL,
shaka.util.Error.Category.TEXT,
shaka.util.Error.Code.INVALID_XML,
'Failed to parse TTML.');
}
if (xml) {
const parserError = xml.getElementsByTagName('parsererror')[0];
if (parserError) {
throw new shaka.util.Error(
shaka.util.Error.Severity.CRITICAL,
shaka.util.Error.Category.TEXT,
shaka.util.Error.Code.INVALID_XML,
parserError.textContent);
}
// Try to get the framerate, subFrameRate and frameRateMultiplier
// if applicable
let frameRate = null;
let subFrameRate = null;
let frameRateMultiplier = null;
let tickRate = null;
let spaceStyle = null;
let extent = null;
const tts = xml.getElementsByTagName('tt');
const tt = tts[0];
// TTML should always have tt element.
if (!tt) {
throw new shaka.util.Error(
shaka.util.Error.Severity.CRITICAL,
shaka.util.Error.Category.TEXT,
shaka.util.Error.Code.INVALID_XML,
'TTML does not contain <tt> tag.');
} else {
frameRate = XmlUtils.getAttributeNS(tt, ttpNs, 'frameRate');
subFrameRate = XmlUtils.getAttributeNS(tt, ttpNs, 'subFrameRate');
frameRateMultiplier =
XmlUtils.getAttributeNS(tt, ttpNs, 'frameRateMultiplier');
tickRate = XmlUtils.getAttributeNS(tt, ttpNs, 'tickRate');
spaceStyle = tt.getAttribute('xml:space') || 'default';
extent = tt.getAttribute('tts:extent');
}
if (spaceStyle != 'default' && spaceStyle != 'preserve') {
throw new shaka.util.Error(
shaka.util.Error.Severity.CRITICAL,
shaka.util.Error.Category.TEXT,
shaka.util.Error.Code.INVALID_XML,
'Invalid xml:space value: ' + spaceStyle);
}
const whitespaceTrim = spaceStyle == 'default';
const rateInfo = new TtmlTextParser.RateInfo_(
frameRate, subFrameRate, frameRateMultiplier, tickRate);
const metadataElements = TtmlTextParser.getLeafNodes_(
tt.getElementsByTagName('metadata')[0]);
const styles = TtmlTextParser.getLeafNodes_(
tt.getElementsByTagName('styling')[0]);
const regionElements = TtmlTextParser.getLeafNodes_(
tt.getElementsByTagName('layout')[0]);
const cueRegions = [];
for (const region of regionElements) {
const cueRegion =
TtmlTextParser.parseCueRegion_(region, styles, extent);
if (cueRegion) {
cueRegions.push(cueRegion);
}
}
const textNodes = TtmlTextParser.getLeafCues_(
tt.getElementsByTagName('body')[0]);
for (const node of textNodes) {
const cue = TtmlTextParser.parseCue_(
node, time.periodStart, rateInfo, metadataElements, styles,
regionElements, cueRegions, whitespaceTrim, false);
if (cue) {
ret.push(cue);
}
}
}
return ret;
}
/**
* Gets the leaf nodes of the xml node tree. Ignores the text, br elements
* and the spans positioned inside paragraphs
*
* @param {Element} element
* @return {!Array.<!Element>}
* @private
*/
static getLeafNodes_(element) {
let result = [];
if (!element) {
return result;
}
for (const node of element.childNodes) {
if (
node.nodeType == Node.ELEMENT_NODE &&
node.nodeName !== 'br'
) {
// Get the leaves the child might contain.
goog.asserts.assert(node instanceof Element,
'Node should be Element!');
const leafChildren = shaka.text.TtmlTextParser.getLeafNodes_(
/** @type {Element} */(node));
goog.asserts.assert(leafChildren.length > 0,
'Only a null Element should return no leaves!');
result = result.concat(leafChildren);
}
}
// if no result at this point, the element itself must be a leaf.
if (!result.length) {
result.push(element);
}
return result;
}
/**
* Get the leaf nodes that can act as cues
* (at least begin attribute)
*
* @param {Element} element
* @return {!Array.<!Element>}
* @private
*/
static getLeafCues_(element) {
if (!element) {
return [];
}
return Array.from(element.querySelectorAll('[begin]'));
}
/**
* Trims and removes multiple spaces from a string
*
* @param {Element} element
* @param {boolean} whitespaceTrim
* @return {string}
* @private
*/
static sanitizeTextContent_(element, whitespaceTrim) {
let payload = '';
for (const node of element.childNodes) {
if (node.nodeName == 'br' && element.childNodes[0] !== node) {
payload += '\n';
} else if (node.childNodes && node.childNodes.length > 0) {
payload += shaka.text.TtmlTextParser.sanitizeTextContent_(
/** @type {!Element} */ (node),
whitespaceTrim
);
} else if (whitespaceTrim) {
// Trim leading and trailing whitespace.
let trimmed = node.textContent.trim();
// Collapse multiple spaces into one.
trimmed = trimmed.replace(/\s+/g, ' ');
payload += trimmed;
} else {
payload += node.textContent;
}
}
return payload;
}
/**
* Parses an Element into a TextTrackCue or VTTCue.
*
* @param {!Element} cueElement
* @param {number} offset
* @param {!shaka.text.TtmlTextParser.RateInfo_} rateInfo
* @param {!Array.<!Element>} metadataElements
* @param {!Array.<!Element>} styles
* @param {!Array.<!Element>} regionElements
* @param {!Array.<!shaka.text.CueRegion>} cueRegions
* @param {boolean} whitespaceTrim
* @param {boolean} isNested
* @return {shaka.text.Cue}
* @private
*/
static parseCue_(
cueElement, offset, rateInfo, metadataElements, styles, regionElements,
cueRegions, whitespaceTrim, isNested) {
if (isNested && cueElement.nodeName == 'br') {
const cue = new shaka.text.Cue(0, 0, '');
cue.spacer = true;
return cue;
}
const isTextContentEmpty = /^[\s\n]*$/.test(cueElement.textContent);
const hasNoTimeAttributes = cueElement.nodeType == Node.ELEMENT_NODE &&
!cueElement.hasAttribute('begin') &&
!cueElement.hasAttribute('end');
if (
cueElement.nodeType != Node.ELEMENT_NODE ||
/* Disregards empty elements without time attributes nor content
* <p begin="..." smpte:backgroundImage="..." /> will go through,
* as some information could be holded by its attributes
* <p />, <div></div> won't,
* as they don't have means to be displayed into a playback sequence
*/
(hasNoTimeAttributes && isTextContentEmpty) ||
/*
* Let nested cue without time attributes through:
* time attributes are holded by its parent
*/
(hasNoTimeAttributes && !isNested)
) {
return null;
}
// Get time.
let start = shaka.text.TtmlTextParser.parseTime_(
cueElement.getAttribute('begin'), rateInfo);
let end = shaka.text.TtmlTextParser.parseTime_(
cueElement.getAttribute('end'), rateInfo);
const duration = shaka.text.TtmlTextParser.parseTime_(
cueElement.getAttribute('dur'), rateInfo);
if (end == null && duration != null) {
end = start + duration;
}
if (!isNested && (start == null || end == null)) {
throw new shaka.util.Error(
shaka.util.Error.Severity.CRITICAL,
shaka.util.Error.Category.TEXT,
shaka.util.Error.Code.INVALID_TEXT_CUE);
}
start += offset;
end += offset;
let payload = '';
const nestedCues = [];
// If one of the children is text node type
// stop going down and write the payload
if (
Array.from(cueElement.childNodes).find(
(childNode) => childNode.nodeType === Node.TEXT_NODE &&
/\w+/.test(childNode.textContent)
)
) {
payload = shaka.text.TtmlTextParser.sanitizeTextContent_(
cueElement,
whitespaceTrim,
);
} else {
for (const childNode of cueElement.childNodes) {
const nestedCue = shaka.text.TtmlTextParser.parseCue_(
/** @type {!Element} */ (childNode),
offset,
rateInfo,
metadataElements,
styles,
regionElements,
cueRegions,
whitespaceTrim,
/* isNested */ true
);
if (nestedCue) {
nestedCues.push(nestedCue);
}
}
}
const cue = new shaka.text.Cue(start, end, payload);
cue.nestedCues = nestedCues;
// Get other properties if available.
const regionElement = shaka.text.TtmlTextParser.getElementsFromCollection_(
cueElement, 'region', regionElements, /* prefix= */ '')[0];
if (regionElement && regionElement.getAttribute('xml:id')) {
const regionId = regionElement.getAttribute('xml:id');
cue.region = cueRegions.filter((region) => region.id == regionId)[0];
}
const imageElement = shaka.text.TtmlTextParser.getElementsFromCollection_(
cueElement, 'smpte:backgroundImage', metadataElements, '#')[0];
shaka.text.TtmlTextParser.addStyle_(
cue,
cueElement,
regionElement,
imageElement,
styles);
return cue;
}
/**
* Parses an Element into a TextTrackCue or VTTCue.
*
* @param {!Element} regionElement
* @param {!Array.<!Element>} styles Defined in the top of tt element and
* used principally for images.
* @param {string} globalExtent
* @return {shaka.text.CueRegion}
* @private
*/
static parseCueRegion_(regionElement, styles, globalExtent) {
const TtmlTextParser = shaka.text.TtmlTextParser;
const region = new shaka.text.CueRegion();
const id = regionElement.getAttribute('xml:id');
if (!id) {
shaka.log.warning('TtmlTextParser parser encountered a region with ' +
'no id. Region will be ignored.');
return null;
}
region.id = id;
let globalResults = null;
if (globalExtent) {
globalResults = TtmlTextParser.percentValues_.exec(globalExtent) ||
TtmlTextParser.pixelValues_.exec(globalExtent);
}
const globalWidth = globalResults ? Number(globalResults[1]) : null;
const globalHeight = globalResults ? Number(globalResults[2]) : null;
let results = null;
let percentage = null;
const extent = TtmlTextParser.getStyleAttributeFromRegion_(
regionElement, styles, 'extent');
if (extent) {
percentage = TtmlTextParser.percentValues_.exec(extent);
results = percentage || TtmlTextParser.pixelValues_.exec(extent);
if (results != null) {
if (globalWidth != null) {
region.width = Number(results[1]) * 100 / globalWidth;
} else {
region.width = Number(results[1]);
}
if (globalHeight != null) {
region.height = Number(results[2]) * 100 / globalHeight;
} else {
region.height = Number(results[2]);
}
region.widthUnits = percentage || globalWidth != null ?
shaka.text.CueRegion.units.PERCENTAGE :
shaka.text.CueRegion.units.PX;
region.heightUnits = percentage || globalHeight != null ?
shaka.text.CueRegion.units.PERCENTAGE :
shaka.text.CueRegion.units.PX;
}
}
const origin = TtmlTextParser.getStyleAttributeFromRegion_(
regionElement, styles, 'origin');
if (origin) {
percentage = TtmlTextParser.percentValues_.exec(origin);
results = percentage || TtmlTextParser.pixelValues_.exec(origin);
if (results != null) {
if (globalHeight != null) {
region.viewportAnchorX = Number(results[1]) * 100 / globalHeight;
} else {
region.viewportAnchorX = Number(results[1]);
}
if (globalWidth != null) {
region.viewportAnchorY = Number(results[2]) * 100 / globalWidth;
} else {
region.viewportAnchorY = Number(results[2]);
}
region.viewportAnchorUnits = percentage || globalWidth != null ?
shaka.text.CueRegion.units.PERCENTAGE :
shaka.text.CueRegion.units.PX;
}
}
return region;
}
/**
* Adds applicable style properties to a cue.
*
* @param {!shaka.text.Cue} cue
* @param {!Element} cueElement
* @param {Element} region
* @param {Element} imageElement
* @param {!Array.<!Element>} styles
* @private
*/
static addStyle_(cue, cueElement, region, imageElement, styles) {
const TtmlTextParser = shaka.text.TtmlTextParser;
const Cue = shaka.text.Cue;
const direction = TtmlTextParser.getStyleAttribute_(
cueElement, region, styles, 'direction');
if (direction == 'rtl') {
cue.direction = Cue.direction.HORIZONTAL_RIGHT_TO_LEFT;
}
// Direction attribute specifies one-dimentional writing direction
// (left to right or right to left). Writing mode specifies that
// plus whether text is vertical or horizontal.
// They should not contradict each other. If they do, we give
// preference to writing mode.
const writingMode = TtmlTextParser.getStyleAttribute_(
cueElement, region, styles, 'writingMode');
// Set cue's direction if the text is horizontal, and cue's writingMode if
// it's vertical.
if (writingMode == 'tb' || writingMode == 'tblr') {
cue.writingMode = Cue.writingMode.VERTICAL_LEFT_TO_RIGHT;
} else if (writingMode == 'tbrl') {
cue.writingMode = Cue.writingMode.VERTICAL_RIGHT_TO_LEFT;
} else if (writingMode == 'rltb' || writingMode == 'rl') {
cue.direction = Cue.direction.HORIZONTAL_RIGHT_TO_LEFT;
} else if (writingMode) {
cue.direction = Cue.direction.HORIZONTAL_LEFT_TO_RIGHT;
}
const align = TtmlTextParser.getStyleAttribute_(
cueElement, region, styles, 'textAlign');
if (align) {
cue.positionAlign = TtmlTextParser.textAlignToPositionAlign_[align];
cue.lineAlign = TtmlTextParser.textAlignToLineAlign_[align];
goog.asserts.assert(align.toUpperCase() in Cue.textAlign,
align.toUpperCase() +
' Should be in Cue.textAlign values!');
cue.textAlign = Cue.textAlign[align.toUpperCase()];
} else {
// Default value is START: https://bit.ly/32OGmvo
cue.textAlign = Cue.textAlign.START;
}
const displayAlign = TtmlTextParser.getStyleAttribute_(
cueElement, region, styles, 'displayAlign');
if (displayAlign) {
goog.asserts.assert(displayAlign.toUpperCase() in Cue.displayAlign,
displayAlign.toUpperCase() +
' Should be in Cue.displayAlign values!');
cue.displayAlign = Cue.displayAlign[displayAlign.toUpperCase()];
}
const color = TtmlTextParser.getStyleAttribute_(
cueElement, region, styles, 'color');
if (color) {
cue.color = color;
}
const backgroundColor = TtmlTextParser.getStyleAttribute_(
cueElement, region, styles, 'backgroundColor');
if (backgroundColor) {
cue.backgroundColor = backgroundColor;
}
const fontFamily = TtmlTextParser.getStyleAttribute_(
cueElement, region, styles, 'fontFamily');
if (fontFamily) {
cue.fontFamily = fontFamily;
}
const fontWeight = TtmlTextParser.getStyleAttribute_(
cueElement, region, styles, 'fontWeight');
if (fontWeight && fontWeight == 'bold') {
cue.fontWeight = Cue.fontWeight.BOLD;
}
const wrapOption = TtmlTextParser.getStyleAttribute_(
cueElement, region, styles, 'wrapOption');
if (wrapOption && wrapOption == 'noWrap') {
cue.wrapLine = false;
}
const lineHeight = TtmlTextParser.getStyleAttribute_(
cueElement, region, styles, 'lineHeight');
if (lineHeight && lineHeight.match(TtmlTextParser.unitValues_)) {
cue.lineHeight = lineHeight;
}
const fontSize = TtmlTextParser.getStyleAttribute_(
cueElement, region, styles, 'fontSize');
if (fontSize && fontSize.match(TtmlTextParser.unitValues_)) {
cue.fontSize = fontSize;
}
const fontStyle = TtmlTextParser.getStyleAttribute_(
cueElement, region, styles, 'fontStyle');
if (fontStyle) {
goog.asserts.assert(fontStyle.toUpperCase() in Cue.fontStyle,
fontStyle.toUpperCase() +
' Should be in Cue.fontStyle values!');
cue.fontStyle = Cue.fontStyle[fontStyle.toUpperCase()];
}
if (imageElement) {
const backgroundImageType = imageElement.getAttribute('imagetype');
const backgroundImageEncoding = imageElement.getAttribute('encoding');
const backgroundImageData = imageElement.textContent.trim();
if (backgroundImageType == 'PNG' &&
backgroundImageEncoding == 'Base64' &&
backgroundImageData) {
cue.backgroundImage = 'data:image/png;base64,' + backgroundImageData;
}
}
// Text decoration is an array of values which can come both from the
// element's style or be inherited from elements' parent nodes. All of those
// values should be applied as long as they don't contradict each other. If
// they do, elements' own style gets preference.
const textDecorationRegion = TtmlTextParser.getStyleAttributeFromRegion_(
region, styles, 'textDecoration');
if (textDecorationRegion) {
TtmlTextParser.addTextDecoration_(cue, textDecorationRegion);
}
const textDecorationElement = TtmlTextParser.getStyleAttributeFromElement_(
cueElement, styles, 'textDecoration');
if (textDecorationElement) {
TtmlTextParser.addTextDecoration_(cue, textDecorationElement);
}
}
/**
* Parses text decoration values and adds/removes them to/from the cue.
*
* @param {!shaka.text.Cue} cue
* @param {string} decoration
* @private
*/
static addTextDecoration_(cue, decoration) {
const Cue = shaka.text.Cue;
for (const value of decoration.split(' ')) {
switch (value) {
case 'underline':
if (!cue.textDecoration.includes(Cue.textDecoration.UNDERLINE)) {
cue.textDecoration.push(Cue.textDecoration.UNDERLINE);
}
break;
case 'noUnderline':
if (cue.textDecoration.includes(Cue.textDecoration.UNDERLINE)) {
shaka.util.ArrayUtils.remove(cue.textDecoration,
Cue.textDecoration.UNDERLINE);
}
break;
case 'lineThrough':
if (!cue.textDecoration.includes(Cue.textDecoration.LINE_THROUGH)) {
cue.textDecoration.push(Cue.textDecoration.LINE_THROUGH);
}
break;
case 'noLineThrough':
if (cue.textDecoration.includes(Cue.textDecoration.LINE_THROUGH)) {
shaka.util.ArrayUtils.remove(cue.textDecoration,
Cue.textDecoration.LINE_THROUGH);
}
break;
case 'overline':
if (!cue.textDecoration.includes(Cue.textDecoration.OVERLINE)) {
cue.textDecoration.push(Cue.textDecoration.OVERLINE);
}
break;
case 'noOverline':
if (cue.textDecoration.includes(Cue.textDecoration.OVERLINE)) {
shaka.util.ArrayUtils.remove(cue.textDecoration,
Cue.textDecoration.OVERLINE);
}
break;
}
}
}
/**
* Finds a specified attribute on either the original cue element or its
* associated region and returns the value if the attribute was found.
*
* @param {!Element} cueElement
* @param {Element} region
* @param {!Array.<!Element>} styles
* @param {string} attribute
* @return {?string}
* @private
*/
static getStyleAttribute_(cueElement, region, styles, attribute) {
// An attribute can be specified on region level or in a styling block
// associated with the region or original element.
const TtmlTextParser = shaka.text.TtmlTextParser;
const attr = TtmlTextParser.getStyleAttributeFromElement_(
cueElement, styles, attribute);
if (attr) {
return attr;
}
return TtmlTextParser.getStyleAttributeFromRegion_(
region, styles, attribute);
}
/**
* Finds a specified attribute on the element's associated region
* and returns the value if the attribute was found.
*
* @param {Element} region
* @param {!Array.<!Element>} styles
* @param {string} attribute
* @return {?string}
* @private
*/
static getStyleAttributeFromRegion_(region, styles, attribute) {
const XmlUtils = shaka.util.XmlUtils;
const ttsNs = shaka.text.TtmlTextParser.styleNs_;
const regionChildren = shaka.text.TtmlTextParser.getLeafNodes_(region);
for (const child of regionChildren) {
const attr = XmlUtils.getAttributeNS(child, ttsNs, attribute);
if (attr) {
return attr;
}
}
const style = shaka.text.TtmlTextParser.getElementsFromCollection_(
region, 'style', styles, /* prefix= */ '')[0];
if (style) {
return XmlUtils.getAttributeNS(style, ttsNs, attribute);
}
return null;
}
/**
* Finds a specified attribute on the cue element and returns the value
* if the attribute was found.
*
* @param {!Element} cueElement
* @param {!Array.<!Element>} styles
* @param {string} attribute
* @return {?string}
* @private
*/
static getStyleAttributeFromElement_(cueElement, styles, attribute) {
const XmlUtils = shaka.util.XmlUtils;
const ttsNs = shaka.text.TtmlTextParser.styleNs_;
// Styling on elements should take precedence
// over the main styling attributes
const elementAttribute = XmlUtils.getAttributeNS(
cueElement,
ttsNs,
attribute
);
if (elementAttribute) {
return elementAttribute;
}
const inheritedStyles =
shaka.text.TtmlTextParser.getElementsFromCollection_(
cueElement, 'style', styles, /* prefix= */ ''
);
let styleValue = null;
// The last value in our styles stack takes the precedence over the others
for (let i = 0; i < inheritedStyles.length; i++) {
const styleAttributeValue = XmlUtils.getAttributeNS(
inheritedStyles[i],
ttsNs,
attribute
);
if (styleAttributeValue) {
styleValue = styleAttributeValue;
}
}
return styleValue;
}
/**
* Selects items from |collection| whose id matches |attributeName|
* from |element|.
*
* @param {Element} element
* @param {string} attributeName
* @param {!Array.<Element>} collection
* @param {string} prefixName
* @return {Array.<!Element>}
* @private
*/
static getElementsFromCollection_(
element, attributeName, collection, prefixName) {
const items = [];
if (!element || collection.length < 1) {
return items;
}
const attributeValue = shaka.text.TtmlTextParser.getInheritedAttribute_(
element, attributeName);
if (attributeValue) {
// There could be multiple items in one attribute
// <span style="style1 style2">A cue</span>
const itemNames = attributeValue.split(' ');
for (const name of itemNames) {
for (const item of collection) {
if (
(prefixName + item.getAttribute('xml:id')) == name
) {
items.push(item);
break;
}
}
}
}
return items;
}
/**
* Traverses upwards from a given node until a given attribute is found.
*
* @param {!Element} element
* @param {string} attributeName
* @return {?string}
* @private
*/
static getInheritedAttribute_(element, attributeName) {
let ret = null;
while (element) {
ret = element.getAttribute(attributeName);
if (ret) {
break;
}
// Element.parentNode can lead to XMLDocument, which is not an Element and
// has no getAttribute().
const parentNode = element.parentNode;
if (parentNode instanceof Element) {
element = parentNode;
} else {
break;
}
}
return ret;
}
/**
* Parses a TTML time from the given word.
*
* @param {string} text
* @param {!shaka.text.TtmlTextParser.RateInfo_} rateInfo
* @return {?number}
* @private
*/
static parseTime_(text, rateInfo) {
let ret = null;
const TtmlTextParser = shaka.text.TtmlTextParser;
if (TtmlTextParser.timeColonFormatFrames_.test(text)) {
ret = TtmlTextParser.parseColonTimeWithFrames_(rateInfo, text);
} else if (TtmlTextParser.timeColonFormat_.test(text)) {
ret = TtmlTextParser.parseTimeFromRegex_(
TtmlTextParser.timeColonFormat_, text);
} else if (TtmlTextParser.timeColonFormatMilliseconds_.test(text)) {
ret = TtmlTextParser.parseTimeFromRegex_(
TtmlTextParser.timeColonFormatMilliseconds_, text);
} else if (TtmlTextParser.timeFramesFormat_.test(text)) {
ret = TtmlTextParser.parseFramesTime_(rateInfo, text);
} else if (TtmlTextParser.timeTickFormat_.test(text)) {
ret = TtmlTextParser.parseTickTime_(rateInfo, text);
} else if (TtmlTextParser.timeHMSFormat_.test(text)) {
ret = TtmlTextParser.parseTimeFromRegex_(
TtmlTextParser.timeHMSFormat_, text);
}
return ret;
}
/**
* Parses a TTML time in frame format.
*
* @param {!shaka.text.TtmlTextParser.RateInfo_} rateInfo
* @param {string} text
* @return {?number}
* @private
*/
static parseFramesTime_(rateInfo, text) {
// 75f or 75.5f
const results = shaka.text.TtmlTextParser.timeFramesFormat_.exec(text);
const frames = Number(results[1]);
return frames / rateInfo.frameRate;
}
/**
* Parses a TTML time in tick format.
*
* @param {!shaka.text.TtmlTextParser.RateInfo_} rateInfo
* @param {string} text
* @return {?number}
* @private
*/
static parseTickTime_(rateInfo, text) {
// 50t or 50.5t
const results = shaka.text.TtmlTextParser.timeTickFormat_.exec(text);
const ticks = Number(results[1]);
return ticks / rateInfo.tickRate;
}
/**
* Parses a TTML colon formatted time containing frames.
*
* @param {!shaka.text.TtmlTextParser.RateInfo_} rateInfo
* @param {string} text
* @return {?number}
* @private
*/
static parseColonTimeWithFrames_(rateInfo, text) {
// 01:02:43:07 ('07' is frames) or 01:02:43:07.1 (subframes)
const results = shaka.text.TtmlTextParser.timeColonFormatFrames_.exec(text);
const hours = Number(results[1]);
const minutes = Number(results[2]);
let seconds = Number(results[3]);
let frames = Number(results[4]);
const subframes = Number(results[5]) || 0;
frames += subframes / rateInfo.subFrameRate;
seconds += frames / rateInfo.frameRate;
return seconds + (minutes * 60) + (hours * 3600);
}
/**
* Parses a TTML time with a given regex. Expects regex to be some
* sort of a time-matcher to match hours, minutes, seconds and milliseconds
*
* @param {!RegExp} regex
* @param {string} text
* @return {?number}
* @private
*/
static parseTimeFromRegex_(regex, text) {
const results = regex.exec(text);
if (results == null || results[0] == '') {
return null;
}
// This capture is optional, but will still be in the array as undefined,
// in which case it is 0.
const hours = Number(results[1]) || 0;
const minutes = Number(results[2]) || 0;
const seconds = Number(results[3]) || 0;
const milliseconds = Number(results[4]) || 0;
return (milliseconds / 1000) + seconds + (minutes * 60) + (hours * 3600);
}
};
/**
* @summary
* Contains information about frame/subframe rate
* and frame rate multiplier for time in frame format.
*
* @example 01:02:03:04(4 frames) or 01:02:03:04.1(4 frames, 1 subframe)
* @private
*/
shaka.text.TtmlTextParser.RateInfo_ = class {
/**
* @param {?string} frameRate
* @param {?string} subFrameRate
* @param {?string} frameRateMultiplier
* @param {?string} tickRate
*/
constructor(frameRate, subFrameRate, frameRateMultiplier, tickRate) {
/**
* @type {number}
*/
this.frameRate = Number(frameRate) || 30;
/**
* @type {number}
*/
this.subFrameRate = Number(subFrameRate) || 1;
/**
* @type {number}
*/
this.tickRate = Number(tickRate);
if (this.tickRate == 0) {
if (frameRate) {
this.tickRate = this.frameRate * this.subFrameRate;
} else {
this.tickRate = 1;
}
}
if (frameRateMultiplier) {
const multiplierResults = /^(\d+) (\d+)$/g.exec(frameRateMultiplier);
if (multiplierResults) {
const numerator = Number(multiplierResults[1]);
const denominator = Number(multiplierResults[2]);
const multiplierNum = numerator / denominator;
this.frameRate *= multiplierNum;
}
}
}
};
/**
* @const
* @private {!RegExp}
* @example 50.17% 10%
*/
shaka.text.TtmlTextParser.percentValues_ =
/^(\d{1,2}(?:\.\d+)?|100)% (\d{1,2}(?:\.\d+)?|100)%$/;
/**
* @const
* @private {!RegExp}
* @example 100px
*/
shaka.text.TtmlTextParser.unitValues_ = /^(\d+px|\d+em)$/;
/**
* @const
* @private {!RegExp}
* @example 100px
*/
shaka.text.TtmlTextParser.pixelValues_ = /^(\d+)px (\d+)px$/;
/**
* @const
* @private {!RegExp}
* @example 00:00:40:07 (7 frames) or 00:00:40:07.1 (7 frames, 1 subframe)
*/
shaka.text.TtmlTextParser.timeColonFormatFrames_ =
/^(\d{2,}):(\d{2}):(\d{2}):(\d{2})\.?(\d+)?$/;
/**
* @const
* @private {!RegExp}
* @example 00:00:40 or 00:40
*/
shaka.text.TtmlTextParser.timeColonFormat_ = /^(?:(\d{2,}):)?(\d{2}):(\d{2})$/;
/**
* @const
* @private {!RegExp}
* @example 01:02:43.0345555 or 02:43.03
*/
shaka.text.TtmlTextParser.timeColonFormatMilliseconds_ =
/^(?:(\d{2,}):)?(\d{2}):(\d{2}\.\d{2,})$/;
/**
* @const
* @private {!RegExp}
* @example 75f or 75.5f
*/
shaka.text.TtmlTextParser.timeFramesFormat_ = /^(\d*(?:\.\d*)?)f$/;
/**
* @const
* @private {!RegExp}
* @example 50t or 50.5t
*/
shaka.text.TtmlTextParser.timeTickFormat_ = /^(\d*(?:\.\d*)?)t$/;
/**
* @const
* @private {!RegExp}
* @example 3.45h, 3m or 4.20s
*/
shaka.text.TtmlTextParser.timeHMSFormat_ =
new RegExp(['^(?:(\\d*(?:\\.\\d*)?)h)?',
'(?:(\\d*(?:\\.\\d*)?)m)?',
'(?:(\\d*(?:\\.\\d*)?)s)?',
'(?:(\\d*(?:\\.\\d*)?)ms)?$'].join(''));
/**
* @const
* @private {!Object.<string, shaka.text.Cue.lineAlign>}
*/
shaka.text.TtmlTextParser.textAlignToLineAlign_ = {
'left': shaka.text.Cue.lineAlign.START,
'center': shaka.text.Cue.lineAlign.CENTER,
'right': shaka.text.Cue.lineAlign.END,
'start': shaka.text.Cue.lineAlign.START,
'end': shaka.text.Cue.lineAlign.END,
};
/**
* @const
* @private {!Object.<string, shaka.text.Cue.positionAlign>}
*/
shaka.text.TtmlTextParser.textAlignToPositionAlign_ = {
'left': shaka.text.Cue.positionAlign.LEFT,
'center': shaka.text.Cue.positionAlign.CENTER,
'right': shaka.text.Cue.positionAlign.RIGHT,
};
/**
* @const {string}
* @private
*/
shaka.text.TtmlTextParser.parameterNs_ = 'http://www.w3.org/ns/ttml#parameter';
/**
* @const {string}
* @private
*/
shaka.text.TtmlTextParser.styleNs_ = 'http://www.w3.org/ns/ttml#styling';
shaka.text.TextEngine.registerParser(
'application/ttml+xml', shaka.text.TtmlTextParser);
| 30.935245 | 80 | 0.628002 |
c8b01809057dd5dcac0879ff41314545af309ab6 | 248 | js | JavaScript | packages/migrate/bannerPlugin/bannerPlugin.test.js | NaviMarella/webpack-cli | 617af0bddb5140c07b1a0079b377311b10dd027d | [
"MIT"
] | 1 | 2018-07-12T05:12:01.000Z | 2018-07-12T05:12:01.000Z | packages/migrate/bannerPlugin/bannerPlugin.test.js | NaviMarella/webpack-cli | 617af0bddb5140c07b1a0079b377311b10dd027d | [
"MIT"
] | null | null | null | packages/migrate/bannerPlugin/bannerPlugin.test.js | NaviMarella/webpack-cli | 617af0bddb5140c07b1a0079b377311b10dd027d | [
"MIT"
] | null | null | null | "use strict";
const defineTest = require("@webpack-cli/utils/defineTest");
defineTest(__dirname, "bannerPlugin", "bannerPlugin-0");
defineTest(__dirname, "bannerPlugin", "bannerPlugin-1");
defineTest(__dirname, "bannerPlugin", "bannerPlugin-2");
| 31 | 60 | 0.758065 |
c8b048fcc0b2cd908df1925df22de39a5e2ef55f | 307 | js | JavaScript | test/serializer/abstract/ObjectAssign5.js | jeysal/prepack | b594b283c20b2099c07f3e590a5898a7a13aaabf | [
"BSD-3-Clause"
] | null | null | null | test/serializer/abstract/ObjectAssign5.js | jeysal/prepack | b594b283c20b2099c07f3e590a5898a7a13aaabf | [
"BSD-3-Clause"
] | null | null | null | test/serializer/abstract/ObjectAssign5.js | jeysal/prepack | b594b283c20b2099c07f3e590a5898a7a13aaabf | [
"BSD-3-Clause"
] | null | null | null | var obj = global.__abstract && global.__makePartial && global.__makeSimple ? __makeSimple(__makePartial(__abstract({}, "({foo:1})"))) : {foo:1};
var copyOfObj = Object.assign({}, obj);
var copyOfCopyOfObj = Object.assign({}, copyOfObj);
inspect = function() {
return JSON.stringify(copyOfCopyOfObj);
}
| 38.375 | 144 | 0.70684 |
c8b0626ba9f2acd499cae4e016315a9a4db57f5c | 254 | js | JavaScript | src/redux/user/userActions.js | allanalves23/tcc-front | e3c5ea8df1a051e2625df06034c6c916b418586b | [
"BSD-3-Clause"
] | null | null | null | src/redux/user/userActions.js | allanalves23/tcc-front | e3c5ea8df1a051e2625df06034c6c916b418586b | [
"BSD-3-Clause"
] | null | null | null | src/redux/user/userActions.js | allanalves23/tcc-front | e3c5ea8df1a051e2625df06034c6c916b418586b | [
"BSD-3-Clause"
] | null | null | null | import { setAuthToken } from '@/config/axios';
export function setUser(user) {
if (user && user.accessToken) {
setAuthToken(user.accessToken);
}
return {
type: 'SAVE_USER',
user: user && user.user,
};
}
export default { setUser };
| 16.933333 | 46 | 0.633858 |
c8b09a65e73620d3b8450d3125dc6f748cc9c2a4 | 3,280 | js | JavaScript | web/js/PieChart.js | slabasan/spotfe | 80beacba552e6999cbd753ae402fc008a54f0d02 | [
"MIT",
"ECL-2.0",
"Apache-2.0",
"BSD-3-Clause"
] | 4 | 2021-01-20T22:34:44.000Z | 2021-05-15T22:39:08.000Z | web/js/PieChart.js | slabasan/spotfe | 80beacba552e6999cbd753ae402fc008a54f0d02 | [
"MIT",
"ECL-2.0",
"Apache-2.0",
"BSD-3-Clause"
] | 1 | 2021-01-20T22:52:22.000Z | 2021-03-23T18:27:34.000Z | web/js/PieChart.js | slabasan/spotfe | 80beacba552e6999cbd753ae402fc008a54f0d02 | [
"MIT",
"ECL-2.0",
"Apache-2.0",
"BSD-3-Clause"
] | 1 | 2022-01-14T04:40:50.000Z | 2022-01-14T04:40:50.000Z | var ST = ST || {};
ST.PieChart = function() {
var quarterChart = [];
var render_ = function( ndx, spec ) {
var width = spec.width || 180;
var height = spec.height || 180;
var radius = spec.radius || 80;
var inner_radius = spec.inner_radius || 0;
var dimension_low = spec.dimension.toLowerCase();
dimension_low = dimension_low.replace('.', '');
var DOM_safe_dimension = ST.Utility.filter_special( dimension_low );
var style = spec.show ? "display: block;" : "display: none;";
var composite_chart = spec["composite_layout"] ? ST.CONSTS.COMPOSITE_PLOT : "";
var rcht = '<div instance_num="' + DOM_safe_dimension + '" ' +
'style="' + style + '" ' +
'class="outer_cont ' + composite_chart +
' quarter-chart-' + DOM_safe_dimension + '" ' +
'chart-dimension="' + DOM_safe_dimension + '"> \
<strong class="text_chart_name">' + spec.title + '</strong> \
<a class="reset pie_reset" style="display: none;">reset</a> \
' + ReusableView.get_hamburger() + '\
<div class="clearfix"></div> \
</div> ';
$('.row:eq(0)').append(rcht);
// Summarize volume by quarter
var quarter = ndx.dimension(function ( cali_object) {
ST.Utility.validate_cali_object( cali_object, spec.dimension );
return cali_object[spec.dimension] || 0;
});
if( ST.cali_valid === false ) {
// Error on screen.
return false;
}
var quarterGroup = quarter.group().reduceSum(function (d) {
// This can be whatever variable you want to sum up in the pie chart, for example total runtime, etc.
return 1;
});
var colors = ST.Utility.get_colors( spec.dimension, true );
quarterChart[DOM_safe_dimension] = dc.pieChart('.quarter-chart-' + DOM_safe_dimension );
quarterChart[DOM_safe_dimension] /* dc.pieChart('#quarter-chart', 'chartGroup') */
.width( width )
.height(height )
.radius( radius )
.innerRadius(inner_radius)
.dimension(quarter)
.group(quarterGroup)
.on('filtered', function(chart) {
ST.UrlStateManager.user_filtered(chart, 'PieChart');
ST.CallSpot.load_compare();
})
.ordinalColors([
'#9bdb8d',
'#eb8b8e',
'#bf82d5',
'#ffb661',
'#6fbfff',
'#a3b7cc',
'#ace7ff',
'#ccaa44',
'#77bb22',
'#dd2277'
]);
$('.pie_reset').unbind('click').bind('click', ST.PieChart.reset);
};
return {
render: render_,
reset: function() {
var instance_num = $(this).parent().attr('instance_num');
quarterChart[instance_num].filterAll();
dc.redrawAll();
ST.ChartCollection.bind_sort();
ST.UrlStateManager.remove_param( 'PieChart' + instance_num );
},
load_filter: function() {
ST.UrlStateManager.load_filter( quarterChart, 'PieChart' );
}
}
}(); | 33.131313 | 114 | 0.527134 |
c8b09c059346f5acfd87ba1dff71e6bc83f4ce1d | 11,500 | js | JavaScript | node_modules/omnitone/test/resources/omnitone-toa-hrir-base64.js | justinkuhn/blind-access-webvr | 45c2ac318217847d48d4e2c368248b69c5ce2913 | [
"MIT"
] | 811 | 2016-06-28T17:51:11.000Z | 2022-03-31T23:57:44.000Z | test/resources/omnitone-toa-hrir-base64.js | martina6hall/omnitone | 78840b1e90676516817d4f998dbd4ea9962f53bd | [
"Apache-2.0"
] | 81 | 2016-07-26T06:21:07.000Z | 2021-11-02T23:17:07.000Z | test/resources/omnitone-toa-hrir-base64.js | martina6hall/omnitone | 78840b1e90676516817d4f998dbd4ea9962f53bd | [
"Apache-2.0"
] | 127 | 2016-07-25T22:23:15.000Z | 2022-03-16T23:38:52.000Z | const OmnitoneTOAHrirBase64 = [
"UklGRiQEAABXQVZFZm10IBAAAAABAAIAgLsAAADuAgAEABAAZGF0YQAEAAD+/wQA8/8YAP3/CgACAAAA//8CAAYA8/8AAPH/CgDv/97/e/+y/9P+UQDwAHUBEwV7/pP8P/y09bsDwAfNBGYIFf/Y+736+fP890Hv8AGcC3T/vwYy+S70AAICA3AD4AagBw0R4w3ZEAcN8RVYAV8Q8P2z+kECHwdK/jIG0QNKAYUElf8IClj7BgjX+/f8j/l3/5f/6fkK+xz8FP0v/nj/Mf/n/FcBPfvH/1H3+gBP/Hf8cfiCAR/54QBh+UQAcvkzAWL8TP13+iD/V/73+wv9Kv+Y/hv+xPz7/UL83//a/z/9AP6R/5L+jf26/P3+rP26/tD8nP7B/Pv+WP1V/sP9gv91/3P9xP3J/nv/GP5S/sb+IP8v/9j/dv7U/pr+6v+u/Z3/sv5cAOr9Q/83/+n/zP5x/57+2//k/nwA/v01//L+SACB/sD/Ff81AJT+TgDp/ocAm/5dAFT+MgD+/pMAW/7o/yH/xQDA/kkA9P6LAL3+pAC0/iQAz/5UALD+UwAt/3UAhf4UAA//pwC+/joAz/5aAAv/fwDY/iMAIf+uAPP+ZAAc/0QAy/4xAB7/TgDs/goADP8wAEL/NwDo/ub/Uf9BAC3/+v9F/y4ARP9HAFP/EQA3/xMATP81AG3/HQAu/wgAaP9FACb/9f9B/y0AUP8rAED/CwBV/z4AW/8TAGH/BQBK/xsAfv8eAFn/AgB3/zwAff8RAGj//v+E/yAAb//0/3n/FwBz/xcAiv8PAHn/FQCJ/xgAg//x/3j/EQCa/ycAff/w/47/HwCI//X/iv/7/43/JQCM/+n/kP8AAJb/JACj//7/oP8ZAML/SwCo/w4Atv8tAMb/PACr/xcAwP9HAMP/OADF/y4A0f9IANL/NwC//zEA0f9LAMb/MAC8/y4A3f9GAMH/FQDQ/yYA2/8sAMT/AwDX/xkA3v8SAM3/9v/c/w8A4f8LAMj/8f/h/xQA2P8CAMn/8//j/xQA0v/7/9H//P/i/xEA0v/1/9L//f/j/w0A0f/x/9f//v/k/wgAz//u/9z/AwDg/wMA0P/v/9//BQDf////0v/y/+D/CADc//3/0v/2/+L/CgDa//r/1v/5/+T/CgDY//j/2f/9/+T/CADY//f/3P8AAOT/BwDY//f/4P8EAOP/BADZ//j/4v8GAOL/AwDa//r/5f8IAOH/AQDc//3/5v8JAOD//v/f////5v8IAOD//v/h/wIA5/8HAOD//f/j/wMA5/8GAOD//f/l/wYA5v8EAOD//v/m/wYA5f8CAOL////n/wYA5P8BAOH/AADl/wUA4f///+H/AQDk/wMA4f///+T/AQDm/wEA5////+r/AADt/wAA7/////P/AAD1////",
"UklGRiQEAABXQVZFZm10IBAAAAABAAIAgLsAAADuAgAEABAAZGF0YQAEAAD//////v///wAAAAAAAAAAAQAAAAAA///9/wAABAD+//n/AgAJAAAA+v/+//f/DAAdAPv/+v+l/8L+jf/4/vgAdwVPAQACLQBo+Qj/Ev7o/N3/VgCbA08Bxf+L+yn9J/2HCU8FmgBvDe30Rv5h/LT09gi5CxkA5gOi8/30kwEM+4YJMf2nBmkJJAQQBLoFtvvv+m4A7PF6/R0Bif3qAuf8WARAAf4GyABG/BIAwvr4Acv8U//c/yIC8AEn/B8Daf2CAgMBAf3MAN38vgLK/UT/QwCyAPYClPyvAW/+pQAoASD+zP+R/IYC1f7C/nEBQP96AZb+1QAIAM//yQE7/tkAZ/7TAXL/w/8+AIsAtwB7/24A4v9a/z4A7v4iADb/dwCj/23/kgBOANUAIv8lAKEAxP9gAK7/BwCP/5kA7/9v/0wAzv9DAGT/3/9vAHv/6P+q/xUA7P8XAO//uv/g/2UAEgCV/wEATADM/+7/+//j/+D/9v/i//j/IgD+/xoAxf/6/z4A5/+8/9D/QwDq/+3/OQDT/zUAIgA/APP/PgAjAPD/BwAGACAADAC3//b/HAA3AN//RgDN/w8AIAACAN//GQBDACEAIwA+ACoAJQAeAPz/KgAYAPr/DgAEABYAIgAcAMT/7f8OAOL/5P/2//L/9P8GAPT/7v/8/+7/6v/t//z/AgAUAOL//P8VAAMA4/8IAPb/+P8MAAoA5v8NAAsA9v///wEAAAD9//n/9/8JAAYA7v/6/wMA+f8GAAEA7f/7/xgACAD4/w8A///3/w0A+f8BAAIA/P/5/xIA///9//r/7v/+/xYACQD///H/CwDz/wEADgAHAPP/FADn/+3/AQD5//f/AgD7/wEABwAMAAEADQD8//n/8f8OAPX/BAD+//X/+v8WAAQA+f8CAAEA7/8QAAEA/P8DAAUA9f8KAAwA9v8DAAUA+f8OAAoA9f/7/w0A+v8EAAgA8P/6/woA+//8/wkA+P/3/woA+//8/wcA9//1/woAAwD5/wcA/P/3/w0AAwD3/wEABAD2/wkABgD3/wEABQD3/wUABQD3//v/BwD3/wMABQD3//r/CQD7////BQD6//n/CQD9//3/BAD9//j/BwAAAPv/AwD///j/BwABAPn/AQABAPn/BQACAPn///8DAPr/AwADAPr//v8EAPv/AQADAPv//P8FAP3///8DAPz/+/8FAP7//f8CAP7/+/8EAP///P8BAP//+/8DAAEA+/8AAAEA+/8CAAIA+////wIA/f8AAAIA/P/+/wIA/f8AAAIA/f/9/wMA/////wEA///+/wIA/////wAAAAD+/wAAAAD/////AAD//wAA//8AAP//AAD//wAA",
"UklGRiQEAABXQVZFZm10IBAAAAABAAIAgLsAAADuAgAEABAAZGF0YQAEAAD////////+//////8AAP////8AAP//AAAAAPz//f8IAAMA9////w4AAQD6/wwA8//+/y8Afv/0/2H/UP5gAbH+2QG1B2cAVAIh/l32FPyM/nACPQDV/+UEo/Q6AQwCu/oLD9kF8QJA/Uz+Wf2KCOcC+wUKBsL5aQBQ97rwOPiPAvn5CAl8AHEDkQPcAA8Bn/lIAdz7HQF1+xz9cAM4/94E4gDKAun+cgPYAYr9JgJr/bf+ivxz/MoBgv5UA8EBSgAQAJ7/UgEk/cQB7f63/sD/vf4XAhT/BQFCADYAnQGI/9EBtv3hALD/vP+c/3H/TgIN/1sBpf8yAP3/4f8qABr+1f8OAJ3/dwAGADEBnv9JAPz/IQBwAIH/jgAS/4wAsACTAOn/DQDCALn/ZQCSAAIAAwD1/9//jv9aADQA/v9EAB0AfgA8AAQACgB9APr/IAARAPT/5v9xACAABAAHAGUAt/89AC4ACgAjAMP/+v/9/xYA7f/1/+D/7P87AC0Auv8RAAcA9/8FAC8A2//y/xIAEwAaADQAJADp/zoAAgAfABIA2f/e/zUA+P/6/w4A9//A/zcA4//P//T/5f/R////EwDb/w4A8/8BABkANADh/xEA+f/0/wIAHADc//j/GwD1//f/GADs/+v/EAAAAPz/EgD3/+r/FgAMAAkAGAD9/+z/IQAQAPH/GQD3//z/CgAfAOX/AgD8//H/BAATAOv/+v///wIABAAdAOj/BQAPAAcAAQATAOz/8/8JAAkA6f8VAOv/+f8QABUA/v8OAO3/+P8KABUA9f8FAPv/5/8TAA0A7f8XAAkAAQAJABYA4/8WAAcACgANABEA7v8EAP7/AAD+/wMA9//7/xAAAQD8/wQA+f/7/wMABgDq/wAA+v/3/wYACQD1//3/BAD9/wgADgDw//r/AgD6/wEACADv//j/BQD///X/BwDu//j/AgACAPP/BAD2//n/BAAGAPb/BAD8//3/BQAJAPL/AwD+//3/BAAIAPP//f8DAPz/AAAGAPP/+/8CAP7//f8FAPX/+f8DAAAA/P8EAPf/+v8GAAMA+/8EAPv/+/8GAAQA+v8CAP///P8EAAUA+f8AAP///f8CAAUA+P///wEA/v8BAAUA+f/+/wIAAAD//wUA+v/9/wMAAQD9/wQA+//9/wMAAgD8/wMA/P/9/wMAAwD7/wEA/v/+/wIAAwD6/wEA///+/wAABAD6/wAAAQD//wAAAwD7////AQAAAP//AwD8//7/AgABAP3/AgD9//7/AQABAP3/AQD+//7/AAACAPz/AAD+//////8BAP3/AAD//wAA//8BAP7/AAD//wAA/v8AAP7/AAD//wAA//8AAP//",
"UklGRiQEAABXQVZFZm10IBAAAAABAAIAgLsAAADuAgAEABAAZGF0YQAEAAD//////P/9//3//////wAAAAAAAAIAAgACAP//CAAEAEEA//+cAAUAb/8HAAH9+P9eARkAogQUAJn8BwCd/gX/+QQNAKoC9gFdAtb/b/vd/936TP/6AsD/nfqn/un1W/0dA8IEsQLvAJv2bP72+WMAkP8dAcX+nQO2AIr6bP/EABX+NgK/Bdj2IQv2AE4EUAiD/xQAnwIm/B0B/wGNAoH7sQaP/b8CiQakAqD+R/9xA477KQL//6r75v/O/pcCgQCtAiMCBQAkANAARwHf//39hgBl/kUAJgEtAUEATgA/AgoASADK/zUAJv29/vL+l/9c/0cAUwBBAE8A6QE5/87/Wv9NAOf+5v7P/5P/4/9BAKYAQwDD/zYB5v+r/zYATwAp/1v/WQAEAB0AhwA0AA0AIAA3AAEAzv/u/+//5v9m/zwAIADQ/8T/SABiANb/SwAbAFf/MQDX/7L/hP8TAPr/AgAMAAsAHwAZAI3/VgDC/9v/5//x/6P/AwBlAMv/yf82AB4A+P9WAPj/NwDi/1EA0v9JANj/JwAcAAEADABYANj/4f8MAEwAmP82AN//3P8UADYA7//6/wIACADU/ygAyv82AN7/9v/2/ygAxv/9/+3/5//n/zUA6//g/y4ADgD5/wsABwDv/xIADwAGACoAJQD3/zIA+/8FABsAFgDO/zAAHAAIABQALADp/xcACAAAAPH/GADs/wkACQAFAAgAFQDp/wIAHAD1//P/EQDw/+3/GAD9/+f/HAD8//T/DAAQAPH/HwD4//r/DwAPAOj/EQACAOn/DAAXAOX/BAAOANH/9/8MAO//9f8LANT/9f8EAO//6f8NANb/+P8KAOz/5v8MAOD/7f8UAO//7//+//7/9v8YAPj/9f/z/wsA+v8SAPD/+v/x/xYA+f8SAPb/9//3/xEABQACAPn/9//y/xQACQD///b//v/7/xIACQD9//H/AAD7/xEAAgD5//P/AwD9/w8AAgD3//D/BAD//wUA/v/0//D/BgADAAMA/P/2//f/BwAGAP7/+//2//j/CAAFAPv/+f/5//v/BwAHAPn/9//7//7/BQAFAPf/9//+/wEABAACAPf/+P8BAAIAAgAAAPj/9/8CAAMAAAD+//n/+f8EAAQA/v/8//r/+/8EAAMA/P/7//z//P8EAAIA/P/5//7//v8DAAEA+//5//////8CAAAA+//5/wEAAAABAP//+//6/wIAAQD///3//P/7/wMAAQD///3//f/9/wIAAQD9//3//v/9/wMAAQD9//z/AAD//wEAAAD9//z/AAAAAAAA///9//3/AAD//wAA/v////7/AAD//wAA////////AAD//wAA//8AAP//",
"UklGRiQEAABXQVZFZm10IBAAAAABAAIAgLsAAADuAgAEABAAZGF0YQAEAAD+////+f////v//v///wAA/////wUAAQAIAAIABwACAHkATAAOAaMAAf9C/9X6QvwhArAAtghABW37nv/y+0wAWQNcAE8JRwSOC6AEJe8P8S/zrPWaBI/+LQA/+0L+P/4K8AgAb/8uCh78BQtC614GaQWfAin5UfzN8Tf+GQizAZ4MCQMbGJ4BoRS7AvcHyQARA6n9ZwHZ/z4DvwAZAlAB6gbNAS4GFADFATL7E/2K+j37C/xp/SD9Uv0VAOsDs//WAd3+bv7F/f79mP2X/KH+FwC0/1n+VgFcATABHQGaAET+nf8Y/hoAovpqAXj9CQKW/lsCl/4RApj+bAHk/RcAlv4BAG/+DgDi//3/GwAOAEIAq/+y/3z/8v8+/7T/Tv8//27/mgDZ/1sA+P+cAAAA/P/i/yMAi/85AMP/KgDM/9MA9P+QABoA4QAiACwACwBdAP7/TQDb/y0Ayf+SAA0AZwDg/4wA+/8/AAMAgQDp/w0ADAAQAAoANgAgAA4AKABIAB4A4v/3/+f/+v/c/+n/EADn/wgAFAAqAOz/IwDc/9//3f8XAND/2v/a/w0A5v8BANb/9P/m/wAA8P8ZAN3/RwAGAEsABgB/AP7/NAASAEgABAA3AP3/KgD9/1sA8P8lAOr/FgD1/xAA4/8kAOv/AwD4/xEA5f8NAPT/+v/3/x8A7f8PAPj/IwD5/yAA9/8ZAAEAGgD4/xoA9f8HAAMACAD0/xgA+P8AAPr/IQDp/w4A8v8HAPX/IgD1/wYA+P8GAPX/GgD3/woABQASAAcAGQDw/+v/9P8bAP3/HADs/+f/7/8LAPr//v/0//T/AgD2/wsA6P///+P/CADY//7/5v/3/wQA/v8LAPD/GgD1/yMA/P8QAOv/LADw/yQA+P8XAO7/MQD9/yEAAQAcAPD/IgD9/xMA+/8OAO//FQABAAoA+/8PAPP/FQABAAQA9/8PAPX/CAADAAEA+P8NAPv/CAAGAAUA9/8JAP//AAAFAPz/+f8HAAQA/f8FAP3//P8FAAYA+P8DAP7/+/8AAAcA9/8BAP///f///wgA9//+/wAA/v/8/wUA9//8/wIA///7/wUA+v/7/wIAAAD6/wMA/P/6/wEAAQD6/wEA/v/7/wIAAgD6////AAD7/wEAAgD7//7/AQD8/wAAAwD8//3/AwD9/wAAAgD9//z/AwD/////AgD+//z/AwAAAP7/AQD///3/AgABAP3/AAAAAP3/AgACAPz///8BAP3/AQACAP3//v8BAP7/AAABAP3//v8CAP7///8BAP7//f8CAP////8AAAAA/v8CAAAAAAAAAAAA/v8BAAAAAAD//wAA//8AAP//AAD//wAA//8AAP//",
"UklGRiQEAABXQVZFZm10IBAAAAABAAIAgLsAAADuAgAEABAAZGF0YQAEAAAAAP//AAD//wAA//8AAAAA/////wAAAQD+////AAAGAP3/OAABAIIAAwBv//f/E/0QAK0ADQCzA/7/8P4u/0cBDQCJA6ABbQDg/w7/z/9o+Vn/SPnL/1//Ef+2+jr9RfZgA5QFZwILDFj+PAb2/nEFKgKk/R0Dlv6b/FUDsP6YAoj9SgAT/iL/tAPwAv8A0P6zAr7/dwAnAf39uP22/skA2v///2YCoP4UAUsAZgF2AJH+4P70/rz9+f+U/Xv/8v7CAcb+TACS/kwAv/+x/tX9oP71/oL/1f8nAEUAZwGtAAgAIgC/AD4BaP8GAGH/dQDF/64Arf8nAakAhAH9/+kAQQD3AFb/q/8p/yIAR/8FAPD/ZAA/AIYA3v8tADQADQBp/3f/CwABAP3/Wf8OANj/WwDH/xoAe/8DAKz/zv96/z8A3f/J/5X/IAD5//j/q//c/+//RADq//D/vv8pADUAFQDI/y8ACAAbANb/OwD3/+3/9f/e/wcAIAAeAMH/8/8xAC0AEADW/+3/HAADAPv/8P8DAOL/OwD3/xcACQAHAM//5f8XAAcAz//T/9D/HgD9////yf/e//v/AgD//9H/6/////H/+/8hAAIA9//7/w0AFgAQAPL/2v/8/xsAGQABANz/9P8YAAQA/v/y/wMA5v8YAAkAAAAAAAMA7/8KABgADwDs//j/BwATABsA8P/1//z/BAAMAAAA9P/s/xAA/v8GAAkA/v/p/wMACwALAP7/9P/p/wcADQAFAPb/7//4/w0ACAD8//b//v/1/wMACwD1//T/8P/8/wAACQDz/+f/5P8GAAkABQD5//D/+v8FAA0AAwD///T/AgACABAA/v8CAPD/+/8FAAoA9f/3//f//v8GAP7/9v/t//z/+f8AAPj/+v/3/wEA+v8HAPr//P/5/wQA//8DAPr/+P/3/wYA///+//X/+//5/wQA/f/7//X/+//4/wMA/f/8//j//v/9/wYA///8//f/AgAAAAUA/f/6//n/AwACAAIA/f/7//z/AwACAAAA/f/6//3/AgADAP7//f/7/wAAAwAFAPz////8/wMAAgAEAPv//v/+/wMAAgADAPv//v///wMAAQABAPv//f8AAAIAAAD///v//f8BAAIA///+//z//v8CAAIA/v/9//3///8CAAEA/v/9//7/AAACAAAA/v/9////AAABAAAA/f/9/wAAAQABAP///f/+/wEAAQAAAP///v/+/wEAAQD///7//v///wEAAQD///7//v///wEAAAD+//7///8AAAAAAAD+//7///8AAAAA///+//7///8AAAAA////////AAAAAP////////////8AAP//////////",
"UklGRiQEAABXQVZFZm10IBAAAAABAAIAgLsAAADuAgAEABAAZGF0YQAEAAAAAAAAAAABAAAAAAD//////////////v////3/////////+//8////AQD9//z/9f8BAAIA+f8dACgAWQBxAJX/qv+Y/uz9aP9k/7UDUQQBAiQA4Pgi/AkB0gKaBsD/+fxp/vz9CQSp/I/+ywDO+vMD0fzK/PABcgBeBfoBv/+uAuH9Sf5gAy39awMmBWUBuP9fA9/9fgDj/2/+EACaACcCSv9Z/2j/rv7hAA0AWf55/7L84P7E/SIAT/67AMv/tf+FAA7/1v+7/gv/IP+E/sQA+P5aAXz/tP9XAFX/tP8o/4r/j//e/yQAMv9mAJT/rgCr/9X/EwCb//H/9f7F/6D/EAAoAK3//v+e/zsAh/+B/7r/if/C/2r/4P/z/6//HwCy/0IA7/9ZALT/y/80ACgA9v/J/9//DgA5ADUALQARADIACwAfAOf/NgArACMACQBBAEcAGAAjAC4AWQBUAHcAAAAfACEAIAAcAPj/CADk/yQA7v89AEEAFwD5/xYA6f8aAOX/AADF/zQADwAUAOT/BQDr/yUA6P8XAOf/HADR/0AA8P8nAAgACQDt/ycAKAAHAPH/IQDz/xsACADn//n/DgADAA4A8P///8z/GgDN/yMA/f8QANj/MwACAC0ACwAOAO3/JgAZAAUACgAAAA4AIgAaAAkADwACAAAAHQATAAUABQACAAgACwAjAO////8AAA8ABQAPAPL//f8GAAsABgAGAPD/8v8GAPz/CAD6//H/6v8PAAgABgD4//3/9v8aAAgABwD1//7//v8QAAoACAD//wUA9v8QAAoABAAFAAgAAgAJAAoAAwD//w0AAgD//wcA/v8DAAoABQAFABUABAAKAAYABwAHAA8ACgAGAAwADwAMAAkAEAAJAAgADwAMAAgADgAJAAUACQAPAAUACwAHAAEABgAIAAEABAAGAP//AgAJAAAAAgAEAP7///8IAAIA//8GAAEAAQAJAAIA/v8EAAMA//8JAAEA/v8DAAMA/v8HAAMA/f8BAAUA/v8FAAMA/v8BAAcA//8DAAMA/v8BAAYA//8CAAMA/////wcAAAAAAAMAAAD//wYAAQD+/wMAAQD//wUAAQD+/wIAAgD//wQAAgD+/wEAAwD//wMAAwD+/wEAAwD//wIAAwD//wEABAAAAAEABAD//wAABAABAAAAAwAAAAAABAABAP//AwABAAAAAwACAP//AgACAAAAAwACAP//AgACAAAAAgACAAAAAQADAAAAAQACAAAAAQADAAAAAQACAAAAAAACAAEAAAACAAEAAAACAAEAAAABAAEAAAABAAEAAAABAAEAAAABAAEAAAABAAEAAAABAAEAAAAAAAAAAAAAAAAA",
"UklGRiQEAABXQVZFZm10IBAAAAABAAIAgLsAAADuAgAEABAAZGF0YQAEAAAAAP//AAD//wAA//8AAAAA//8AAP//AAACAAAA+f8BAAYA///4/wIA//8AAA8A/v/V/wEAEwA9AAEBRwA2AF7/kfog/3gBwv99CDYBU/qtAUX/AP7OAfkAX/o9B38FSfwaAuT14/60BAr8CQAI/tfyIQTzAXP+egdUBBwBof7TBMT8bAWi/5EEWwBRAAAKyfxE/8b88vp6ACP+PAF4/qD8MQNM/ygCJ/2XAPD9kP5gAVT/iP9I/lEB4P8qAD0BFAGa/+7/DgB2AOP98gFm/u/+Vv5/AG8ASP9gAM//qv9w//oAcv+2/jIBHgA7/6D/oAAGAKH/lADT/wAAggC8AAYAkP9yAEcAkf8BAOD/RAAr/zUANwDt/xQAJQAkAMT/zwA/AOH/xv9zAGsANQBTAIcALAAvACIATACy/xMADADg/xcAWABvAJL/7f9VAPb/EgDt/wcA4f8kAPP/5P+h/wgACQDy//r/LgAQAMn/8/9CAOX/5v/S/9//3P8pABYAuP/s/w8AFgDt/+3/7v/w/9j/5/8GAOf/2P/2//P//v8kABMAuf/m/xoADADZ/+r/3P8KAAUAKwDe/wsA3P8VAAAADgAfAB0ACAAMAF4AGgAhAPL/MwDz/0kABAAKAPX/LwAbAAkA9v/s/+3/8/8CABAAAADm//n/BQALAAUAAQDj//n/JQAVAPX/9v/+/wIAEQABAPP/8P/1/wAABgD6/+3/7//o//j/DAD8/+b/8P8IAAkABgD4//D/8P8UAAoAAwD4/wAA+f8OAAcAAAAFAPX/9v8TAAkA8v8EAPb/9/8dAA0A7/8CAPn/+f8SAAQA8/8CAOf/+v8DAAgA9P////H//P8IAAUA8//0/wIAAQAGAAgA9//7/wAA+/8EAP//+P/+////AgACAAsA8v/+/wIABQD7/wgA9v/7/wMABAD5/wAA/P/3/wEAAQD7//7//P/1/wQA///3//r////3/wMAAwD1//r/AwD6////AgD4//n/AwD8//7/AgD4//n/AwD+//3/AQD4//n/BQD///n/AAD6//j/BAABAPj/AAD9//v/AwADAPj//v/+//z/AwAEAPj//v8BAP7/AQADAPj//f8CAP////8EAPr//P8DAAAA/v8CAPv//P8DAAEA/f8BAP3//f8DAAIA/P8AAP7//f8DAAIA/P///wAA/f8BAAIA+//+/wEA//8AAAEA+//+/wEA/////wEA/P/+/wEA///+/wAA/f/9/wEAAAD9/wAA/f/+/wEAAQD8/////v/+/wAAAQD8////////////AQD9////AAD/////AAD+////AAAAAP//AAD///////8AAP//AAD//wAA//8AAP//",
];
module.exports = OmnitoneTOAHrirBase64;
| 884.615385 | 1,427 | 0.775652 |
c8b0cb580075b2734351b042557f6cb49f07eeb0 | 633 | js | JavaScript | app/src/store/index.js | rainAgain/ewdt | 93a6f8e4feeaad44823f01d1bc983639f8c8f961 | [
"CC0-1.0"
] | null | null | null | app/src/store/index.js | rainAgain/ewdt | 93a6f8e4feeaad44823f01d1bc983639f8c8f961 | [
"CC0-1.0"
] | null | null | null | app/src/store/index.js | rainAgain/ewdt | 93a6f8e4feeaad44823f01d1bc983639f8c8f961 | [
"CC0-1.0"
] | null | null | null | import Vue from 'vue';
import Vuex from 'vuex';
import createLogger from 'vuex/dist/logger';
import actions from './actions/index.js';
import mutations from './mutations/index.js';
import * as getters from './getters/index.js';
Vue.use(Vuex);
const state = {
currentRoute: '/',
count: 0,
rootPath: '',
rootPan: '',
consoleList: [],
config: {
port: '9800', //端口
startPath: '/pages/default/index.html', //默认启动页
outName: '-dist'
},
isClose: false
};
export default new Vuex.Store({
state,
actions,
getters,
mutations,
plugins: process.env.NODE_ENV !== 'pro'
? [createLogger()]
: []
});
| 18.617647 | 51 | 0.631912 |
c8b0e70d543d18a1d606f14dc6a8458d5b3db014 | 545 | js | JavaScript | webpack/package.babel.js | mikolajpiotrowicz/node-websocket-physics | 2b757212fe6148f5efb74ce0c327436f30d37653 | [
"MIT"
] | 1 | 2018-12-01T10:32:55.000Z | 2018-12-01T10:32:55.000Z | webpack/package.babel.js | funmaker/YouTubeDMT | 7a8fc88427375c592d9324fd124beb729097603e | [
"MIT"
] | 1 | 2020-08-10T12:17:15.000Z | 2020-08-10T12:17:15.000Z | webpack/package.babel.js | funmaker/pixel-lobby | 1791e915dd345e308c84795e93475333d03bb699 | [
"MIT"
] | null | null | null | import * as fs from 'fs';
const tryRead = filename => {
try {
return JSON.parse(fs.readFileSync(filename).toString());
} catch(e) {
return null;
}
};
const pack = {
...tryRead("package.json"),
scripts: {
start: "node server.js",
},
};
delete pack.devDependencies;
fs.writeFileSync("dist/package.json", JSON.stringify(pack, null, 4));
let configs;
configs = {
pocer: {
port: 3000,
},
...tryRead("configs.json"),
...tryRead("dist/configs.json"),
};
fs.writeFileSync("dist/configs.json", JSON.stringify(configs, null, 4));
| 16.515152 | 72 | 0.647706 |
c8b0f187294a9cb3c7779c72f726420f30c74677 | 8,598 | js | JavaScript | src/components/AgeSelector/index.js | LinuxForHealth/patient-browser | dd23974c230f427fd63c2ba0f975c0dc7e8b51d0 | [
"Apache-2.0"
] | 1 | 2022-03-24T02:42:24.000Z | 2022-03-24T02:42:24.000Z | src/components/AgeSelector/index.js | LinuxForHealth/patient-browser | dd23974c230f427fd63c2ba0f975c0dc7e8b51d0 | [
"Apache-2.0"
] | 2 | 2022-03-25T16:49:14.000Z | 2022-03-28T09:41:39.000Z | src/components/AgeSelector/index.js | LinuxForHealth/patient-browser | dd23974c230f427fd63c2ba0f975c0dc7e8b51d0 | [
"Apache-2.0"
] | 1 | 2022-03-09T14:52:07.000Z | 2022-03-09T14:52:07.000Z | import React from "react"
import moment from "moment"
import PropTypes from "prop-types"
import "./AgeSelector.less"
export default class AgeSelector extends React.Component
{
static propTypes = {
min: PropTypes.shape({
value: PropTypes.number,
units: PropTypes.oneOf(["years", "months", "days"])
}),
max: PropTypes.shape({
value: PropTypes.number,
units: PropTypes.oneOf(["years", "months", "days"])
}),
group: PropTypes.string,
onMinChange : PropTypes.func,
onMaxChange : PropTypes.func,
onGroupChange: PropTypes.func,
update : PropTypes.func
};
static defaultProps = {
min: {
value: 0,
units: "years"
},
max: {
value: 100,
units: "years"
},
group: "",
update: () => alert("No update function provided!")
};
constructor(...args) {
super(...args)
this.onChangeMinValue = this.onChangeMinValue.bind(this)
this.onChangeMinUnits = this.onChangeMinUnits.bind(this)
this.onChangeMaxValue = this.onChangeMaxValue.bind(this)
this.onChangeMaxUnits = this.onChangeMaxUnits.bind(this)
this.onGroupChange = this.onGroupChange .bind(this)
this.state = this._propsToState(this.props);
}
_propsToState(props) {
let state = {}
if (props.min && typeof props.min == "object") {
if (props.min.hasOwnProperty("value")) {
state.minValue = isNaN(props.min.value) ? "" : props.min.value;
}
if (props.min.hasOwnProperty("units")) {
state.minUnits = props.min.units;
}
}
if (props.max && typeof props.max == "object") {
if (props.max.hasOwnProperty("value")) {
state.maxValue = isNaN(props.max.value) ? "" : props.max.value;
}
if (props.max.hasOwnProperty("units")) {
state.maxUnits = props.max.units;
}
}
return state;
}
componentWillReceiveProps(newProps) {
let newState = this._propsToState(newProps);
if (Object.keys(newState).length) {
this.setState(newState);
}
}
// Event handlers ----------------------------------------------------------
/**
* When the numeric value of the min-age changes
* @param {Event} e
*/
onChangeMinValue(e) {
if (this.props.onMinChange) {
let min = {
value: e.target.valueAsNumber || parseFloat(e.target.value || "0"),
units: this.props.min.units
}
if (this.canSet(min, this.props.max)) {
this.props.onMinChange(min)
}
else {
this.setState(this._propsToState({ min }));
}
}
}
/**
* When the units of the min-age change
* @param {Event} e
*/
onChangeMinUnits(e) {
if (this.props.onMinChange) {
let min = {
value: this.props.min.value,
units: e.target.value
};
if (this.canSet(min, this.props.max)) {
this.props.onMinChange(min)
}
else {
this.setState(this._propsToState({ min }));
}
}
}
/**
* When the numeric value of the max-age changes
* @param {Event} e
*/
onChangeMaxValue(e) {
if (this.props.onMaxChange) {
let max = {
value: e.target.valueAsNumber || parseFloat(e.target.value || "0"),
units: this.props.max.units
};
if (this.canSet(this.props.min, max)) {
this.props.onMaxChange(max)
}
else {
this.setState(this._propsToState({ max }));
}
}
}
/**
* When the units of the max-age change
* @param {Event} e
*/
onChangeMaxUnits(e) {
if (this.props.onMaxChange) {
let max = {
value: this.props.max.value,
units: e.target.value
};
if (this.canSet(this.props.min, max)) {
this.props.onMaxChange(max)
}
else {
this.setState(this._propsToState({ max }));
}
}
}
/**
* When the selected age group changes
* @param {Event} e
*/
onGroupChange(e) {
if (this.props.onGroupChange) {
this.props.onGroupChange(e.target.value)
}
}
// Validators and helper methods -------------------------------------------
/**
* Given two dates (as value and units) returns true if min is before max.
* This is used to validate inputs and prevent the user from entering
* invalid ranges
* @param {Object} min The min date as { value: number, units: string }
* @param {Object} max The max date as { value: number, units: string }
* @returns {Boolean}
*/
canSet(min, max) {
let maxDuration = moment.duration(max.value, max.units);
let minDuration = moment.duration(min.value, min.units);
return minDuration < maxDuration;
}
// Rendering methods -------------------------------------------------------
render() {
let valid = this.canSet({
value: this.state.minValue,
units: this.state.minUnits
}, {
value: this.state.maxValue,
units: this.state.maxUnits
});
return (
<div className={ "age-widget-wrap form-control input-sm" + (this.props.group == "**custom**" ? " custom" : "")}>
<select
id="ageSelector"
onChange={ this.onGroupChange }
value={ this.props.group || "" }
>
<option value="">Any Age</option>
<option value="infant">Infants (0 - 12 months, Alive only)</option>
<option value="child">Children (1 - 18 years, Alive only)</option>
<option value="adult">Adults (18 - 65 years, Alive only)</option>
<option value="elderly">Elderly (65+ years, Alive only)</option>
<option value="**custom**">
{
this.props.group == "**custom**" ?
"Custom Age, Alive only:" :
"Custom Age, Alive only"
}
</option>
</select>
{
this.props.group == "**custom**" ?
<div className={ "age-widget" + (valid ? "" : " invalid") }>
<span>Min:</span>
<input
type="number"
value={ this.state.minValue }
onChange={ this.onChangeMinValue }
min={0}
step={1}
/><select
value={ this.state.minUnits }
onChange={ this.onChangeMinUnits }
>
<option value="years">Years</option>
<option value="months">Months</option>
<option value="days">Days</option>
</select>
</div> : null
}
{
this.props.group == "**custom**" ?
<div className={ "age-widget" + (valid ? "" : " invalid") }>
<span>Max:</span>
<input
type="number"
value={ this.state.maxValue }
onChange={ this.onChangeMaxValue }
min={0}
step={1}
/><select
value={ this.state.maxUnits }
onChange={ this.onChangeMaxUnits }
>
<option value="years">Years</option>
<option value="months">Months</option>
<option value="days">Days</option>
</select>
</div> : null
}
</div>
)
}
}
| 33.717647 | 124 | 0.446848 |
c8b125a86beca424ec54cdfbf243736fd6398c76 | 268 | js | JavaScript | src/firebase/firebase.js | horvathaa/adamite | 605668062cd5e085927cda97c9d3f20b8aa607e2 | [
"MIT"
] | null | null | null | src/firebase/firebase.js | horvathaa/adamite | 605668062cd5e085927cda97c9d3f20b8aa607e2 | [
"MIT"
] | null | null | null | src/firebase/firebase.js | horvathaa/adamite | 605668062cd5e085927cda97c9d3f20b8aa607e2 | [
"MIT"
] | null | null | null | import * as firebase from 'firebase/app';
import { config } from './secrets.app.js';
import 'firebase/firestore';
import 'firebase/auth';
firebase.initializeApp(config);
firebase.auth().setPersistence(firebase.auth.Auth.Persistence.LOCAL);
export default firebase;
| 24.363636 | 69 | 0.768657 |
c8b12cc67aa08c07277f833d2863e83521122133 | 6,470 | js | JavaScript | dist/js/keystone-comments.js | vl-perso/kitchen | e309d880a313ead2a13ea8654781a2de073b92ee | [
"MIT"
] | null | null | null | dist/js/keystone-comments.js | vl-perso/kitchen | e309d880a313ead2a13ea8654781a2de073b92ee | [
"MIT"
] | 3 | 2021-03-10T12:16:56.000Z | 2021-09-20T21:50:06.000Z | dist/js/keystone-comments.js | vl-perso/kitchen | e309d880a313ead2a13ea8654781a2de073b92ee | [
"MIT"
] | null | null | null | !function(n){var e={};function t(a){if(e[a])return e[a].exports;var r=e[a]={i:a,l:!1,exports:{}};return n[a].call(r.exports,r,r.exports,t),r.l=!0,r.exports}t.m=n,t.c=e,t.d=function(n,e,a){t.o(n,e)||Object.defineProperty(n,e,{enumerable:!0,get:a})},t.r=function(n){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(n,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(n,"__esModule",{value:!0})},t.t=function(n,e){if(1&e&&(n=t(n)),8&e)return n;if(4&e&&"object"==typeof n&&n&&n.__esModule)return n;var a=Object.create(null);if(t.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:n}),2&e&&"string"!=typeof n)for(var r in n)t.d(a,r,function(e){return n[e]}.bind(null,r));return a},t.n=function(n){var e=n&&n.__esModule?function(){return n.default}:function(){return n};return t.d(e,"a",e),e},t.o=function(n,e){return Object.prototype.hasOwnProperty.call(n,e)},t.p="",t(t.s=13)}({0:function(n,e,t){"use strict";t.d(e,"c",(function(){return a})),t.d(e,"b",(function(){return r})),t.d(e,"d",(function(){return o})),t.d(e,"a",(function(){return c}));var a=function(n){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return fetch("https://keystone-blog-enrichment.herokuapp.com/admin/api",{method:"POST",headers:{"Content-Type":"application/json"},credentials:"include",body:JSON.stringify({variables:e,query:n})}).then((function(n){return n.json()})).catch((function(n){return console.log(n)}))},r=function(){return a("\n {\n authenticatedUser {\n id\n name\n bookmarks {\n id\n path\n name\n }\n }\n }\n ").then((function(n){return!(!n||!n.data)&&n.data.authenticatedUser}))},o=function(n){return n.every((function(n){return""!==n.value}))},c=function(n,e){return a(n,e).then((function(n){var e=n.data;return e?e.allPages?e.allPages[0]||{}:e.allComments?{comments:e.allComments}:e.addComment?e.addComment:e.clap?e.clap:e:{}}))}},13:function(n,e,t){"use strict";t.r(e);var a=t(0),r={"":["<em>","</em>"],_:["<strong>","</strong>"],"\n":["<br />"]," ":["<br />"],"-":["<hr />"]};function o(n){return n.replace(RegExp("^"+(n.match(/^(\t| )+/)||"")[0],"gm"),"")}function c(n){return(n+"").replace(/"/g,""").replace(/</g,"<").replace(/>/g,">")}var i=function n(e){var t,a,i,l,u,m=/((?:^|\n+)(?:\n---+|\* \*(?: \*)+)\n)|(?:^```(\w*)\n([\s\S]*?)\n```$)|((?:(?:^|\n+)(?:\t| {2,}).+)+\n*)|((?:(?:^|\n)([>*+-]|\d+\.)\s+.*)+)|(?:\!\[([^\]]*?)\]\(([^\)]+?)\))|(\[)|(\](?:\(([^\)]+?)\))?)|(?:(?:^|\n+)([^\s].*)\n(\-{3,}|={3,})(?:\n+|$))|(?:(?:^|\n+)(#{1,3})\s*(.+)(?:\n+|$))|(?:`([^`].*?)`)|( \n\n*|\n{2,}|__|\*\*|[_*])/gm,s=[],d="",p=0,f={};function h(n){var e=r[n.replace(/\*/g,"_")[1]||""],t=s[s.length-1]==n;return e?e[1]?(s[t?"pop":"push"](n),e[0|t]):e[0]:n}function g(){for(var n="";s.length;)n+=h(s[s.length-1]);return n}for(e=e.replace(/^\[(.+?)\]:\s*(.+)$/gm,(function(n,e,t){return f[e.toLowerCase()]=t,""})).replace(/^\n+|\n+$/g,"");i=m.exec(e);)a=e.substring(p,i.index),p=m.lastIndex,t=i[0],a.match(/[^\\](\\\\)*\\$/)||(i[3]||i[4]?t='<pre class="code '+(i[4]?"poetry":i[2].toLowerCase())+'">'+o(c(i[3]||i[4]).replace(/^\n+|\n+$/g,""))+"</pre>":i[6]?((u=i[6]).match(/\./)&&(i[5]=i[5].replace(/^\d+/gm,"")),l=n(o(i[5].replace(/^\s*[>*+.-]/gm,""))),">"===u?u="blockquote":(u=u.match(/\./)?"ol":"ul",l=l.replace(/^(.*)(\n|$)/gm,"<li>$1</li>")),t="<"+u+">"+l+"</"+u+">"):i[8]?t='<img src="'+c(i[8])+'" alt="'+c(i[7])+'">':i[10]?(d=d.replace("<a>",'<a href="'+c(i[11]||f[a.toLowerCase()])+'">'),t=g()+"</a>"):i[9]?t="<a>":i[12]||i[14]?t="<"+(u="h"+(i[14]?i[14].length:"="===i[13][0]?1:2))+">"+n(i[12]||i[15])+"</"+u+">":i[16]?t="<code>"+c(i[16])+"</code>":(i[17]||i[1])&&(t=h(i[17]||"--"))),d+=a,d+=t;return(d+e.substring(p)+g()).trim()},l=function(n){n.preventDefault();var e=n.target,t=document.title,r=e.elements,o=r.path,c=r.name,i=r.body,l=r.email;Object(a.d)([o,c,i,l])?Object(a.a)("\n mutation AddComment($path: String!, $pageTitle: String, $comment: CommentCreateInput!) {\n addComment(path:$path, pageTitle: $pageTitle, comment: $comment ){\n comments {\n id\n name\n body\n date\n }\n }\n }",{path:o.value,pageTitle:t,comment:{body:i.value,name:c.value,email:l.value}}).then((function(n){return alert("Thank you, all comments are moderated before publishing."),e.reset(),n})).then(u).catch((function(n){alert("Sorry, there was an error sending this comment.")})):alert("All fields are required")},u=function(n){var e=n.comments;document.getElementById("keystone-comments").innerHTML="\n <h2>Comments</h2>\n ".concat(e?'<ul class="keystone-comments">'.concat(e.map((function(n){return'\n <li class="keystone-comment">\n <div class="l-stack">\n <div class="l-comment-name">\n <img src="https://api.adorable.io/avatars/64/'.concat(n.name,'.png">\n <div class="l-comment-meta">\n <span>').concat(n.name,'</span>\n <span class="comment-date">').concat(new Date(n.date).toLocaleDateString(void 0,{year:"numeric",month:"short",day:"numeric",hour:"2-digit",minute:"2-digit"}),'</span>\n </div>\n </div>\n <div class="l-stack">').concat(i(n.body),"</div>\n </div>\n </li>")})).join("\n"),"</ul>"):"")},m=window.location.pathname;Object(a.a)("\nquery Comments ($path: String!) {\n allComments (where: {page: { path: $path } }) {\n id, \n name, \n body, \n date\n }\n}\n",{path:m}).then(u).then((function(){var n=window.location.pathname,e=document.createElement("form");e.innerHTML='\n <h3>Join the discussion</h3>\n <input type="hidden" name="path" value="'.concat(n,'"/>\n <div class="l-form-row">\n <label>Name</label>\n <input type="text" name="name" class="input" />\n </div>\n <div class="l-form-row">\n <label>Email</label>\n <input type="text" name="email" class="input"/>\n </div>\n <div class="l-form-row">\n <label>Comment</label>\n <textarea name="body" class="textarea"></textarea>\n </div>\n <div class="l-form-row">\n <button type="submit" class="button">\n Share opinion\n </button>\n </div>\n '),e.classList.add("js-keystone-comment-form"),e.addEventListener("submit",l),window.document.querySelector("#keystone-comments-form").appendChild(e)}))}});
//# sourceMappingURL=keystone-comments.js.map | 3,235 | 6,424 | 0.557032 |
c8b223be24c27eeb16ff4b3935a9a0eece1b84da | 8,071 | js | JavaScript | test/server/AbilityMessage.spec.js | Saviouress/throneteki | a4716744a5a8463dc8e5e4017aef4cea33291455 | [
"MIT"
] | null | null | null | test/server/AbilityMessage.spec.js | Saviouress/throneteki | a4716744a5a8463dc8e5e4017aef4cea33291455 | [
"MIT"
] | null | null | null | test/server/AbilityMessage.spec.js | Saviouress/throneteki | a4716744a5a8463dc8e5e4017aef4cea33291455 | [
"MIT"
] | null | null | null | const AbilityMessage = require('../../server/game/AbilityMessage');
describe('AbilityMessage', function() {
beforeEach(function() {
this.outputterSpy = jasmine.createSpyObj('outputter', ['addMessage', 'addAlert']);
this.context = {
player: 'PLAYER_OBJ',
source: 'SOURCE_OBJ',
target: 'TARGET_OBJ',
opponent: 'OPPONENT_OBJ'
};
});
describe('.create()', function() {
describe('when nothing is passed in', function() {
it('creates a nullable message', function() {
let message = AbilityMessage.create(null);
message.output(this.outputterSpy, this.context);
expect(this.outputterSpy.addMessage).not.toHaveBeenCalled();
});
});
describe('when a function is passed', function() {
it('creates an object that wraps the function', function() {
let spy = jasmine.createSpy('outputFunc');
let message = AbilityMessage.create(spy);
message.output(this.outputterSpy, this.context);
expect(spy).toHaveBeenCalledWith(this.context);
});
});
describe('when just a format string is passed', function() {
it('creates a message with the specified format and no extra args', function() {
let message = AbilityMessage.create('{player} uses {source} to kill {target}');
message.output(this.outputterSpy, this.context);
expect(this.outputterSpy.addMessage).toHaveBeenCalledWith('{0} uses {1} to kill {2}', 'PLAYER_OBJ', 'SOURCE_OBJ', 'TARGET_OBJ');
});
it('replaces all instances of the format argument', function() {
let message = AbilityMessage.create('{player} uses {source} to kneel {source}');
message.output(this.outputterSpy, this.context);
expect(this.outputterSpy.addMessage).toHaveBeenCalledWith('{0} uses {1} to kneel {1}', 'PLAYER_OBJ', 'SOURCE_OBJ', 'TARGET_OBJ');
});
});
describe('when a property object is passed', function() {
it('creates a message with the specified properties', function() {
let message = AbilityMessage.create({
format: '{player} uses {source} to place {target} in {targetOwner}\'s discard pile',
args: {
targetOwner: () => 'TARGET_OWNER_OBJ'
}
});
message.output(this.outputterSpy, this.context);
expect(this.outputterSpy.addMessage).toHaveBeenCalledWith('{0} uses {1} to place {2} in {3}\'s discard pile', 'PLAYER_OBJ', 'SOURCE_OBJ', 'TARGET_OBJ', 'TARGET_OWNER_OBJ');
});
});
});
describe('constructor', function() {
describe('when the format includes arguments that are not passed', function() {
it('throws an exception', function() {
expect(function() {
new AbilityMessage({
format: '{player} does {foo}',
args: {
}
});
}).toThrow();
});
});
});
describe('output()', function() {
describe('when there are no additional args', function() {
beforeEach(function() {
this.message = new AbilityMessage({
format: '{player} uses {source} to kill {target}'
});
this.message.output(this.outputterSpy, this.context);
});
it('translates named arguments to their numeric values', function() {
expect(this.outputterSpy.addMessage).toHaveBeenCalledWith('{0} uses {1} to kill {2}', jasmine.anything(), jasmine.anything(), jasmine.anything());
});
it('passes the arguments in the correct order', function() {
expect(this.outputterSpy.addMessage).toHaveBeenCalledWith(jasmine.any(String), 'PLAYER_OBJ', 'SOURCE_OBJ', 'TARGET_OBJ');
});
});
describe('when there are optional args', function() {
beforeEach(function() {
this.message = new AbilityMessage({
format: '{player} uses {source} to look at {opponent}\'s hand'
});
this.message.output(this.outputterSpy, this.context);
});
it('translates named arguments to their numeric values', function() {
expect(this.outputterSpy.addMessage).toHaveBeenCalledWith('{0} uses {1} to look at {3}\'s hand', jasmine.anything(), jasmine.anything(), jasmine.anything(), jasmine.anything());
});
it('passes the arguments in the correct order', function() {
expect(this.outputterSpy.addMessage).toHaveBeenCalledWith(jasmine.any(String), 'PLAYER_OBJ', 'SOURCE_OBJ', 'TARGET_OBJ', 'OPPONENT_OBJ');
});
});
describe('when there are target selection arguments', function() {
beforeEach(function() {
this.message = new AbilityMessage({
format: '{targetSelection.choosingPlayer} chooses {targetSelection.value} to {targetSelection.name}'
});
this.context.currentTargetSelection = {
choosingPlayer: 'SELECTION_CHOOSING_PLAYER',
value: 'SELECTION_VALUE',
name: 'SELECTION_NAME'
};
this.message.output(this.outputterSpy, this.context);
});
it('translates selection arguments to their numeric values', function() {
expect(this.outputterSpy.addMessage).toHaveBeenCalledWith('{3} chooses {4} to {5}', jasmine.anything(), jasmine.anything(), jasmine.anything(), jasmine.anything(), jasmine.anything(), jasmine.anything());
});
it('passes the arguments in the correct order', function() {
expect(this.outputterSpy.addMessage).toHaveBeenCalledWith(jasmine.any(String), 'PLAYER_OBJ', 'SOURCE_OBJ', 'TARGET_OBJ', 'SELECTION_CHOOSING_PLAYER', 'SELECTION_VALUE', 'SELECTION_NAME');
});
});
describe('when there are additional args', function() {
beforeEach(function() {
this.message = new AbilityMessage({
format: '{player} uses {source} to place {target} in {targetOwner}\'s {targetLocation}',
args: {
targetLocation: () => 'TARGET_LOCATION_OBJ',
targetOwner: () => 'TARGET_OWNER_OBJ'
}
});
this.message.output(this.outputterSpy, this.context);
});
it('translates named arguments to their numeric values', function() {
expect(this.outputterSpy.addMessage).toHaveBeenCalledWith('{0} uses {1} to place {2} in {4}\'s {3}', jasmine.anything(), jasmine.anything(), jasmine.anything(), jasmine.anything(), jasmine.anything());
});
it('passes the arguments in the correct order', function() {
expect(this.outputterSpy.addMessage).toHaveBeenCalledWith(jasmine.any(String), 'PLAYER_OBJ', 'SOURCE_OBJ', 'TARGET_OBJ', 'TARGET_LOCATION_OBJ', 'TARGET_OWNER_OBJ');
});
});
describe('when the type property is sent', function() {
beforeEach(function() {
this.message = new AbilityMessage({
format: '{player} uses {source} to kill {target}',
type: 'danger'
});
this.message.output(this.outputterSpy, this.context);
});
it('uses the addAlert method', function() {
expect(this.outputterSpy.addAlert).toHaveBeenCalledWith('danger', '{0} uses {1} to kill {2}', 'PLAYER_OBJ', 'SOURCE_OBJ', 'TARGET_OBJ');
});
});
});
});
| 46.924419 | 220 | 0.555322 |
c8b2a339826b131ac6acc7da51ceae59ec0ab1fb | 13,956 | js | JavaScript | tests/with-chatkit-one-to-one.test.js | pusher/chatkit-client-react | 8dc6b60f89604f0a0bc5d5b0b8c2df03d68b1da1 | [
"MIT"
] | 1 | 2020-03-09T14:29:03.000Z | 2020-03-09T14:29:03.000Z | tests/with-chatkit-one-to-one.test.js | pusher/chatkit-client-react | 8dc6b60f89604f0a0bc5d5b0b8c2df03d68b1da1 | [
"MIT"
] | 4 | 2019-10-19T14:45:54.000Z | 2020-04-03T04:26:51.000Z | tests/with-chatkit-one-to-one.test.js | pusher/chatkit-client-react | 8dc6b60f89604f0a0bc5d5b0b8c2df03d68b1da1 | [
"MIT"
] | 2 | 2019-11-08T04:24:34.000Z | 2020-02-25T18:23:31.000Z | import Chatkit from "@pusher/chatkit-client"
import PropTypes from "prop-types"
import React from "react"
import TestRenderer from "react-test-renderer"
import { withChatkitOneToOne, ChatkitProvider } from "../src"
import {
fakeAPI,
makeOneToOneRoomId,
User as FakeUser,
Room as FakeRoom,
ChatManager as FakeChatManager,
CurrentUser as FakeCurrentUser,
} from "./chatkit-fake"
import { runInTestRenderer as helperRunInTestRenderer } from "./helpers"
jest.mock("@pusher/chatkit-client")
beforeEach(() => {
fakeAPI.reset()
fakeAPI.createUser({ id: "alice" })
fakeAPI.createUser({ id: "bob" })
fakeAPI.createUser({ id: "charlie" })
})
describe("withChatkitOneToOne higher-order-component", () => {
Chatkit.ChatManager = FakeChatManager
Chatkit.CurrentUser = FakeCurrentUser
Chatkit.User = FakeUser
Chatkit.Room = FakeRoom
const instanceLocator = "v1:test:f83ad143-342f-4085-9639-9a809dc96466"
const tokenProvider = new Chatkit.TokenProvider({
url: "https://customer-site.com/pusher-auth",
})
const userId = "alice"
const otherUserId = "bob"
const roomId = makeOneToOneRoomId(userId, otherUserId)
const runInTestRenderer = ({ resolveWhen, onLoad }) =>
helperRunInTestRenderer({
instanceLocator,
tokenProvider,
userId,
higherOrderComponent: withChatkitOneToOne,
resolveWhen,
onLoad,
wrappedComponentProps: {
otherUserId,
},
})
it("should inject a properly configured ChatManager", () => {
return runInTestRenderer({
resolveWhen: props => props.chatkit.chatManager !== null,
}).then(({ props }) => {
const chatManager = props.chatkit.chatManager
expect(chatManager).toBeInstanceOf(Chatkit.ChatManager)
expect(chatManager.instanceLocator).toBe(instanceLocator)
expect(chatManager.tokenProvider).toBe(tokenProvider)
expect(chatManager.userId).toBe(userId)
expect(chatManager.connected).toBe(true)
})
})
it("should inject a properly configured CurrentUser", () => {
return runInTestRenderer({
resolveWhen: props => props.chatkit.currentUser !== null,
}).then(({ props }) => {
const currentUser = props.chatkit.currentUser
expect(currentUser).toBeInstanceOf(Chatkit.CurrentUser)
expect(currentUser.id).toBe(userId)
})
})
it("should inject isLoading and update appropriately", () => {
return runInTestRenderer({
resolveWhen: props => !props.chatkit.isLoading,
}).then(({ props, initialProps }) => {
expect(initialProps.chatkit.isLoading).toBe(true)
expect(props.chatkit.isLoading).toBe(false)
expect(props.chatkit.currentUser).toBeInstanceOf(Chatkit.CurrentUser)
expect(props.chatkit.otherUser).toBeInstanceOf(Chatkit.User)
})
})
it("should have a readable display name", () => {
class SomeComponent extends React.Component {
render() {
return null
}
}
const WrappedComponent = withChatkitOneToOne(SomeComponent)
expect(WrappedComponent.displayName).toBe(
"WithChatkitOneToOne(SomeComponent)",
)
})
it("should forward props to nested component", () => {
const TestComponentWithProps = props => {
return <div>{props.text}</div>
}
TestComponentWithProps.propTypes = {
text: PropTypes.string,
}
const WrappedComponent = withChatkitOneToOne(TestComponentWithProps)
const page = (
<ChatkitProvider
instanceLocator={instanceLocator}
tokenProvider={tokenProvider}
userId={userId}
>
<WrappedComponent text={"some_value"} otherUserId={otherUserId} />
</ChatkitProvider>
)
const renderer = TestRenderer.create(page)
const result = renderer.toJSON()
expect(result.children).toEqual(["some_value"])
})
it("should NOT forward config props for the HOC", () => {
return runInTestRenderer({
resolveWhen: () => true,
}).then(({ props }) => {
expect(props.otherUserId).toBe(undefined)
})
})
it("should inject otherUser via props", () => {
return runInTestRenderer({
resolveWhen: props => props.chatkit.otherUser !== null,
}).then(({ props }) => {
const otherUser = props.chatkit.otherUser
expect(otherUser).toBeInstanceOf(Chatkit.User)
expect(otherUser.id).toBe(otherUserId)
})
})
it("should start inject messages as empty array if there are no messages", () => {
return runInTestRenderer({
resolveWhen: props => !props.chatkit.isLoading,
}).then(({ initialProps, props }) => {
expect(initialProps.chatkit.messages).toEqual([])
expect(props.chatkit.messages).toEqual([])
})
})
it("should update messages in props when a new message is received", () => {
const messageParts = [
{
type: "text/plain",
content: "Hi!",
},
]
return runInTestRenderer({
onLoad: () => {
fakeAPI.createMessage({
roomId,
senderId: otherUserId,
parts: messageParts,
})
},
resolveWhen: props => props.chatkit.messages.length !== 0,
}).then(({ props }) => {
expect(props.chatkit.messages).toHaveLength(1)
const message = props.chatkit.messages[0]
expect(message.parts).toEqual(messageParts)
})
})
it("should inject a working sendSimpleMessage method", () => {
return runInTestRenderer({
onLoad: props => {
props.chatkit.sendSimpleMessage({
text: "MY_MESSAGE",
})
},
resolveWhen: props => props.chatkit.messages.length > 0,
}).then(() => {
const room = fakeAPI.getRoom({
id: makeOneToOneRoomId(userId, otherUserId),
})
expect(room.messages).toHaveLength(1)
const message = room.messages[0]
expect(message.parts).toEqual([
{
type: "text/plain",
content: "MY_MESSAGE",
},
])
})
})
it("should inject a working sendMultipartMessage method", () => {
return runInTestRenderer({
onLoad: props => {
props.chatkit.sendMultipartMessage({
parts: [
{
type: "application/json",
content: "2019",
},
],
})
},
resolveWhen: props => props.chatkit.messages.length > 0,
}).then(() => {
const room = fakeAPI.getRoom({
id: makeOneToOneRoomId(userId, otherUserId),
})
expect(room.messages).toHaveLength(1)
const message = room.messages[0]
expect(message.parts).toEqual([
{
type: "application/json",
content: "2019",
},
])
})
})
it("should set otherUser.isTyping to true on userStartedTyping", () => {
return runInTestRenderer({
resolveWhen: props => !props.chatkit.isLoading,
})
.then(({ props }) => {
expect(props.chatkit.otherUser.isTyping).toEqual(false)
})
.then(() =>
runInTestRenderer({
onLoad: () => {
fakeAPI.sendTypingEvent({ roomId, userId: otherUserId })
},
resolveWhen: props =>
!props.chatkit.isLoading &&
props.chatkit.otherUser.isTyping != false,
}),
)
.then(({ props }) => {
expect(props.chatkit.otherUser.isTyping).toEqual(true)
})
})
it("should trigger a typing event when sendTypingEvent is called", () => {
return new Promise(resolve => {
class TestComponent extends React.Component {
constructor() {
super()
this._onLoadHasRun = false
}
componentDidUpdate() {
if (!this.props.chatkit.isLoading && !this._onLoadHasRun) {
this.props.chatkit.sendTypingEvent()
this._onLoadHasRun = true
resolve()
}
}
render() {
return null
}
}
TestComponent.propTypes = {
chatkit: PropTypes.object,
}
const WrappedComponent = withChatkitOneToOne(TestComponent)
const page = (
<ChatkitProvider
instanceLocator={instanceLocator}
tokenProvider={tokenProvider}
userId={userId}
>
<WrappedComponent otherUserId={otherUserId} />
</ChatkitProvider>
)
TestRenderer.create(page)
}).then(() => {
const typingEvents = fakeAPI.typingEvents
expect(typingEvents).toHaveLength(1)
expect(typingEvents[0].userId).toEqual(userId)
expect(typingEvents[0].roomId).toEqual(roomId)
})
})
it("should trigger a render when there is an incoming presence change", () => {
return runInTestRenderer({
onLoad: () => {
fakeAPI.sendPresenceEvent({
userId: otherUserId,
newState: "online",
})
},
resolveWhen: props => {
return (
!props.chatkit.isLoading &&
props.chatkit.otherUser.presence.state === "online"
)
},
}).then(({ props }) => {
expect(props.chatkit.otherUser.presence.state).toEqual("online")
})
})
it("should set otherUser.lastReadMessageId to the initial value on load", () => {
const lastReadMessageId = 42
fakeAPI.createRoom({
id: roomId,
userIds: [userId, otherUserId],
})
fakeAPI.setCursor({
userId: otherUserId,
roomId,
position: lastReadMessageId,
})
return runInTestRenderer({
resolveWhen: props => !props.chatkit.isLoading,
}).then(({ props }) => {
expect(props.chatkit.otherUser.lastReadMessageId).toEqual(
lastReadMessageId,
)
})
})
it("should set otherUser.lastReadMessageId to the latest value", () => {
const lastReadMessageId = 42
return runInTestRenderer({
onLoad: () => {
fakeAPI.setCursor({
userId: otherUserId,
roomId,
position: lastReadMessageId,
})
},
resolveWhen: props => {
return (
!props.chatkit.isLoading &&
props.chatkit.otherUser.lastReadMessageId !== undefined
)
},
}).then(({ props }) => {
expect(props.chatkit.otherUser.lastReadMessageId).toEqual(
lastReadMessageId,
)
})
})
it("should inject a working setReadCursor method", () => {
let messageId = null
return new Promise(resolve => {
class TestComponent extends React.Component {
constructor() {
super()
this._hasSentMessage = false
this._hasSetReadCursor = false
}
componentDidUpdate() {
if (this.props.chatkit.isLoading) {
return
}
if (!this._hasSentMessage) {
const message = fakeAPI.createMessage({
roomId,
senderId: otherUserId,
parts: [
{
type: "text/plain",
content: "Hi!",
},
],
})
this._hasSentMessage = true
messageId = message.id
}
if (
this.props.chatkit.messages.length > 0 &&
!this._hasSetReadCursor
) {
this.props.chatkit.setReadCursor()
this._hasSetReadCursor = true
resolve()
}
}
render() {
return null
}
}
TestComponent.propTypes = {
chatkit: PropTypes.object,
}
const WrappedComponent = withChatkitOneToOne(TestComponent)
const page = (
<ChatkitProvider
instanceLocator={instanceLocator}
tokenProvider={tokenProvider}
userId={userId}
>
<WrappedComponent otherUserId={otherUserId} />
</ChatkitProvider>
)
TestRenderer.create(page)
}).then(() => {
const cursor = fakeAPI.getCursor({
roomId,
userId,
})
expect(messageId).not.toEqual(null)
expect(cursor).toEqual(messageId)
})
})
it("should load the correct room when otherUserId changes", () => {
return new Promise((resolve, reject) => {
class TestComponent extends React.Component {
constructor() {
super()
this._otherUserIdsSeen = new Set()
}
render() {
if (this.props.chatkit.isLoading) {
return null
}
this._otherUserIdsSeen.add(this.props.chatkit.otherUser.id)
if (this._otherUserIdsSeen.size == 2) {
if (!this._otherUserIdsSeen.has("bob")) {
reject(
new Error(
"Exoected other user to have contained bob, but it didn't",
),
)
}
if (!this._otherUserIdsSeen.has("charlie")) {
reject(
new Error(
"Exoected other user to have contained charlie, but it didn't",
),
)
}
resolve()
}
return null
}
}
TestComponent.propTypes = {
chatkit: PropTypes.object,
}
const WrappedComponent = withChatkitOneToOne(TestComponent)
const firstOtherUserId = "bob"
const secondOtherUserId = "charlie"
class TopLevelComponent extends React.Component {
constructor() {
super()
this.state = {
otherUserId: firstOtherUserId,
}
}
render() {
setTimeout(
() => this.setState({ otherUserId: secondOtherUserId }),
100,
)
return (
<ChatkitProvider
instanceLocator={instanceLocator}
tokenProvider={tokenProvider}
userId={userId}
>
<WrappedComponent otherUserId={this.state.otherUserId} />
</ChatkitProvider>
)
}
}
TestRenderer.create(<TopLevelComponent />)
})
})
})
| 27.912 | 84 | 0.579751 |
c8b2bc38b85706ab0ea5849136422889869f1186 | 780,177 | js | JavaScript | assets/js/resos/bookshelf-build.min.js | bakerstreet-club/bakerstreet-club | 2ef05f2511f49dd93f7d0ded536195e60ad086b9 | [
"MIT"
] | 3 | 2017-01-01T13:27:33.000Z | 2019-05-19T14:45:04.000Z | assets/js/resos/bookshelf-build.min.js | bakerstreet-club/bakerstreet-club | 2ef05f2511f49dd93f7d0ded536195e60ad086b9 | [
"MIT"
] | null | null | null | assets/js/resos/bookshelf-build.min.js | bakerstreet-club/bakerstreet-club | 2ef05f2511f49dd93f7d0ded536195e60ad086b9 | [
"MIT"
] | null | null | null | /*
RequireJS text 0.25.0 Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved.
Available via the MIT or new BSD license.
see: http://github.com/jrburke/requirejs for details
RequireJS order 0.25.0 Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved.
Available via the MIT or new BSD license.
see: http://github.com/jrburke/requirejs for details
*/
(function(){var b=["Msxml2.XMLHTTP","Microsoft.XMLHTTP","Msxml2.XMLHTTP.4.0"],c=/^\s*<\?xml(\s)+version=[\'\"](\d)*.(\d)*[\'\"](\s)*\?>/im,e=/<body[^>]*>\s*([\s\S]+)\s*<\/body>/im,f=typeof location!=="undefined"&&location.href,k=[];define("text",[],function(){var m,h,n;typeof window!=="undefined"&&window.navigator&&window.document?h=function(b,c){var e=m.createXhr();e.open("GET",b,true);e.onreadystatechange=function(){e.readyState===4&&c(e.responseText)};e.send(null)}:typeof process!=="undefined"&&
process.versions&&process.versions.node?(n=require.nodeRequire("fs"),h=function(b,c){c(n.readFileSync(b,"utf8"))}):typeof Packages!=="undefined"&&(h=function(b,c){var e=new java.io.File(b),f=java.lang.System.getProperty("line.separator"),e=new java.io.BufferedReader(new java.io.InputStreamReader(new java.io.FileInputStream(e),"utf-8")),k,m,h="";try{k=new java.lang.StringBuffer;(m=e.readLine())&&m.length()&&m.charAt(0)===65279&&(m=m.substring(1));for(k.append(m);(m=e.readLine())!==null;)k.append(f),
k.append(m);h=String(k.toString())}finally{e.close()}c(h)});return m={version:"0.25.0",strip:function(b){if(b){var b=b.replace(c,""),f=b.match(e);f&&(b=f[1])}else b="";return b},jsEscape:function(b){return b.replace(/(['\\])/g,"\\$1").replace(/[\f]/g,"\\f").replace(/[\b]/g,"\\b").replace(/[\n]/g,"\\n").replace(/[\t]/g,"\\t").replace(/[\r]/g,"\\r")},createXhr:function(){var c,e,f;if(typeof XMLHttpRequest!=="undefined")return new XMLHttpRequest;else for(e=0;e<3;e++){f=b[e];try{c=new ActiveXObject(f)}catch(k){}if(c){b=
[f];break}}if(!c)throw Error("createXhr(): XMLHttpRequest not available");return c},get:h,parseName:function(b){var c=false,e=b.indexOf("."),f=b.substring(0,e),b=b.substring(e+1,b.length),e=b.indexOf("!");e!==-1&&(c=b.substring(e+1,b.length),c=c==="strip",b=b.substring(0,e));return{moduleName:f,ext:b,strip:c}},xdRegExp:/^((\w+)\:)?\/\/([^\/\\]+)/,canUseXhr:function(b,c,e,f){var k=m.xdRegExp.exec(b),h;if(!k)return true;b=k[2];k=k[3];k=k.split(":");h=k[1];k=k[0];return(!b||b===c)&&(!k||k===e)&&(!h&&
!k||h===f)},finishLoad:function(b,c,e,f,h){e=c?m.strip(e):e;h.isBuild&&h.inlineText&&(k[b]=e);f(e)},load:function(b,c,e,k){var h=m.parseName(b),n=h.moduleName+"."+h.ext,B=c.toUrl(n);!f||m.canUseXhr(B)?m.get(B,function(c){m.finishLoad(b,h.strip,c,e,k)}):c([n],function(b){m.finishLoad(h.moduleName+"."+h.ext,h.strip,b,e,k)})},write:function(b,c,e){if(c in k){var f=m.jsEscape(k[c]);e("define('"+b+"!"+c+"', function () { return '"+f+"';});\n")}},writeFile:function(b,c,e,f,k){var c=m.parseName(c),h=c.moduleName+
"."+c.ext,n=e.toUrl(c.moduleName+"."+c.ext)+".js";m.load(h,e,function(){m.write(b,h,function(b){f(n,b)},k)},k)}}})})();define("text!dat/mahog/data/config.json",function(){return'{\n "name": "dat.mahog",\n "src": "client/src",\n "build": "client/build",\n "js": ["dat.mahog"],\n\n "seed_path": "raw/seed.json",\n\n "categories_path": "data/categories.json",\n "original_ids_path": "data/original_ids.json",\n "ids_path": "data/ids.json",\n "colors_path": "data/colors.json",\n "dominant_colors_path": "data/dominant_colors.json",\n "aspect_ratios_path": "data/aspect_ratios.json",\n "more_info_path": "data/more_info.json",\n "more_info_dir": "data/more_info",\n "count_path": "data/count.json",\n\n "failed_path": "data/failed.json",\n "exclude_path": "data/exclude.json",\n "manual_exclude_path": "data/manual_exclude.json",\n "manual_include_path": "data/manual_include.json",\n\n "trimmed_id_path": "data/trimmed.json",\n "trimmed_path": "data/trimmed",\n "trimmed_rejects": "data/trimmed_rejects.json",\n\n "merged_path": "data/merged",\n "qr_dir": "data/qr",\n "qr_path": "data/qr_failed.json",\n "fullsize_path": "data/fullsize",\n "fullsize_square_path": "data/fullsize_square",\n "spritesheet_path": "data/spritesheets",\n\n "spritesheet_size": 1024,\n "spritesheet_count": 36,\n "spritesheet_quality": 95,\n\n "fullsize_zoom": 3\n}\n'});
define("text!dat/mahog/data/count.json",function(){return'{"count": 10965}'});define("dat/mahog/CONFIG",["text!dat/mahog/data/config.json","text!dat/mahog/data/count.json"],function(b,c){var e=JSON.parse(b);e.count=JSON.parse(c).count;return e});
define("dat/utils/utils",[],function(){var b={sign:function(b){return b>=0?1:-1},lerp:function(b,e,f){return(e-b)*f+b},map:function(b,e,f,k,m){return k+(m-k)*((b-e)/(f-e))},cmap:function(c,e,f,k,m){return b.clamp(k+(m-k)*(c-e)/(f-e),k,m)},wrap:function(b,e){for(;b<0;)b+=e;return b%e},cap:function(c,e){return Math.abs(c)>e?b.sign(c)*e:c},dist:function(b,e,f,k){return Math.sqrt((b-f)*(b-f)+(e-k)*(e-k))},clamp:function(b,e,f){var k=Math.max(e,f),e=Math.min(e,f);return b>k?k:b<e?e:b},roundToDecimal:function(b,
e){var f=Math.pow(10,e);return Math.round(b*f)/f},random:function(){if(arguments.length==0)return Math.random();else if(arguments.length==1)if(typeof arguments[0]=="number")return random()*arguments[0];else{if(typeof arguments[0]=="array")return arguments[0][Math.floor(random(arguments[0].length))]}else if(arguments.length==2)return lerp(arguments[0],arguments[1],random())},clone:function(b){if(b==null||typeof b!="object")return b;var e=b.constructor(),f;for(f in b)e[f]=clone(b[f]);return e},bezier:function(b,
e,f,k,m){var h=1-m;return b*h*h*h+3*e*m*h*h+3*f*m*m*h+k*m*m*m},commaify:function(b,e){e||(e=3);for(var b=b.toString().split("").reverse().join(""),f="",k=0,m=0;m<b.length;m++){var h=b.charAt(m);k>e-1?(k=0,f+=","):k++;f+=h}return f.split("").reverse().join("")}};return b});
define("dat/mahog/params",["dat/mahog/CONFIG","dat/utils/utils"],function(b,c){return{TINT_DEBUG:true,SHELF_TEXTURE:"/textures/wood.jpg",SHELF_NORMALS:"/textures/wood-normal-hard.jpg",STATIC_COVER_LIGHT_MAP_SRC:"/textures/lightMap_static.jpg",MORPHING_COVER_LIGHT_MAP_SRC:"/textures/lightMap_cover.jpg",MORPHING_PAGES_LIGHT_MAP_SRC:"/textures/lightMap_pages.jpg",MORPHING_COVER_GEOMETRY_SRC:"/models/book_cover1.js",MORPHING_PAGES_GEOMETRY_SRC:"/models/book_pages1.js",numBookDisplayers:500,maxTextures:50,
bookSize:40,minAspectRatio:0.79,shelfHeight:63,spiralRadius:448,cameraDistance:719,booksPerCircle:59,bookSpacing:30,bookTwist:2.199,baseFov:30,maxFov:50,fovCap:Math.PI/2,fovCurve:1.6445,scaleFov:true,loopHeight:200,grabTextures:750,lightDistance:0,openDistance:120,applyThumbnailStaggerSize:200,imageRequestStaggerSize:1,labelWidth:550,labelHeight:20,labelOffsetY:54,labelOffsetX:30,projectTitle:"Mahogany",projectDescription:"Browse thousands of titles from Google Books, using WebGL on Google Chrome.",
smallPrint:"Learn more at <strong>goto/mahog</strong>. Library includes "+c.commaify(b.count)+" books. Data from the public Google Books API. Updated 14 July 2011.",backgroundImage:"textures/ui/texture.jpg",tileSizeCorrect:-5.0E-4,fontStyle:"32px Lora, EB Garamond, serif",fill:"#000",offsetTheta:0,focusOffset:1,lookAhead:1E3,near:725,far:1400,bookOpenTime:800,bookCloseTime:1500,cameraPositionDriftLength:3E3,cameraTargetDriftLength:1500,orbitDriftLength:1200,insideFace:true,outsideFace:true,bottomFace:true,
topFace:true,wireframe:false,shelfDepth:40,shelfThickness:3,shelfResolution:70,shelfYOffset:1.5,shelfXOffset:0,topTextureSpan:14,sideTextureSpan:9,orbits:Math.PI*60,errorString:"Unable to open book.",maxOpen:0.93,pagesTextureWidth:1600,pagesAspectRatio:2.4,pagesScale:1.435,openVel:0.001,fullOpenEffort:600,openThreshold:0.08,dragEpsilon:12,idleUntilDemo:36E4,closeButtonFadeSpeed:200,numBooksPerDemo:5}});var THREE=THREE||{};if(!window.Int32Array)window.Int32Array=Array,window.Float32Array=Array;
THREE.Color=function(b){b!==void 0&&this.setHex(b);return this};
THREE.Color.prototype={constructor:THREE.Color,r:1,g:1,b:1,copy:function(b){this.r=b.r;this.g=b.g;this.b=b.b;return this},setRGB:function(b,c,e){this.r=b;this.g=c;this.b=e;return this},setHSV:function(b,c,e){var f,k,m;if(e==0)this.r=this.g=this.b=0;else switch(f=Math.floor(b*6),k=b*6-f,b=e*(1-c),m=e*(1-c*k),c=e*(1-c*(1-k)),f){case 1:this.r=m;this.g=e;this.b=b;break;case 2:this.r=b;this.g=e;this.b=c;break;case 3:this.r=b;this.g=m;this.b=e;break;case 4:this.r=c;this.g=b;this.b=e;break;case 5:this.r=
e;this.g=b;this.b=m;break;case 6:case 0:this.r=e,this.g=c,this.b=b}return this},setHex:function(b){b=Math.floor(b);this.r=(b>>16&255)/255;this.g=(b>>8&255)/255;this.b=(b&255)/255;return this},getHex:function(){return~~(this.r*255)<<16^~~(this.g*255)<<8^~~(this.b*255)},getContextStyle:function(){return"rgb("+Math.floor(this.r*255)+","+Math.floor(this.g*255)+","+Math.floor(this.b*255)+")"},clone:function(){return(new THREE.Color).setRGB(this.r,this.g,this.b)}};
THREE.Vector2=function(b,c){this.x=b||0;this.y=c||0};
THREE.Vector2.prototype={constructor:THREE.Vector2,set:function(b,c){this.x=b;this.y=c;return this},copy:function(b){this.x=b.x;this.y=b.y;return this},clone:function(){return new THREE.Vector2(this.x,this.y)},add:function(b,c){this.x=b.x+c.x;this.y=b.y+c.y;return this},addSelf:function(b){this.x+=b.x;this.y+=b.y;return this},sub:function(b,c){this.x=b.x-c.x;this.y=b.y-c.y;return this},subSelf:function(b){this.x-=b.x;this.y-=b.y;return this},multiplyScalar:function(b){this.x*=b;this.y*=b;return this},
divideScalar:function(b){b?(this.x/=b,this.y/=b):this.set(0,0);return this},negate:function(){return this.multiplyScalar(-1)},dot:function(b){return this.x*b.x+this.y*b.y},lengthSq:function(){return this.x*this.x+this.y*this.y},length:function(){return Math.sqrt(this.lengthSq())},normalize:function(){return this.divideScalar(this.length())},distanceTo:function(b){return Math.sqrt(this.distanceToSquared(b))},distanceToSquared:function(b){var c=this.x-b.x,b=this.y-b.y;return c*c+b*b},setLength:function(b){return this.normalize().multiplyScalar(b)},
equals:function(b){return b.x==this.x&&b.y==this.y}};THREE.Vector3=function(b,c,e){this.x=b||0;this.y=c||0;this.z=e||0};
THREE.Vector3.prototype={constructor:THREE.Vector3,set:function(b,c,e){this.x=b;this.y=c;this.z=e;return this},copy:function(b){this.x=b.x;this.y=b.y;this.z=b.z;return this},clone:function(){return new THREE.Vector3(this.x,this.y,this.z)},add:function(b,c){this.x=b.x+c.x;this.y=b.y+c.y;this.z=b.z+c.z;return this},addSelf:function(b){this.x+=b.x;this.y+=b.y;this.z+=b.z;return this},addScalar:function(b){this.x+=b;this.y+=b;this.z+=b;return this},sub:function(b,c){this.x=b.x-c.x;this.y=b.y-c.y;this.z=
b.z-c.z;return this},subSelf:function(b){this.x-=b.x;this.y-=b.y;this.z-=b.z;return this},multiply:function(b,c){this.x=b.x*c.x;this.y=b.y*c.y;this.z=b.z*c.z;return this},multiplySelf:function(b){this.x*=b.x;this.y*=b.y;this.z*=b.z;return this},multiplyScalar:function(b){this.x*=b;this.y*=b;this.z*=b;return this},divideSelf:function(b){this.x/=b.x;this.y/=b.y;this.z/=b.z;return this},divideScalar:function(b){b?(this.x/=b,this.y/=b,this.z/=b):this.set(0,0,0);return this},negate:function(){return this.multiplyScalar(-1)},
dot:function(b){return this.x*b.x+this.y*b.y+this.z*b.z},lengthSq:function(){return this.x*this.x+this.y*this.y+this.z*this.z},length:function(){return Math.sqrt(this.lengthSq())},lengthManhattan:function(){return this.x+this.y+this.z},normalize:function(){return this.divideScalar(this.length())},setLength:function(b){return this.normalize().multiplyScalar(b)},cross:function(b,c){this.x=b.y*c.z-b.z*c.y;this.y=b.z*c.x-b.x*c.z;this.z=b.x*c.y-b.y*c.x;return this},crossSelf:function(b){return this.set(this.y*
b.z-this.z*b.y,this.z*b.x-this.x*b.z,this.x*b.y-this.y*b.x)},distanceTo:function(b){return Math.sqrt(this.distanceToSquared(b))},distanceToSquared:function(b){return(new THREE.Vector3).sub(this,b).lengthSq()},setPositionFromMatrix:function(b){this.x=b.n14;this.y=b.n24;this.z=b.n34},setRotationFromMatrix:function(b){var c=Math.cos(this.y);this.y=Math.asin(b.n13);Math.abs(c)>1.0E-5?(this.x=Math.atan2(-b.n23/c,b.n33/c),this.z=Math.atan2(-b.n12/c,b.n11/c)):(this.x=0,this.z=Math.atan2(b.n21,b.n22))},isZero:function(){return this.lengthSq()<
1.0E-4}};THREE.Vector4=function(b,c,e,f){this.x=b||0;this.y=c||0;this.z=e||0;this.w=f||1};
THREE.Vector4.prototype={constructor:THREE.Vector4,set:function(b,c,e,f){this.x=b;this.y=c;this.z=e;this.w=f;return this},copy:function(b){this.x=b.x;this.y=b.y;this.z=b.z;this.w=b.w||1},clone:function(){return new THREE.Vector4(this.x,this.y,this.z,this.w)},add:function(b,c){this.x=b.x+c.x;this.y=b.y+c.y;this.z=b.z+c.z;this.w=b.w+c.w;return this},addSelf:function(b){this.x+=b.x;this.y+=b.y;this.z+=b.z;this.w+=b.w;return this},sub:function(b,c){this.x=b.x-c.x;this.y=b.y-c.y;this.z=b.z-c.z;this.w=
b.w-c.w;return this},subSelf:function(b){this.x-=b.x;this.y-=b.y;this.z-=b.z;this.w-=b.w;return this},multiplyScalar:function(b){this.x*=b;this.y*=b;this.z*=b;this.w*=b;return this},divideScalar:function(b){b?(this.x/=b,this.y/=b,this.z/=b,this.w/=b):(this.z=this.y=this.x=0,this.w=1);return this},negate:function(){return this.multiplyScalar(-1)},dot:function(b){return this.x*b.x+this.y*b.y+this.z*b.z+this.w*b.w},lengthSq:function(){return this.dot(this)},length:function(){return Math.sqrt(this.lengthSq())},
normalize:function(){return this.divideScalar(this.length())},setLength:function(b){return this.normalize().multiplyScalar(b)},lerpSelf:function(b,c){this.x+=(b.x-this.x)*c;this.y+=(b.y-this.y)*c;this.z+=(b.z-this.z)*c;this.w+=(b.w-this.w)*c;return this}};THREE.Ray=function(b,c){this.origin=b||new THREE.Vector3;this.direction=c||new THREE.Vector3};
THREE.Ray.prototype={constructor:THREE.Ray,intersectScene:function(b){return this.intersectObjects(b.objects)},intersectObjects:function(b){var c,e,f=[];c=0;for(e=b.length;c<e;c++)f=f.concat(this.intersectObject(b[c]));f.sort(function(b,e){return b.distance-e.distance});return f},intersectObject:function(b){function c(b,e,c){var f;f=c.clone().subSelf(b).dot(e);if(f<=0)return null;b=b.clone().addSelf(e.clone().multiplyScalar(f));return c.distanceTo(b)}function e(b,e,c,f){var f=f.clone().subSelf(e),
c=c.clone().subSelf(e),k=b.clone().subSelf(e),b=f.dot(f),e=f.dot(c),f=f.dot(k),h=c.dot(c),c=c.dot(k),k=1/(b*h-e*e),h=(h*f-e*c)*k,b=(b*c-e*f)*k;return h>0&&b>0&&h+b<1}if(b instanceof THREE.Particle){var f=c(this.origin,this.direction,b.matrixWorld.getPosition());return f==null||f>b.scale.x?[]:[{distance:f,point:b.position,face:null,object:b}]}else if(b instanceof THREE.Mesh){f=c(this.origin,this.direction,b.matrixWorld.getPosition());if(f==null||f>b.geometry.boundingSphere.radius*Math.max(b.scale.x,
Math.max(b.scale.y,b.scale.z)))return[];var k,m,h,n,o,t,u,v,x,w,B=b.geometry,A=B.vertices,y=[],f=0;for(k=B.faces.length;f<k;f++)if(m=B.faces[f],x=this.origin.clone(),w=this.direction.clone(),t=b.matrixWorld,h=t.multiplyVector3(m.centroid.clone()).subSelf(x),v=h.dot(w),!(v<=0)&&(h=t.multiplyVector3(A[m.a].position.clone()),n=t.multiplyVector3(A[m.b].position.clone()),o=t.multiplyVector3(A[m.c].position.clone()),t=m instanceof THREE.Face4?t.multiplyVector3(A[m.d].position.clone()):null,u=b.matrixRotationWorld.multiplyVector3(m.normal.clone()),
v=w.dot(u),b.doubleSided||(b.flipSided?v>0:v<0)))if(v=u.dot((new THREE.Vector3).sub(h,x))/v,x=x.addSelf(w.multiplyScalar(v)),m instanceof THREE.Face3)e(x,h,n,o)&&(m={distance:this.origin.distanceTo(x),point:x,face:m,object:b},y.push(m));else if(m instanceof THREE.Face4&&(e(x,h,n,t)||e(x,n,o,t)))m={distance:this.origin.distanceTo(x),point:x,face:m,object:b},y.push(m);y.sort(function(b,e){return b.distance-e.distance});return y}else return[]}};
THREE.Rectangle=function(){function b(){m=f-c;h=k-e}var c,e,f,k,m,h,n=true;this.getX=function(){return c};this.getY=function(){return e};this.getWidth=function(){return m};this.getHeight=function(){return h};this.getLeft=function(){return c};this.getTop=function(){return e};this.getRight=function(){return f};this.getBottom=function(){return k};this.set=function(h,m,u,v){n=false;c=h;e=m;f=u;k=v;b()};this.addPoint=function(h,m){n?(n=false,c=h,e=m,f=h,k=m):(c=c<h?c:h,e=e<m?e:m,f=f>h?f:h,k=k>m?k:m);b()};
this.add3Points=function(h,m,u,v,x,w){n?(n=false,c=h<u?h<x?h:x:u<x?u:x,e=m<v?m<w?m:w:v<w?v:w,f=h>u?h>x?h:x:u>x?u:x,k=m>v?m>w?m:w:v>w?v:w):(c=h<u?h<x?h<c?h:c:x<c?x:c:u<x?u<c?u:c:x<c?x:c,e=m<v?m<w?m<e?m:e:w<e?w:e:v<w?v<e?v:e:w<e?w:e,f=h>u?h>x?h>f?h:f:x>f?x:f:u>x?u>f?u:f:x>f?x:f,k=m>v?m>w?m>k?m:k:w>k?w:k:v>w?v>k?v:k:w>k?w:k);b()};this.addRectangle=function(h){n?(n=false,c=h.getLeft(),e=h.getTop(),f=h.getRight(),k=h.getBottom()):(c=c<h.getLeft()?c:h.getLeft(),e=e<h.getTop()?e:h.getTop(),f=f>h.getRight()?
f:h.getRight(),k=k>h.getBottom()?k:h.getBottom());b()};this.inflate=function(h){c-=h;e-=h;f+=h;k+=h;b()};this.minSelf=function(h){c=c>h.getLeft()?c:h.getLeft();e=e>h.getTop()?e:h.getTop();f=f<h.getRight()?f:h.getRight();k=k<h.getBottom()?k:h.getBottom();b()};this.instersects=function(b){return Math.min(f,b.getRight())-Math.max(c,b.getLeft())>=0&&Math.min(k,b.getBottom())-Math.max(e,b.getTop())>=0};this.empty=function(){n=true;k=f=e=c=0;b()};this.isEmpty=function(){return n}};
THREE.Matrix3=function(){this.m=[]};THREE.Matrix3.prototype={constructor:THREE.Matrix3,transpose:function(){var b,c=this.m;b=c[1];c[1]=c[3];c[3]=b;b=c[2];c[2]=c[6];c[6]=b;b=c[5];c[5]=c[7];c[7]=b;return this},transposeIntoArray:function(b){var c=this.m;b[0]=c[0];b[1]=c[3];b[2]=c[6];b[3]=c[1];b[4]=c[4];b[5]=c[7];b[6]=c[2];b[7]=c[5];b[8]=c[8];return this}};
THREE.Matrix4=function(b,c,e,f,k,m,h,n,o,t,u,v,x,w,B,A){this.set(b||1,c||0,e||0,f||0,k||0,m||1,h||0,n||0,o||0,t||0,u||1,v||0,x||0,w||0,B||0,A||1);this.flat=Array(16);this.m33=new THREE.Matrix3};
THREE.Matrix4.prototype={constructor:THREE.Matrix4,set:function(b,c,e,f,k,m,h,n,o,t,u,v,x,w,B,A){this.n11=b;this.n12=c;this.n13=e;this.n14=f;this.n21=k;this.n22=m;this.n23=h;this.n24=n;this.n31=o;this.n32=t;this.n33=u;this.n34=v;this.n41=x;this.n42=w;this.n43=B;this.n44=A;return this},identity:function(){this.set(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1);return this},copy:function(b){this.set(b.n11,b.n12,b.n13,b.n14,b.n21,b.n22,b.n23,b.n24,b.n31,b.n32,b.n33,b.n34,b.n41,b.n42,b.n43,b.n44);return this},lookAt:function(b,
c,e){var f=THREE.Matrix4.__v1,k=THREE.Matrix4.__v2,m=THREE.Matrix4.__v3;m.sub(b,c).normalize();if(m.length()===0)m.z=1;f.cross(e,m).normalize();f.length()===0&&(m.x+=1.0E-4,f.cross(e,m).normalize());k.cross(m,f).normalize();this.n11=f.x;this.n12=k.x;this.n13=m.x;this.n21=f.y;this.n22=k.y;this.n23=m.y;this.n31=f.z;this.n32=k.z;this.n33=m.z;return this},multiplyVector3:function(b){var c=b.x,e=b.y,f=b.z,k=1/(this.n41*c+this.n42*e+this.n43*f+this.n44);b.x=(this.n11*c+this.n12*e+this.n13*f+this.n14)*k;
b.y=(this.n21*c+this.n22*e+this.n23*f+this.n24)*k;b.z=(this.n31*c+this.n32*e+this.n33*f+this.n34)*k;return b},multiplyVector4:function(b){var c=b.x,e=b.y,f=b.z,k=b.w;b.x=this.n11*c+this.n12*e+this.n13*f+this.n14*k;b.y=this.n21*c+this.n22*e+this.n23*f+this.n24*k;b.z=this.n31*c+this.n32*e+this.n33*f+this.n34*k;b.w=this.n41*c+this.n42*e+this.n43*f+this.n44*k;return b},rotateAxis:function(b){var c=b.x,e=b.y,f=b.z;b.x=c*this.n11+e*this.n12+f*this.n13;b.y=c*this.n21+e*this.n22+f*this.n23;b.z=c*this.n31+
e*this.n32+f*this.n33;b.normalize();return b},crossVector:function(b){var c=new THREE.Vector4;c.x=this.n11*b.x+this.n12*b.y+this.n13*b.z+this.n14*b.w;c.y=this.n21*b.x+this.n22*b.y+this.n23*b.z+this.n24*b.w;c.z=this.n31*b.x+this.n32*b.y+this.n33*b.z+this.n34*b.w;c.w=b.w?this.n41*b.x+this.n42*b.y+this.n43*b.z+this.n44*b.w:1;return c},multiply:function(b,c){var e=b.n11,f=b.n12,k=b.n13,m=b.n14,h=b.n21,n=b.n22,o=b.n23,t=b.n24,u=b.n31,v=b.n32,x=b.n33,w=b.n34,B=b.n41,A=b.n42,y=b.n43,D=b.n44,C=c.n11,L=c.n12,
z=c.n13,E=c.n14,N=c.n21,I=c.n22,P=c.n23,H=c.n24,W=c.n31,M=c.n32,J=c.n33,Q=c.n34,O=c.n41,Y=c.n42,V=c.n43,Z=c.n44;this.n11=e*C+f*N+k*W+m*O;this.n12=e*L+f*I+k*M+m*Y;this.n13=e*z+f*P+k*J+m*V;this.n14=e*E+f*H+k*Q+m*Z;this.n21=h*C+n*N+o*W+t*O;this.n22=h*L+n*I+o*M+t*Y;this.n23=h*z+n*P+o*J+t*V;this.n24=h*E+n*H+o*Q+t*Z;this.n31=u*C+v*N+x*W+w*O;this.n32=u*L+v*I+x*M+w*Y;this.n33=u*z+v*P+x*J+w*V;this.n34=u*E+v*H+x*Q+w*Z;this.n41=B*C+A*N+y*W+D*O;this.n42=B*L+A*I+y*M+D*Y;this.n43=B*z+A*P+y*J+D*V;this.n44=B*E+A*
H+y*Q+D*Z;return this},multiplyToArray:function(b,c,e){this.multiply(b,c);e[0]=this.n11;e[1]=this.n21;e[2]=this.n31;e[3]=this.n41;e[4]=this.n12;e[5]=this.n22;e[6]=this.n32;e[7]=this.n42;e[8]=this.n13;e[9]=this.n23;e[10]=this.n33;e[11]=this.n43;e[12]=this.n14;e[13]=this.n24;e[14]=this.n34;e[15]=this.n44;return this},multiplySelf:function(b){this.multiply(this,b);return this},multiplyScalar:function(b){this.n11*=b;this.n12*=b;this.n13*=b;this.n14*=b;this.n21*=b;this.n22*=b;this.n23*=b;this.n24*=b;this.n31*=
b;this.n32*=b;this.n33*=b;this.n34*=b;this.n41*=b;this.n42*=b;this.n43*=b;this.n44*=b;return this},determinant:function(){var b=this.n11,c=this.n12,e=this.n13,f=this.n14,k=this.n21,m=this.n22,h=this.n23,n=this.n24,o=this.n31,t=this.n32,u=this.n33,v=this.n34,x=this.n41,w=this.n42,B=this.n43,A=this.n44;return f*h*t*x-e*n*t*x-f*m*u*x+c*n*u*x+e*m*v*x-c*h*v*x-f*h*o*w+e*n*o*w+f*k*u*w-b*n*u*w-e*k*v*w+b*h*v*w+f*m*o*B-c*n*o*B-f*k*t*B+b*n*t*B+c*k*v*B-b*m*v*B-e*m*o*A+c*h*o*A+e*k*t*A-b*h*t*A-c*k*u*A+b*m*u*A},
transpose:function(){var b;b=this.n21;this.n21=this.n12;this.n12=b;b=this.n31;this.n31=this.n13;this.n13=b;b=this.n32;this.n32=this.n23;this.n23=b;b=this.n41;this.n41=this.n14;this.n14=b;b=this.n42;this.n42=this.n24;this.n24=b;b=this.n43;this.n43=this.n34;this.n43=b;return this},clone:function(){var b=new THREE.Matrix4;b.n11=this.n11;b.n12=this.n12;b.n13=this.n13;b.n14=this.n14;b.n21=this.n21;b.n22=this.n22;b.n23=this.n23;b.n24=this.n24;b.n31=this.n31;b.n32=this.n32;b.n33=this.n33;b.n34=this.n34;
b.n41=this.n41;b.n42=this.n42;b.n43=this.n43;b.n44=this.n44;return b},flatten:function(){this.flat[0]=this.n11;this.flat[1]=this.n21;this.flat[2]=this.n31;this.flat[3]=this.n41;this.flat[4]=this.n12;this.flat[5]=this.n22;this.flat[6]=this.n32;this.flat[7]=this.n42;this.flat[8]=this.n13;this.flat[9]=this.n23;this.flat[10]=this.n33;this.flat[11]=this.n43;this.flat[12]=this.n14;this.flat[13]=this.n24;this.flat[14]=this.n34;this.flat[15]=this.n44;return this.flat},flattenToArray:function(b){b[0]=this.n11;
b[1]=this.n21;b[2]=this.n31;b[3]=this.n41;b[4]=this.n12;b[5]=this.n22;b[6]=this.n32;b[7]=this.n42;b[8]=this.n13;b[9]=this.n23;b[10]=this.n33;b[11]=this.n43;b[12]=this.n14;b[13]=this.n24;b[14]=this.n34;b[15]=this.n44;return b},flattenToArrayOffset:function(b,c){b[c]=this.n11;b[c+1]=this.n21;b[c+2]=this.n31;b[c+3]=this.n41;b[c+4]=this.n12;b[c+5]=this.n22;b[c+6]=this.n32;b[c+7]=this.n42;b[c+8]=this.n13;b[c+9]=this.n23;b[c+10]=this.n33;b[c+11]=this.n43;b[c+12]=this.n14;b[c+13]=this.n24;b[c+14]=this.n34;
b[c+15]=this.n44;return b},setTranslation:function(b,c,e){this.set(1,0,0,b,0,1,0,c,0,0,1,e,0,0,0,1);return this},setScale:function(b,c,e){this.set(b,0,0,0,0,c,0,0,0,0,e,0,0,0,0,1);return this},setRotationX:function(b){var c=Math.cos(b),b=Math.sin(b);this.set(1,0,0,0,0,c,-b,0,0,b,c,0,0,0,0,1);return this},setRotationY:function(b){var c=Math.cos(b),b=Math.sin(b);this.set(c,0,b,0,0,1,0,0,-b,0,c,0,0,0,0,1);return this},setRotationZ:function(b){var c=Math.cos(b),b=Math.sin(b);this.set(c,-b,0,0,b,c,0,0,
0,0,1,0,0,0,0,1);return this},setRotationAxis:function(b,c){var e=Math.cos(c),f=Math.sin(c),k=1-e,m=b.x,h=b.y,n=b.z,o=k*m,t=k*h;this.set(o*m+e,o*h-f*n,o*n+f*h,0,o*h+f*n,t*h+e,t*n-f*m,0,o*n-f*h,t*n+f*m,k*n*n+e,0,0,0,0,1);return this},setPosition:function(b){this.n14=b.x;this.n24=b.y;this.n34=b.z;return this},getPosition:function(){if(!this.position)this.position=new THREE.Vector3;this.position.set(this.n14,this.n24,this.n34);return this.position},getColumnX:function(){if(!this.columnX)this.columnX=
new THREE.Vector3;this.columnX.set(this.n11,this.n21,this.n31);return this.columnX},getColumnY:function(){if(!this.columnY)this.columnY=new THREE.Vector3;this.columnY.set(this.n12,this.n22,this.n32);return this.columnY},getColumnZ:function(){if(!this.columnZ)this.columnZ=new THREE.Vector3;this.columnZ.set(this.n13,this.n23,this.n33);return this.columnZ},setRotationFromEuler:function(b,c){var e=b.x,f=b.y,k=b.z,m=Math.cos(e),e=Math.sin(e),h=Math.cos(f),f=Math.sin(f),n=Math.cos(k),k=Math.sin(k);switch(c){case "YXZ":var o=
h*n,t=h*k,u=f*n,v=f*k;this.n11=o+v*e;this.n12=u*e-t;this.n13=m*f;this.n21=m*k;this.n22=m*n;this.n23=-e;this.n31=t*e-u;this.n32=v+o*e;this.n33=m*h;break;case "ZXY":o=h*n;t=h*k;u=f*n;v=f*k;this.n11=o-v*e;this.n12=-m*k;this.n13=u+t*e;this.n21=t+u*e;this.n22=m*n;this.n23=v-o*e;this.n31=-m*f;this.n32=e;this.n33=m*h;break;case "ZYX":o=m*n;t=m*k;u=e*n;v=e*k;this.n11=h*n;this.n12=u*f-t;this.n13=o*f+v;this.n21=h*k;this.n22=v*f+o;this.n23=t*f-u;this.n31=-f;this.n32=e*h;this.n33=m*h;break;case "YZX":o=m*h;t=
m*f;u=e*h;v=e*f;this.n11=h*n;this.n12=v-o*k;this.n13=u*k+t;this.n21=k;this.n22=m*n;this.n23=-e*n;this.n31=-f*n;this.n32=t*k+u;this.n33=o-v*k;break;case "XZY":o=m*h;t=m*f;u=e*h;v=e*f;this.n11=h*n;this.n12=-k;this.n13=f*n;this.n21=o*k+v;this.n22=m*n;this.n23=t*k-u;this.n31=u*k-t;this.n32=e*n;this.n33=v*k+o;break;default:o=m*n,t=m*k,u=e*n,v=e*k,this.n11=h*n,this.n12=-h*k,this.n13=f,this.n21=t+u*f,this.n22=o-v*f,this.n23=-e*h,this.n31=v-o*f,this.n32=u+t*f,this.n33=m*h}return this},setRotationFromQuaternion:function(b){var c=
b.x,e=b.y,f=b.z,k=b.w,m=c+c,h=e+e,n=f+f,b=c*m,o=c*h;c*=n;var t=e*h;e*=n;f*=n;m*=k;h*=k;k*=n;this.n11=1-(t+f);this.n12=o-k;this.n13=c+h;this.n21=o+k;this.n22=1-(b+f);this.n23=e-m;this.n31=c-h;this.n32=e+m;this.n33=1-(b+t);return this},scale:function(b){var c=b.x,e=b.y,b=b.z;this.n11*=c;this.n12*=e;this.n13*=b;this.n21*=c;this.n22*=e;this.n23*=b;this.n31*=c;this.n32*=e;this.n33*=b;this.n41*=c;this.n42*=e;this.n43*=b;return this},compose:function(b,c,e){var f=THREE.Matrix4.__m1,k=THREE.Matrix4.__m2;
f.identity();f.setRotationFromQuaternion(c);k.setScale(e.x,e.y,e.z);this.multiply(f,k);this.n14=b.x;this.n24=b.y;this.n34=b.z;return this},decompose:function(b,c,e){var f=THREE.Matrix4.__v1,k=THREE.Matrix4.__v2,m=THREE.Matrix4.__v3;f.set(this.n11,this.n21,this.n31);k.set(this.n12,this.n22,this.n32);m.set(this.n13,this.n23,this.n33);b=b instanceof THREE.Vector3?b:new THREE.Vector3;c=c instanceof THREE.Quaternion?c:new THREE.Quaternion;e=e instanceof THREE.Vector3?e:new THREE.Vector3;e.x=f.length();
e.y=k.length();e.z=m.length();b.x=this.n14;b.y=this.n24;b.z=this.n34;f=THREE.Matrix4.__m1;f.copy(this);f.n11/=e.x;f.n21/=e.x;f.n31/=e.x;f.n12/=e.y;f.n22/=e.y;f.n32/=e.y;f.n13/=e.z;f.n23/=e.z;f.n33/=e.z;c.setFromRotationMatrix(f);return[b,c,e]},extractPosition:function(b){this.n14=b.n14;this.n24=b.n24;this.n34=b.n34},extractRotation:function(b,c){var e=1/c.x,f=1/c.y,k=1/c.z;this.n11=b.n11*e;this.n21=b.n21*e;this.n31=b.n31*e;this.n12=b.n12*f;this.n22=b.n22*f;this.n32=b.n32*f;this.n13=b.n13*k;this.n23=
b.n23*k;this.n33=b.n33*k}};
THREE.Matrix4.makeInvert=function(b,c){var e=b.n11,f=b.n12,k=b.n13,m=b.n14,h=b.n21,n=b.n22,o=b.n23,t=b.n24,u=b.n31,v=b.n32,x=b.n33,w=b.n34,B=b.n41,A=b.n42,y=b.n43,D=b.n44;c===void 0&&(c=new THREE.Matrix4);c.n11=o*w*A-t*x*A+t*v*y-n*w*y-o*v*D+n*x*D;c.n12=m*x*A-k*w*A-m*v*y+f*w*y+k*v*D-f*x*D;c.n13=k*t*A-m*o*A+m*n*y-f*t*y-k*n*D+f*o*D;c.n14=m*o*v-k*t*v-m*n*x+f*t*x+k*n*w-f*o*w;c.n21=t*x*B-o*w*B-t*u*y+h*w*y+o*u*D-h*x*D;c.n22=k*w*B-m*x*B+m*u*y-e*w*y-k*u*D+e*x*D;c.n23=m*o*B-k*t*B-m*h*y+e*t*y+k*h*D-e*o*D;c.n24=
k*t*u-m*o*u+m*h*x-e*t*x-k*h*w+e*o*w;c.n31=n*w*B-t*v*B+t*u*A-h*w*A-n*u*D+h*v*D;c.n32=m*v*B-f*w*B-m*u*A+e*w*A+f*u*D-e*v*D;c.n33=k*t*B-m*n*B+m*h*A-e*t*A-f*h*D+e*n*D;c.n34=m*n*u-f*t*u-m*h*v+e*t*v+f*h*w-e*n*w;c.n41=o*v*B-n*x*B-o*u*A+h*x*A+n*u*y-h*v*y;c.n42=f*x*B-k*v*B+k*u*A-e*x*A-f*u*y+e*v*y;c.n43=k*n*B-f*o*B-k*h*A+e*o*A+f*h*y-e*n*y;c.n44=f*o*u-k*n*u+k*h*v-e*o*v-f*h*x+e*n*x;c.multiplyScalar(1/b.determinant());return c};
THREE.Matrix4.makeInvert3x3=function(b){var c=b.m33,e=c.m,f=b.n33*b.n22-b.n32*b.n23,k=-b.n33*b.n21+b.n31*b.n23,m=b.n32*b.n21-b.n31*b.n22,h=-b.n33*b.n12+b.n32*b.n13,n=b.n33*b.n11-b.n31*b.n13,o=-b.n32*b.n11+b.n31*b.n12,t=b.n23*b.n12-b.n22*b.n13,u=-b.n23*b.n11+b.n21*b.n13,v=b.n22*b.n11-b.n21*b.n12,b=b.n11*f+b.n21*h+b.n31*t;b==0&&console.error("THREE.Matrix4.makeInvert3x3: Matrix not invertible.");b=1/b;e[0]=b*f;e[1]=b*k;e[2]=b*m;e[3]=b*h;e[4]=b*n;e[5]=b*o;e[6]=b*t;e[7]=b*u;e[8]=b*v;return c};
THREE.Matrix4.makeFrustum=function(b,c,e,f,k,m){var h;h=new THREE.Matrix4;h.n11=2*k/(c-b);h.n12=0;h.n13=(c+b)/(c-b);h.n14=0;h.n21=0;h.n22=2*k/(f-e);h.n23=(f+e)/(f-e);h.n24=0;h.n31=0;h.n32=0;h.n33=-(m+k)/(m-k);h.n34=-2*m*k/(m-k);h.n41=0;h.n42=0;h.n43=-1;h.n44=0;return h};THREE.Matrix4.makePerspective=function(b,c,e,f){var k,b=e*Math.tan(b*Math.PI/360);k=-b;return THREE.Matrix4.makeFrustum(k*c,b*c,k,b,e,f)};
THREE.Matrix4.makeOrtho=function(b,c,e,f,k,m){var h,n,o,t;h=new THREE.Matrix4;n=c-b;o=e-f;t=m-k;h.n11=2/n;h.n12=0;h.n13=0;h.n14=-((c+b)/n);h.n21=0;h.n22=2/o;h.n23=0;h.n24=-((e+f)/o);h.n31=0;h.n32=0;h.n33=-2/t;h.n34=-((m+k)/t);h.n41=0;h.n42=0;h.n43=0;h.n44=1;return h};THREE.Matrix4.__v1=new THREE.Vector3;THREE.Matrix4.__v2=new THREE.Vector3;THREE.Matrix4.__v3=new THREE.Vector3;THREE.Matrix4.__m1=new THREE.Matrix4;THREE.Matrix4.__m2=new THREE.Matrix4;
THREE.Object3D=function(){this.id=THREE.Object3DCount++;this.name="";this.parent=void 0;this.children=[];this.up=new THREE.Vector3(0,1,0);this.position=new THREE.Vector3;this.rotation=new THREE.Vector3;this.eulerOrder="XYZ";this.scale=new THREE.Vector3(1,1,1);this.flipSided=this.doubleSided=this.dynamic=false;this.renderDepth=null;this.rotationAutoUpdate=true;this.matrix=new THREE.Matrix4;this.matrixWorld=new THREE.Matrix4;this.matrixRotationWorld=new THREE.Matrix4;this.matrixWorldNeedsUpdate=this.matrixAutoUpdate=
true;this.quaternion=new THREE.Quaternion;this.useQuaternion=false;this.boundRadius=0;this.boundRadiusScale=1;this.visible=true;this.receiveShadow=this.castShadow=false;this.frustumCulled=true;this._vector=new THREE.Vector3};
THREE.Object3D.prototype={constructor:THREE.Object3D,translate:function(b,c){this.matrix.rotateAxis(c);this.position.addSelf(c.multiplyScalar(b))},translateX:function(b){this.translate(b,this._vector.set(1,0,0))},translateY:function(b){this.translate(b,this._vector.set(0,1,0))},translateZ:function(b){this.translate(b,this._vector.set(0,0,1))},lookAt:function(b){this.matrix.lookAt(b,this.position,this.up);this.rotationAutoUpdate&&this.rotation.setRotationFromMatrix(this.matrix)},addChild:function(b){if(this.children.indexOf(b)===
-1){b.parent!==void 0&&b.parent.removeChild(b);b.parent=this;this.children.push(b);for(var c=this;c.parent!==void 0;)c=c.parent;c!==void 0&&c instanceof THREE.Scene&&c.addChildRecurse(b)}},removeChild:function(b){var c=this,e=this.children.indexOf(b);if(e!==-1){b.parent=void 0;for(this.children.splice(e,1);c.parent!==void 0;)c=c.parent;c!==void 0&&c instanceof THREE.Scene&&c.removeChildRecurse(b)}},getChildByName:function(b,c){var e,f,k;e=0;for(f=this.children.length;e<f;e++){k=this.children[e];if(k.name===
b)return k;if(c&&(k=k.getChildByName(b,c),k!==void 0))return k}},updateMatrix:function(){this.matrix.setPosition(this.position);this.useQuaternion?this.matrix.setRotationFromQuaternion(this.quaternion):this.matrix.setRotationFromEuler(this.rotation,this.eulerOrder);if(this.scale.x!==1||this.scale.y!==1||this.scale.z!==1)this.matrix.scale(this.scale),this.boundRadiusScale=Math.max(this.scale.x,Math.max(this.scale.y,this.scale.z));this.matrixWorldNeedsUpdate=true},update:function(b,c,e){this.matrixAutoUpdate&&
this.updateMatrix();if(this.matrixWorldNeedsUpdate||c)b?this.matrixWorld.multiply(b,this.matrix):this.matrixWorld.copy(this.matrix),this.matrixRotationWorld.extractRotation(this.matrixWorld,this.scale),this.matrixWorldNeedsUpdate=false,c=true;for(var b=0,f=this.children.length;b<f;b++)this.children[b].update(this.matrixWorld,c,e)}};THREE.Object3DCount=0;
THREE.Projector=function(){function b(){var b=n[h]=n[h]||new THREE.RenderableVertex;h++;return b}function c(b,e){return e.z-b.z}var e,f,k=[],m,h,n=[],o,t,u=[],v,x=[],w,B,A=[],y,D,C=[],L=[],z=[],E=new THREE.Vector4,N=new THREE.Vector4,I=new THREE.Matrix4,P=new THREE.Matrix4,H=[new THREE.Vector4,new THREE.Vector4,new THREE.Vector4,new THREE.Vector4,new THREE.Vector4,new THREE.Vector4],W=new THREE.Vector4,M=new THREE.Vector4;this.projectVector=function(b,e){I.multiply(e.projectionMatrix,e.matrixWorldInverse);
I.multiplyVector3(b);return b};this.unprojectVector=function(b,e){I.multiply(e.matrixWorld,THREE.Matrix4.makeInvert(e.projectionMatrix));I.multiplyVector3(b);return b};this.projectObjects=function(b,h,m){var n,o;f=L.length=0;n=b.objects;b=0;for(h=n.length;b<h;b++){o=n[b];var t;if(!(t=!o.visible))if(t=o instanceof THREE.Mesh)if(t=o.frustumCulled){a:{t=void 0;for(var w=o.matrixWorld,v=-o.geometry.boundingSphere.radius*Math.max(o.scale.x,Math.max(o.scale.y,o.scale.z)),u=0;u<6;u++)if(t=H[u].x*w.n14+H[u].y*
w.n24+H[u].z*w.n34+H[u].w,t<=v){t=false;break a}t=true}t=!t}if(!t)t=k[f]=k[f]||new THREE.RenderableObject,f++,e=t,E.copy(o.position),I.multiplyVector3(E),e.object=o,e.z=E.z,L.push(e)}m&&L.sort(c);return L};this.projectScene=function(e,f,k){var L=f.near,E=f.far,Z,K,X,S,p,ca,aa,la,ka,ja,ea,da,ga,ya,ma,na,za;D=B=v=t=z.length=0;f.matrixAutoUpdate&&f.update(void 0,true);e.update(void 0,false,f);I.multiply(f.projectionMatrix,f.matrixWorldInverse);H[0].set(I.n41-I.n11,I.n42-I.n12,I.n43-I.n13,I.n44-I.n14);
H[1].set(I.n41+I.n11,I.n42+I.n12,I.n43+I.n13,I.n44+I.n14);H[2].set(I.n41+I.n21,I.n42+I.n22,I.n43+I.n23,I.n44+I.n24);H[3].set(I.n41-I.n21,I.n42-I.n22,I.n43-I.n23,I.n44-I.n24);H[4].set(I.n41-I.n31,I.n42-I.n32,I.n43-I.n33,I.n44-I.n34);H[5].set(I.n41+I.n31,I.n42+I.n32,I.n43+I.n33,I.n44+I.n34);for(Z=0;Z<6;Z++)ka=H[Z],ka.divideScalar(Math.sqrt(ka.x*ka.x+ka.y*ka.y+ka.z*ka.z));ka=this.projectObjects(e,f,true);e=0;for(Z=ka.length;e<Z;e++)if(ja=ka[e].object,ja.visible)if(ea=ja.matrixWorld,da=ja.matrixRotationWorld,
ga=ja.materials,ya=ja.overdraw,h=0,ja instanceof THREE.Mesh){ma=ja.geometry;S=ma.vertices;na=ma.faces;ma=ma.faceVertexUvs;K=0;for(X=S.length;K<X;K++)m=b(),m.positionWorld.copy(S[K].position),ea.multiplyVector3(m.positionWorld),m.positionScreen.copy(m.positionWorld),I.multiplyVector4(m.positionScreen),m.positionScreen.x/=m.positionScreen.w,m.positionScreen.y/=m.positionScreen.w,m.visible=m.positionScreen.z>L&&m.positionScreen.z<E;S=0;for(K=na.length;S<K;S++){X=na[S];if(X instanceof THREE.Face3)if(p=
n[X.a],ca=n[X.b],aa=n[X.c],p.visible&&ca.visible&&aa.visible&&(ja.doubleSided||ja.flipSided!=(aa.positionScreen.x-p.positionScreen.x)*(ca.positionScreen.y-p.positionScreen.y)-(aa.positionScreen.y-p.positionScreen.y)*(ca.positionScreen.x-p.positionScreen.x)<0))la=u[t]=u[t]||new THREE.RenderableFace3,t++,o=la,o.v1.copy(p),o.v2.copy(ca),o.v3.copy(aa);else continue;else if(X instanceof THREE.Face4)if(p=n[X.a],ca=n[X.b],aa=n[X.c],la=n[X.d],p.visible&&ca.visible&&aa.visible&&la.visible&&(ja.doubleSided||
ja.flipSided!=((la.positionScreen.x-p.positionScreen.x)*(ca.positionScreen.y-p.positionScreen.y)-(la.positionScreen.y-p.positionScreen.y)*(ca.positionScreen.x-p.positionScreen.x)<0||(ca.positionScreen.x-aa.positionScreen.x)*(la.positionScreen.y-aa.positionScreen.y)-(ca.positionScreen.y-aa.positionScreen.y)*(la.positionScreen.x-aa.positionScreen.x)<0)))za=x[v]=x[v]||new THREE.RenderableFace4,v++,o=za,o.v1.copy(p),o.v2.copy(ca),o.v3.copy(aa),o.v4.copy(la);else continue;o.normalWorld.copy(X.normal);
da.multiplyVector3(o.normalWorld);o.centroidWorld.copy(X.centroid);ea.multiplyVector3(o.centroidWorld);o.centroidScreen.copy(o.centroidWorld);I.multiplyVector3(o.centroidScreen);aa=X.vertexNormals;p=0;for(ca=aa.length;p<ca;p++)la=o.vertexNormalsWorld[p],la.copy(aa[p]),da.multiplyVector3(la);p=0;for(ca=ma.length;p<ca;p++)if(za=ma[p][S]){aa=0;for(la=za.length;aa<la;aa++)o.uvs[p][aa]=za[aa]}o.meshMaterials=ga;o.faceMaterials=X.materials;o.overdraw=ya;o.z=o.centroidScreen.z;z.push(o)}}else if(ja instanceof
THREE.Line){P.multiply(I,ea);S=ja.geometry.vertices;p=b();p.positionScreen.copy(S[0].position);P.multiplyVector4(p.positionScreen);K=1;for(X=S.length;K<X;K++){p=b();p.positionScreen.copy(S[K].position);P.multiplyVector4(p.positionScreen);ca=n[h-2];W.copy(p.positionScreen);M.copy(ca.positionScreen);da=W;ga=M;ya=0;ma=1;na=da.z+da.w;var ta=ga.z+ga.w,Aa=-da.z+da.w,Fa=-ga.z+ga.w;if(na>=0&&ta>=0&&Aa>=0&&Fa>=0||(na<0&&ta<0||Aa<0&&Fa<0?0:(na<0?ya=Math.max(ya,na/(na-ta)):ta<0&&(ma=Math.min(ma,na/(na-ta))),
Aa<0?ya=Math.max(ya,Aa/(Aa-Fa)):Fa<0&&(ma=Math.min(ma,Aa/(Aa-Fa))),ma<ya?false:(da.lerpSelf(ga,ya),ga.lerpSelf(da,1-ma),true))))W.multiplyScalar(1/W.w),M.multiplyScalar(1/M.w),ea=A[B]=A[B]||new THREE.RenderableLine,B++,w=ea,w.v1.positionScreen.copy(W),w.v2.positionScreen.copy(M),w.z=Math.max(W.z,M.z),w.materials=ja.materials,z.push(w)}}else if(ja instanceof THREE.Particle&&(N.set(ja.matrixWorld.n14,ja.matrixWorld.n24,ja.matrixWorld.n34,1),I.multiplyVector4(N),N.z/=N.w,N.z>0&&N.z<1))ea=C[D]=C[D]||
new THREE.RenderableParticle,D++,y=ea,y.x=N.x/N.w,y.y=N.y/N.w,y.z=N.z,y.rotation=ja.rotation.z,y.scale.x=ja.scale.x*Math.abs(y.x-(N.x+f.projectionMatrix.n11)/(N.w+f.projectionMatrix.n14)),y.scale.y=ja.scale.y*Math.abs(y.y-(N.y+f.projectionMatrix.n22)/(N.w+f.projectionMatrix.n24)),y.materials=ja.materials,z.push(y);k&&z.sort(c);return z}};THREE.Quaternion=function(b,c,e,f){this.set(b||0,c||0,e||0,f!==void 0?f:1)};
THREE.Quaternion.prototype={constructor:THREE.Quaternion,set:function(b,c,e,f){this.x=b;this.y=c;this.z=e;this.w=f;return this},copy:function(b){this.x=b.x;this.y=b.y;this.z=b.z;this.w=b.w;return this},setFromEuler:function(b){var c=0.5*Math.PI/360,e=b.x*c,f=b.y*c,k=b.z*c,b=Math.cos(f),f=Math.sin(f),c=Math.cos(-k),k=Math.sin(-k),m=Math.cos(e),e=Math.sin(e),h=b*c,n=f*k;this.w=h*m-n*e;this.x=h*e+n*m;this.y=f*c*m+b*k*e;this.z=b*k*m-f*c*e;return this},setFromAxisAngle:function(b,c){var e=c/2,f=Math.sin(e);
this.x=b.x*f;this.y=b.y*f;this.z=b.z*f;this.w=Math.cos(e);return this},setFromRotationMatrix:function(b){var c=Math.pow(b.determinant(),1/3);this.w=Math.sqrt(Math.max(0,c+b.n11+b.n22+b.n33))/2;this.x=Math.sqrt(Math.max(0,c+b.n11-b.n22-b.n33))/2;this.y=Math.sqrt(Math.max(0,c-b.n11+b.n22-b.n33))/2;this.z=Math.sqrt(Math.max(0,c-b.n11-b.n22+b.n33))/2;this.x=b.n32-b.n23<0?-Math.abs(this.x):Math.abs(this.x);this.y=b.n13-b.n31<0?-Math.abs(this.y):Math.abs(this.y);this.z=b.n21-b.n12<0?-Math.abs(this.z):Math.abs(this.z);
this.normalize();return this},calculateW:function(){this.w=-Math.sqrt(Math.abs(1-this.x*this.x-this.y*this.y-this.z*this.z));return this},inverse:function(){this.x*=-1;this.y*=-1;this.z*=-1;return this},length:function(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w)},normalize:function(){var b=Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w);b==0?this.w=this.z=this.y=this.x=0:(b=1/b,this.x*=b,this.y*=b,this.z*=b,this.w*=b);return this},multiplySelf:function(b){var c=
this.x,e=this.y,f=this.z,k=this.w,m=b.x,h=b.y,n=b.z,b=b.w;this.x=c*b+k*m+e*n-f*h;this.y=e*b+k*h+f*m-c*n;this.z=f*b+k*n+c*h-e*m;this.w=k*b-c*m-e*h-f*n;return this},multiply:function(b,c){this.x=b.x*c.w+b.y*c.z-b.z*c.y+b.w*c.x;this.y=-b.x*c.z+b.y*c.w+b.z*c.x+b.w*c.y;this.z=b.x*c.y-b.y*c.x+b.z*c.w+b.w*c.z;this.w=-b.x*c.x-b.y*c.y-b.z*c.z+b.w*c.w;return this},multiplyVector3:function(b,c){c||(c=b);var e=b.x,f=b.y,k=b.z,m=this.x,h=this.y,n=this.z,o=this.w,t=o*e+h*k-n*f,u=o*f+n*e-m*k,v=o*k+m*f-h*e,e=-m*
e-h*f-n*k;c.x=t*o+e*-m+u*-n-v*-h;c.y=u*o+e*-h+v*-m-t*-n;c.z=v*o+e*-n+t*-h-u*-m;return c}};THREE.Quaternion.slerp=function(b,c,e,f){var k=b.w*c.w+b.x*c.x+b.y*c.y+b.z*c.z;if(Math.abs(k)>=1)return e.w=b.w,e.x=b.x,e.y=b.y,e.z=b.z,e;var m=Math.acos(k),h=Math.sqrt(1-k*k);if(Math.abs(h)<0.001)return e.w=0.5*(b.w+c.w),e.x=0.5*(b.x+c.x),e.y=0.5*(b.y+c.y),e.z=0.5*(b.z+c.z),e;k=Math.sin((1-f)*m)/h;f=Math.sin(f*m)/h;e.w=b.w*k+c.w*f;e.x=b.x*k+c.x*f;e.y=b.y*k+c.y*f;e.z=b.z*k+c.z*f;return e};
THREE.Vertex=function(b){this.position=b||new THREE.Vector3};THREE.Face3=function(b,c,e,f,k,m){this.a=b;this.b=c;this.c=e;this.normal=f instanceof THREE.Vector3?f:new THREE.Vector3;this.vertexNormals=f instanceof Array?f:[];this.color=k instanceof THREE.Color?k:new THREE.Color;this.vertexColors=k instanceof Array?k:[];this.vertexTangents=[];this.materials=m instanceof Array?m:[m];this.centroid=new THREE.Vector3};
THREE.Face4=function(b,c,e,f,k,m,h){this.a=b;this.b=c;this.c=e;this.d=f;this.normal=k instanceof THREE.Vector3?k:new THREE.Vector3;this.vertexNormals=k instanceof Array?k:[];this.color=m instanceof THREE.Color?m:new THREE.Color;this.vertexColors=m instanceof Array?m:[];this.vertexTangents=[];this.materials=h instanceof Array?h:[h];this.centroid=new THREE.Vector3};THREE.UV=function(b,c){this.u=b||0;this.v=c||0};
THREE.UV.prototype={constructor:THREE.UV,set:function(b,c){this.u=b;this.v=c;return this},copy:function(b){this.u=b.u;this.v=b.v;return this},clone:function(){return new THREE.UV(this.u,this.v)}};
THREE.Geometry=function(){this.id=THREE.GeometryCount++;this.vertices=[];this.colors=[];this.faces=[];this.edges=[];this.faceUvs=[[]];this.faceVertexUvs=[[]];this.morphTargets=[];this.morphColors=[];this.skinWeights=[];this.skinIndices=[];this.boundingSphere=this.boundingBox=null;this.dynamic=this.hasTangents=false};
THREE.Geometry.prototype={constructor:THREE.Geometry,computeCentroids:function(){var b,c,e;b=0;for(c=this.faces.length;b<c;b++)e=this.faces[b],e.centroid.set(0,0,0),e instanceof THREE.Face3?(e.centroid.addSelf(this.vertices[e.a].position),e.centroid.addSelf(this.vertices[e.b].position),e.centroid.addSelf(this.vertices[e.c].position),e.centroid.divideScalar(3)):e instanceof THREE.Face4&&(e.centroid.addSelf(this.vertices[e.a].position),e.centroid.addSelf(this.vertices[e.b].position),e.centroid.addSelf(this.vertices[e.c].position),
e.centroid.addSelf(this.vertices[e.d].position),e.centroid.divideScalar(4))},computeFaceNormals:function(b){var c,e,f,k,m,h,n=new THREE.Vector3,o=new THREE.Vector3;f=0;for(k=this.faces.length;f<k;f++){m=this.faces[f];if(b&&m.vertexNormals.length){n.set(0,0,0);c=0;for(e=m.vertexNormals.length;c<e;c++)n.addSelf(m.vertexNormals[c]);n.divideScalar(3)}else c=this.vertices[m.a],e=this.vertices[m.b],h=this.vertices[m.c],n.sub(h.position,e.position),o.sub(c.position,e.position),n.crossSelf(o);n.isZero()||
n.normalize();m.normal.copy(n)}},computeVertexNormals:function(){var b,c,e,f;if(this.__tmpVertices==void 0){f=this.__tmpVertices=Array(this.vertices.length);b=0;for(c=this.vertices.length;b<c;b++)f[b]=new THREE.Vector3;b=0;for(c=this.faces.length;b<c;b++)if(e=this.faces[b],e instanceof THREE.Face3)e.vertexNormals=[new THREE.Vector3,new THREE.Vector3,new THREE.Vector3];else if(e instanceof THREE.Face4)e.vertexNormals=[new THREE.Vector3,new THREE.Vector3,new THREE.Vector3,new THREE.Vector3]}else{f=
this.__tmpVertices;b=0;for(c=this.vertices.length;b<c;b++)f[b].set(0,0,0)}b=0;for(c=this.faces.length;b<c;b++)e=this.faces[b],e instanceof THREE.Face3?(f[e.a].addSelf(e.normal),f[e.b].addSelf(e.normal),f[e.c].addSelf(e.normal)):e instanceof THREE.Face4&&(f[e.a].addSelf(e.normal),f[e.b].addSelf(e.normal),f[e.c].addSelf(e.normal),f[e.d].addSelf(e.normal));b=0;for(c=this.vertices.length;b<c;b++)f[b].normalize();b=0;for(c=this.faces.length;b<c;b++)e=this.faces[b],e instanceof THREE.Face3?(e.vertexNormals[0].copy(f[e.a]),
e.vertexNormals[1].copy(f[e.b]),e.vertexNormals[2].copy(f[e.c])):e instanceof THREE.Face4&&(e.vertexNormals[0].copy(f[e.a]),e.vertexNormals[1].copy(f[e.b]),e.vertexNormals[2].copy(f[e.c]),e.vertexNormals[3].copy(f[e.d]))},computeTangents:function(){function b(b,e,c,f,k,m,Q){n=b.vertices[e].position;o=b.vertices[c].position;t=b.vertices[f].position;u=h[k];v=h[m];x=h[Q];w=o.x-n.x;B=t.x-n.x;A=o.y-n.y;y=t.y-n.y;D=o.z-n.z;C=t.z-n.z;L=v.u-u.u;z=x.u-u.u;E=v.v-u.v;N=x.v-u.v;I=1/(L*N-z*E);M.set((N*w-E*B)*
I,(N*A-E*y)*I,(N*D-E*C)*I);J.set((L*B-z*w)*I,(L*y-z*A)*I,(L*C-z*D)*I);H[e].addSelf(M);H[c].addSelf(M);H[f].addSelf(M);W[e].addSelf(J);W[c].addSelf(J);W[f].addSelf(J)}var c,e,f,k,m,h,n,o,t,u,v,x,w,B,A,y,D,C,L,z,E,N,I,P,H=[],W=[],M=new THREE.Vector3,J=new THREE.Vector3,Q=new THREE.Vector3,O=new THREE.Vector3,Y=new THREE.Vector3;c=0;for(e=this.vertices.length;c<e;c++)H[c]=new THREE.Vector3,W[c]=new THREE.Vector3;c=0;for(e=this.faces.length;c<e;c++)m=this.faces[c],h=this.faceVertexUvs[0][c],m instanceof
THREE.Face3?b(this,m.a,m.b,m.c,0,1,2):m instanceof THREE.Face4&&(b(this,m.a,m.b,m.c,0,1,2),b(this,m.a,m.b,m.d,0,1,3));var V=["a","b","c","d"];c=0;for(e=this.faces.length;c<e;c++){m=this.faces[c];for(f=0;f<m.vertexNormals.length;f++)Y.copy(m.vertexNormals[f]),k=m[V[f]],P=H[k],Q.copy(P),Q.subSelf(Y.multiplyScalar(Y.dot(P))).normalize(),O.cross(m.vertexNormals[f],P),k=O.dot(W[k]),k=k<0?-1:1,m.vertexTangents[f]=new THREE.Vector4(Q.x,Q.y,Q.z,k)}this.hasTangents=true},computeBoundingBox:function(){var b;
if(this.vertices.length>0){this.boundingBox={x:[this.vertices[0].position.x,this.vertices[0].position.x],y:[this.vertices[0].position.y,this.vertices[0].position.y],z:[this.vertices[0].position.z,this.vertices[0].position.z]};for(var c=1,e=this.vertices.length;c<e;c++){b=this.vertices[c];if(b.position.x<this.boundingBox.x[0])this.boundingBox.x[0]=b.position.x;else if(b.position.x>this.boundingBox.x[1])this.boundingBox.x[1]=b.position.x;if(b.position.y<this.boundingBox.y[0])this.boundingBox.y[0]=b.position.y;
else if(b.position.y>this.boundingBox.y[1])this.boundingBox.y[1]=b.position.y;if(b.position.z<this.boundingBox.z[0])this.boundingBox.z[0]=b.position.z;else if(b.position.z>this.boundingBox.z[1])this.boundingBox.z[1]=b.position.z}}},computeBoundingSphere:function(){for(var b=0,c=0,e=this.vertices.length;c<e;c++)b=Math.max(b,this.vertices[c].position.length());this.boundingSphere={radius:b}},computeEdgeFaces:function(){function b(b,e){return Math.min(b,e)+"_"+Math.max(b,e)}function c(b,e,c){b[e]===
void 0?(b[e]={set:{},array:[]},b[e].set[c]=1,b[e].array.push(c)):b[e].set[c]===void 0&&(b[e].set[c]=1,b[e].array.push(c))}var e,f,k,m,h,n={};e=0;for(f=this.faces.length;e<f;e++)h=this.faces[e],h instanceof THREE.Face3?(k=b(h.a,h.b),c(n,k,e),k=b(h.b,h.c),c(n,k,e),k=b(h.a,h.c),c(n,k,e)):h instanceof THREE.Face4&&(k=b(h.b,h.d),c(n,k,e),k=b(h.a,h.b),c(n,k,e),k=b(h.a,h.d),c(n,k,e),k=b(h.b,h.c),c(n,k,e),k=b(h.c,h.d),c(n,k,e));e=0;for(f=this.edges.length;e<f;e++){h=this.edges[e];k=h.vertexIndices[0];m=h.vertexIndices[1];
h.faceIndices=n[b(k,m)].array;for(k=0;k<h.faceIndices.length;k++)m=h.faceIndices[k],h.faces.push(this.faces[m])}}};THREE.GeometryCount=0;
THREE.Spline=function(b){function c(b,e,c,f,k,h,m){b=(c-b)*0.5;f=(f-e)*0.5;return(2*(e-c)+b+f)*m+(-3*(e-c)-2*b-f)*h+b*k+e}this.points=b;var e=[],f={x:0,y:0,z:0},k,m,h,n,o,t,u,v,x;this.initFromArray=function(b){this.points=[];for(var e=0;e<b.length;e++)this.points[e]={x:b[e][0],y:b[e][1],z:b[e][2]}};this.getPoint=function(b){k=(this.points.length-1)*b;m=Math.floor(k);h=k-m;e[0]=m==0?m:m-1;e[1]=m;e[2]=m>this.points.length-2?m:m+1;e[3]=m>this.points.length-3?m:m+2;t=this.points[e[0]];u=this.points[e[1]];
v=this.points[e[2]];x=this.points[e[3]];n=h*h;o=h*n;f.x=c(t.x,u.x,v.x,x.x,h,n,o);f.y=c(t.y,u.y,v.y,x.y,h,n,o);f.z=c(t.z,u.z,v.z,x.z,h,n,o);return f};this.getControlPointsArray=function(){var b,e,c=this.points.length,f=[];for(b=0;b<c;b++)e=this.points[b],f[b]=[e.x,e.y,e.z];return f};this.getLength=function(b){var e,c,f=e=e=0,k=new THREE.Vector3,h=new THREE.Vector3,m=[],n=0;m[0]=0;b||(b=100);c=this.points.length*b;k.copy(this.points[0]);for(b=1;b<c;b++)e=b/c,position=this.getPoint(e),h.copy(position),
n+=h.distanceTo(k),k.copy(position),e*=this.points.length-1,e=Math.floor(e),e!=f&&(m[e]=n,f=e);m[m.length]=n;return{chunks:m,total:n}};this.reparametrizeByArcLength=function(b){var e,c,f,k,h,m,n=[],o=new THREE.Vector3,t=this.getLength();n.push(o.copy(this.points[0]).clone());for(e=1;e<this.points.length;e++){c=t.chunks[e]-t.chunks[e-1];m=Math.ceil(b*c/t.total);k=(e-1)/(this.points.length-1);h=e/(this.points.length-1);for(c=1;c<m-1;c++)f=k+c*(1/m)*(h-k),position=this.getPoint(f),n.push(o.copy(position).clone());
n.push(o.copy(this.points[e]).clone())}this.points=n}};THREE.Edge=function(b,c,e,f){this.vertices=[b,c];this.vertexIndices=[e,f];this.faces=[];this.faceIndices=[]};THREE.Camera=function(b,c,e,f,k){THREE.Object3D.call(this);this.fov=b||50;this.aspect=c||1;this.near=e||0.1;this.far=f||2E3;this.target=k||new THREE.Object3D;this.useTarget=true;this.matrixWorldInverse=new THREE.Matrix4;this.projectionMatrix=null;this.updateProjectionMatrix()};THREE.Camera.prototype=new THREE.Object3D;
THREE.Camera.prototype.constructor=THREE.Camera;THREE.Camera.prototype.supr=THREE.Object3D.prototype;THREE.Camera.prototype.translate=function(b,c){this.matrix.rotateAxis(c);c.multiplyScalar(b);this.position.addSelf(c);this.target.position.addSelf(c)};
THREE.Camera.prototype.updateProjectionMatrix=function(){if(this.fullWidth){var b=this.fullWidth/this.fullHeight,c=Math.tan(this.fov*Math.PI/360)*this.near,e=-c,f=b*e,b=Math.abs(b*c-f),e=Math.abs(c-e);this.projectionMatrix=THREE.Matrix4.makeFrustum(f+this.x*b/this.fullWidth,f+(this.x+this.width)*b/this.fullWidth,c-(this.y+this.height)*e/this.fullHeight,c-this.y*e/this.fullHeight,this.near,this.far)}else this.projectionMatrix=THREE.Matrix4.makePerspective(this.fov,this.aspect,this.near,this.far)};
THREE.Camera.prototype.setViewOffset=function(b,c,e,f,k,m){this.fullWidth=b;this.fullHeight=c;this.x=e;this.y=f;this.width=k;this.height=m;this.updateProjectionMatrix()};
THREE.Camera.prototype.update=function(b,c,e){if(this.useTarget)this.matrix.lookAt(this.position,this.target.position,this.up),this.matrix.setPosition(this.position),b?this.matrixWorld.multiply(b,this.matrix):this.matrixWorld.copy(this.matrix),THREE.Matrix4.makeInvert(this.matrixWorld,this.matrixWorldInverse),c=true;else if(this.matrixAutoUpdate&&this.updateMatrix(),c||this.matrixWorldNeedsUpdate)b?this.matrixWorld.multiply(b,this.matrix):this.matrixWorld.copy(this.matrix),this.matrixWorldNeedsUpdate=
false,c=true,THREE.Matrix4.makeInvert(this.matrixWorld,this.matrixWorldInverse);for(b=0;b<this.children.length;b++)this.children[b].update(this.matrixWorld,c,e)};THREE.OrthoCamera=function(b,c,e,f,k,m,h){THREE.Camera.call(this,45,1,k,m,h);this.left=b;this.right=c;this.top=e;this.bottom=f;this.updateProjectionMatrix()};THREE.OrthoCamera.prototype=new THREE.Camera;THREE.OrthoCamera.prototype.constructor=THREE.OrthoCamera;
THREE.OrthoCamera.prototype.updateProjectionMatrix=function(){this.projectionMatrix=THREE.Matrix4.makeOrtho(this.left,this.right,this.top,this.bottom,this.near,this.far)};THREE.Light=function(b){THREE.Object3D.call(this);this.color=new THREE.Color(b)};THREE.Light.prototype=new THREE.Object3D;THREE.Light.prototype.constructor=THREE.Light;THREE.Light.prototype.supr=THREE.Object3D.prototype;THREE.AmbientLight=function(b){THREE.Light.call(this,b)};THREE.AmbientLight.prototype=new THREE.Light;
THREE.AmbientLight.prototype.constructor=THREE.AmbientLight;THREE.DirectionalLight=function(b,c,e,f){THREE.Light.call(this,b);this.position=new THREE.Vector3(0,1,0);this.intensity=c||1;this.distance=e||0;this.castShadow=f!==void 0?f:false};THREE.DirectionalLight.prototype=new THREE.Light;THREE.DirectionalLight.prototype.constructor=THREE.DirectionalLight;THREE.PointLight=function(b,c,e){THREE.Light.call(this,b);this.position=new THREE.Vector3;this.intensity=c||1;this.distance=e||0};
THREE.PointLight.prototype=new THREE.Light;THREE.PointLight.prototype.constructor=THREE.PointLight;THREE.SpotLight=function(b,c,e,f){THREE.Light.call(this,b);this.position=new THREE.Vector3(0,1,0);this.target=new THREE.Object3D;this.intensity=c||1;this.distance=e||0;this.castShadow=f!==void 0?f:false};THREE.SpotLight.prototype=new THREE.Light;THREE.SpotLight.prototype.constructor=THREE.SpotLight;
THREE.Material=function(b){this.id=THREE.MaterialCount++;b=b||{};this.opacity=b.opacity!==void 0?b.opacity:1;this.transparent=b.transparent!==void 0?b.transparent:false;this.blending=b.blending!==void 0?b.blending:THREE.NormalBlending;this.depthTest=b.depthTest!==void 0?b.depthTest:true;this.polygonOffset=b.polygonOffset!==void 0?b.polygonOffset:false;this.polygonOffsetFactor=b.polygonOffsetFactor!==void 0?b.polygonOffsetFactor:0;this.polygonOffsetUnits=b.polygonOffsetUnits!==void 0?b.polygonOffsetUnits:
0;this.alphaTest=b.alphaTest!==void 0?b.alphaTest:0};THREE.MaterialCount=0;THREE.NoShading=0;THREE.FlatShading=1;THREE.SmoothShading=2;THREE.NoColors=0;THREE.FaceColors=1;THREE.VertexColors=2;THREE.NormalBlending=0;THREE.AdditiveBlending=1;THREE.SubtractiveBlending=2;THREE.MultiplyBlending=3;THREE.AdditiveAlphaBlending=4;
THREE.LineBasicMaterial=function(b){THREE.Material.call(this,b);b=b||{};this.color=b.color!==void 0?new THREE.Color(b.color):new THREE.Color(16777215);this.linewidth=b.linewidth!==void 0?b.linewidth:1;this.linecap=b.linecap!==void 0?b.linecap:"round";this.linejoin=b.linejoin!==void 0?b.linejoin:"round";this.vertexColors=b.vertexColors?b.vertexColors:false};THREE.LineBasicMaterial.prototype=new THREE.Material;THREE.LineBasicMaterial.prototype.constructor=THREE.LineBasicMaterial;
THREE.MeshBasicMaterial=function(b){THREE.Material.call(this,b);b=b||{};this.color=b.color!==void 0?new THREE.Color(b.color):new THREE.Color(16777215);this.map=b.map!==void 0?b.map:null;this.lightMap=b.lightMap!==void 0?b.lightMap:null;this.envMap=b.envMap!==void 0?b.envMap:null;this.combine=b.combine!==void 0?b.combine:THREE.MultiplyOperation;this.reflectivity=b.reflectivity!==void 0?b.reflectivity:1;this.refractionRatio=b.refractionRatio!==void 0?b.refractionRatio:0.98;this.shading=b.shading!==
void 0?b.shading:THREE.SmoothShading;this.wireframe=b.wireframe!==void 0?b.wireframe:false;this.wireframeLinewidth=b.wireframeLinewidth!==void 0?b.wireframeLinewidth:1;this.wireframeLinecap=b.wireframeLinecap!==void 0?b.wireframeLinecap:"round";this.wireframeLinejoin=b.wireframeLinejoin!==void 0?b.wireframeLinejoin:"round";this.vertexColors=b.vertexColors!==void 0?b.vertexColors:false;this.skinning=b.skinning!==void 0?b.skinning:false;this.morphTargets=b.morphTargets!==void 0?b.morphTargets:false};
THREE.MeshBasicMaterial.prototype=new THREE.Material;THREE.MeshBasicMaterial.prototype.constructor=THREE.MeshBasicMaterial;
THREE.MeshLambertMaterial=function(b){THREE.Material.call(this,b);b=b||{};this.color=b.color!==void 0?new THREE.Color(b.color):new THREE.Color(16777215);this.map=b.map!==void 0?b.map:null;this.lightMap=b.lightMap!==void 0?b.lightMap:null;this.envMap=b.envMap!==void 0?b.envMap:null;this.combine=b.combine!==void 0?b.combine:THREE.MultiplyOperation;this.reflectivity=b.reflectivity!==void 0?b.reflectivity:1;this.refractionRatio=b.refractionRatio!==void 0?b.refractionRatio:0.98;this.shading=b.shading!==
void 0?b.shading:THREE.SmoothShading;this.wireframe=b.wireframe!==void 0?b.wireframe:false;this.wireframeLinewidth=b.wireframeLinewidth!==void 0?b.wireframeLinewidth:1;this.wireframeLinecap=b.wireframeLinecap!==void 0?b.wireframeLinecap:"round";this.wireframeLinejoin=b.wireframeLinejoin!==void 0?b.wireframeLinejoin:"round";this.vertexColors=b.vertexColors!==void 0?b.vertexColors:false;this.skinning=b.skinning!==void 0?b.skinning:false;this.morphTargets=b.morphTargets!==void 0?b.morphTargets:false};
THREE.MeshLambertMaterial.prototype=new THREE.Material;THREE.MeshLambertMaterial.prototype.constructor=THREE.MeshLambertMaterial;
THREE.MeshPhongMaterial=function(b){THREE.Material.call(this,b);b=b||{};this.color=b.color!==void 0?new THREE.Color(b.color):new THREE.Color(16777215);this.ambient=b.ambient!==void 0?new THREE.Color(b.ambient):new THREE.Color(328965);this.specular=b.specular!==void 0?new THREE.Color(b.specular):new THREE.Color(1118481);this.shininess=b.shininess!==void 0?b.shininess:30;this.map=b.map!==void 0?b.map:null;this.lightMap=b.lightMap!==void 0?b.lightMap:null;this.envMap=b.envMap!==void 0?b.envMap:null;
this.combine=b.combine!==void 0?b.combine:THREE.MultiplyOperation;this.reflectivity=b.reflectivity!==void 0?b.reflectivity:1;this.refractionRatio=b.refractionRatio!==void 0?b.refractionRatio:0.98;this.shading=b.shading!==void 0?b.shading:THREE.SmoothShading;this.wireframe=b.wireframe!==void 0?b.wireframe:false;this.wireframeLinewidth=b.wireframeLinewidth!==void 0?b.wireframeLinewidth:1;this.wireframeLinecap=b.wireframeLinecap!==void 0?b.wireframeLinecap:"round";this.wireframeLinejoin=b.wireframeLinejoin!==
void 0?b.wireframeLinejoin:"round";this.vertexColors=b.vertexColors!==void 0?b.vertexColors:false;this.skinning=b.skinning!==void 0?b.skinning:false;this.morphTargets=b.morphTargets!==void 0?b.morphTargets:false};THREE.MeshPhongMaterial.prototype=new THREE.Material;THREE.MeshPhongMaterial.prototype.constructor=THREE.MeshPhongMaterial;
THREE.MeshDepthMaterial=function(b){THREE.Material.call(this,b);b=b||{};this.shading=b.shading!==void 0?b.shading:THREE.SmoothShading;this.wireframe=b.wireframe!==void 0?b.wireframe:false;this.wireframeLinewidth=b.wireframeLinewidth!==void 0?b.wireframeLinewidth:1};THREE.MeshDepthMaterial.prototype=new THREE.Material;THREE.MeshDepthMaterial.prototype.constructor=THREE.MeshDepthMaterial;
THREE.MeshNormalMaterial=function(b){THREE.Material.call(this,b);b=b||{};this.shading=b.shading?b.shading:THREE.FlatShading;this.wireframe=b.wireframe?b.wireframe:false;this.wireframeLinewidth=b.wireframeLinewidth?b.wireframeLinewidth:1};THREE.MeshNormalMaterial.prototype=new THREE.Material;THREE.MeshNormalMaterial.prototype.constructor=THREE.MeshNormalMaterial;THREE.MeshFaceMaterial=function(){};
THREE.MeshShaderMaterial=function(b){THREE.Material.call(this,b);b=b||{};this.fragmentShader=b.fragmentShader!==void 0?b.fragmentShader:"void main() {}";this.vertexShader=b.vertexShader!==void 0?b.vertexShader:"void main() {}";this.uniforms=b.uniforms!==void 0?b.uniforms:{};this.attributes=b.attributes;this.shading=b.shading!==void 0?b.shading:THREE.SmoothShading;this.wireframe=b.wireframe!==void 0?b.wireframe:false;this.wireframeLinewidth=b.wireframeLinewidth!==void 0?b.wireframeLinewidth:1;this.fog=
b.fog!==void 0?b.fog:false;this.lights=b.lights!==void 0?b.lights:false;this.vertexColors=b.vertexColors!==void 0?b.vertexColors:false;this.skinning=b.skinning!==void 0?b.skinning:false;this.morphTargets=b.morphTargets!==void 0?b.morphTargets:false};THREE.MeshShaderMaterial.prototype=new THREE.Material;THREE.MeshShaderMaterial.prototype.constructor=THREE.MeshShaderMaterial;
THREE.ParticleBasicMaterial=function(b){THREE.Material.call(this,b);b=b||{};this.color=b.color!==void 0?new THREE.Color(b.color):new THREE.Color(16777215);this.map=b.map!==void 0?b.map:null;this.size=b.size!==void 0?b.size:1;this.sizeAttenuation=b.sizeAttenuation!==void 0?b.sizeAttenuation:true;this.vertexColors=b.vertexColors!==void 0?b.vertexColors:false};THREE.ParticleBasicMaterial.prototype=new THREE.Material;THREE.ParticleBasicMaterial.prototype.constructor=THREE.ParticleBasicMaterial;
THREE.ParticleCanvasMaterial=function(b){THREE.Material.call(this,b);b=b||{};this.color=b.color!==void 0?new THREE.Color(b.color):new THREE.Color(16777215);this.program=b.program!==void 0?b.program:function(){}};THREE.ParticleCanvasMaterial.prototype=new THREE.Material;THREE.ParticleCanvasMaterial.prototype.constructor=THREE.ParticleCanvasMaterial;THREE.ParticleDOMMaterial=function(b){THREE.Material.call(this);this.domElement=b};
THREE.Texture=function(b,c,e,f,k,m){this.id=THREE.TextureCount++;this.image=b;this.mapping=c!==void 0?c:new THREE.UVMapping;this.wrapS=e!==void 0?e:THREE.ClampToEdgeWrapping;this.wrapT=f!==void 0?f:THREE.ClampToEdgeWrapping;this.magFilter=k!==void 0?k:THREE.LinearFilter;this.minFilter=m!==void 0?m:THREE.LinearMipMapLinearFilter;this.offset=new THREE.Vector2(0,0);this.repeat=new THREE.Vector2(1,1);this.needsUpdate=false};
THREE.Texture.prototype={constructor:THREE.Texture,clone:function(){var b=new THREE.Texture(this.image,this.mapping,this.wrapS,this.wrapT,this.magFilter,this.minFilter);b.offset.copy(this.offset);b.repeat.copy(this.repeat);return b}};THREE.TextureCount=0;THREE.MultiplyOperation=0;THREE.MixOperation=1;THREE.CubeReflectionMapping=function(){};THREE.CubeRefractionMapping=function(){};THREE.LatitudeReflectionMapping=function(){};THREE.LatitudeRefractionMapping=function(){};
THREE.SphericalReflectionMapping=function(){};THREE.SphericalRefractionMapping=function(){};THREE.UVMapping=function(){};THREE.RepeatWrapping=0;THREE.ClampToEdgeWrapping=1;THREE.MirroredRepeatWrapping=2;THREE.NearestFilter=3;THREE.NearestMipMapNearestFilter=4;THREE.NearestMipMapLinearFilter=5;THREE.LinearFilter=6;THREE.LinearMipMapNearestFilter=7;THREE.LinearMipMapLinearFilter=8;THREE.ByteType=9;THREE.UnsignedByteType=10;THREE.ShortType=11;THREE.UnsignedShortType=12;THREE.IntType=13;
THREE.UnsignedIntType=14;THREE.FloatType=15;THREE.AlphaFormat=16;THREE.RGBFormat=17;THREE.RGBAFormat=18;THREE.LuminanceFormat=19;THREE.LuminanceAlphaFormat=20;THREE.DataTexture=function(b,c,e,f,k,m,h,n,o){THREE.Texture.call(this,null,k,m,h,n,o);this.image={data:b,width:c,height:e};this.format=f!==void 0?f:THREE.RGBAFormat};THREE.DataTexture.prototype=new THREE.Texture;THREE.DataTexture.prototype.constructor=THREE.DataTexture;
THREE.DataTexture.prototype.clone=function(){var b=new THREE.DataTexture(this.data.slice(0),this.mapping,this.wrapS,this.wrapT,this.magFilter,this.minFilter);b.offset.copy(this.offset);b.repeat.copy(this.repeat);return b};THREE.Particle=function(b){THREE.Object3D.call(this);this.materials=b instanceof Array?b:[b]};THREE.Particle.prototype=new THREE.Object3D;THREE.Particle.prototype.constructor=THREE.Particle;
THREE.ParticleSystem=function(b,c){THREE.Object3D.call(this);this.geometry=b;this.materials=c instanceof Array?c:[c];this.sortParticles=false};THREE.ParticleSystem.prototype=new THREE.Object3D;THREE.ParticleSystem.prototype.constructor=THREE.ParticleSystem;THREE.Line=function(b,c,e){THREE.Object3D.call(this);this.geometry=b;this.materials=c instanceof Array?c:[c];this.type=e!=void 0?e:THREE.LineStrip};THREE.LineStrip=0;THREE.LinePieces=1;THREE.Line.prototype=new THREE.Object3D;
THREE.Line.prototype.constructor=THREE.Line;
THREE.Mesh=function(b,c){THREE.Object3D.call(this);this.geometry=b;this.materials=c&&c.length?c:[c];this.overdraw=false;if(this.geometry&&(this.geometry.boundingSphere||this.geometry.computeBoundingSphere(),this.boundRadius=b.boundingSphere.radius,this.geometry.morphTargets.length)){this.morphTargetBase=-1;this.morphTargetForcedOrder=[];this.morphTargetInfluences=[];this.morphTargetDictionary={};for(var e=0;e<this.geometry.morphTargets.length;e++)this.morphTargetInfluences.push(0),this.morphTargetDictionary[this.geometry.morphTargets[e].name]=
e}};THREE.Mesh.prototype=new THREE.Object3D;THREE.Mesh.prototype.constructor=THREE.Mesh;THREE.Mesh.prototype.supr=THREE.Object3D.prototype;THREE.Mesh.prototype.getMorphTargetIndexByName=function(b){if(this.morphTargetDictionary[b]!==void 0)return this.morphTargetDictionary[b];console.log("THREE.Mesh.getMorphTargetIndexByName: morph target "+b+" does not exist. Returning 0.");return 0};
THREE.Bone=function(b){THREE.Object3D.call(this);this.skin=b;this.skinMatrix=new THREE.Matrix4;this.hasNoneBoneChildren=false};THREE.Bone.prototype=new THREE.Object3D;THREE.Bone.prototype.constructor=THREE.Bone;THREE.Bone.prototype.supr=THREE.Object3D.prototype;
THREE.Bone.prototype.update=function(b,c,e){this.matrixAutoUpdate&&(c|=this.updateMatrix());if(c||this.matrixWorldNeedsUpdate)b?this.skinMatrix.multiply(b,this.matrix):this.skinMatrix.copy(this.matrix),this.matrixWorldNeedsUpdate=false,c=true;var f,k=this.children.length;if(this.hasNoneBoneChildren){this.matrixWorld.multiply(this.skin.matrixWorld,this.skinMatrix);for(f=0;f<k;f++)b=this.children[f],b instanceof THREE.Bone?b.update(this.skinMatrix,c,e):b.update(this.matrixWorld,true,e)}else for(f=0;f<
k;f++)this.children[f].update(this.skinMatrix,c,e)};THREE.Bone.prototype.addChild=function(b){if(this.children.indexOf(b)===-1&&(b.parent!==void 0&&b.parent.removeChild(b),b.parent=this,this.children.push(b),!(b instanceof THREE.Bone)))this.hasNoneBoneChildren=true};
THREE.SkinnedMesh=function(b,c){THREE.Mesh.call(this,b,c);this.identityMatrix=new THREE.Matrix4;this.bones=[];this.boneMatrices=[];var e,f,k,m,h,n;if(this.geometry.bones!==void 0){for(e=0;e<this.geometry.bones.length;e++)k=this.geometry.bones[e],m=k.pos,h=k.rotq,n=k.scl,f=this.addBone(),f.name=k.name,f.position.set(m[0],m[1],m[2]),f.quaternion.set(h[0],h[1],h[2],h[3]),f.useQuaternion=true,n!==void 0?f.scale.set(n[0],n[1],n[2]):f.scale.set(1,1,1);for(e=0;e<this.bones.length;e++)k=this.geometry.bones[e],
f=this.bones[e],k.parent===-1?this.addChild(f):this.bones[k.parent].addChild(f);this.boneMatrices=new Float32Array(16*this.bones.length);this.pose()}};THREE.SkinnedMesh.prototype=new THREE.Mesh;THREE.SkinnedMesh.prototype.constructor=THREE.SkinnedMesh;
THREE.SkinnedMesh.prototype.update=function(b,c,e){if(this.visible){this.matrixAutoUpdate&&(c|=this.updateMatrix());if(c||this.matrixWorldNeedsUpdate)b?this.matrixWorld.multiply(b,this.matrix):this.matrixWorld.copy(this.matrix),this.matrixWorldNeedsUpdate=false,c=true;var f,k=this.children.length;for(f=0;f<k;f++)b=this.children[f],b instanceof THREE.Bone?b.update(this.identityMatrix,false,e):b.update(this.matrixWorld,c,e);e=this.bones.length;ba=this.bones;bm=this.boneMatrices;for(c=0;c<e;c++)ba[c].skinMatrix.flattenToArrayOffset(bm,
c*16)}};THREE.SkinnedMesh.prototype.addBone=function(b){b===void 0&&(b=new THREE.Bone(this));this.bones.push(b);return b};
THREE.SkinnedMesh.prototype.pose=function(){this.update(void 0,true);for(var b,c=[],e=0;e<this.bones.length;e++)b=this.bones[e],c.push(THREE.Matrix4.makeInvert(b.skinMatrix)),b.skinMatrix.flattenToArrayOffset(this.boneMatrices,e*16);if(this.geometry.skinVerticesA===void 0){this.geometry.skinVerticesA=[];this.geometry.skinVerticesB=[];var f;for(b=0;b<this.geometry.skinIndices.length;b++){var e=this.geometry.vertices[b].position,k=this.geometry.skinIndices[b].x,m=this.geometry.skinIndices[b].y;f=new THREE.Vector3(e.x,
e.y,e.z);this.geometry.skinVerticesA.push(c[k].multiplyVector3(f));f=new THREE.Vector3(e.x,e.y,e.z);this.geometry.skinVerticesB.push(c[m].multiplyVector3(f));this.geometry.skinWeights[b].x+this.geometry.skinWeights[b].y!==1&&(e=(1-(this.geometry.skinWeights[b].x+this.geometry.skinWeights[b].y))*0.5,this.geometry.skinWeights[b].x+=e,this.geometry.skinWeights[b].y+=e)}}};THREE.Ribbon=function(b,c){THREE.Object3D.call(this);this.geometry=b;this.materials=c instanceof Array?c:[c]};
THREE.Ribbon.prototype=new THREE.Object3D;THREE.Ribbon.prototype.constructor=THREE.Ribbon;THREE.LOD=function(){THREE.Object3D.call(this);this.LODs=[]};THREE.LOD.prototype=new THREE.Object3D;THREE.LOD.prototype.constructor=THREE.LOD;THREE.LOD.prototype.supr=THREE.Object3D.prototype;THREE.LOD.prototype.add=function(b,c){c===void 0&&(c=0);for(var c=Math.abs(c),e=0;e<this.LODs.length;e++)if(c<this.LODs[e].visibleAtDistance)break;this.LODs.splice(e,0,{visibleAtDistance:c,object3D:b});this.addChild(b)};
THREE.LOD.prototype.update=function(b,c,e){this.matrixAutoUpdate&&(c|=this.updateMatrix());if(c||this.matrixWorldNeedsUpdate)b?this.matrixWorld.multiply(b,this.matrix):this.matrixWorld.copy(this.matrix),this.matrixWorldNeedsUpdate=false,c=true;if(this.LODs.length>1){b=e.matrixWorldInverse;b=-(b.n31*this.position.x+b.n32*this.position.y+b.n33*this.position.z+b.n34);this.LODs[0].object3D.visible=true;for(var f=1;f<this.LODs.length;f++)if(b>=this.LODs[f].visibleAtDistance)this.LODs[f-1].object3D.visible=
false,this.LODs[f].object3D.visible=true;else break;for(;f<this.LODs.length;f++)this.LODs[f].object3D.visible=false}for(b=0;b<this.children.length;b++)this.children[b].update(this.matrixWorld,c,e)};
THREE.Sprite=function(b){THREE.Object3D.call(this);if(b.material!==void 0)this.material=b.material,this.map=void 0,this.blending=material.blending;else if(b.map!==void 0)this.map=b.map instanceof THREE.Texture?b.map:THREE.ImageUtils.loadTexture(b.map),this.material=void 0,this.blending=b.blending!==void 0?b.blending:THREE.NormalBlending;this.useScreenCoordinates=b.useScreenCoordinates!==void 0?b.useScreenCoordinates:true;this.mergeWith3D=b.mergeWith3D!==void 0?b.mergeWith3D:!this.useScreenCoordinates;
this.affectedByDistance=b.affectedByDistance!==void 0?b.affectedByDistance:!this.useScreenCoordinates;this.scaleByViewport=b.scaleByViewport!==void 0?b.scaleByViewport:!this.affectedByDistance;this.alignment=b.alignment instanceof THREE.Vector2?b.alignment:THREE.SpriteAlignment.center;this.rotation3d=this.rotation;this.rotation=0;this.opacity=1;this.uvOffset=new THREE.Vector2(0,0);this.uvScale=new THREE.Vector2(1,1)};THREE.Sprite.prototype=new THREE.Object3D;THREE.Sprite.prototype.constructor=THREE.Sprite;
THREE.Sprite.prototype.supr=THREE.Object3D.prototype;THREE.Sprite.prototype.updateMatrix=function(){this.matrix.setPosition(this.position);this.rotation3d.set(0,0,this.rotation);this.matrix.setRotationFromEuler(this.rotation3d);if(this.scale.x!==1||this.scale.y!==1)this.matrix.scale(this.scale),this.boundRadiusScale=Math.max(this.scale.x,this.scale.y);this.matrixWorldNeedsUpdate=true};THREE.SpriteAlignment={};THREE.SpriteAlignment.topLeft=new THREE.Vector2(1,-1);
THREE.SpriteAlignment.topCenter=new THREE.Vector2(0,-1);THREE.SpriteAlignment.topRight=new THREE.Vector2(-1,-1);THREE.SpriteAlignment.centerLeft=new THREE.Vector2(1,0);THREE.SpriteAlignment.center=new THREE.Vector2(0,0);THREE.SpriteAlignment.centerRight=new THREE.Vector2(-1,0);THREE.SpriteAlignment.bottomLeft=new THREE.Vector2(1,1);THREE.SpriteAlignment.bottomCenter=new THREE.Vector2(0,1);THREE.SpriteAlignment.bottomRight=new THREE.Vector2(-1,1);
THREE.Scene=function(){THREE.Object3D.call(this);this.matrixAutoUpdate=false;this.collisions=this.overrideMaterial=this.fog=null;this.objects=[];this.lights=[];this.__objectsAdded=[];this.__objectsRemoved=[]};THREE.Scene.prototype=new THREE.Object3D;THREE.Scene.prototype.constructor=THREE.Scene;THREE.Scene.prototype.supr=THREE.Object3D.prototype;THREE.Scene.prototype.addChild=function(b){this.supr.addChild.call(this,b);this.addChildRecurse(b)};
THREE.Scene.prototype.addChildRecurse=function(b){if(b instanceof THREE.Light)this.lights.indexOf(b)===-1&&this.lights.push(b);else if(!(b instanceof THREE.Camera||b instanceof THREE.Bone)&&this.objects.indexOf(b)===-1)this.objects.push(b),this.__objectsAdded.push(b);for(var c=0;c<b.children.length;c++)this.addChildRecurse(b.children[c])};THREE.Scene.prototype.removeChild=function(b){this.supr.removeChild.call(this,b);this.removeChildRecurse(b)};
THREE.Scene.prototype.removeChildRecurse=function(b){if(b instanceof THREE.Light){var c=this.lights.indexOf(b);c!==-1&&this.lights.splice(c,1)}else b instanceof THREE.Camera||(c=this.objects.indexOf(b),c!==-1&&(this.objects.splice(c,1),this.__objectsRemoved.push(b)));for(c=0;c<b.children.length;c++)this.removeChildRecurse(b.children[c])};THREE.Scene.prototype.addObject=THREE.Scene.prototype.addChild;THREE.Scene.prototype.removeObject=THREE.Scene.prototype.removeChild;
THREE.Scene.prototype.addLight=THREE.Scene.prototype.addChild;THREE.Scene.prototype.removeLight=THREE.Scene.prototype.removeChild;THREE.Fog=function(b,c,e){this.color=new THREE.Color(b);this.near=c||1;this.far=e||1E3};THREE.FogExp2=function(b,c){this.color=new THREE.Color(b);this.density=c!==void 0?c:2.5E-4};
THREE.DOMRenderer=function(){THREE.Renderer.call(this);var b=null,c=new THREE.Projector,e,f,k,m;this.domElement=document.createElement("div");this.setSize=function(b,c){e=b;f=c;k=e/2;m=f/2};this.render=function(e,f){var o,t,u,v,x,w,B,A;b=c.projectScene(e,f);o=0;for(t=b.length;o<t;o++)if(x=b[o],x instanceof THREE.RenderableParticle){B=x.x*k+k;A=x.y*m+m;u=0;for(v=x.material.length;u<v;u++)if(w=x.material[u],w instanceof THREE.ParticleDOMMaterial)w=w.domElement,w.style.left=B+"px",w.style.top=A+"px"}}};
THREE.CanvasRenderer=function(b){function c(b){if(y!=b)w.globalAlpha=y=b}function e(b){if(D!=b){switch(b){case THREE.NormalBlending:w.globalCompositeOperation="source-over";break;case THREE.AdditiveBlending:w.globalCompositeOperation="lighter";break;case THREE.SubtractiveBlending:w.globalCompositeOperation="darker"}D=b}}function f(b){if(C!=b)w.strokeStyle=C=b}function k(b){if(L!=b)w.fillStyle=L=b}var m=this,h=null,n=new THREE.Projector,b=b||{},o=b.canvas!==void 0?b.canvas:document.createElement("canvas"),
t,u,v,x,w=o.getContext("2d"),B=new THREE.Color(0),A=0,y=1,D=0,C=null,L=null,z=null,E=null,N=null,I,P,H,W,M=new THREE.RenderableVertex,J=new THREE.RenderableVertex,Q,O,Y,V,Z,K,X,S,p,ca,aa,la,ka=new THREE.Color(0),ja=new THREE.Color(0),ea=new THREE.Color(0),da=new THREE.Color(0),ga=new THREE.Color(0),ya=[],ma,na,za,ta,Aa,Fa,Da,U,Ha,qa,ra=new THREE.Rectangle,R=new THREE.Rectangle,G=new THREE.Rectangle,Ga=false,ha=new THREE.Color,ia=new THREE.Color,ua=new THREE.Color,oa=new THREE.Color,sa=new THREE.Vector3,
Ca,pa,wa,fa,va,Ia,b=16;Ca=document.createElement("canvas");Ca.width=Ca.height=2;pa=Ca.getContext("2d");pa.fillStyle="rgba(0,0,0,1)";pa.fillRect(0,0,2,2);wa=pa.getImageData(0,0,2,2);fa=wa.data;va=document.createElement("canvas");va.width=va.height=b;Ia=va.getContext("2d");Ia.translate(-b/2,-b/2);Ia.scale(b,b);b--;this.domElement=o;this.sortElements=this.sortObjects=this.autoClear=true;this.data={vertices:0,faces:0};this.setSize=function(b,e){t=b;u=e;v=Math.floor(t/2);x=Math.floor(u/2);o.width=t;o.height=
u;ra.set(-v,-x,v,x);R.set(-v,-x,v,x);y=1;D=0;N=E=z=L=C=null};this.setClearColor=function(b,e){B.copy(b);A=e;R.set(-v,-x,v,x)};this.setClearColorHex=function(b,e){B.setHex(b);A=e;R.set(-v,-x,v,x)};this.clear=function(){w.setTransform(1,0,0,-1,v,x);R.isEmpty()||(R.minSelf(ra),R.inflate(2),A<1&&w.clearRect(Math.floor(R.getX()),Math.floor(R.getY()),Math.floor(R.getWidth()),Math.floor(R.getHeight())),A>0&&(e(THREE.NormalBlending),c(1),k("rgba("+Math.floor(B.r*255)+","+Math.floor(B.g*255)+","+Math.floor(B.b*
255)+","+A+")"),w.fillRect(Math.floor(R.getX()),Math.floor(R.getY()),Math.floor(R.getWidth()),Math.floor(R.getHeight()))),R.empty())};this.render=function(b,o){function t(b){var e,c,f,k=b.lights;ia.setRGB(0,0,0);ua.setRGB(0,0,0);oa.setRGB(0,0,0);b=0;for(e=k.length;b<e;b++)c=k[b],f=c.color,c instanceof THREE.AmbientLight?(ia.r+=f.r,ia.g+=f.g,ia.b+=f.b):c instanceof THREE.DirectionalLight?(ua.r+=f.r,ua.g+=f.g,ua.b+=f.b):c instanceof THREE.PointLight&&(oa.r+=f.r,oa.g+=f.g,oa.b+=f.b)}function u(b,e,c,
f){var k,h,m,p,n=b.lights,b=0;for(k=n.length;b<k;b++)h=n[b],m=h.color,h instanceof THREE.DirectionalLight?(p=c.dot(h.position),p<=0||(p*=h.intensity,f.r+=m.r*p,f.g+=m.g*p,f.b+=m.b*p)):h instanceof THREE.PointLight&&(p=c.dot(sa.sub(h.position,e).normalize()),p<=0||(p*=h.distance==0?1:1-Math.min(e.distanceTo(h.position)/h.distance,1),p!=0&&(p*=h.intensity,f.r+=m.r*p,f.g+=m.g*p,f.b+=m.b*p)))}function y(b,h,m){c(m.opacity);e(m.blending);var p,n,o,t,u,Ba;if(m instanceof THREE.ParticleBasicMaterial){if(m.map)t=
m.map.image,u=t.width>>1,Ba=t.height>>1,m=h.scale.x*v,o=h.scale.y*x,p=m*u,n=o*Ba,G.set(b.x-p,b.y-n,b.x+p,b.y+n),ra.instersects(G)&&(w.save(),w.translate(b.x,b.y),w.rotate(-h.rotation),w.scale(m,-o),w.translate(-u,-Ba),w.drawImage(t,0,0),w.restore())}else m instanceof THREE.ParticleCanvasMaterial&&(p=h.scale.x*v,n=h.scale.y*x,G.set(b.x-p,b.y-n,b.x+p,b.y+n),ra.instersects(G)&&(f(m.color.getContextStyle()),k(m.color.getContextStyle()),w.save(),w.translate(b.x,b.y),w.rotate(-h.rotation),w.scale(p,n),
m.program(w),w.restore()))}function A(b,k,h,m){c(m.opacity);e(m.blending);w.beginPath();w.moveTo(b.positionScreen.x,b.positionScreen.y);w.lineTo(k.positionScreen.x,k.positionScreen.y);w.closePath();if(m instanceof THREE.LineBasicMaterial){b=m.linewidth;if(z!=b)w.lineWidth=z=b;b=m.linecap;if(E!=b)w.lineCap=E=b;b=m.linejoin;if(N!=b)w.lineJoin=N=b;f(m.color.getContextStyle());w.stroke();G.inflate(m.linewidth*2)}}function D(b,f,k,h,p,n,t,v,w){m.data.vertices+=3;m.data.faces++;c(v.opacity);e(v.blending);
Q=b.positionScreen.x;O=b.positionScreen.y;Y=f.positionScreen.x;V=f.positionScreen.y;Z=k.positionScreen.x;K=k.positionScreen.y;C(Q,O,Y,V,Z,K);if(v instanceof THREE.MeshBasicMaterial)if(v.map)v.map.mapping instanceof THREE.UVMapping&&(ta=t.uvs[0],Ma(Q,O,Y,V,Z,K,ta[h].u,ta[h].v,ta[p].u,ta[p].v,ta[n].u,ta[n].v,v.map));else if(v.envMap){if(v.envMap.mapping instanceof THREE.SphericalReflectionMapping)b=o.matrixWorldInverse,sa.copy(t.vertexNormalsWorld[0]),Aa=(sa.x*b.n11+sa.y*b.n12+sa.z*b.n13)*0.5+0.5,Fa=
-(sa.x*b.n21+sa.y*b.n22+sa.z*b.n23)*0.5+0.5,sa.copy(t.vertexNormalsWorld[1]),Da=(sa.x*b.n11+sa.y*b.n12+sa.z*b.n13)*0.5+0.5,U=-(sa.x*b.n21+sa.y*b.n22+sa.z*b.n23)*0.5+0.5,sa.copy(t.vertexNormalsWorld[2]),Ha=(sa.x*b.n11+sa.y*b.n12+sa.z*b.n13)*0.5+0.5,qa=-(sa.x*b.n21+sa.y*b.n22+sa.z*b.n23)*0.5+0.5,Ma(Q,O,Y,V,Z,K,Aa,Fa,Da,U,Ha,qa,v.envMap)}else v.wireframe?La(v.color,v.wireframeLinewidth,v.wireframeLinecap,v.wireframeLinejoin):Ea(v.color);else if(v instanceof THREE.MeshLambertMaterial)v.map&&!v.wireframe&&
(v.map.mapping instanceof THREE.UVMapping&&(ta=t.uvs[0],Ma(Q,O,Y,V,Z,K,ta[h].u,ta[h].v,ta[p].u,ta[p].v,ta[n].u,ta[n].v,v.map)),e(THREE.SubtractiveBlending)),Ga?!v.wireframe&&v.shading==THREE.SmoothShading&&t.vertexNormalsWorld.length==3?(ja.r=ea.r=da.r=ia.r,ja.g=ea.g=da.g=ia.g,ja.b=ea.b=da.b=ia.b,u(w,t.v1.positionWorld,t.vertexNormalsWorld[0],ja),u(w,t.v2.positionWorld,t.vertexNormalsWorld[1],ea),u(w,t.v3.positionWorld,t.vertexNormalsWorld[2],da),ga.r=(ea.r+da.r)*0.5,ga.g=(ea.g+da.g)*0.5,ga.b=(ea.b+
da.b)*0.5,za=Wa(ja,ea,da,ga),Pa(Q,O,Y,V,Z,K,0,0,1,0,0,1,za)):(ha.r=ia.r,ha.g=ia.g,ha.b=ia.b,u(w,t.centroidWorld,t.normalWorld,ha),ka.r=Math.max(0,Math.min(v.color.r*ha.r,1)),ka.g=Math.max(0,Math.min(v.color.g*ha.g,1)),ka.b=Math.max(0,Math.min(v.color.b*ha.b,1)),v.wireframe?La(ka,v.wireframeLinewidth,v.wireframeLinecap,v.wireframeLinejoin):Ea(ka)):v.wireframe?La(v.color,v.wireframeLinewidth,v.wireframeLinecap,v.wireframeLinejoin):Ea(v.color);else if(v instanceof THREE.MeshDepthMaterial)ma=o.near,na=
o.far,ja.r=ja.g=ja.b=1-Ka(b.positionScreen.z,ma,na),ea.r=ea.g=ea.b=1-Ka(f.positionScreen.z,ma,na),da.r=da.g=da.b=1-Ka(k.positionScreen.z,ma,na),ga.r=(ea.r+da.r)*0.5,ga.g=(ea.g+da.g)*0.5,ga.b=(ea.b+da.b)*0.5,za=Wa(ja,ea,da,ga),Pa(Q,O,Y,V,Z,K,0,0,1,0,0,1,za);else if(v instanceof THREE.MeshNormalMaterial)ka.r=bb(t.normalWorld.x),ka.g=bb(t.normalWorld.y),ka.b=bb(t.normalWorld.z),v.wireframe?La(ka,v.wireframeLinewidth,v.wireframeLinecap,v.wireframeLinejoin):Ea(ka)}function B(b,f,k,h,n,v,t,w,x){m.data.vertices+=
4;m.data.faces++;c(w.opacity);e(w.blending);if(w.map||w.envMap)D(b,f,h,0,1,3,t,w,x),D(n,k,v,1,2,3,t,w,x);else if(Q=b.positionScreen.x,O=b.positionScreen.y,Y=f.positionScreen.x,V=f.positionScreen.y,Z=k.positionScreen.x,K=k.positionScreen.y,X=h.positionScreen.x,S=h.positionScreen.y,p=n.positionScreen.x,ca=n.positionScreen.y,aa=v.positionScreen.x,la=v.positionScreen.y,w instanceof THREE.MeshBasicMaterial)L(Q,O,Y,V,Z,K,X,S),w.wireframe?La(w.color,w.wireframeLinewidth,w.wireframeLinecap,w.wireframeLinejoin):
Ea(w.color);else if(w instanceof THREE.MeshLambertMaterial)Ga?!w.wireframe&&w.shading==THREE.SmoothShading&&t.vertexNormalsWorld.length==4?(ja.r=ea.r=da.r=ga.r=ia.r,ja.g=ea.g=da.g=ga.g=ia.g,ja.b=ea.b=da.b=ga.b=ia.b,u(x,t.v1.positionWorld,t.vertexNormalsWorld[0],ja),u(x,t.v2.positionWorld,t.vertexNormalsWorld[1],ea),u(x,t.v4.positionWorld,t.vertexNormalsWorld[3],da),u(x,t.v3.positionWorld,t.vertexNormalsWorld[2],ga),za=Wa(ja,ea,da,ga),C(Q,O,Y,V,X,S),Pa(Q,O,Y,V,X,S,0,0,1,0,0,1,za),C(p,ca,Z,K,aa,la),
Pa(p,ca,Z,K,aa,la,1,0,1,1,0,1,za)):(ha.r=ia.r,ha.g=ia.g,ha.b=ia.b,u(x,t.centroidWorld,t.normalWorld,ha),ka.r=Math.max(0,Math.min(w.color.r*ha.r,1)),ka.g=Math.max(0,Math.min(w.color.g*ha.g,1)),ka.b=Math.max(0,Math.min(w.color.b*ha.b,1)),L(Q,O,Y,V,Z,K,X,S),w.wireframe?La(ka,w.wireframeLinewidth,w.wireframeLinecap,w.wireframeLinejoin):Ea(ka)):(L(Q,O,Y,V,Z,K,X,S),w.wireframe?La(w.color,w.wireframeLinewidth,w.wireframeLinecap,w.wireframeLinejoin):Ea(w.color));else if(w instanceof THREE.MeshNormalMaterial)ka.r=
bb(t.normalWorld.x),ka.g=bb(t.normalWorld.y),ka.b=bb(t.normalWorld.z),L(Q,O,Y,V,Z,K,X,S),w.wireframe?La(ka,w.wireframeLinewidth,w.wireframeLinecap,w.wireframeLinejoin):Ea(ka);else if(w instanceof THREE.MeshDepthMaterial)ma=o.near,na=o.far,ja.r=ja.g=ja.b=1-Ka(b.positionScreen.z,ma,na),ea.r=ea.g=ea.b=1-Ka(f.positionScreen.z,ma,na),da.r=da.g=da.b=1-Ka(h.positionScreen.z,ma,na),ga.r=ga.g=ga.b=1-Ka(k.positionScreen.z,ma,na),za=Wa(ja,ea,da,ga),C(Q,O,Y,V,X,S),Pa(Q,O,Y,V,X,S,0,0,1,0,0,1,za),C(p,ca,Z,K,aa,
la),Pa(p,ca,Z,K,aa,la,1,0,1,1,0,1,za)}function C(b,e,c,f,k,h){w.beginPath();w.moveTo(b,e);w.lineTo(c,f);w.lineTo(k,h);w.lineTo(b,e);w.closePath()}function L(b,e,c,f,k,h,m,p){w.beginPath();w.moveTo(b,e);w.lineTo(c,f);w.lineTo(k,h);w.lineTo(m,p);w.lineTo(b,e);w.closePath()}function La(b,e,c,k){if(z!=e)w.lineWidth=z=e;if(E!=c)w.lineCap=E=c;if(N!=k)w.lineJoin=N=k;f(b.getContextStyle());w.stroke();G.inflate(e*2)}function Ea(b){k(b.getContextStyle());w.fill()}function Ma(b,e,c,f,h,m,p,n,o,t,v,u,x){if(x.image.width!=
0){if(x.needsUpdate==true||ya[x.id]==void 0){var Ba=x.wrapS==THREE.RepeatWrapping,J=x.wrapT==THREE.RepeatWrapping;ya[x.id]=w.createPattern(x.image,Ba&&J?"repeat":Ba&&!J?"repeat-x":!Ba&&J?"repeat-y":"no-repeat");x.needsUpdate=false}k(ya[x.id]);var Ba=x.offset.x/x.repeat.x,J=x.offset.y/x.repeat.y,y=(x.image.width-1)*x.repeat.x,x=(x.image.height-1)*x.repeat.y,p=(p+Ba)*y,n=(n+J)*x,o=(o+Ba)*y,t=(t+J)*x,v=(v+Ba)*y,u=(u+J)*x;c-=b;f-=e;h-=b;m-=e;o-=p;t-=n;v-=p;u-=n;Ba=1/(o*u-v*t);x=(u*c-t*h)*Ba;t=(u*f-t*
m)*Ba;c=(o*h-v*c)*Ba;f=(o*m-v*f)*Ba;b=b-x*p-c*n;e=e-t*p-f*n;w.save();w.transform(x,t,c,f,b,e);w.fill();w.restore()}}function Pa(b,e,c,f,k,h,m,p,n,o,t,v,u){var x,Ba;x=u.width-1;Ba=u.height-1;m*=x;p*=Ba;n*=x;o*=Ba;t*=x;v*=Ba;c-=b;f-=e;k-=b;h-=e;n-=m;o-=p;t-=m;v-=p;Ba=1/(n*v-t*o);x=(v*c-o*k)*Ba;o=(v*f-o*h)*Ba;c=(n*k-t*c)*Ba;f=(n*h-t*f)*Ba;b=b-x*m-c*p;e=e-o*m-f*p;w.save();w.transform(x,o,c,f,b,e);w.clip();w.drawImage(u,0,0);w.restore()}function Wa(b,e,c,f){var k=~~(b.r*255),h=~~(b.g*255),b=~~(b.b*255),
m=~~(e.r*255),p=~~(e.g*255),e=~~(e.b*255),n=~~(c.r*255),o=~~(c.g*255),c=~~(c.b*255),t=~~(f.r*255),v=~~(f.g*255),f=~~(f.b*255);fa[0]=k<0?0:k>255?255:k;fa[1]=h<0?0:h>255?255:h;fa[2]=b<0?0:b>255?255:b;fa[4]=m<0?0:m>255?255:m;fa[5]=p<0?0:p>255?255:p;fa[6]=e<0?0:e>255?255:e;fa[8]=n<0?0:n>255?255:n;fa[9]=o<0?0:o>255?255:o;fa[10]=c<0?0:c>255?255:c;fa[12]=t<0?0:t>255?255:t;fa[13]=v<0?0:v>255?255:v;fa[14]=f<0?0:f>255?255:f;pa.putImageData(wa,0,0);Ia.drawImage(Ca,0,0);return va}function Ka(b,e,c){b=(b-e)/(c-
e);return b*b*(3-2*b)}function bb(b){b=(b+1)*0.5;return b<0?0:b>1?1:b}function Ta(b,e){var c=e.x-b.x,f=e.y-b.y,k=c*c+f*f;k!=0&&(k=1/Math.sqrt(k),c*=k,f*=k,e.x+=c,e.y+=f,b.x-=c,b.y-=f)}var eb,jb,xa,Na,Ua,cb,fb,Ja;this.autoClear?this.clear():w.setTransform(1,0,0,-1,v,x);m.data.vertices=0;m.data.faces=0;h=n.projectScene(b,o,this.sortElements);(Ga=b.lights.length>0)&&t(b);eb=0;for(jb=h.length;eb<jb;eb++){xa=h[eb];G.empty();if(xa instanceof THREE.RenderableParticle){I=xa;I.x*=v;I.y*=x;Na=0;for(Ua=xa.materials.length;Na<
Ua;)Ja=xa.materials[Na++],Ja.opacity!=0&&y(I,xa,Ja,b)}else if(xa instanceof THREE.RenderableLine){if(I=xa.v1,P=xa.v2,I.positionScreen.x*=v,I.positionScreen.y*=x,P.positionScreen.x*=v,P.positionScreen.y*=x,G.addPoint(I.positionScreen.x,I.positionScreen.y),G.addPoint(P.positionScreen.x,P.positionScreen.y),ra.instersects(G)){Na=0;for(Ua=xa.materials.length;Na<Ua;)Ja=xa.materials[Na++],Ja.opacity!=0&&A(I,P,xa,Ja,b)}}else if(xa instanceof THREE.RenderableFace3){if(I=xa.v1,P=xa.v2,H=xa.v3,I.positionScreen.x*=
v,I.positionScreen.y*=x,P.positionScreen.x*=v,P.positionScreen.y*=x,H.positionScreen.x*=v,H.positionScreen.y*=x,xa.overdraw&&(Ta(I.positionScreen,P.positionScreen),Ta(P.positionScreen,H.positionScreen),Ta(H.positionScreen,I.positionScreen)),G.add3Points(I.positionScreen.x,I.positionScreen.y,P.positionScreen.x,P.positionScreen.y,H.positionScreen.x,H.positionScreen.y),ra.instersects(G)){Na=0;for(Ua=xa.meshMaterials.length;Na<Ua;)if(Ja=xa.meshMaterials[Na++],Ja instanceof THREE.MeshFaceMaterial){cb=
0;for(fb=xa.faceMaterials.length;cb<fb;)(Ja=xa.faceMaterials[cb++])&&Ja.opacity!=0&&D(I,P,H,0,1,2,xa,Ja,b)}else Ja.opacity!=0&&D(I,P,H,0,1,2,xa,Ja,b)}}else if(xa instanceof THREE.RenderableFace4&&(I=xa.v1,P=xa.v2,H=xa.v3,W=xa.v4,I.positionScreen.x*=v,I.positionScreen.y*=x,P.positionScreen.x*=v,P.positionScreen.y*=x,H.positionScreen.x*=v,H.positionScreen.y*=x,W.positionScreen.x*=v,W.positionScreen.y*=x,M.positionScreen.copy(P.positionScreen),J.positionScreen.copy(W.positionScreen),xa.overdraw&&(Ta(I.positionScreen,
P.positionScreen),Ta(P.positionScreen,W.positionScreen),Ta(W.positionScreen,I.positionScreen),Ta(H.positionScreen,M.positionScreen),Ta(H.positionScreen,J.positionScreen)),G.addPoint(I.positionScreen.x,I.positionScreen.y),G.addPoint(P.positionScreen.x,P.positionScreen.y),G.addPoint(H.positionScreen.x,H.positionScreen.y),G.addPoint(W.positionScreen.x,W.positionScreen.y),ra.instersects(G))){Na=0;for(Ua=xa.meshMaterials.length;Na<Ua;)if(Ja=xa.meshMaterials[Na++],Ja instanceof THREE.MeshFaceMaterial){cb=
0;for(fb=xa.faceMaterials.length;cb<fb;)(Ja=xa.faceMaterials[cb++])&&Ja.opacity!=0&&B(I,P,H,W,M,J,xa,Ja,b)}else Ja.opacity!=0&&B(I,P,H,W,M,J,xa,Ja,b)}R.addRectangle(G)}w.setTransform(1,0,0,1,0,0)}};
THREE.SVGRenderer=function(){function b(b,e,c){var f,k,h,m;f=0;for(k=b.lights.length;f<k;f++)h=b.lights[f],h instanceof THREE.DirectionalLight?(m=e.normalWorld.dot(h.position)*h.intensity,m>0&&(c.r+=h.color.r*m,c.g+=h.color.g*m,c.b+=h.color.b*m)):h instanceof THREE.PointLight&&(W.sub(h.position,e.centroidWorld),W.normalize(),m=e.normalWorld.dot(W)*h.intensity,m>0&&(c.r+=h.color.r*m,c.g+=h.color.g*m,c.b+=h.color.b*m))}function c(e,c,h,n,p,t){m.data.vertices+=3;m.data.faces++;Q=f(O++);Q.setAttribute("d",
"M "+e.positionScreen.x+" "+e.positionScreen.y+" L "+c.positionScreen.x+" "+c.positionScreen.y+" L "+h.positionScreen.x+","+h.positionScreen.y+"z");p instanceof THREE.MeshBasicMaterial?z.copy(p.color):p instanceof THREE.MeshLambertMaterial?L?(E.r=N.r,E.g=N.g,E.b=N.b,b(t,n,E),z.r=Math.max(0,Math.min(p.color.r*E.r,1)),z.g=Math.max(0,Math.min(p.color.g*E.g,1)),z.b=Math.max(0,Math.min(p.color.b*E.b,1))):z.copy(p.color):p instanceof THREE.MeshDepthMaterial?(H=1-p.__2near/(p.__farPlusNear-n.z*p.__farMinusNear),
z.setRGB(H,H,H)):p instanceof THREE.MeshNormalMaterial&&z.setRGB(k(n.normalWorld.x),k(n.normalWorld.y),k(n.normalWorld.z));p.wireframe?Q.setAttribute("style","fill: none; stroke: "+z.getContextStyle()+"; stroke-width: "+p.wireframeLinewidth+"; stroke-opacity: "+p.opacity+"; stroke-linecap: "+p.wireframeLinecap+"; stroke-linejoin: "+p.wireframeLinejoin):Q.setAttribute("style","fill: "+z.getContextStyle()+"; fill-opacity: "+p.opacity);o.appendChild(Q)}function e(e,c,h,n,p,t,v){m.data.vertices+=4;m.data.faces++;
Q=f(O++);Q.setAttribute("d","M "+e.positionScreen.x+" "+e.positionScreen.y+" L "+c.positionScreen.x+" "+c.positionScreen.y+" L "+h.positionScreen.x+","+h.positionScreen.y+" L "+n.positionScreen.x+","+n.positionScreen.y+"z");t instanceof THREE.MeshBasicMaterial?z.copy(t.color):t instanceof THREE.MeshLambertMaterial?L?(E.r=N.r,E.g=N.g,E.b=N.b,b(v,p,E),z.r=Math.max(0,Math.min(t.color.r*E.r,1)),z.g=Math.max(0,Math.min(t.color.g*E.g,1)),z.b=Math.max(0,Math.min(t.color.b*E.b,1))):z.copy(t.color):t instanceof
THREE.MeshDepthMaterial?(H=1-t.__2near/(t.__farPlusNear-p.z*t.__farMinusNear),z.setRGB(H,H,H)):t instanceof THREE.MeshNormalMaterial&&z.setRGB(k(p.normalWorld.x),k(p.normalWorld.y),k(p.normalWorld.z));t.wireframe?Q.setAttribute("style","fill: none; stroke: "+z.getContextStyle()+"; stroke-width: "+t.wireframeLinewidth+"; stroke-opacity: "+t.opacity+"; stroke-linecap: "+t.wireframeLinecap+"; stroke-linejoin: "+t.wireframeLinejoin):Q.setAttribute("style","fill: "+z.getContextStyle()+"; fill-opacity: "+
t.opacity);o.appendChild(Q)}function f(b){M[b]==null&&(M[b]=document.createElementNS("http://www.w3.org/2000/svg","path"),V==0&&M[b].setAttribute("shape-rendering","crispEdges"));return M[b]}function k(b){b=(b+1)*0.5;return b<0?0:b>1?1:b}var m=this,h=null,n=new THREE.Projector,o=document.createElementNS("http://www.w3.org/2000/svg","svg"),t,u,v,x,w,B,A,y,D=new THREE.Rectangle,C=new THREE.Rectangle,L=false,z=new THREE.Color(16777215),E=new THREE.Color(16777215),N=new THREE.Color(0),I=new THREE.Color(0),
P=new THREE.Color(0),H,W=new THREE.Vector3,M=[],J=[],Q,O,Y,V=1;this.domElement=o;this.sortElements=this.sortObjects=this.autoClear=true;this.data={vertices:0,faces:0};this.setQuality=function(b){switch(b){case "high":V=1;break;case "low":V=0}};this.setSize=function(b,e){t=b;u=e;v=t/2;x=u/2;o.setAttribute("viewBox",-v+" "+-x+" "+t+" "+u);o.setAttribute("width",t);o.setAttribute("height",u);D.set(-v,-x,v,x)};this.clear=function(){for(;o.childNodes.length>0;)o.removeChild(o.childNodes[0])};this.render=
function(b,f){var k,t,p,u,z,H,E,M;this.autoClear&&this.clear();m.data.vertices=0;m.data.faces=0;h=n.projectScene(b,f,this.sortElements);Y=O=0;if(L=b.lights.length>0){E=b.lights;N.setRGB(0,0,0);I.setRGB(0,0,0);P.setRGB(0,0,0);k=0;for(t=E.length;k<t;k++)p=E[k],u=p.color,p instanceof THREE.AmbientLight?(N.r+=u.r,N.g+=u.g,N.b+=u.b):p instanceof THREE.DirectionalLight?(I.r+=u.r,I.g+=u.g,I.b+=u.b):p instanceof THREE.PointLight&&(P.r+=u.r,P.g+=u.g,P.b+=u.b)}k=0;for(t=h.length;k<t;k++)if(E=h[k],C.empty(),
E instanceof THREE.RenderableParticle){w=E;w.x*=v;w.y*=-x;p=0;for(u=E.materials.length;p<u;)p++}else if(E instanceof THREE.RenderableLine){if(w=E.v1,B=E.v2,w.positionScreen.x*=v,w.positionScreen.y*=-x,B.positionScreen.x*=v,B.positionScreen.y*=-x,C.addPoint(w.positionScreen.x,w.positionScreen.y),C.addPoint(B.positionScreen.x,B.positionScreen.y),D.instersects(C)){p=0;for(u=E.materials.length;p<u;)if((M=E.materials[p++])&&M.opacity!=0){z=w;H=B;var W=Y++;J[W]==null&&(J[W]=document.createElementNS("http://www.w3.org/2000/svg",
"line"),V==0&&J[W].setAttribute("shape-rendering","crispEdges"));Q=J[W];Q.setAttribute("x1",z.positionScreen.x);Q.setAttribute("y1",z.positionScreen.y);Q.setAttribute("x2",H.positionScreen.x);Q.setAttribute("y2",H.positionScreen.y);M instanceof THREE.LineBasicMaterial&&(Q.setAttribute("style","fill: none; stroke: "+M.color.getContextStyle()+"; stroke-width: "+M.linewidth+"; stroke-opacity: "+M.opacity+"; stroke-linecap: "+M.linecap+"; stroke-linejoin: "+M.linejoin),o.appendChild(Q))}}}else if(E instanceof
THREE.RenderableFace3){if(w=E.v1,B=E.v2,A=E.v3,w.positionScreen.x*=v,w.positionScreen.y*=-x,B.positionScreen.x*=v,B.positionScreen.y*=-x,A.positionScreen.x*=v,A.positionScreen.y*=-x,C.addPoint(w.positionScreen.x,w.positionScreen.y),C.addPoint(B.positionScreen.x,B.positionScreen.y),C.addPoint(A.positionScreen.x,A.positionScreen.y),D.instersects(C)){p=0;for(u=E.meshMaterials.length;p<u;)if(M=E.meshMaterials[p++],M instanceof THREE.MeshFaceMaterial){z=0;for(H=E.faceMaterials.length;z<H;)(M=E.faceMaterials[z++])&&
M.opacity!=0&&c(w,B,A,E,M,b)}else M&&M.opacity!=0&&c(w,B,A,E,M,b)}}else if(E instanceof THREE.RenderableFace4&&(w=E.v1,B=E.v2,A=E.v3,y=E.v4,w.positionScreen.x*=v,w.positionScreen.y*=-x,B.positionScreen.x*=v,B.positionScreen.y*=-x,A.positionScreen.x*=v,A.positionScreen.y*=-x,y.positionScreen.x*=v,y.positionScreen.y*=-x,C.addPoint(w.positionScreen.x,w.positionScreen.y),C.addPoint(B.positionScreen.x,B.positionScreen.y),C.addPoint(A.positionScreen.x,A.positionScreen.y),C.addPoint(y.positionScreen.x,y.positionScreen.y),
D.instersects(C))){p=0;for(u=E.meshMaterials.length;p<u;)if(M=E.meshMaterials[p++],M instanceof THREE.MeshFaceMaterial){z=0;for(H=E.faceMaterials.length;z<H;)(M=E.faceMaterials[z++])&&M.opacity!=0&&e(w,B,A,y,E,M,b)}else M&&M.opacity!=0&&e(w,B,A,y,E,M,b)}}};
THREE.ShaderChunk={fog_pars_fragment:"#ifdef USE_FOG\nuniform vec3 fogColor;\n#ifdef FOG_EXP2\nuniform float fogDensity;\n#else\nuniform float fogNear;\nuniform float fogFar;\n#endif\n#endif",fog_fragment:"#ifdef USE_FOG\nfloat depth = gl_FragCoord.z / gl_FragCoord.w;\n#ifdef FOG_EXP2\nconst float LOG2 = 1.442695;\nfloat fogFactor = exp2( - fogDensity * fogDensity * depth * depth * LOG2 );\nfogFactor = 1.0 - clamp( fogFactor, 0.0, 1.0 );\n#else\nfloat fogFactor = smoothstep( fogNear, fogFar, depth );\n#endif\ngl_FragColor = mix( gl_FragColor, vec4( fogColor, gl_FragColor.w ), fogFactor );\n#endif",envmap_pars_fragment:"#ifdef USE_ENVMAP\nvarying vec3 vReflect;\nuniform float reflectivity;\nuniform samplerCube envMap;\nuniform int combine;\n#endif",
envmap_fragment:"#ifdef USE_ENVMAP\nvec4 cubeColor = textureCube( envMap, vec3( -vReflect.x, vReflect.yz ) );\nif ( combine == 1 ) {\ngl_FragColor = vec4( mix( gl_FragColor.xyz, cubeColor.xyz, reflectivity ), opacity );\n} else {\ngl_FragColor = gl_FragColor * cubeColor;\n}\n#endif",envmap_pars_vertex:"#ifdef USE_ENVMAP\nvarying vec3 vReflect;\nuniform float refractionRatio;\nuniform bool useRefract;\n#endif",envmap_vertex:"#ifdef USE_ENVMAP\nvec4 mPosition = objectMatrix * vec4( position, 1.0 );\nvec3 nWorld = mat3( objectMatrix[ 0 ].xyz, objectMatrix[ 1 ].xyz, objectMatrix[ 2 ].xyz ) * normal;\nif ( useRefract ) {\nvReflect = refract( normalize( mPosition.xyz - cameraPosition ), normalize( nWorld.xyz ), refractionRatio );\n} else {\nvReflect = reflect( normalize( mPosition.xyz - cameraPosition ), normalize( nWorld.xyz ) );\n}\n#endif",
map_particle_pars_fragment:"#ifdef USE_MAP\nuniform sampler2D map;\n#endif",map_particle_fragment:"#ifdef USE_MAP\ngl_FragColor = gl_FragColor * texture2D( map, gl_PointCoord );\n#endif",map_pars_vertex:"#ifdef USE_MAP\nvarying vec2 vUv;\nuniform vec4 offsetRepeat;\n#endif",map_pars_fragment:"#ifdef USE_MAP\nvarying vec2 vUv;\nuniform sampler2D map;\n#endif",map_vertex:"#ifdef USE_MAP\nvUv = uv * offsetRepeat.zw + offsetRepeat.xy;\n#endif",map_fragment:"#ifdef USE_MAP\ngl_FragColor = gl_FragColor * texture2D( map, vUv );\n#endif",
lightmap_pars_fragment:"#ifdef USE_LIGHTMAP\nvarying vec2 vUv2;\nuniform sampler2D lightMap;\n#endif",lightmap_pars_vertex:"#ifdef USE_LIGHTMAP\nvarying vec2 vUv2;\n#endif",lightmap_fragment:"#ifdef USE_LIGHTMAP\ngl_FragColor = gl_FragColor * texture2D( lightMap, vUv2 );\n#endif",lightmap_vertex:"#ifdef USE_LIGHTMAP\nvUv2 = uv2;\n#endif",lights_pars_vertex:"uniform bool enableLighting;\nuniform vec3 ambientLightColor;\n#if MAX_DIR_LIGHTS > 0\nuniform vec3 directionalLightColor[ MAX_DIR_LIGHTS ];\nuniform vec3 directionalLightDirection[ MAX_DIR_LIGHTS ];\n#endif\n#if MAX_POINT_LIGHTS > 0\nuniform vec3 pointLightColor[ MAX_POINT_LIGHTS ];\nuniform vec3 pointLightPosition[ MAX_POINT_LIGHTS ];\nuniform float pointLightDistance[ MAX_POINT_LIGHTS ];\n#ifdef PHONG\nvarying vec4 vPointLight[ MAX_POINT_LIGHTS ];\n#endif\n#endif",
lights_vertex:"if ( !enableLighting ) {\nvLightWeighting = vec3( 1.0 );\n} else {\nvLightWeighting = ambientLightColor;\n#if MAX_DIR_LIGHTS > 0\nfor( int i = 0; i < MAX_DIR_LIGHTS; i ++ ) {\nvec4 lDirection = viewMatrix * vec4( directionalLightDirection[ i ], 0.0 );\nfloat directionalLightWeighting = max( dot( transformedNormal, normalize( lDirection.xyz ) ), 0.0 );\nvLightWeighting += directionalLightColor[ i ] * directionalLightWeighting;\n}\n#endif\n#if MAX_POINT_LIGHTS > 0\nfor( int i = 0; i < MAX_POINT_LIGHTS; i ++ ) {\nvec4 lPosition = viewMatrix * vec4( pointLightPosition[ i ], 1.0 );\nvec3 lVector = lPosition.xyz - mvPosition.xyz;\nfloat lDistance = 1.0;\nif ( pointLightDistance[ i ] > 0.0 )\nlDistance = 1.0 - min( ( length( lVector ) / pointLightDistance[ i ] ), 1.0 );\nlVector = normalize( lVector );\nfloat pointLightWeighting = max( dot( transformedNormal, lVector ), 0.0 );\nvLightWeighting += pointLightColor[ i ] * pointLightWeighting * lDistance;\n#ifdef PHONG\nvPointLight[ i ] = vec4( lVector, lDistance );\n#endif\n}\n#endif\n}",
lights_pars_fragment:"#if MAX_DIR_LIGHTS > 0\nuniform vec3 directionalLightDirection[ MAX_DIR_LIGHTS ];\n#endif\n#if MAX_POINT_LIGHTS > 0\nvarying vec4 vPointLight[ MAX_POINT_LIGHTS ];\n#endif\nvarying vec3 vViewPosition;\nvarying vec3 vNormal;",lights_fragment:"vec3 normal = normalize( vNormal );\nvec3 viewPosition = normalize( vViewPosition );\nvec4 mColor = vec4( diffuse, opacity );\nvec4 mSpecular = vec4( specular, opacity );\n#if MAX_POINT_LIGHTS > 0\nvec4 pointDiffuse = vec4( vec3( 0.0 ), 1.0 );\nvec4 pointSpecular = vec4( vec3( 0.0 ), 1.0 );\nfor ( int i = 0; i < MAX_POINT_LIGHTS; i ++ ) {\nvec3 pointVector = normalize( vPointLight[ i ].xyz );\nvec3 pointHalfVector = normalize( vPointLight[ i ].xyz + viewPosition );\nfloat pointDistance = vPointLight[ i ].w;\nfloat pointDotNormalHalf = dot( normal, pointHalfVector );\nfloat pointDiffuseWeight = max( dot( normal, pointVector ), 0.0 );\nfloat pointSpecularWeight = 0.0;\nif ( pointDotNormalHalf >= 0.0 )\npointSpecularWeight = pow( pointDotNormalHalf, shininess );\npointDiffuse += mColor * pointDiffuseWeight * pointDistance;\npointSpecular += mSpecular * pointSpecularWeight * pointDistance;\n}\n#endif\n#if MAX_DIR_LIGHTS > 0\nvec4 dirDiffuse = vec4( vec3( 0.0 ), 1.0 );\nvec4 dirSpecular = vec4( vec3( 0.0 ), 1.0 );\nfor( int i = 0; i < MAX_DIR_LIGHTS; i ++ ) {\nvec4 lDirection = viewMatrix * vec4( directionalLightDirection[ i ], 0.0 );\nvec3 dirVector = normalize( lDirection.xyz );\nvec3 dirHalfVector = normalize( lDirection.xyz + viewPosition );\nfloat dirDotNormalHalf = dot( normal, dirHalfVector );\nfloat dirDiffuseWeight = max( dot( normal, dirVector ), 0.0 );\nfloat dirSpecularWeight = 0.0;\nif ( dirDotNormalHalf >= 0.0 )\ndirSpecularWeight = pow( dirDotNormalHalf, shininess );\ndirDiffuse += mColor * dirDiffuseWeight;\ndirSpecular += mSpecular * dirSpecularWeight;\n}\n#endif\nvec4 totalLight = vec4( ambient, opacity );\n#if MAX_DIR_LIGHTS > 0\ntotalLight += dirDiffuse + dirSpecular;\n#endif\n#if MAX_POINT_LIGHTS > 0\ntotalLight += pointDiffuse + pointSpecular;\n#endif\ngl_FragColor = gl_FragColor * totalLight;",
color_pars_fragment:"#ifdef USE_COLOR\nvarying vec3 vColor;\n#endif",color_fragment:"#ifdef USE_COLOR\ngl_FragColor = gl_FragColor * vec4( vColor, opacity );\n#endif",color_pars_vertex:"#ifdef USE_COLOR\nvarying vec3 vColor;\n#endif",color_vertex:"#ifdef USE_COLOR\nvColor = color;\n#endif",skinning_pars_vertex:"#ifdef USE_SKINNING\nuniform mat4 boneGlobalMatrices[ MAX_BONES ];\n#endif",skinning_vertex:"#ifdef USE_SKINNING\ngl_Position = ( boneGlobalMatrices[ int( skinIndex.x ) ] * skinVertexA ) * skinWeight.x;\ngl_Position += ( boneGlobalMatrices[ int( skinIndex.y ) ] * skinVertexB ) * skinWeight.y;\ngl_Position = projectionMatrix * viewMatrix * objectMatrix * gl_Position;\n#endif",
morphtarget_pars_vertex:"#ifdef USE_MORPHTARGETS\nuniform float morphTargetInfluences[ 8 ];\n#endif",morphtarget_vertex:"#ifdef USE_MORPHTARGETS\nvec3 morphed = vec3( 0.0, 0.0, 0.0 );\nmorphed += ( morphTarget0 - position ) * morphTargetInfluences[ 0 ];\nmorphed += ( morphTarget1 - position ) * morphTargetInfluences[ 1 ];\nmorphed += ( morphTarget2 - position ) * morphTargetInfluences[ 2 ];\nmorphed += ( morphTarget3 - position ) * morphTargetInfluences[ 3 ];\nmorphed += ( morphTarget4 - position ) * morphTargetInfluences[ 4 ];\nmorphed += ( morphTarget5 - position ) * morphTargetInfluences[ 5 ];\nmorphed += ( morphTarget6 - position ) * morphTargetInfluences[ 6 ];\nmorphed += ( morphTarget7 - position ) * morphTargetInfluences[ 7 ];\nmorphed += position;\ngl_Position = projectionMatrix * modelViewMatrix * vec4( morphed, 1.0 );\n#endif",
default_vertex:"#ifndef USE_MORPHTARGETS\n#ifndef USE_SKINNING\ngl_Position = projectionMatrix * mvPosition;\n#endif\n#endif",shadowmap_pars_fragment:"#ifdef USE_SHADOWMAP\nuniform sampler2D shadowMap[ MAX_SHADOWS ];\nuniform float shadowDarkness;\nuniform float shadowBias;\nvarying vec4 vShadowCoord[ MAX_SHADOWS ];\nfloat unpackDepth( const in vec4 rgba_depth ) {\nconst vec4 bit_shift = vec4( 1.0 / ( 256.0 * 256.0 * 256.0 ), 1.0 / ( 256.0 * 256.0 ), 1.0 / 256.0, 1.0 );\nfloat depth = dot( rgba_depth, bit_shift );\nreturn depth;\n}\n#endif",
shadowmap_fragment:"#ifdef USE_SHADOWMAP\n#ifdef SHADOWMAP_SOFT\nconst float xPixelOffset = 1.0 / SHADOWMAP_WIDTH;\nconst float yPixelOffset = 1.0 / SHADOWMAP_HEIGHT;\n#endif\nvec4 shadowColor = vec4( 1.0 );\nfor( int i = 0; i < MAX_SHADOWS; i ++ ) {\nvec3 shadowCoord = vShadowCoord[ i ].xyz / vShadowCoord[ i ].w;\nif ( shadowCoord.x >= 0.0 && shadowCoord.x <= 1.0 && shadowCoord.y >= 0.0 && shadowCoord.y <= 1.0 ) {\n#ifdef SHADOWMAP_SOFT\nfloat shadow = 0.0;\nfor ( float y = -1.25; y <= 1.25; y += 1.25 )\nfor ( float x = -1.25; x <= 1.25; x += 1.25 ) {\nvec4 rgbaDepth = texture2D( shadowMap[ i ], vec2( x * xPixelOffset, y * yPixelOffset ) + shadowCoord.xy );\nfloat fDepth = unpackDepth( rgbaDepth );\nif ( fDepth < ( shadowCoord.z + shadowBias ) )\nshadow += 1.0;\n}\nshadow /= 9.0;\nshadowColor = shadowColor * vec4( vec3( ( 1.0 - shadowDarkness * shadow ) ), 1.0 );\n#else\nvec4 rgbaDepth = texture2D( shadowMap[ i ], shadowCoord.xy );\nfloat fDepth = unpackDepth( rgbaDepth );\nif ( fDepth < ( shadowCoord.z + shadowBias ) )\nshadowColor = shadowColor * vec4( vec3( shadowDarkness ), 1.0 );\n#endif\n}\n}\ngl_FragColor = gl_FragColor * shadowColor;\n#endif",
shadowmap_pars_vertex:"#ifdef USE_SHADOWMAP\nvarying vec4 vShadowCoord[ MAX_SHADOWS ];\nuniform mat4 shadowMatrix[ MAX_SHADOWS ];\n#endif",shadowmap_vertex:"#ifdef USE_SHADOWMAP\nfor( int i = 0; i < MAX_SHADOWS; i ++ ) {\nvShadowCoord[ i ] = shadowMatrix[ i ] * objectMatrix * vec4( position, 1.0 );\n}\n#endif",alphatest_fragment:"#ifdef ALPHATEST\nif ( gl_FragColor.a < ALPHATEST ) discard;\n#endif"};
THREE.UniformsUtils={merge:function(b){var c,e,f,k={};for(c=0;c<b.length;c++)for(e in f=this.clone(b[c]),f)k[e]=f[e];return k},clone:function(b){var c,e,f,k={};for(c in b)for(e in k[c]={},b[c])f=b[c][e],k[c][e]=f instanceof THREE.Color||f instanceof THREE.Vector2||f instanceof THREE.Vector3||f instanceof THREE.Vector4||f instanceof THREE.Matrix4||f instanceof THREE.Texture?f.clone():f instanceof Array?f.slice():f;return k}};
THREE.UniformsLib={common:{diffuse:{type:"c",value:new THREE.Color(15658734)},opacity:{type:"f",value:1},map:{type:"t",value:0,texture:null},offsetRepeat:{type:"v4",value:new THREE.Vector4(0,0,1,1)},lightMap:{type:"t",value:2,texture:null},envMap:{type:"t",value:1,texture:null},useRefract:{type:"i",value:0},reflectivity:{type:"f",value:1},refractionRatio:{type:"f",value:0.98},combine:{type:"i",value:0},morphTargetInfluences:{type:"f",value:0}},fog:{fogDensity:{type:"f",value:2.5E-4},fogNear:{type:"f",
value:1},fogFar:{type:"f",value:2E3},fogColor:{type:"c",value:new THREE.Color(16777215)}},lights:{enableLighting:{type:"i",value:1},ambientLightColor:{type:"fv",value:[]},directionalLightDirection:{type:"fv",value:[]},directionalLightColor:{type:"fv",value:[]},pointLightColor:{type:"fv",value:[]},pointLightPosition:{type:"fv",value:[]},pointLightDistance:{type:"fv1",value:[]}},particle:{psColor:{type:"c",value:new THREE.Color(15658734)},opacity:{type:"f",value:1},size:{type:"f",value:1},scale:{type:"f",
value:1},map:{type:"t",value:0,texture:null},fogDensity:{type:"f",value:2.5E-4},fogNear:{type:"f",value:1},fogFar:{type:"f",value:2E3},fogColor:{type:"c",value:new THREE.Color(16777215)}},shadowmap:{shadowMap:{type:"tv",value:3,texture:[]},shadowMatrix:{type:"m4v",value:[]},shadowBias:{type:"f",value:0.0039},shadowDarkness:{type:"f",value:0.2}}};
THREE.ShaderLib={lensFlareVertexTexture:{vertexShader:"uniform vec3 screenPosition;\nuniform vec2 scale;\nuniform float rotation;\nuniform int renderType;\nuniform sampler2D occlusionMap;\nattribute vec2 position;\nattribute vec2 UV;\nvarying vec2 vUV;\nvarying float vVisibility;\nvoid main() {\nvUV = UV;\nvec2 pos = position;\nif( renderType == 2 ) {\nvec4 visibility = texture2D( occlusionMap, vec2( 0.1, 0.1 ) ) +\ntexture2D( occlusionMap, vec2( 0.5, 0.1 ) ) +\ntexture2D( occlusionMap, vec2( 0.9, 0.1 ) ) +\ntexture2D( occlusionMap, vec2( 0.9, 0.5 ) ) +\ntexture2D( occlusionMap, vec2( 0.9, 0.9 ) ) +\ntexture2D( occlusionMap, vec2( 0.5, 0.9 ) ) +\ntexture2D( occlusionMap, vec2( 0.1, 0.9 ) ) +\ntexture2D( occlusionMap, vec2( 0.1, 0.5 ) ) +\ntexture2D( occlusionMap, vec2( 0.5, 0.5 ) );\nvVisibility = ( visibility.r / 9.0 ) *\n( 1.0 - visibility.g / 9.0 ) *\n( visibility.b / 9.0 ) *\n( 1.0 - visibility.a / 9.0 );\npos.x = cos( rotation ) * position.x - sin( rotation ) * position.y;\npos.y = sin( rotation ) * position.x + cos( rotation ) * position.y;\n}\ngl_Position = vec4( ( pos * scale + screenPosition.xy ).xy, screenPosition.z, 1.0 );\n}",fragmentShader:"#ifdef GL_ES\nprecision highp float;\n#endif\nuniform sampler2D map;\nuniform float opacity;\nuniform int renderType;\nvarying vec2 vUV;\nvarying float vVisibility;\nvoid main() {\nif( renderType == 0 ) {\ngl_FragColor = vec4( 1.0, 0.0, 1.0, 0.0 );\n} else if( renderType == 1 ) {\ngl_FragColor = texture2D( map, vUV );\n} else {\nvec4 color = texture2D( map, vUV );\ncolor.a *= opacity * vVisibility;\ngl_FragColor = color;\n}\n}"},
lensFlare:{vertexShader:"uniform vec3 screenPosition;\nuniform vec2 scale;\nuniform float rotation;\nuniform int renderType;\nattribute vec2 position;\nattribute vec2 UV;\nvarying vec2 vUV;\nvoid main() {\nvUV = UV;\nvec2 pos = position;\nif( renderType == 2 ) {\npos.x = cos( rotation ) * position.x - sin( rotation ) * position.y;\npos.y = sin( rotation ) * position.x + cos( rotation ) * position.y;\n}\ngl_Position = vec4( ( pos * scale + screenPosition.xy ).xy, screenPosition.z, 1.0 );\n}",fragmentShader:"#ifdef GL_ES\nprecision highp float;\n#endif\nuniform sampler2D map;\nuniform sampler2D occlusionMap;\nuniform float opacity;\nuniform int renderType;\nvarying vec2 vUV;\nvoid main() {\nif( renderType == 0 ) {\ngl_FragColor = vec4( texture2D( map, vUV ).rgb, 0.0 );\n} else if( renderType == 1 ) {\ngl_FragColor = texture2D( map, vUV );\n} else {\nfloat visibility = texture2D( occlusionMap, vec2( 0.5, 0.1 ) ).a +\ntexture2D( occlusionMap, vec2( 0.9, 0.5 ) ).a +\ntexture2D( occlusionMap, vec2( 0.5, 0.9 ) ).a +\ntexture2D( occlusionMap, vec2( 0.1, 0.5 ) ).a;\nvisibility = ( 1.0 - visibility / 4.0 );\nvec4 color = texture2D( map, vUV );\ncolor.a *= opacity * visibility;\ngl_FragColor = color;\n}\n}"},
sprite:{vertexShader:"uniform int useScreenCoordinates;\nuniform int affectedByDistance;\nuniform vec3 screenPosition;\nuniform mat4 modelViewMatrix;\nuniform mat4 projectionMatrix;\nuniform float rotation;\nuniform vec2 scale;\nuniform vec2 alignment;\nuniform vec2 uvOffset;\nuniform vec2 uvScale;\nattribute vec2 position;\nattribute vec2 uv;\nvarying vec2 vUV;\nvoid main() {\nvUV = uvOffset + uv * uvScale;\nvec2 alignedPosition = position + alignment;\nvec2 rotatedPosition;\nrotatedPosition.x = ( cos( rotation ) * alignedPosition.x - sin( rotation ) * alignedPosition.y ) * scale.x;\nrotatedPosition.y = ( sin( rotation ) * alignedPosition.x + cos( rotation ) * alignedPosition.y ) * scale.y;\nvec4 finalPosition;\nif( useScreenCoordinates != 0 ) {\nfinalPosition = vec4( screenPosition.xy + rotatedPosition, screenPosition.z, 1.0 );\n} else {\nfinalPosition = projectionMatrix * modelViewMatrix * vec4( 0.0, 0.0, 0.0, 1.0 );\nfinalPosition.xy += rotatedPosition * ( affectedByDistance == 1 ? 1.0 : finalPosition.z );\n}\ngl_Position = finalPosition;\n}",
fragmentShader:"#ifdef GL_ES\nprecision highp float;\n#endif\nuniform sampler2D map;\nuniform float opacity;\nvarying vec2 vUV;\nvoid main() {\nvec4 color = texture2D( map, vUV );\ncolor.a *= opacity;\ngl_FragColor = color;\n}"},shadowPost:{vertexShader:"uniform \tmat4 \tprojectionMatrix;\nattribute \tvec3 \tposition;\nvoid main() {\ngl_Position = projectionMatrix * vec4( position, 1.0 );\n}",fragmentShader:"#ifdef GL_ES\nprecision highp float;\n#endif\nuniform \tfloat \tdarkness;\nvoid main() {\ngl_FragColor = vec4( 0, 0, 0, darkness );\n}"},
shadowVolumeDynamic:{uniforms:{directionalLightDirection:{type:"fv",value:[]}},vertexShader:"uniform \tvec3 \tdirectionalLightDirection;\nvoid main() {\nvec4 pos = objectMatrix * vec4( position, 1.0 );\nvec3 norm = mat3( objectMatrix[ 0 ].xyz, objectMatrix[ 1 ].xyz, objectMatrix[ 2 ].xyz ) * normal;\nvec4 extruded = vec4( directionalLightDirection * 5000.0 * step( 0.0, dot( directionalLightDirection, norm ) ), 0.0 );\ngl_Position = projectionMatrix * viewMatrix * ( pos + extruded );\n}",
fragmentShader:"void main() {\ngl_FragColor = vec4( 1.0 );\n}"},depth:{uniforms:{mNear:{type:"f",value:1},mFar:{type:"f",value:2E3},opacity:{type:"f",value:1}},fragmentShader:"uniform float mNear;\nuniform float mFar;\nuniform float opacity;\nvoid main() {\nfloat depth = gl_FragCoord.z / gl_FragCoord.w;\nfloat color = 1.0 - smoothstep( mNear, mFar, depth );\ngl_FragColor = vec4( vec3( color ), opacity );\n}",vertexShader:"void main() {\ngl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );\n}"},
normal:{uniforms:{opacity:{type:"f",value:1}},fragmentShader:"uniform float opacity;\nvarying vec3 vNormal;\nvoid main() {\ngl_FragColor = vec4( 0.5 * normalize( vNormal ) + 0.5, opacity );\n}",vertexShader:"varying vec3 vNormal;\nvoid main() {\nvec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );\nvNormal = normalize( normalMatrix * normal );\ngl_Position = projectionMatrix * mvPosition;\n}"},basic:{uniforms:THREE.UniformsUtils.merge([THREE.UniformsLib.common,THREE.UniformsLib.fog,THREE.UniformsLib.shadowmap]),
fragmentShader:["uniform vec3 diffuse;\nuniform float opacity;",THREE.ShaderChunk.color_pars_fragment,THREE.ShaderChunk.map_pars_fragment,THREE.ShaderChunk.lightmap_pars_fragment,THREE.ShaderChunk.envmap_pars_fragment,THREE.ShaderChunk.fog_pars_fragment,THREE.ShaderChunk.shadowmap_pars_fragment,"void main() {\ngl_FragColor = vec4( diffuse, opacity );",THREE.ShaderChunk.map_fragment,THREE.ShaderChunk.alphatest_fragment,THREE.ShaderChunk.lightmap_fragment,THREE.ShaderChunk.color_fragment,THREE.ShaderChunk.envmap_fragment,
THREE.ShaderChunk.shadowmap_fragment,THREE.ShaderChunk.fog_fragment,"}"].join("\n"),vertexShader:[THREE.ShaderChunk.map_pars_vertex,THREE.ShaderChunk.lightmap_pars_vertex,THREE.ShaderChunk.envmap_pars_vertex,THREE.ShaderChunk.color_pars_vertex,THREE.ShaderChunk.skinning_pars_vertex,THREE.ShaderChunk.morphtarget_pars_vertex,THREE.ShaderChunk.shadowmap_pars_vertex,"void main() {\nvec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );",THREE.ShaderChunk.map_vertex,THREE.ShaderChunk.lightmap_vertex,
THREE.ShaderChunk.envmap_vertex,THREE.ShaderChunk.color_vertex,THREE.ShaderChunk.skinning_vertex,THREE.ShaderChunk.morphtarget_vertex,THREE.ShaderChunk.default_vertex,THREE.ShaderChunk.shadowmap_vertex,"}"].join("\n")},lambert:{uniforms:THREE.UniformsUtils.merge([THREE.UniformsLib.common,THREE.UniformsLib.fog,THREE.UniformsLib.lights,THREE.UniformsLib.shadowmap]),fragmentShader:["uniform vec3 diffuse;\nuniform float opacity;\nvarying vec3 vLightWeighting;",THREE.ShaderChunk.color_pars_fragment,THREE.ShaderChunk.map_pars_fragment,
THREE.ShaderChunk.lightmap_pars_fragment,THREE.ShaderChunk.envmap_pars_fragment,THREE.ShaderChunk.fog_pars_fragment,THREE.ShaderChunk.shadowmap_pars_fragment,"void main() {\ngl_FragColor = vec4( diffuse, opacity );",THREE.ShaderChunk.map_fragment,THREE.ShaderChunk.alphatest_fragment,"gl_FragColor = gl_FragColor * vec4( vLightWeighting, 1.0 );",THREE.ShaderChunk.lightmap_fragment,THREE.ShaderChunk.color_fragment,THREE.ShaderChunk.envmap_fragment,THREE.ShaderChunk.shadowmap_fragment,THREE.ShaderChunk.fog_fragment,
"}"].join("\n"),vertexShader:["varying vec3 vLightWeighting;",THREE.ShaderChunk.map_pars_vertex,THREE.ShaderChunk.lightmap_pars_vertex,THREE.ShaderChunk.envmap_pars_vertex,THREE.ShaderChunk.lights_pars_vertex,THREE.ShaderChunk.color_pars_vertex,THREE.ShaderChunk.skinning_pars_vertex,THREE.ShaderChunk.morphtarget_pars_vertex,THREE.ShaderChunk.shadowmap_pars_vertex,"void main() {\nvec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );",THREE.ShaderChunk.map_vertex,THREE.ShaderChunk.lightmap_vertex,
THREE.ShaderChunk.envmap_vertex,THREE.ShaderChunk.color_vertex,"vec3 transformedNormal = normalize( normalMatrix * normal );",THREE.ShaderChunk.lights_vertex,THREE.ShaderChunk.skinning_vertex,THREE.ShaderChunk.morphtarget_vertex,THREE.ShaderChunk.default_vertex,THREE.ShaderChunk.shadowmap_vertex,"}"].join("\n")},phong:{uniforms:THREE.UniformsUtils.merge([THREE.UniformsLib.common,THREE.UniformsLib.fog,THREE.UniformsLib.lights,THREE.UniformsLib.shadowmap,{ambient:{type:"c",value:new THREE.Color(328965)},
specular:{type:"c",value:new THREE.Color(1118481)},shininess:{type:"f",value:30}}]),fragmentShader:["uniform vec3 diffuse;\nuniform float opacity;\nuniform vec3 ambient;\nuniform vec3 specular;\nuniform float shininess;\nvarying vec3 vLightWeighting;",THREE.ShaderChunk.color_pars_fragment,THREE.ShaderChunk.map_pars_fragment,THREE.ShaderChunk.lightmap_pars_fragment,THREE.ShaderChunk.envmap_pars_fragment,THREE.ShaderChunk.fog_pars_fragment,THREE.ShaderChunk.lights_pars_fragment,THREE.ShaderChunk.shadowmap_pars_fragment,
"void main() {\ngl_FragColor = vec4( vLightWeighting, 1.0 );",THREE.ShaderChunk.map_fragment,THREE.ShaderChunk.alphatest_fragment,THREE.ShaderChunk.lights_fragment,THREE.ShaderChunk.lightmap_fragment,THREE.ShaderChunk.color_fragment,THREE.ShaderChunk.envmap_fragment,THREE.ShaderChunk.shadowmap_fragment,THREE.ShaderChunk.fog_fragment,"}"].join("\n"),vertexShader:["#define PHONG\nvarying vec3 vLightWeighting;\nvarying vec3 vViewPosition;\nvarying vec3 vNormal;",THREE.ShaderChunk.map_pars_vertex,THREE.ShaderChunk.lightmap_pars_vertex,
THREE.ShaderChunk.envmap_pars_vertex,THREE.ShaderChunk.lights_pars_vertex,THREE.ShaderChunk.color_pars_vertex,THREE.ShaderChunk.skinning_pars_vertex,THREE.ShaderChunk.morphtarget_pars_vertex,THREE.ShaderChunk.shadowmap_pars_vertex,"void main() {\nvec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );",THREE.ShaderChunk.map_vertex,THREE.ShaderChunk.lightmap_vertex,THREE.ShaderChunk.envmap_vertex,THREE.ShaderChunk.color_vertex,"#ifndef USE_ENVMAP\nvec4 mPosition = objectMatrix * vec4( position, 1.0 );\n#endif\nvViewPosition = -mvPosition.xyz;\nvec3 transformedNormal = normalize( normalMatrix * normal );\nvNormal = transformedNormal;",
THREE.ShaderChunk.lights_vertex,THREE.ShaderChunk.skinning_vertex,THREE.ShaderChunk.morphtarget_vertex,THREE.ShaderChunk.default_vertex,THREE.ShaderChunk.shadowmap_vertex,"}"].join("\n")},particle_basic:{uniforms:THREE.UniformsUtils.merge([THREE.UniformsLib.particle,THREE.UniformsLib.shadowmap]),fragmentShader:["uniform vec3 psColor;\nuniform float opacity;",THREE.ShaderChunk.color_pars_fragment,THREE.ShaderChunk.map_particle_pars_fragment,THREE.ShaderChunk.fog_pars_fragment,THREE.ShaderChunk.shadowmap_pars_fragment,
"void main() {\ngl_FragColor = vec4( psColor, opacity );",THREE.ShaderChunk.map_particle_fragment,THREE.ShaderChunk.alphatest_fragment,THREE.ShaderChunk.color_fragment,THREE.ShaderChunk.shadowmap_fragment,THREE.ShaderChunk.fog_fragment,"}"].join("\n"),vertexShader:["uniform float size;\nuniform float scale;",THREE.ShaderChunk.color_pars_vertex,THREE.ShaderChunk.shadowmap_pars_vertex,"void main() {",THREE.ShaderChunk.color_vertex,"vec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );\n#ifdef USE_SIZEATTENUATION\ngl_PointSize = size * ( scale / length( mvPosition.xyz ) );\n#else\ngl_PointSize = size;\n#endif\ngl_Position = projectionMatrix * mvPosition;",
THREE.ShaderChunk.shadowmap_vertex,"}"].join("\n")},depthRGBA:{uniforms:{},fragmentShader:"vec4 pack_depth( const in float depth ) {\nconst vec4 bit_shift = vec4( 256.0 * 256.0 * 256.0, 256.0 * 256.0, 256.0, 1.0 );\nconst vec4 bit_mask = vec4( 0.0, 1.0 / 256.0, 1.0 / 256.0, 1.0 / 256.0 );\nvec4 res = fract( depth * bit_shift );\nres -= res.xxyz * bit_mask;\nreturn res;\n}\nvoid main() {\ngl_FragData[ 0 ] = pack_depth( gl_FragCoord.z );\n}",vertexShader:[THREE.ShaderChunk.morphtarget_pars_vertex,
"void main() {\nvec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );",THREE.ShaderChunk.morphtarget_vertex,THREE.ShaderChunk.default_vertex,"}"].join("\n")}};
THREE.WebGLRenderer=function(b){var c,e,f,k,m,h;function n(b,e,c){var f,k,h,m=b.vertices,n=m.length,t=b.colors,o=t.length,v=b.__vertexArray,w=b.__colorArray,u=b.__sortArray,x=b.__dirtyVertices,J=b.__dirtyColors,y=b.__webglCustomAttributes,z,A;if(y)for(z in y)y[z].offset=0;if(c.sortParticles){U.multiplySelf(c.matrixWorld);for(f=0;f<n;f++)k=m[f].position,ra.copy(k),U.multiplyVector3(ra),u[f]=[ra.z,f];u.sort(function(b,e){return e[0]-b[0]});for(f=0;f<n;f++)k=m[u[f][1]].position,h=f*3,v[h]=k.x,v[h+1]=
k.y,v[h+2]=k.z;for(f=0;f<o;f++)h=f*3,color=t[u[f][1]],w[h]=color.r,w[h+1]=color.g,w[h+2]=color.b;if(y)for(z in y){f=y[z];t=f.value.length;for(h=0;h<t;h++){index=u[h][1];o=f.offset;if(f.size===1){if(f.boundTo===void 0||f.boundTo==="vertices")f.array[o]=f.value[index]}else{if(f.boundTo===void 0||f.boundTo==="vertices")A=f.value[index];f.size===2?(f.array[o]=A.x,f.array[o+1]=A.y):f.size===3?f.type==="c"?(f.array[o]=A.r,f.array[o+1]=A.g,f.array[o+2]=A.b):(f.array[o]=A.x,f.array[o+1]=A.y,f.array[o+2]=
A.z):(f.array[o]=A.x,f.array[o+1]=A.y,f.array[o+2]=A.z,f.array[o+3]=A.w)}f.offset+=f.size}}}else{if(x)for(f=0;f<n;f++)k=m[f].position,h=f*3,v[h]=k.x,v[h+1]=k.y,v[h+2]=k.z;if(J)for(f=0;f<o;f++)color=t[f],h=f*3,w[h]=color.r,w[h+1]=color.g,w[h+2]=color.b;if(y)for(z in y)if(f=y[z],f.__original.needsUpdate){t=f.value.length;for(h=0;h<t;h++){o=f.offset;if(f.size===1){if(f.boundTo===void 0||f.boundTo==="vertices")f.array[o]=f.value[h]}else{if(f.boundTo===void 0||f.boundTo==="vertices")A=f.value[h];f.size===
2?(f.array[o]=A.x,f.array[o+1]=A.y):f.size===3?f.type==="c"?(f.array[o]=A.r,f.array[o+1]=A.g,f.array[o+2]=A.b):(f.array[o]=A.x,f.array[o+1]=A.y,f.array[o+2]=A.z):(f.array[o]=A.x,f.array[o+1]=A.y,f.array[o+2]=A.z,f.array[o+3]=A.w)}f.offset+=f.size}}}if(x||c.sortParticles)p.bindBuffer(p.ARRAY_BUFFER,b.__webglVertexBuffer),p.bufferData(p.ARRAY_BUFFER,v,e);if(J||c.sortParticles)p.bindBuffer(p.ARRAY_BUFFER,b.__webglColorBuffer),p.bufferData(p.ARRAY_BUFFER,w,e);if(y)for(z in y)if(f=y[z],f.__original.needsUpdate||
c.sortParticles)p.bindBuffer(p.ARRAY_BUFFER,f.buffer),p.bufferData(p.ARRAY_BUFFER,f.array,e)}function o(b,e,c,f,h){f.program||S.initMaterial(f,e,c,h);if(f.morphTargets&&!h.__webglMorphTargetInfluences){h.__webglMorphTargetInfluences=new Float32Array(S.maxMorphTargets);for(var k=0,m=S.maxMorphTargets;k<m;k++)h.__webglMorphTargetInfluences[k]=0}var k=f.program,m=k.uniforms,n=f.uniforms;k!=aa&&(p.useProgram(k),aa=k);p.uniformMatrix4fv(m.projectionMatrix,false,Ha);if(c&&(f instanceof THREE.MeshBasicMaterial||
f instanceof THREE.MeshLambertMaterial||f instanceof THREE.MeshPhongMaterial||f instanceof THREE.LineBasicMaterial||f instanceof THREE.ParticleBasicMaterial||f.fog))if(n.fogColor.value=c.color,c instanceof THREE.Fog)n.fogNear.value=c.near,n.fogFar.value=c.far;else if(c instanceof THREE.FogExp2)n.fogDensity.value=c.density;if(f instanceof THREE.MeshPhongMaterial||f instanceof THREE.MeshLambertMaterial||f.lights){var o,t,v,w=0,u=0,x=0,y,J,A,z=R,D=z.directional.colors,B=z.directional.positions,C=z.point.colors,
H=z.point.positions,ra=z.point.distances,E=0,I=0,c=t=0;for(o=e.length;c<o;c++)if(t=e[c],v=t.color,y=t.position,J=t.intensity,A=t.distance,t instanceof THREE.AmbientLight)w+=v.r,u+=v.g,x+=v.b;else if(t instanceof THREE.DirectionalLight)A=E*3,D[A]=v.r*J,D[A+1]=v.g*J,D[A+2]=v.b*J,B[A]=y.x,B[A+1]=y.y,B[A+2]=y.z,E+=1;else if(t instanceof THREE.SpotLight)A=E*3,D[A]=v.r*J,D[A+1]=v.g*J,D[A+2]=v.b*J,v=1/y.length(),B[A]=y.x*v,B[A+1]=y.y*v,B[A+2]=y.z*v,E+=1;else if(t instanceof THREE.PointLight)t=I*3,C[t]=v.r*
J,C[t+1]=v.g*J,C[t+2]=v.b*J,H[t]=y.x,H[t+1]=y.y,H[t+2]=y.z,ra[I]=A,I+=1;for(c=E*3;c<D.length;c++)D[c]=0;for(c=I*3;c<C.length;c++)C[c]=0;z.point.length=I;z.directional.length=E;z.ambient[0]=w;z.ambient[1]=u;z.ambient[2]=x;e=R;n.enableLighting.value=e.directional.length+e.point.length;n.ambientLightColor.value=e.ambient;n.directionalLightColor.value=e.directional.colors;n.directionalLightDirection.value=e.directional.positions;n.pointLightColor.value=e.point.colors;n.pointLightPosition.value=e.point.positions;
n.pointLightDistance.value=e.point.distances}if(f instanceof THREE.MeshBasicMaterial||f instanceof THREE.MeshLambertMaterial||f instanceof THREE.MeshPhongMaterial)n.diffuse.value=f.color,n.opacity.value=f.opacity,(n.map.texture=f.map)&&n.offsetRepeat.value.set(f.map.offset.x,f.map.offset.y,f.map.repeat.x,f.map.repeat.y),n.lightMap.texture=f.lightMap,n.envMap.texture=f.envMap,n.reflectivity.value=f.reflectivity,n.refractionRatio.value=f.refractionRatio,n.combine.value=f.combine,n.useRefract.value=
f.envMap&&f.envMap.mapping instanceof THREE.CubeRefractionMapping;if(f instanceof THREE.LineBasicMaterial)n.diffuse.value=f.color,n.opacity.value=f.opacity;else if(f instanceof THREE.ParticleBasicMaterial)n.psColor.value=f.color,n.opacity.value=f.opacity,n.size.value=f.size,n.scale.value=G.height/2,n.map.texture=f.map;else if(f instanceof THREE.MeshPhongMaterial)n.ambient.value=f.ambient,n.specular.value=f.specular,n.shininess.value=f.shininess;else if(f instanceof THREE.MeshDepthMaterial)n.mNear.value=
b.near,n.mFar.value=b.far,n.opacity.value=f.opacity;else if(f instanceof THREE.MeshNormalMaterial)n.opacity.value=f.opacity;if(h.receiveShadow&&!f._shadowPass&&n.shadowMatrix){for(e=0;e<sa.length;e++)n.shadowMatrix.value[e]=sa[e],n.shadowMap.texture[e]=S.shadowMap[e];n.shadowDarkness.value=S.shadowMapDarkness;n.shadowBias.value=S.shadowMapBias}for(var L in n)if(o=k.uniforms[L])if(c=n[L],w=c.type,e=c.value,w=="i")p.uniform1i(o,e);else if(w=="f")p.uniform1f(o,e);else if(w=="v2")p.uniform2f(o,e.x,e.y);
else if(w=="v3")p.uniform3f(o,e.x,e.y,e.z);else if(w=="v4")p.uniform4f(o,e.x,e.y,e.z,e.w);else if(w=="c")p.uniform3f(o,e.r,e.g,e.b);else if(w=="fv1")p.uniform1fv(o,e);else if(w=="fv")p.uniform3fv(o,e);else if(w=="v3v"){if(!c._array)c._array=new Float32Array(3*e.length);w=0;for(u=e.length;w<u;w++)x=w*3,c._array[x]=e[w].x,c._array[x+1]=e[w].y,c._array[x+2]=e[w].z;p.uniform3fv(o,c._array)}else if(w=="m4"){if(!c._array)c._array=new Float32Array(16);e.flattenToArray(c._array);p.uniformMatrix4fv(o,false,
c._array)}else if(w=="m4v"){if(!c._array)c._array=new Float32Array(16*e.length);w=0;for(u=e.length;w<u;w++)e[w].flattenToArrayOffset(c._array,w*16);p.uniformMatrix4fv(o,false,c._array)}else if(w=="t"){if(p.uniform1i(o,e),o=c.texture)if(o.image instanceof Array&&o.image.length==6){if(c=o,c.image.length==6)if(c.needsUpdate){if(!c.image.__webglTextureCube)c.image.__webglTextureCube=p.createTexture();p.activeTexture(p.TEXTURE0+e);p.bindTexture(p.TEXTURE_CUBE_MAP,c.image.__webglTextureCube);for(e=0;e<
6;e++)p.texImage2D(p.TEXTURE_CUBE_MAP_POSITIVE_X+e,0,p.RGBA,p.RGBA,p.UNSIGNED_BYTE,c.image[e]);Q(p.TEXTURE_CUBE_MAP,c,c.image[0]);c.needsUpdate=false}else p.activeTexture(p.TEXTURE0+e),p.bindTexture(p.TEXTURE_CUBE_MAP,c.image.__webglTextureCube)}else o instanceof THREE.WebGLRenderTargetCube?(c=o,p.activeTexture(p.TEXTURE0+e),p.bindTexture(p.TEXTURE_CUBE_MAP,c.__webglTexture)):O(o,e)}else if(w=="tv"){if(!c._array){c._array=[];w=0;for(u=c.texture.length;w<u;w++)c._array[w]=e+w}p.uniform1iv(o,c._array);
w=0;for(u=c.texture.length;w<u;w++)(o=c.texture[w])&&O(o,c._array[w])}p.uniformMatrix4fv(m.modelViewMatrix,false,h._modelViewMatrixArray);m.normalMatrix&&p.uniformMatrix3fv(m.normalMatrix,false,h._normalMatrixArray);(f instanceof THREE.MeshShaderMaterial||f instanceof THREE.MeshPhongMaterial||f.envMap)&&m.cameraPosition!==null&&p.uniform3f(m.cameraPosition,b.position.x,b.position.y,b.position.z);(f instanceof THREE.MeshShaderMaterial||f.envMap||f.skinning||h.receiveShadow)&&m.objectMatrix!==null&&
p.uniformMatrix4fv(m.objectMatrix,false,h._objectMatrixArray);(f instanceof THREE.MeshPhongMaterial||f instanceof THREE.MeshLambertMaterial||f instanceof THREE.MeshShaderMaterial||f.skinning)&&m.viewMatrix!==null&&p.uniformMatrix4fv(m.viewMatrix,false,qa);f.skinning&&(p.uniformMatrix4fv(m.cameraInverseMatrix,false,qa),p.uniformMatrix4fv(m.boneGlobalMatrices,false,h.boneMatrices));return k}function t(b,e,c,f,h,k){if(f.opacity!=0){var m,b=o(b,e,c,f,k).attributes;if(!f.morphTargets&&b.position>=0)p.bindBuffer(p.ARRAY_BUFFER,
h.__webglVertexBuffer),p.vertexAttribPointer(b.position,3,p.FLOAT,false,0,0);else if(k.morphTargetBase){e=f.program.attributes;k.morphTargetBase!==-1?(p.bindBuffer(p.ARRAY_BUFFER,h.__webglMorphTargetsBuffers[k.morphTargetBase]),p.vertexAttribPointer(e.position,3,p.FLOAT,false,0,0)):e.position>=0&&(p.bindBuffer(p.ARRAY_BUFFER,h.__webglVertexBuffer),p.vertexAttribPointer(e.position,3,p.FLOAT,false,0,0));if(k.morphTargetForcedOrder.length)for(var c=0,n=k.morphTargetForcedOrder,t=k.morphTargetInfluences;c<
f.numSupportedMorphTargets&&c<n.length;)p.bindBuffer(p.ARRAY_BUFFER,h.__webglMorphTargetsBuffers[n[c]]),p.vertexAttribPointer(e["morphTarget"+c],3,p.FLOAT,false,0,0),k.__webglMorphTargetInfluences[c]=t[n[c]],c++;else{var n=[],v=-1,w=0,t=k.morphTargetInfluences,u,x=t.length,c=0;for(k.morphTargetBase!==-1&&(n[k.morphTargetBase]=true);c<f.numSupportedMorphTargets;){for(u=0;u<x;u++)!n[u]&&t[u]>v&&(w=u,v=t[w]);p.bindBuffer(p.ARRAY_BUFFER,h.__webglMorphTargetsBuffers[w]);p.vertexAttribPointer(e["morphTarget"+
c],3,p.FLOAT,false,0,0);k.__webglMorphTargetInfluences[c]=v;n[w]=1;v=-1;c++}}f.program.uniforms.morphTargetInfluences!==null&&p.uniform1fv(f.program.uniforms.morphTargetInfluences,k.__webglMorphTargetInfluences)}if(h.__webglCustomAttributes)for(m in h.__webglCustomAttributes)b[m]>=0&&(e=h.__webglCustomAttributes[m],p.bindBuffer(p.ARRAY_BUFFER,e.buffer),p.vertexAttribPointer(b[m],e.size,p.FLOAT,false,0,0));b.color>=0&&(p.bindBuffer(p.ARRAY_BUFFER,h.__webglColorBuffer),p.vertexAttribPointer(b.color,
3,p.FLOAT,false,0,0));b.normal>=0&&(p.bindBuffer(p.ARRAY_BUFFER,h.__webglNormalBuffer),p.vertexAttribPointer(b.normal,3,p.FLOAT,false,0,0));b.tangent>=0&&(p.bindBuffer(p.ARRAY_BUFFER,h.__webglTangentBuffer),p.vertexAttribPointer(b.tangent,4,p.FLOAT,false,0,0));b.uv>=0&&(h.__webglUVBuffer?(p.bindBuffer(p.ARRAY_BUFFER,h.__webglUVBuffer),p.vertexAttribPointer(b.uv,2,p.FLOAT,false,0,0),p.enableVertexAttribArray(b.uv)):p.disableVertexAttribArray(b.uv));b.uv2>=0&&(h.__webglUV2Buffer?(p.bindBuffer(p.ARRAY_BUFFER,
h.__webglUV2Buffer),p.vertexAttribPointer(b.uv2,2,p.FLOAT,false,0,0),p.enableVertexAttribArray(b.uv2)):p.disableVertexAttribArray(b.uv2));f.skinning&&b.skinVertexA>=0&&b.skinVertexB>=0&&b.skinIndex>=0&&b.skinWeight>=0&&(p.bindBuffer(p.ARRAY_BUFFER,h.__webglSkinVertexABuffer),p.vertexAttribPointer(b.skinVertexA,4,p.FLOAT,false,0,0),p.bindBuffer(p.ARRAY_BUFFER,h.__webglSkinVertexBBuffer),p.vertexAttribPointer(b.skinVertexB,4,p.FLOAT,false,0,0),p.bindBuffer(p.ARRAY_BUFFER,h.__webglSkinIndicesBuffer),
p.vertexAttribPointer(b.skinIndex,4,p.FLOAT,false,0,0),p.bindBuffer(p.ARRAY_BUFFER,h.__webglSkinWeightsBuffer),p.vertexAttribPointer(b.skinWeight,4,p.FLOAT,false,0,0));k instanceof THREE.Mesh?(f.wireframe?(p.lineWidth(f.wireframeLinewidth),p.bindBuffer(p.ELEMENT_ARRAY_BUFFER,h.__webglLineBuffer),p.drawElements(p.LINES,h.__webglLineCount,p.UNSIGNED_SHORT,0)):(p.bindBuffer(p.ELEMENT_ARRAY_BUFFER,h.__webglFaceBuffer),p.drawElements(p.TRIANGLES,h.__webglFaceCount,p.UNSIGNED_SHORT,0)),S.data.vertices+=
h.__webglFaceCount,S.data.faces+=h.__webglFaceCount/3,S.data.drawCalls++):k instanceof THREE.Line?(k=k.type==THREE.LineStrip?p.LINE_STRIP:p.LINES,p.lineWidth(f.linewidth),p.drawArrays(k,0,h.__webglLineCount),S.data.drawCalls++):k instanceof THREE.ParticleSystem?(p.drawArrays(p.POINTS,0,h.__webglParticleCount),S.data.drawCalls++):k instanceof THREE.Ribbon&&(p.drawArrays(p.TRIANGLE_STRIP,0,h.__webglVertexCount),S.data.drawCalls++)}}function u(b,e,c){if(!b.__webglVertexBuffer)b.__webglVertexBuffer=p.createBuffer();
if(!b.__webglNormalBuffer)b.__webglNormalBuffer=p.createBuffer();b.hasPos&&(p.bindBuffer(p.ARRAY_BUFFER,b.__webglVertexBuffer),p.bufferData(p.ARRAY_BUFFER,b.positionArray,p.DYNAMIC_DRAW),p.enableVertexAttribArray(e.attributes.position),p.vertexAttribPointer(e.attributes.position,3,p.FLOAT,false,0,0));if(b.hasNormal){p.bindBuffer(p.ARRAY_BUFFER,b.__webglNormalBuffer);if(c==THREE.FlatShading){var f,h,k,m,n,o,t,v,w,u,x=b.count*3;for(u=0;u<x;u+=9)c=b.normalArray,f=c[u],h=c[u+1],k=c[u+2],m=c[u+3],o=c[u+
4],v=c[u+5],n=c[u+6],t=c[u+7],w=c[u+8],f=(f+m+n)/3,h=(h+o+t)/3,k=(k+v+w)/3,c[u]=f,c[u+1]=h,c[u+2]=k,c[u+3]=f,c[u+4]=h,c[u+5]=k,c[u+6]=f,c[u+7]=h,c[u+8]=k}p.bufferData(p.ARRAY_BUFFER,b.normalArray,p.DYNAMIC_DRAW);p.enableVertexAttribArray(e.attributes.normal);p.vertexAttribPointer(e.attributes.normal,3,p.FLOAT,false,0,0)}p.drawArrays(p.TRIANGLES,0,b.count);b.count=0}function v(b){if(ja!=b.doubleSided)b.doubleSided?p.disable(p.CULL_FACE):p.enable(p.CULL_FACE),ja=b.doubleSided;if(ea!=b.flipSided)b.flipSided?
p.frontFace(p.CW):p.frontFace(p.CCW),ea=b.flipSided}function x(b){ga!=b&&(b?p.enable(p.DEPTH_TEST):p.disable(p.DEPTH_TEST),ga=b)}function w(b,e,c){ya!=b&&(b?p.enable(p.POLYGON_OFFSET_FILL):p.disable(p.POLYGON_OFFSET_FILL),ya=b);if(b&&(ma!=e||na!=c))p.polygonOffset(e,c),ma=e,na=c}function B(b){Da[0].set(b.n41-b.n11,b.n42-b.n12,b.n43-b.n13,b.n44-b.n14);Da[1].set(b.n41+b.n11,b.n42+b.n12,b.n43+b.n13,b.n44+b.n14);Da[2].set(b.n41+b.n21,b.n42+b.n22,b.n43+b.n23,b.n44+b.n24);Da[3].set(b.n41-b.n21,b.n42-b.n22,
b.n43-b.n23,b.n44-b.n24);Da[4].set(b.n41-b.n31,b.n42-b.n32,b.n43-b.n33,b.n44-b.n34);Da[5].set(b.n41+b.n31,b.n42+b.n32,b.n43+b.n33,b.n44+b.n34);for(var e,b=0;b<6;b++)e=Da[b],e.divideScalar(Math.sqrt(e.x*e.x+e.y*e.y+e.z*e.z))}function A(b){for(var e=b.matrixWorld,c=-b.geometry.boundingSphere.radius*Math.max(b.scale.x,Math.max(b.scale.y,b.scale.z)),f=0;f<6;f++)if(b=Da[f].x*e.n14+Da[f].y*e.n24+Da[f].z*e.n34+Da[f].w,b<=c)return false;return true}function y(b,e){b.list[b.count]=e;b.count+=1}function D(b){var e,
c,f=b.object,h=b.opaque,k=b.transparent;k.count=0;b=h.count=0;for(e=f.materials.length;b<e;b++)c=f.materials[b],c.transparent?y(k,c):y(h,c)}function C(b){var e,c,f,h,k=b.object,m=b.buffer,n=b.opaque,p=b.transparent;p.count=0;b=n.count=0;for(f=k.materials.length;b<f;b++)if(e=k.materials[b],e instanceof THREE.MeshFaceMaterial){e=0;for(c=m.materials.length;e<c;e++)(h=m.materials[e])&&(h.transparent?y(p,h):y(n,h))}else(h=e)&&(h.transparent?y(p,h):y(n,h))}function L(b,e){return e.z-b.z}function z(b,e){var c,
f,h,k=0,m,n,w,y,z=b.lights;oa||(oa=new THREE.Camera(S.shadowCameraFov,e.aspect,S.shadowCameraNear,S.shadowCameraFar));c=0;for(f=z.length;c<f;c++)if(h=z[c],h instanceof THREE.SpotLight&&h.castShadow){S.shadowMap[k]||(S.shadowMap[k]=new THREE.WebGLRenderTarget(S.shadowMapWidth,S.shadowMapHeight,{minFilter:THREE.LinearFilter,magFilter:THREE.LinearFilter,format:THREE.RGBAFormat}));sa[k]||(sa[k]=new THREE.Matrix4);m=S.shadowMap[k];n=sa[k];oa.position.copy(h.position);oa.target.position.copy(h.target.position);
oa.update(void 0,true);b.update(void 0,false,oa);n.set(0.5,0,0,0.5,0,0.5,0,0.5,0,0,0.5,0.5,0,0,0,1);n.multiplySelf(oa.projectionMatrix);n.multiplySelf(oa.matrixWorldInverse);oa.matrixWorldInverse.flattenToArray(qa);oa.projectionMatrix.flattenToArray(Ha);U.multiply(oa.projectionMatrix,oa.matrixWorldInverse);B(U);S.initWebGLObjects(b);Y(m);p.clearColor(1,1,1,1);S.clear();p.clearColor(ia.r,ia.g,ia.b,ua);n=b.__webglObjects.length;h=b.__webglObjectsImmediate.length;for(m=0;m<n;m++)w=b.__webglObjects[m],
y=w.object,y.visible&&y.castShadow?!(y instanceof THREE.Mesh)||!y.frustumCulled||A(y)?(y.matrixWorld.flattenToArray(y._objectMatrixArray),N(y,oa,false),w.render=true):w.render=false:w.render=false;x(true);J(THREE.NormalBlending);for(m=0;m<n;m++)if(w=b.__webglObjects[m],w.render)y=w.object,buffer=w.buffer,v(y),w=y.customDepthMaterial?y.customDepthMaterial:y.geometry.morphTargets.length?wa:pa,t(oa,z,null,w,buffer,y);for(m=0;m<h;m++)w=b.__webglObjectsImmediate[m],y=w.object,y.visible&&y.castShadow&&
(y.matrixAutoUpdate&&y.matrixWorld.flattenToArray(y._objectMatrixArray),N(y,oa,false),v(y),program=o(oa,z,null,pa,y),y.render(function(b){u(b,program,pa.shading)}));k++}}function E(b,h){var n,o,t;n=c;var v=e,w=Fa/Aa,u,x=[],y=Aa*0.5,A=Fa*0.5,z=true;p.useProgram(f);aa=f;ga=da=-1;Ia||(p.enableVertexAttribArray(c.position),p.enableVertexAttribArray(c.uv),Ia=true);p.disable(p.CULL_FACE);p.enable(p.BLEND);p.depthMask(true);p.bindBuffer(p.ARRAY_BUFFER,k);p.vertexAttribPointer(n.position,2,p.FLOAT,false,
16,0);p.vertexAttribPointer(n.uv,2,p.FLOAT,false,16,8);p.bindBuffer(p.ELEMENT_ARRAY_BUFFER,m);p.uniformMatrix4fv(v.projectionMatrix,false,Ha);p.activeTexture(p.TEXTURE0);p.uniform1i(v.map,0);n=0;for(o=b.__webglSprites.length;n<o;n++)t=b.__webglSprites[n],t.useScreenCoordinates?t.z=-t.position.z:(t._modelViewMatrix.multiplyToArray(h.matrixWorldInverse,t.matrixWorld,t._modelViewMatrixArray),t.z=-t._modelViewMatrix.n34);b.__webglSprites.sort(L);n=0;for(o=b.__webglSprites.length;n<o;n++)t=b.__webglSprites[n],
t.material===void 0&&t.map&&t.map.image&&t.map.image.width&&(t.useScreenCoordinates?(p.uniform1i(v.useScreenCoordinates,1),p.uniform3f(v.screenPosition,(t.position.x-y)/y,(A-t.position.y)/A,Math.max(0,Math.min(1,t.position.z)))):(p.uniform1i(v.useScreenCoordinates,0),p.uniform1i(v.affectedByDistance,t.affectedByDistance?1:0),p.uniformMatrix4fv(v.modelViewMatrix,false,t._modelViewMatrixArray)),u=t.map.image.width/(t.scaleByViewport?Fa:1),x[0]=u*w*t.scale.x,x[1]=u*t.scale.y,p.uniform2f(v.uvScale,t.uvScale.x,
t.uvScale.y),p.uniform2f(v.uvOffset,t.uvOffset.x,t.uvOffset.y),p.uniform2f(v.alignment,t.alignment.x,t.alignment.y),p.uniform1f(v.opacity,t.opacity),p.uniform1f(v.rotation,t.rotation),p.uniform2fv(v.scale,x),t.mergeWith3D&&!z?(p.enable(p.DEPTH_TEST),z=true):!t.mergeWith3D&&z&&(p.disable(p.DEPTH_TEST),z=false),J(t.blending),O(t.map,0),p.drawElements(p.TRIANGLES,6,p.UNSIGNED_SHORT,0));p.enable(p.CULL_FACE);p.enable(p.DEPTH_TEST);p.depthMask(ka)}function N(b,e,c){b._modelViewMatrix.multiplyToArray(e.matrixWorldInverse,
b.matrixWorld,b._modelViewMatrixArray);c&&THREE.Matrix4.makeInvert3x3(b._modelViewMatrix).transposeIntoArray(b._normalMatrixArray)}function I(b){var e,c,f,h;h=b.__materials;b=0;for(c=h.length;b<c;b++)if(f=h[b],f.attributes)for(e in f.attributes)if(f.attributes[e].needsUpdate)return true;return false}function P(b){var e,c,f,h;h=b.__materials;b=0;for(c=h.length;b<c;b++)if(f=h[b],f.attributes)for(e in f.attributes)f.attributes[e].needsUpdate=false}function H(b,e){var c;for(c=b.length-1;c>=0;c--)b[c].object==
e&&b.splice(c,1)}function W(b){var e,c,f,h,k,m,n,p,t={},o=b.morphTargets!==void 0?b.morphTargets.length:0;b.geometryGroups={};f=0;for(h=b.faces.length;f<h;f++){k=b.faces[f];m=k.materials;var v=m,w=[];e=0;for(c=v.length;e<c;e++)v[e]==void 0?w.push("undefined"):w.push(v[e].id);n=w.join("_");t[n]==void 0&&(t[n]={hash:n,counter:0});p=t[n].hash+"_"+t[n].counter;b.geometryGroups[p]==void 0&&(b.geometryGroups[p]={faces:[],materials:m,vertices:0,numMorphTargets:o});k=k instanceof THREE.Face3?3:4;b.geometryGroups[p].vertices+
k>65535&&(t[n].counter+=1,p=t[n].hash+"_"+t[n].counter,b.geometryGroups[p]==void 0&&(b.geometryGroups[p]={faces:[],materials:m,vertices:0,numMorphTargets:o}));b.geometryGroups[p].faces.push(f);b.geometryGroups[p].vertices+=k}b.geometryGroupsList=[];for(var u in b.geometryGroups)b.geometryGroupsList.push(b.geometryGroups[u])}function M(b,e,c){b.push({buffer:e,object:c,opaque:{list:[],count:0},transparent:{list:[],count:0}})}function J(b){if(b!=da){switch(b){case THREE.AdditiveBlending:p.blendEquation(p.FUNC_ADD);
p.blendFunc(p.SRC_ALPHA,p.ONE);break;case THREE.SubtractiveBlending:p.blendEquation(p.FUNC_ADD);p.blendFunc(p.ZERO,p.ONE_MINUS_SRC_COLOR);break;case THREE.MultiplyBlending:p.blendEquation(p.FUNC_ADD);p.blendFunc(p.ZERO,p.SRC_COLOR);break;default:p.blendEquationSeparate(p.FUNC_ADD,p.FUNC_ADD),p.blendFuncSeparate(p.SRC_ALPHA,p.ONE_MINUS_SRC_ALPHA,p.ONE,p.ONE_MINUS_SRC_ALPHA)}da=b}}function Q(b,e,c){(c.width&c.width-1)==0&&(c.height&c.height-1)==0?(p.texParameteri(b,p.TEXTURE_WRAP_S,X(e.wrapS)),p.texParameteri(b,
p.TEXTURE_WRAP_T,X(e.wrapT)),p.texParameteri(b,p.TEXTURE_MAG_FILTER,X(e.magFilter)),p.texParameteri(b,p.TEXTURE_MIN_FILTER,X(e.minFilter)),p.generateMipmap(b)):(p.texParameteri(b,p.TEXTURE_WRAP_S,p.CLAMP_TO_EDGE),p.texParameteri(b,p.TEXTURE_WRAP_T,p.CLAMP_TO_EDGE),p.texParameteri(b,p.TEXTURE_MAG_FILTER,K(e.magFilter)),p.texParameteri(b,p.TEXTURE_MIN_FILTER,K(e.minFilter)))}function O(b,e){if(b.needsUpdate){if(!b.__webglInit)b.__webglInit=true,b.__webglTexture=p.createTexture();p.activeTexture(p.TEXTURE0+
e);p.bindTexture(p.TEXTURE_2D,b.__webglTexture);b instanceof THREE.DataTexture?p.texImage2D(p.TEXTURE_2D,0,X(b.format),b.image.width,b.image.height,0,X(b.format),p.UNSIGNED_BYTE,b.image.data):p.texImage2D(p.TEXTURE_2D,0,p.RGBA,p.RGBA,p.UNSIGNED_BYTE,b.image);Q(p.TEXTURE_2D,b,b.image);b.needsUpdate=false}else p.activeTexture(p.TEXTURE0+e),p.bindTexture(p.TEXTURE_2D,b.__webglTexture)}function Y(b){var e=b instanceof THREE.WebGLRenderTargetCube;if(b&&!b.__webglFramebuffer){if(b.depthBuffer===void 0)b.depthBuffer=
true;if(b.stencilBuffer===void 0)b.stencilBuffer=true;b.__webglRenderbuffer=p.createRenderbuffer();b.__webglTexture=p.createTexture();if(e){p.bindTexture(p.TEXTURE_CUBE_MAP,b.__webglTexture);Q(p.TEXTURE_CUBE_MAP,b,b);b.__webglFramebuffer=[];for(var c=0;c<6;c++)b.__webglFramebuffer[c]=p.createFramebuffer(),p.texImage2D(p.TEXTURE_CUBE_MAP_POSITIVE_X+c,0,X(b.format),b.width,b.height,0,X(b.format),X(b.type),null)}else b.__webglFramebuffer=p.createFramebuffer(),p.bindTexture(p.TEXTURE_2D,b.__webglTexture),
Q(p.TEXTURE_2D,b,b),p.texImage2D(p.TEXTURE_2D,0,X(b.format),b.width,b.height,0,X(b.format),X(b.type),null);p.bindRenderbuffer(p.RENDERBUFFER,b.__webglRenderbuffer);if(e)for(c=0;c<6;++c)p.bindFramebuffer(p.FRAMEBUFFER,b.__webglFramebuffer[c]),p.framebufferTexture2D(p.FRAMEBUFFER,p.COLOR_ATTACHMENT0,p.TEXTURE_CUBE_MAP_POSITIVE_X+c,b.__webglTexture,0);else p.bindFramebuffer(p.FRAMEBUFFER,b.__webglFramebuffer),p.framebufferTexture2D(p.FRAMEBUFFER,p.COLOR_ATTACHMENT0,p.TEXTURE_2D,b.__webglTexture,0);b.depthBuffer&&
!b.stencilBuffer?(p.renderbufferStorage(p.RENDERBUFFER,p.DEPTH_COMPONENT16,b.width,b.height),p.framebufferRenderbuffer(p.FRAMEBUFFER,p.DEPTH_ATTACHMENT,p.RENDERBUFFER,b.__webglRenderbuffer)):b.depthBuffer&&b.stencilBuffer?(p.renderbufferStorage(p.RENDERBUFFER,p.DEPTH_STENCIL,b.width,b.height),p.framebufferRenderbuffer(p.FRAMEBUFFER,p.DEPTH_STENCIL_ATTACHMENT,p.RENDERBUFFER,b.__webglRenderbuffer)):p.renderbufferStorage(p.RENDERBUFFER,p.RGBA4,b.width,b.height);e?p.bindTexture(p.TEXTURE_CUBE_MAP,null):
p.bindTexture(p.TEXTURE_2D,null);p.bindRenderbuffer(p.RENDERBUFFER,null);p.bindFramebuffer(p.FRAMEBUFFER,null)}var f,h;b?(e=e?b.__webglFramebuffer[b.activeCubeFace]:b.__webglFramebuffer,c=b.width,b=b.height,h=f=0):(e=null,c=Aa,b=Fa,f=za,h=ta);e!=la&&(p.bindFramebuffer(p.FRAMEBUFFER,e),p.viewport(f,h,c,b),la=e)}function V(b){b instanceof THREE.WebGLRenderTargetCube?(p.bindTexture(p.TEXTURE_CUBE_MAP,b.__webglTexture),p.generateMipmap(p.TEXTURE_CUBE_MAP),p.bindTexture(p.TEXTURE_CUBE_MAP,null)):(p.bindTexture(p.TEXTURE_2D,
b.__webglTexture),p.generateMipmap(p.TEXTURE_2D),p.bindTexture(p.TEXTURE_2D,null))}function Z(b,e){var c;b=="fragment"?c=p.createShader(p.FRAGMENT_SHADER):b=="vertex"&&(c=p.createShader(p.VERTEX_SHADER));p.shaderSource(c,e);p.compileShader(c);return!p.getShaderParameter(c,p.COMPILE_STATUS)?(console.error(p.getShaderInfoLog(c)),console.error(e),null):c}function K(b){switch(b){case THREE.NearestFilter:case THREE.NearestMipMapNearestFilter:case THREE.NearestMipMapLinearFilter:return p.NEAREST;default:return p.LINEAR}}
function X(b){switch(b){case THREE.RepeatWrapping:return p.REPEAT;case THREE.ClampToEdgeWrapping:return p.CLAMP_TO_EDGE;case THREE.MirroredRepeatWrapping:return p.MIRRORED_REPEAT;case THREE.NearestFilter:return p.NEAREST;case THREE.NearestMipMapNearestFilter:return p.NEAREST_MIPMAP_NEAREST;case THREE.NearestMipMapLinearFilter:return p.NEAREST_MIPMAP_LINEAR;case THREE.LinearFilter:return p.LINEAR;case THREE.LinearMipMapNearestFilter:return p.LINEAR_MIPMAP_NEAREST;case THREE.LinearMipMapLinearFilter:return p.LINEAR_MIPMAP_LINEAR;
case THREE.ByteType:return p.BYTE;case THREE.UnsignedByteType:return p.UNSIGNED_BYTE;case THREE.ShortType:return p.SHORT;case THREE.UnsignedShortType:return p.UNSIGNED_SHORT;case THREE.IntType:return p.INT;case THREE.UnsignedShortType:return p.UNSIGNED_INT;case THREE.FloatType:return p.FLOAT;case THREE.AlphaFormat:return p.ALPHA;case THREE.RGBFormat:return p.RGB;case THREE.RGBAFormat:return p.RGBA;case THREE.LuminanceFormat:return p.LUMINANCE;case THREE.LuminanceAlphaFormat:return p.LUMINANCE_ALPHA}return 0}
var S=this,p,ca=[],aa=null,la=null,ka=true,ja=null,ea=null,da=null,ga=null,ya=null,ma=null,na=null,za=0,ta=0,Aa=0,Fa=0,Da=[new THREE.Vector4,new THREE.Vector4,new THREE.Vector4,new THREE.Vector4,new THREE.Vector4,new THREE.Vector4],U=new THREE.Matrix4,Ha=new Float32Array(16),qa=new Float32Array(16),ra=new THREE.Vector4,R={ambient:[0,0,0],directional:{length:0,colors:[],positions:[]},point:{length:0,colors:[],positions:[],distances:[]}},b=b||{},G=b.canvas!==void 0?b.canvas:document.createElement("canvas");
h=b.stencil!==void 0?b.stencil:true;var Ga=b.preserveDrawingBuffer!==void 0?b.preserveDrawingBuffer:false,ha=b.antialias!==void 0?b.antialias:false,ia=b.clearColor!==void 0?new THREE.Color(b.clearColor):new THREE.Color(0),ua=b.clearAlpha!==void 0?b.clearAlpha:0;_maxLights=b.maxLights!==void 0?b.maxLights:4;this.data={vertices:0,faces:0,drawCalls:0};this.maxMorphTargets=8;this.domElement=G;this.sortObjects=this.autoClear=true;this.shadowMapBias=0.0039;this.shadowMapDarkness=0.5;this.shadowMapHeight=
this.shadowMapWidth=512;this.shadowCameraNear=1;this.shadowCameraFar=5E3;this.shadowCameraFov=50;this.shadowMap=[];this.shadowMapEnabled=false;this.shadowMapSoft=true;var oa,sa=[],b=THREE.ShaderLib.depthRGBA,Ca=THREE.UniformsUtils.clone(b.uniforms),pa=new THREE.MeshShaderMaterial({fragmentShader:b.fragmentShader,vertexShader:b.vertexShader,uniforms:Ca}),wa=new THREE.MeshShaderMaterial({fragmentShader:b.fragmentShader,vertexShader:b.vertexShader,uniforms:Ca,morphTargets:true});pa._shadowPass=true;
wa._shadowPass=true;try{if(!(p=G.getContext("experimental-webgl",{antialias:ha,stencil:h,preserveDrawingBuffer:Ga})))throw"Error creating WebGL context.";console.log(navigator.userAgent+" | "+p.getParameter(p.VERSION)+" | "+p.getParameter(p.VENDOR)+" | "+p.getParameter(p.RENDERER)+" | "+p.getParameter(p.SHADING_LANGUAGE_VERSION))}catch(fa){console.error(fa)}p.clearColor(0,0,0,1);p.clearDepth(1);p.clearStencil(0);p.enable(p.DEPTH_TEST);p.depthFunc(p.LEQUAL);p.frontFace(p.CCW);p.cullFace(p.BACK);p.enable(p.CULL_FACE);
p.enable(p.BLEND);p.blendEquation(p.FUNC_ADD);p.blendFunc(p.SRC_ALPHA,p.ONE_MINUS_SRC_ALPHA);p.clearColor(ia.r,ia.g,ia.b,ua);this.context=p;var va=p.getParameter(p.MAX_VERTEX_TEXTURE_IMAGE_UNITS)>0;c=void 0;e=void 0;f=void 0;k=void 0;m=void 0;b=void 0;h=void 0;b=new Float32Array(16);h=new Uint16Array(6);i=0;b[i++]=-1;b[i++]=-1;b[i++]=0;b[i++]=1;b[i++]=1;b[i++]=-1;b[i++]=1;b[i++]=1;b[i++]=1;b[i++]=1;b[i++]=1;b[i++]=0;b[i++]=-1;b[i++]=1;b[i++]=0;i=b[i++]=0;h[i++]=0;h[i++]=1;h[i++]=2;h[i++]=0;h[i++]=
2;h[i++]=3;k=p.createBuffer();m=p.createBuffer();p.bindBuffer(p.ARRAY_BUFFER,k);p.bufferData(p.ARRAY_BUFFER,b,p.STATIC_DRAW);p.bindBuffer(p.ELEMENT_ARRAY_BUFFER,m);p.bufferData(p.ELEMENT_ARRAY_BUFFER,h,p.STATIC_DRAW);f=p.createProgram();p.attachShader(f,Z("fragment",THREE.ShaderLib.sprite.fragmentShader));p.attachShader(f,Z("vertex",THREE.ShaderLib.sprite.vertexShader));p.linkProgram(f);c={};e={};c.position=p.getAttribLocation(f,"position");c.uv=p.getAttribLocation(f,"uv");e.uvOffset=p.getUniformLocation(f,
"uvOffset");e.uvScale=p.getUniformLocation(f,"uvScale");e.rotation=p.getUniformLocation(f,"rotation");e.scale=p.getUniformLocation(f,"scale");e.alignment=p.getUniformLocation(f,"alignment");e.map=p.getUniformLocation(f,"map");e.opacity=p.getUniformLocation(f,"opacity");e.useScreenCoordinates=p.getUniformLocation(f,"useScreenCoordinates");e.affectedByDistance=p.getUniformLocation(f,"affectedByDistance");e.screenPosition=p.getUniformLocation(f,"screenPosition");e.modelViewMatrix=p.getUniformLocation(f,
"modelViewMatrix");e.projectionMatrix=p.getUniformLocation(f,"projectionMatrix");var Ia=false;this.setSize=function(b,e){G.width=b;G.height=e;this.setViewport(0,0,G.width,G.height)};this.setViewport=function(b,e,c,f){za=b;ta=e;Aa=c;Fa=f;p.viewport(za,ta,Aa,Fa)};this.setScissor=function(b,e,c,f){p.scissor(b,e,c,f)};this.enableScissorTest=function(b){b?p.enable(p.SCISSOR_TEST):p.disable(p.SCISSOR_TEST)};this.enableDepthBufferWrite=function(b){ka=b;p.depthMask(b)};this.setClearColorHex=function(b,e){ia.setHex(b);
ua=e;p.clearColor(ia.r,ia.g,ia.b,ua)};this.setClearColor=function(b,e){ia.copy(b);ua=e;p.clearColor(ia.r,ia.g,ia.b,ua)};this.clear=function(){p.clear(p.COLOR_BUFFER_BIT|p.DEPTH_BUFFER_BIT|p.STENCIL_BUFFER_BIT)};this.getContext=function(){return p};this.deallocateObject=function(b){if(b.__webglInit)if(b.__webglInit=false,delete b._modelViewMatrix,delete b._normalMatrixArray,delete b._modelViewMatrixArray,delete b._objectMatrixArray,b instanceof THREE.Mesh)for(g in b.geometry.geometryGroups){var e=
b.geometry.geometryGroups[g];p.deleteBuffer(e.__webglVertexBuffer);p.deleteBuffer(e.__webglNormalBuffer);p.deleteBuffer(e.__webglTangentBuffer);p.deleteBuffer(e.__webglColorBuffer);p.deleteBuffer(e.__webglUVBuffer);p.deleteBuffer(e.__webglUV2Buffer);p.deleteBuffer(e.__webglSkinVertexABuffer);p.deleteBuffer(e.__webglSkinVertexBBuffer);p.deleteBuffer(e.__webglSkinIndicesBuffer);p.deleteBuffer(e.__webglSkinWeightsBuffer);p.deleteBuffer(e.__webglFaceBuffer);p.deleteBuffer(e.__webglLineBuffer);if(e.numMorphTargets)for(var c=
0,f=e.numMorphTargets;c<f;c++)p.deleteBuffer(e.__webglMorphTargetsBuffers[c])}else if(b instanceof THREE.Ribbon)b=b.geometry,p.deleteBuffer(b.__webglVertexBuffer),p.deleteBuffer(b.__webglColorBuffer);else if(b instanceof THREE.Line)b=b.geometry,p.deleteBuffer(b.__webglVertexBuffer),p.deleteBuffer(b.__webglColorBuffer);else if(b instanceof THREE.ParticleSystem)b=b.geometry,p.deleteBuffer(b.__webglVertexBuffer),p.deleteBuffer(b.__webglColorBuffer)};this.deallocateTexture=function(b){if(b.__webglInit)b.__webglInit=
false,p.deleteTexture(b.__webglTexture)};this.initMaterial=function(b,e,c,f){var h,k,m;b instanceof THREE.MeshDepthMaterial?m="depth":b instanceof THREE.MeshNormalMaterial?m="normal":b instanceof THREE.MeshBasicMaterial?m="basic":b instanceof THREE.MeshLambertMaterial?m="lambert":b instanceof THREE.MeshPhongMaterial?m="phong":b instanceof THREE.LineBasicMaterial?m="basic":b instanceof THREE.ParticleBasicMaterial&&(m="particle_basic");if(m){var n=THREE.ShaderLib[m];b.uniforms=THREE.UniformsUtils.clone(n.uniforms);
b.vertexShader=n.vertexShader;b.fragmentShader=n.fragmentShader}var t,o,v;t=v=n=0;for(o=e.length;t<o;t++)k=e[t],k instanceof THREE.SpotLight&&v++,k instanceof THREE.DirectionalLight&&v++,k instanceof THREE.PointLight&&n++;n+v<=_maxLights?t=v:(t=Math.ceil(_maxLights*v/(n+v)),n=_maxLights-t);k={directional:t,point:n};n=v=0;for(t=e.length;n<t;n++)o=e[n],o instanceof THREE.SpotLight&&o.castShadow&&v++;var w=50;if(f!==void 0&&f instanceof THREE.SkinnedMesh)w=f.bones.length;var u;a:{t=b.fragmentShader;
o=b.vertexShader;var n=b.uniforms,e=b.attributes,c={map:!!b.map,envMap:!!b.envMap,lightMap:!!b.lightMap,vertexColors:b.vertexColors,fog:c,sizeAttenuation:b.sizeAttenuation,skinning:b.skinning,morphTargets:b.morphTargets,maxMorphTargets:this.maxMorphTargets,maxDirLights:k.directional,maxPointLights:k.point,maxBones:w,shadowMapEnabled:this.shadowMapEnabled&&f.receiveShadow,shadowMapSoft:this.shadowMapSoft,shadowMapWidth:this.shadowMapWidth,shadowMapHeight:this.shadowMapHeight,maxShadows:v,alphaTest:b.alphaTest},
x,f=[];m?f.push(m):(f.push(t),f.push(o));for(x in c)f.push(x),f.push(c[x]);m=f.join();x=0;for(f=ca.length;x<f;x++)if(ca[x].code==m){u=ca[x].program;break a}x=p.createProgram();f=[va?"#define VERTEX_TEXTURES":"","#define MAX_DIR_LIGHTS "+c.maxDirLights,"#define MAX_POINT_LIGHTS "+c.maxPointLights,"#define MAX_SHADOWS "+c.maxShadows,"#define MAX_BONES "+c.maxBones,c.map?"#define USE_MAP":"",c.envMap?"#define USE_ENVMAP":"",c.lightMap?"#define USE_LIGHTMAP":"",c.vertexColors?"#define USE_COLOR":"",c.skinning?
"#define USE_SKINNING":"",c.morphTargets?"#define USE_MORPHTARGETS":"",c.shadowMapEnabled?"#define USE_SHADOWMAP":"",c.shadowMapSoft?"#define SHADOWMAP_SOFT":"",c.sizeAttenuation?"#define USE_SIZEATTENUATION":"","uniform mat4 objectMatrix;\nuniform mat4 modelViewMatrix;\nuniform mat4 projectionMatrix;\nuniform mat4 viewMatrix;\nuniform mat3 normalMatrix;\nuniform vec3 cameraPosition;\nuniform mat4 cameraInverseMatrix;\nattribute vec3 position;\nattribute vec3 normal;\nattribute vec2 uv;\nattribute vec2 uv2;\n#ifdef USE_COLOR\nattribute vec3 color;\n#endif\n#ifdef USE_MORPHTARGETS\nattribute vec3 morphTarget0;\nattribute vec3 morphTarget1;\nattribute vec3 morphTarget2;\nattribute vec3 morphTarget3;\nattribute vec3 morphTarget4;\nattribute vec3 morphTarget5;\nattribute vec3 morphTarget6;\nattribute vec3 morphTarget7;\n#endif\n#ifdef USE_SKINNING\nattribute vec4 skinVertexA;\nattribute vec4 skinVertexB;\nattribute vec4 skinIndex;\nattribute vec4 skinWeight;\n#endif\n"].join("\n");
k=["#ifdef GL_ES\nprecision highp float;\n#endif","#define MAX_DIR_LIGHTS "+c.maxDirLights,"#define MAX_POINT_LIGHTS "+c.maxPointLights,"#define MAX_SHADOWS "+c.maxShadows,c.alphaTest?"#define ALPHATEST "+c.alphaTest:"",c.fog?"#define USE_FOG":"",c.fog instanceof THREE.FogExp2?"#define FOG_EXP2":"",c.map?"#define USE_MAP":"",c.envMap?"#define USE_ENVMAP":"",c.lightMap?"#define USE_LIGHTMAP":"",c.vertexColors?"#define USE_COLOR":"",c.shadowMapEnabled?"#define USE_SHADOWMAP":"",c.shadowMapSoft?"#define SHADOWMAP_SOFT":
"",c.shadowMapSoft?"#define SHADOWMAP_WIDTH "+c.shadowMapWidth.toFixed(1):"",c.shadowMapSoft?"#define SHADOWMAP_HEIGHT "+c.shadowMapHeight.toFixed(1):"","uniform mat4 viewMatrix;\nuniform vec3 cameraPosition;\n"].join("\n");p.attachShader(x,Z("fragment",k+t));p.attachShader(x,Z("vertex",f+o));p.linkProgram(x);p.getProgramParameter(x,p.LINK_STATUS)||console.error("Could not initialise shader\nVALIDATE_STATUS: "+p.getProgramParameter(x,p.VALIDATE_STATUS)+", gl error ["+p.getError()+"]");x.uniforms=
{};x.attributes={};var y,f="viewMatrix,modelViewMatrix,projectionMatrix,normalMatrix,objectMatrix,cameraPosition,cameraInverseMatrix,boneGlobalMatrices,morphTargetInfluences".split(",");for(y in n)f.push(y);y=f;f=0;for(n=y.length;f<n;f++)t=y[f],x.uniforms[t]=p.getUniformLocation(x,t);f="position,normal,uv,uv2,tangent,color,skinVertexA,skinVertexB,skinIndex,skinWeight".split(",");for(y=0;y<c.maxMorphTargets;y++)f.push("morphTarget"+y);for(u in e)f.push(u);u=f;y=0;for(e=u.length;y<e;y++)c=u[y],x.attributes[c]=
p.getAttribLocation(x,c);ca.push({program:x,code:m});u=x}b.program=u;u=b.program.attributes;u.position>=0&&p.enableVertexAttribArray(u.position);u.color>=0&&p.enableVertexAttribArray(u.color);u.normal>=0&&p.enableVertexAttribArray(u.normal);u.tangent>=0&&p.enableVertexAttribArray(u.tangent);b.skinning&&u.skinVertexA>=0&&u.skinVertexB>=0&&u.skinIndex>=0&&u.skinWeight>=0&&(p.enableVertexAttribArray(u.skinVertexA),p.enableVertexAttribArray(u.skinVertexB),p.enableVertexAttribArray(u.skinIndex),p.enableVertexAttribArray(u.skinWeight));
if(b.attributes)for(h in b.attributes)u[h]!==void 0&&u[h]>=0&&p.enableVertexAttribArray(u[h]);if(b.morphTargets)for(h=b.numSupportedMorphTargets=0;h<this.maxMorphTargets;h++)y="morphTarget"+h,u[y]>=0&&(p.enableVertexAttribArray(u[y]),b.numSupportedMorphTargets++)};this.clearTarget=function(b,e,c,f){Y(b);b=0;e&&(b|=p.COLOR_BUFFER_BIT);c&&(b|=p.DEPTH_BUFFER_BIT);f&&(b|=p.STENCIL_BUFFER_BIT);p.clear(b)};this.render=function(b,e,c,f){var h,k,m,n,p,y,R,H,Q=b.lights,O=b.fog;this.shadowMapEnabled&&z(b,e);
S.data.vertices=0;S.data.faces=0;S.data.drawCalls=0;e.matrixAutoUpdate&&e.update(void 0,true);b.update(void 0,false,e);e.matrixWorldInverse.flattenToArray(qa);e.projectionMatrix.flattenToArray(Ha);U.multiply(e.projectionMatrix,e.matrixWorldInverse);B(U);this.initWebGLObjects(b);Y(c);(this.autoClear||f)&&this.clear();p=b.__webglObjects.length;for(f=0;f<p;f++)if(h=b.__webglObjects[f],R=h.object,R.visible)if(!(R instanceof THREE.Mesh)||!R.frustumCulled||A(R)){if(R.matrixWorld.flattenToArray(R._objectMatrixArray),
N(R,e,true),C(h),h.render=true,this.sortObjects)h.object.renderDepth?h.z=h.object.renderDepth:(ra.copy(R.position),U.multiplyVector3(ra),h.z=ra.z)}else h.render=false;else h.render=false;this.sortObjects&&b.__webglObjects.sort(L);y=b.__webglObjectsImmediate.length;for(f=0;f<y;f++)h=b.__webglObjectsImmediate[f],R=h.object,R.visible&&(R.matrixAutoUpdate&&R.matrixWorld.flattenToArray(R._objectMatrixArray),N(R,e,true),D(h));if(b.overrideMaterial){x(b.overrideMaterial.depthTest);J(b.overrideMaterial.blending);
for(f=0;f<p;f++)if(h=b.__webglObjects[f],h.render)R=h.object,H=h.buffer,v(R),t(e,Q,O,b.overrideMaterial,H,R);for(f=0;f<y;f++)h=b.__webglObjectsImmediate[f],R=h.object,R.visible&&(v(R),k=o(e,Q,O,b.overrideMaterial,R),R.render(function(e){u(e,k,b.overrideMaterial.shading)}))}else{J(THREE.NormalBlending);for(f=p-1;f>=0;f--)if(h=b.__webglObjects[f],h.render){R=h.object;H=h.buffer;m=h.opaque;v(R);for(h=0;h<m.count;h++)n=m.list[h],x(n.depthTest),w(n.polygonOffset,n.polygonOffsetFactor,n.polygonOffsetUnits),
t(e,Q,O,n,H,R)}for(f=0;f<y;f++)if(h=b.__webglObjectsImmediate[f],R=h.object,R.visible){m=h.opaque;v(R);for(h=0;h<m.count;h++)n=m.list[h],x(n.depthTest),w(n.polygonOffset,n.polygonOffsetFactor,n.polygonOffsetUnits),k=o(e,Q,O,n,R),R.render(function(b){u(b,k,n.shading)})}for(f=0;f<p;f++)if(h=b.__webglObjects[f],h.render){R=h.object;H=h.buffer;m=h.transparent;v(R);for(h=0;h<m.count;h++)n=m.list[h],J(n.blending),x(n.depthTest),w(n.polygonOffset,n.polygonOffsetFactor,n.polygonOffsetUnits),t(e,Q,O,n,H,R)}for(f=
0;f<y;f++)if(h=b.__webglObjectsImmediate[f],R=h.object,R.visible){m=h.transparent;v(R);for(h=0;h<m.count;h++)n=m.list[h],J(n.blending),x(n.depthTest),w(n.polygonOffset,n.polygonOffsetFactor,n.polygonOffsetUnits),k=o(e,Q,O,n,R),R.render(function(b){u(b,k,n.shading)})}}b.__webglSprites.length&&E(b,e);c&&c.minFilter!==THREE.NearestFilter&&c.minFilter!==THREE.LinearFilter&&V(c)};this.initWebGLObjects=function(b){if(!b.__webglObjects)b.__webglObjects=[],b.__webglObjectsImmediate=[],b.__webglSprites=[];
for(;b.__objectsAdded.length;){var e=b.__objectsAdded[0],c=b,f=void 0,h=void 0,k=void 0;if(!e.__webglInit)if(e.__webglInit=true,e._modelViewMatrix=new THREE.Matrix4,e._normalMatrixArray=new Float32Array(9),e._modelViewMatrixArray=new Float32Array(16),e._objectMatrixArray=new Float32Array(16),e.matrixWorld.flattenToArray(e._objectMatrixArray),e instanceof THREE.Mesh)for(f in h=e.geometry,h.geometryGroups==void 0&&W(h),h.geometryGroups){k=h.geometryGroups[f];if(!k.__webglVertexBuffer){var m=k;m.__webglVertexBuffer=
p.createBuffer();m.__webglNormalBuffer=p.createBuffer();m.__webglTangentBuffer=p.createBuffer();m.__webglColorBuffer=p.createBuffer();m.__webglUVBuffer=p.createBuffer();m.__webglUV2Buffer=p.createBuffer();m.__webglSkinVertexABuffer=p.createBuffer();m.__webglSkinVertexBBuffer=p.createBuffer();m.__webglSkinIndicesBuffer=p.createBuffer();m.__webglSkinWeightsBuffer=p.createBuffer();m.__webglFaceBuffer=p.createBuffer();m.__webglLineBuffer=p.createBuffer();if(m.numMorphTargets){var t=void 0,o=void 0;m.__webglMorphTargetsBuffers=
[];t=0;for(o=m.numMorphTargets;t<o;t++)m.__webglMorphTargetsBuffers.push(p.createBuffer())}for(var m=k,t=e,v=void 0,w=void 0,u=void 0,x=void 0,y=void 0,J=void 0,A=J=o=0,z=void 0,D=void 0,u=void 0,x=t.geometry,y=x.faces,z=m.faces,v=0,w=z.length;v<w;v++)u=z[v],u=y[u],u instanceof THREE.Face3?(o+=3,J+=1,A+=3):u instanceof THREE.Face4&&(o+=4,J+=2,A+=4);for(var v=m,w=t,B=void 0,R=void 0,B=void 0,u=[],y=0,z=w.materials.length;y<z;y++)if(B=w.materials[y],B instanceof THREE.MeshFaceMaterial){B=0;for(l=v.materials.length;B<
l;B++)(R=v.materials[B])&&u.push(R)}else(R=B)&&u.push(R);v=u;m.__materials=v;a:{y=void 0;z=v.length;for(w=0;w<z;w++)if(y=v[w],y.map||y.lightMap||y instanceof THREE.MeshShaderMaterial){w=true;break a}w=false}a:{z=void 0;u=v.length;for(y=0;y<u;y++)if(z=v[y],!(z instanceof THREE.MeshBasicMaterial&&!z.envMap||z instanceof THREE.MeshDepthMaterial)){z=z&&z.shading!=void 0&&z.shading==THREE.SmoothShading?THREE.SmoothShading:THREE.FlatShading;break a}z=false}a:{u=void 0;B=v.length;for(y=0;y<B;y++)if(u=v[y],
u.vertexColors){u=u.vertexColors;break a}u=false}m.__vertexArray=new Float32Array(o*3);if(z)m.__normalArray=new Float32Array(o*3);if(x.hasTangents)m.__tangentArray=new Float32Array(o*4);if(u)m.__colorArray=new Float32Array(o*3);if(w){if(x.faceUvs.length>0||x.faceVertexUvs.length>0)m.__uvArray=new Float32Array(o*2);if(x.faceUvs.length>1||x.faceVertexUvs.length>1)m.__uv2Array=new Float32Array(o*2)}if(t.geometry.skinWeights.length&&t.geometry.skinIndices.length)m.__skinVertexAArray=new Float32Array(o*
4),m.__skinVertexBArray=new Float32Array(o*4),m.__skinIndexArray=new Float32Array(o*4),m.__skinWeightArray=new Float32Array(o*4);m.__faceArray=new Uint16Array(J*3+(t.geometry.edgeFaces?t.geometry.edgeFaces.length*6:0));m.__lineArray=new Uint16Array(A*2);if(m.numMorphTargets){m.__morphTargetsArrays=[];x=0;for(y=m.numMorphTargets;x<y;x++)m.__morphTargetsArrays.push(new Float32Array(o*3))}m.__needsSmoothNormals=z==THREE.SmoothShading;m.__uvType=w;m.__vertexColorType=u;m.__normalType=z;m.__webglFaceCount=
J*3+(t.geometry.edgeFaces?t.geometry.edgeFaces.length*6:0);m.__webglLineCount=A*2;x=0;for(y=v.length;x<y;x++)if(w=v[x],w.attributes){if(m.__webglCustomAttributes===void 0)m.__webglCustomAttributes={};for(a in w.attributes){u=w.attributes[a];z={};for(D in u)z[D]=u[D];if(!z.__webglInitialized||z.createUniqueBuffers)z.__webglInitialized=true,J=1,z.type==="v2"?J=2:z.type==="v3"?J=3:z.type==="v4"?J=4:z.type==="c"&&(J=3),z.size=J,z.array=new Float32Array(o*J),z.buffer=p.createBuffer(),z.buffer.belongsToAttribute=
a,u.needsUpdate=true,z.__original=u;m.__webglCustomAttributes[a]=z}}m.__inittedArrays=true;h.__dirtyVertices=true;h.__dirtyMorphTargets=true;h.__dirtyElements=true;h.__dirtyUvs=true;h.__dirtyNormals=true;h.__dirtyTangents=true;h.__dirtyColors=true}M(c.__webglObjects,k,e)}else if(e instanceof THREE.Ribbon){h=e.geometry;if(!h.__webglVertexBuffer)f=h,f.__webglVertexBuffer=p.createBuffer(),f.__webglColorBuffer=p.createBuffer(),f=h,k=f.vertices.length,f.__vertexArray=new Float32Array(k*3),f.__colorArray=
new Float32Array(k*3),f.__webglVertexCount=k,h.__dirtyVertices=true,h.__dirtyColors=true;M(c.__webglObjects,h,e)}else if(e instanceof THREE.Line){h=e.geometry;if(!h.__webglVertexBuffer)f=h,f.__webglVertexBuffer=p.createBuffer(),f.__webglColorBuffer=p.createBuffer(),f=h,k=f.vertices.length,f.__vertexArray=new Float32Array(k*3),f.__colorArray=new Float32Array(k*3),f.__webglLineCount=k,h.__dirtyVertices=true,h.__dirtyColors=true;M(c.__webglObjects,h,e)}else if(e instanceof THREE.ParticleSystem){h=e.geometry;
if(!h.__webglVertexBuffer){f=h;f.__webglVertexBuffer=p.createBuffer();f.__webglColorBuffer=p.createBuffer();f=h;k=e;m=f.vertices.length;f.__vertexArray=new Float32Array(m*3);f.__colorArray=new Float32Array(m*3);f.__sortArray=[];f.__webglParticleCount=m;f.__materials=k.materials;D=void 0;t=0;for(o=k.materials.length;t<o;t++)if(D=k.materials[t],D.attributes){if(f.__webglCustomAttributes===void 0)f.__webglCustomAttributes={};for(a in D.attributes){originalAttribute=D.attributes[a];attribute={};for(property in originalAttribute)attribute[property]=
originalAttribute[property];if(!attribute.__webglInitialized||attribute.createUniqueBuffers)attribute.__webglInitialized=true,size=1,attribute.type==="v2"?size=2:attribute.type==="v3"?size=3:attribute.type==="v4"?size=4:attribute.type==="c"&&(size=3),attribute.size=size,attribute.array=new Float32Array(m*size),attribute.buffer=p.createBuffer(),attribute.buffer.belongsToAttribute=a,originalAttribute.needsUpdate=true,attribute.__original=originalAttribute;f.__webglCustomAttributes[a]=attribute}}h.__dirtyVertices=
true;h.__dirtyColors=true}M(c.__webglObjects,h,e)}else THREE.MarchingCubes!==void 0&&e instanceof THREE.MarchingCubes?c.__webglObjectsImmediate.push({object:e,opaque:{list:[],count:0},transparent:{list:[],count:0}}):e instanceof THREE.Sprite&&c.__webglSprites.push(e);b.__objectsAdded.splice(0,1)}for(;b.__objectsRemoved.length;){c=b.__objectsRemoved[0];e=b;if(c instanceof THREE.Mesh||c instanceof THREE.ParticleSystem||c instanceof THREE.Ribbon||c instanceof THREE.Line)H(e.__webglObjects,c);else if(c instanceof
THREE.Sprite){e=e.__webglSprites;for(h=e.length-1;h>=0;h--)e[h]==c&&e.splice(h,1)}else c instanceof THREE.MarchingCubes&&H(e.__webglObjectsImmediate,c);b.__objectsRemoved.splice(0,1)}e=0;for(c=b.__webglObjects.length;e<c;e++)if(f=b.__webglObjects[e].object,o=k=h=void 0,f instanceof THREE.Mesh){h=f.geometry;m=0;for(t=h.geometryGroupsList.length;m<t;m++)if(k=h.geometryGroupsList[m],o=I(k),h.__dirtyVertices||h.__dirtyMorphTargets||h.__dirtyElements||h.__dirtyUvs||h.__dirtyNormals||h.__dirtyColors||h.__dirtyTangents||
o)if(o=k,D=p.DYNAMIC_DRAW,J=!h.dynamic,o.__inittedArrays){var qa=void 0,C=void 0,Q=void 0,O=void 0,ra=void 0,E=void 0,L=R=B=u=z=void 0,oa=void 0,G=void 0,F=void 0,K=void 0,N=void 0,Y=qa=qa=C=N=N=void 0,ha=0,V=0,sa=0,Ga=0,S=0,Z=0,ia=0,Ca=0,X=0,T=0,pa=0,G=0,K=void 0,fa=o.__vertexArray,ja=o.__uvArray,ua=o.__uv2Array,wa=o.__normalArray,U=o.__tangentArray,ca=o.__colorArray,ea=o.__skinVertexAArray,da=o.__skinVertexBArray,ga=o.__skinIndexArray,aa=o.__skinWeightArray,la=o.__morphTargetsArrays,ma=o.__webglCustomAttributes,
F=void 0,ka=o.__faceArray,na=o.__lineArray,ya=o.__needsSmoothNormals,w=o.__vertexColorType,v=o.__uvType,y=o.__normalType,va=f.geometry,ta=va.__dirtyVertices,za=va.__dirtyElements,Ia=va.__dirtyUvs,Aa=va.__dirtyNormals,Da=va.__dirtyTangents,Fa=va.__dirtyColors,Ha=va.__dirtyMorphTargets,Xa=va.vertices,kb=o.faces,ob=va.faces,lb=va.faceVertexUvs[0],mb=va.faceVertexUvs[1],Ya=va.skinVerticesA,Za=va.skinVerticesB,$a=va.skinIndices,Ra=va.skinWeights,Oa=va.morphTargets;if(ma)for(Y in ma)ma[Y].offset=0,ma[Y].offsetSrc=
0;A=0;for(x=kb.length;A<x;A++)if(qa=kb[A],C=ob[qa],lb&&(z=lb[qa]),mb&&(u=mb[qa]),qa=C.vertexNormals,Q=C.normal,O=C.vertexColors,ra=C.color,E=C.vertexTangents,C instanceof THREE.Face3){if(ta)B=Xa[C.a].position,R=Xa[C.b].position,L=Xa[C.c].position,fa[V]=B.x,fa[V+1]=B.y,fa[V+2]=B.z,fa[V+3]=R.x,fa[V+4]=R.y,fa[V+5]=R.z,fa[V+6]=L.x,fa[V+7]=L.y,fa[V+8]=L.z,V+=9;if(ma)for(Y in ma)if(F=ma[Y],F.__original.needsUpdate)G=F.offset,K=F.offsetSrc,F.size===1?(F.boundTo===void 0||F.boundTo==="vertices"?(F.array[G]=
F.value[C.a],F.array[G+1]=F.value[C.b],F.array[G+2]=F.value[C.c]):F.boundTo==="faces"?(K=F.value[K],F.array[G]=K,F.array[G+1]=K,F.array[G+2]=K,F.offsetSrc++):F.boundTo==="faceVertices"&&(F.array[G]=F.value[K],F.array[G+1]=F.value[K+1],F.array[G+2]=F.value[K+2],F.offsetSrc+=3),F.offset+=3):(F.boundTo===void 0||F.boundTo==="vertices"?(B=F.value[C.a],R=F.value[C.b],L=F.value[C.c]):F.boundTo==="faces"?(L=R=B=K=F.value[K],F.offsetSrc++):F.boundTo==="faceVertices"&&(B=F.value[K],R=F.value[K+1],L=F.value[K+
2],F.offsetSrc+=3),F.size===2?(F.array[G]=B.x,F.array[G+1]=B.y,F.array[G+2]=R.x,F.array[G+3]=R.y,F.array[G+4]=L.x,F.array[G+5]=L.y,F.offset+=6):F.size===3?(F.type==="c"?(F.array[G]=B.r,F.array[G+1]=B.g,F.array[G+2]=B.b,F.array[G+3]=R.r,F.array[G+4]=R.g,F.array[G+5]=R.b,F.array[G+6]=L.r,F.array[G+7]=L.g,F.array[G+8]=L.b):(F.array[G]=B.x,F.array[G+1]=B.y,F.array[G+2]=B.z,F.array[G+3]=R.x,F.array[G+4]=R.y,F.array[G+5]=R.z,F.array[G+6]=L.x,F.array[G+7]=L.y,F.array[G+8]=L.z),F.offset+=9):(F.array[G]=B.x,
F.array[G+1]=B.y,F.array[G+2]=B.z,F.array[G+3]=B.w,F.array[G+4]=R.x,F.array[G+5]=R.y,F.array[G+6]=R.z,F.array[G+7]=R.w,F.array[G+8]=L.x,F.array[G+9]=L.y,F.array[G+10]=L.z,F.array[G+11]=L.w,F.offset+=12));if(Ha){G=0;for(F=Oa.length;G<F;G++)B=Oa[G].vertices[C.a].position,R=Oa[G].vertices[C.b].position,L=Oa[G].vertices[C.c].position,K=la[G],K[pa]=B.x,K[pa+1]=B.y,K[pa+2]=B.z,K[pa+3]=R.x,K[pa+4]=R.y,K[pa+5]=R.z,K[pa+6]=L.x,K[pa+7]=L.y,K[pa+8]=L.z;pa+=9}if(Ra.length)G=Ra[C.a],F=Ra[C.b],K=Ra[C.c],aa[T]=
G.x,aa[T+1]=G.y,aa[T+2]=G.z,aa[T+3]=G.w,aa[T+4]=F.x,aa[T+5]=F.y,aa[T+6]=F.z,aa[T+7]=F.w,aa[T+8]=K.x,aa[T+9]=K.y,aa[T+10]=K.z,aa[T+11]=K.w,G=$a[C.a],F=$a[C.b],K=$a[C.c],ga[T]=G.x,ga[T+1]=G.y,ga[T+2]=G.z,ga[T+3]=G.w,ga[T+4]=F.x,ga[T+5]=F.y,ga[T+6]=F.z,ga[T+7]=F.w,ga[T+8]=K.x,ga[T+9]=K.y,ga[T+10]=K.z,ga[T+11]=K.w,G=Ya[C.a],F=Ya[C.b],K=Ya[C.c],ea[T]=G.x,ea[T+1]=G.y,ea[T+2]=G.z,ea[T+3]=1,ea[T+4]=F.x,ea[T+5]=F.y,ea[T+6]=F.z,ea[T+7]=1,ea[T+8]=K.x,ea[T+9]=K.y,ea[T+10]=K.z,ea[T+11]=1,G=Za[C.a],F=Za[C.b],K=
Za[C.c],da[T]=G.x,da[T+1]=G.y,da[T+2]=G.z,da[T+3]=1,da[T+4]=F.x,da[T+5]=F.y,da[T+6]=F.z,da[T+7]=1,da[T+8]=K.x,da[T+9]=K.y,da[T+10]=K.z,da[T+11]=1,T+=12;if(Fa&&w)O.length==3&&w==THREE.VertexColors?(C=O[0],G=O[1],F=O[2]):F=G=C=ra,ca[X]=C.r,ca[X+1]=C.g,ca[X+2]=C.b,ca[X+3]=G.r,ca[X+4]=G.g,ca[X+5]=G.b,ca[X+6]=F.r,ca[X+7]=F.g,ca[X+8]=F.b,X+=9;if(Da&&va.hasTangents)O=E[0],ra=E[1],C=E[2],U[ia]=O.x,U[ia+1]=O.y,U[ia+2]=O.z,U[ia+3]=O.w,U[ia+4]=ra.x,U[ia+5]=ra.y,U[ia+6]=ra.z,U[ia+7]=ra.w,U[ia+8]=C.x,U[ia+9]=
C.y,U[ia+10]=C.z,U[ia+11]=C.w,ia+=12;if(Aa&&y)if(qa.length==3&&ya)for(E=0;E<3;E++)Q=qa[E],wa[Z]=Q.x,wa[Z+1]=Q.y,wa[Z+2]=Q.z,Z+=3;else for(E=0;E<3;E++)wa[Z]=Q.x,wa[Z+1]=Q.y,wa[Z+2]=Q.z,Z+=3;if(Ia&&z!==void 0&&v)for(E=0;E<3;E++)qa=z[E],ja[sa]=qa.u,ja[sa+1]=qa.v,sa+=2;if(Ia&&u!==void 0&&v)for(E=0;E<3;E++)qa=u[E],ua[Ga]=qa.u,ua[Ga+1]=qa.v,Ga+=2;za&&(ka[S]=ha,ka[S+1]=ha+1,ka[S+2]=ha+2,S+=3,na[Ca]=ha,na[Ca+1]=ha+1,na[Ca+2]=ha,na[Ca+3]=ha+2,na[Ca+4]=ha+1,na[Ca+5]=ha+2,Ca+=6,ha+=3)}else if(C instanceof THREE.Face4){if(ta)B=
Xa[C.a].position,R=Xa[C.b].position,L=Xa[C.c].position,oa=Xa[C.d].position,fa[V]=B.x,fa[V+1]=B.y,fa[V+2]=B.z,fa[V+3]=R.x,fa[V+4]=R.y,fa[V+5]=R.z,fa[V+6]=L.x,fa[V+7]=L.y,fa[V+8]=L.z,fa[V+9]=oa.x,fa[V+10]=oa.y,fa[V+11]=oa.z,V+=12;if(ma)for(Y in ma)if(F=ma[Y],F.__original.needsUpdate)G=F.offset,K=F.offsetSrc,F.size===1?(F.boundTo===void 0||F.boundTo==="vertices"?(F.array[G]=F.value[C.a],F.array[G+1]=F.value[C.b],F.array[G+2]=F.value[C.c],F.array[G+3]=F.value[C.d]):F.boundTo==="faces"?(K=F.value[K],F.array[G]=
K,F.array[G+1]=K,F.array[G+2]=K,F.array[G+3]=K,F.offsetSrc++):F.boundTo==="faceVertices"&&(F.array[G]=F.value[K],F.array[G+1]=F.value[K+1],F.array[G+2]=F.value[K+2],F.array[G+3]=F.value[K+3],F.offsetSrc+=4),F.offset+=4):(F.boundTo===void 0||F.boundTo==="vertices"?(B=F.value[C.a],R=F.value[C.b],L=F.value[C.c],oa=F.value[C.d]):F.boundTo==="faces"?(oa=L=R=B=K=F.value[K],F.offsetSrc++):F.boundTo==="faceVertices"&&(B=F.value[K],R=F.value[K+1],L=F.value[K+2],oa=F.value[K+3],F.offsetSrc+=4),F.size===2?(F.array[G]=
B.x,F.array[G+1]=B.y,F.array[G+2]=R.x,F.array[G+3]=R.y,F.array[G+4]=L.x,F.array[G+5]=L.y,F.array[G+6]=oa.x,F.array[G+7]=oa.y,F.offset+=8):F.size===3?(F.type==="c"?(F.array[G]=B.r,F.array[G+1]=B.g,F.array[G+2]=B.b,F.array[G+3]=R.r,F.array[G+4]=R.g,F.array[G+5]=R.b,F.array[G+6]=L.r,F.array[G+7]=L.g,F.array[G+8]=L.b,F.array[G+9]=oa.r,F.array[G+10]=oa.g,F.array[G+11]=oa.b):(F.array[G]=B.x,F.array[G+1]=B.y,F.array[G+2]=B.z,F.array[G+3]=R.x,F.array[G+4]=R.y,F.array[G+5]=R.z,F.array[G+6]=L.x,F.array[G+7]=
L.y,F.array[G+8]=L.z,F.array[G+9]=oa.x,F.array[G+10]=oa.y,F.array[G+11]=oa.z),F.offset+=12):(F.array[G]=B.x,F.array[G+1]=B.y,F.array[G+2]=B.z,F.array[G+3]=B.w,F.array[G+4]=R.x,F.array[G+5]=R.y,F.array[G+6]=R.z,F.array[G+7]=R.w,F.array[G+8]=L.x,F.array[G+9]=L.y,F.array[G+10]=L.z,F.array[G+11]=L.w,F.array[G+12]=oa.x,F.array[G+13]=oa.y,F.array[G+14]=oa.z,F.array[G+15]=oa.w,F.offset+=16));if(Ha){G=0;for(F=Oa.length;G<F;G++)B=Oa[G].vertices[C.a].position,R=Oa[G].vertices[C.b].position,L=Oa[G].vertices[C.c].position,
oa=Oa[G].vertices[C.d].position,K=la[G],K[pa]=B.x,K[pa+1]=B.y,K[pa+2]=B.z,K[pa+3]=R.x,K[pa+4]=R.y,K[pa+5]=R.z,K[pa+6]=L.x,K[pa+7]=L.y,K[pa+8]=L.z,K[pa+9]=oa.x,K[pa+10]=oa.y,K[pa+11]=oa.z;pa+=12}if(Ra.length)G=Ra[C.a],F=Ra[C.b],K=Ra[C.c],N=Ra[C.d],aa[T]=G.x,aa[T+1]=G.y,aa[T+2]=G.z,aa[T+3]=G.w,aa[T+4]=F.x,aa[T+5]=F.y,aa[T+6]=F.z,aa[T+7]=F.w,aa[T+8]=K.x,aa[T+9]=K.y,aa[T+10]=K.z,aa[T+11]=K.w,aa[T+12]=N.x,aa[T+13]=N.y,aa[T+14]=N.z,aa[T+15]=N.w,G=$a[C.a],F=$a[C.b],K=$a[C.c],N=$a[C.d],ga[T]=G.x,ga[T+1]=
G.y,ga[T+2]=G.z,ga[T+3]=G.w,ga[T+4]=F.x,ga[T+5]=F.y,ga[T+6]=F.z,ga[T+7]=F.w,ga[T+8]=K.x,ga[T+9]=K.y,ga[T+10]=K.z,ga[T+11]=K.w,ga[T+12]=N.x,ga[T+13]=N.y,ga[T+14]=N.z,ga[T+15]=N.w,G=Ya[C.a],F=Ya[C.b],K=Ya[C.c],N=Ya[C.d],ea[T]=G.x,ea[T+1]=G.y,ea[T+2]=G.z,ea[T+3]=1,ea[T+4]=F.x,ea[T+5]=F.y,ea[T+6]=F.z,ea[T+7]=1,ea[T+8]=K.x,ea[T+9]=K.y,ea[T+10]=K.z,ea[T+11]=1,ea[T+12]=N.x,ea[T+13]=N.y,ea[T+14]=N.z,ea[T+15]=1,G=Za[C.a],F=Za[C.b],K=Za[C.c],C=Za[C.d],da[T]=G.x,da[T+1]=G.y,da[T+2]=G.z,da[T+3]=1,da[T+4]=F.x,
da[T+5]=F.y,da[T+6]=F.z,da[T+7]=1,da[T+8]=K.x,da[T+9]=K.y,da[T+10]=K.z,da[T+11]=1,da[T+12]=C.x,da[T+13]=C.y,da[T+14]=C.z,da[T+15]=1,T+=16;if(Fa&&w)O.length==4&&w==THREE.VertexColors?(C=O[0],G=O[1],F=O[2],O=O[3]):O=F=G=C=ra,ca[X]=C.r,ca[X+1]=C.g,ca[X+2]=C.b,ca[X+3]=G.r,ca[X+4]=G.g,ca[X+5]=G.b,ca[X+6]=F.r,ca[X+7]=F.g,ca[X+8]=F.b,ca[X+9]=O.r,ca[X+10]=O.g,ca[X+11]=O.b,X+=12;if(Da&&va.hasTangents)O=E[0],ra=E[1],C=E[2],E=E[3],U[ia]=O.x,U[ia+1]=O.y,U[ia+2]=O.z,U[ia+3]=O.w,U[ia+4]=ra.x,U[ia+5]=ra.y,U[ia+
6]=ra.z,U[ia+7]=ra.w,U[ia+8]=C.x,U[ia+9]=C.y,U[ia+10]=C.z,U[ia+11]=C.w,U[ia+12]=E.x,U[ia+13]=E.y,U[ia+14]=E.z,U[ia+15]=E.w,ia+=16;if(Aa&&y)if(qa.length==4&&ya)for(E=0;E<4;E++)Q=qa[E],wa[Z]=Q.x,wa[Z+1]=Q.y,wa[Z+2]=Q.z,Z+=3;else for(E=0;E<4;E++)wa[Z]=Q.x,wa[Z+1]=Q.y,wa[Z+2]=Q.z,Z+=3;if(Ia&&z!==void 0&&v)for(E=0;E<4;E++)qa=z[E],ja[sa]=qa.u,ja[sa+1]=qa.v,sa+=2;if(Ia&&u!==void 0&&v)for(E=0;E<4;E++)qa=u[E],ua[Ga]=qa.u,ua[Ga+1]=qa.v,Ga+=2;za&&(ka[S]=ha,ka[S+1]=ha+1,ka[S+2]=ha+3,ka[S+3]=ha+1,ka[S+4]=ha+2,
ka[S+5]=ha+3,S+=6,na[Ca]=ha,na[Ca+1]=ha+1,na[Ca+2]=ha,na[Ca+3]=ha+3,na[Ca+4]=ha+1,na[Ca+5]=ha+2,na[Ca+6]=ha+2,na[Ca+7]=ha+3,Ca+=8,ha+=4)}ta&&(p.bindBuffer(p.ARRAY_BUFFER,o.__webglVertexBuffer),p.bufferData(p.ARRAY_BUFFER,fa,D));if(ma)for(Y in ma)F=ma[Y],F.__original.needsUpdate&&(p.bindBuffer(p.ARRAY_BUFFER,F.buffer),p.bufferData(p.ARRAY_BUFFER,F.array,D));if(Ha){G=0;for(F=Oa.length;G<F;G++)p.bindBuffer(p.ARRAY_BUFFER,o.__webglMorphTargetsBuffers[G]),p.bufferData(p.ARRAY_BUFFER,la[G],D)}Fa&&X>0&&
(p.bindBuffer(p.ARRAY_BUFFER,o.__webglColorBuffer),p.bufferData(p.ARRAY_BUFFER,ca,D));Aa&&(p.bindBuffer(p.ARRAY_BUFFER,o.__webglNormalBuffer),p.bufferData(p.ARRAY_BUFFER,wa,D));Da&&va.hasTangents&&(p.bindBuffer(p.ARRAY_BUFFER,o.__webglTangentBuffer),p.bufferData(p.ARRAY_BUFFER,U,D));Ia&&sa>0&&(p.bindBuffer(p.ARRAY_BUFFER,o.__webglUVBuffer),p.bufferData(p.ARRAY_BUFFER,ja,D));Ia&&Ga>0&&(p.bindBuffer(p.ARRAY_BUFFER,o.__webglUV2Buffer),p.bufferData(p.ARRAY_BUFFER,ua,D));za&&(p.bindBuffer(p.ELEMENT_ARRAY_BUFFER,
o.__webglFaceBuffer),p.bufferData(p.ELEMENT_ARRAY_BUFFER,ka,D),p.bindBuffer(p.ELEMENT_ARRAY_BUFFER,o.__webglLineBuffer),p.bufferData(p.ELEMENT_ARRAY_BUFFER,na,D));T>0&&(p.bindBuffer(p.ARRAY_BUFFER,o.__webglSkinVertexABuffer),p.bufferData(p.ARRAY_BUFFER,ea,D),p.bindBuffer(p.ARRAY_BUFFER,o.__webglSkinVertexBBuffer),p.bufferData(p.ARRAY_BUFFER,da,D),p.bindBuffer(p.ARRAY_BUFFER,o.__webglSkinIndicesBuffer),p.bufferData(p.ARRAY_BUFFER,ga,D),p.bindBuffer(p.ARRAY_BUFFER,o.__webglSkinWeightsBuffer),p.bufferData(p.ARRAY_BUFFER,
aa,D));J&&(delete o.__inittedArrays,delete o.__colorArray,delete o.__normalArray,delete o.__tangentArray,delete o.__uvArray,delete o.__uv2Array,delete o.__faceArray,delete o.__vertexArray,delete o.__lineArray,delete o.__skinVertexAArray,delete o.__skinVertexBArray,delete o.__skinIndexArray,delete o.__skinWeightArray)}h.__dirtyVertices=false;h.__dirtyMorphTargets=false;h.__dirtyElements=false;h.__dirtyUvs=false;h.__dirtyNormals=false;h.__dirtyTangents=false;h.__dirtyColors=false;P(k)}else if(f instanceof
THREE.Ribbon){h=f.geometry;if(h.__dirtyVertices||h.__dirtyColors){f=h;k=p.DYNAMIC_DRAW;m=A=void 0;x=f.vertices;t=f.colors;v=x.length;o=t.length;w=f.__vertexArray;D=f.__colorArray;y=f.__dirtyColors;if(f.__dirtyVertices){for(J=0;J<v;J++)A=x[J].position,m=J*3,w[m]=A.x,w[m+1]=A.y,w[m+2]=A.z;p.bindBuffer(p.ARRAY_BUFFER,f.__webglVertexBuffer);p.bufferData(p.ARRAY_BUFFER,w,k)}if(y){for(J=0;J<o;J++)color=t[J],m=J*3,D[m]=color.r,D[m+1]=color.g,D[m+2]=color.b;p.bindBuffer(p.ARRAY_BUFFER,f.__webglColorBuffer);
p.bufferData(p.ARRAY_BUFFER,D,k)}}h.__dirtyVertices=false;h.__dirtyColors=false}else if(f instanceof THREE.Line){h=f.geometry;if(h.__dirtyVertices||h.__dirtyColors){f=h;k=p.DYNAMIC_DRAW;m=A=void 0;x=f.vertices;t=f.colors;v=x.length;o=t.length;w=f.__vertexArray;D=f.__colorArray;y=f.__dirtyColors;if(f.__dirtyVertices){for(J=0;J<v;J++)A=x[J].position,m=J*3,w[m]=A.x,w[m+1]=A.y,w[m+2]=A.z;p.bindBuffer(p.ARRAY_BUFFER,f.__webglVertexBuffer);p.bufferData(p.ARRAY_BUFFER,w,k)}if(y){for(J=0;J<o;J++)color=t[J],
m=J*3,D[m]=color.r,D[m+1]=color.g,D[m+2]=color.b;p.bindBuffer(p.ARRAY_BUFFER,f.__webglColorBuffer);p.bufferData(p.ARRAY_BUFFER,D,k)}}h.__dirtyVertices=false;h.__dirtyColors=false}else if(f instanceof THREE.ParticleSystem)h=f.geometry,o=I(h),(h.__dirtyVertices||h.__dirtyColors||f.sortParticles||o)&&n(h,p.DYNAMIC_DRAW,f),h.__dirtyVertices=false,h.__dirtyColors=false,P(h)};this.setFaceCulling=function(b,e){b?(!e||e=="ccw"?p.frontFace(p.CCW):p.frontFace(p.CW),b=="back"?p.cullFace(p.BACK):b=="front"?p.cullFace(p.FRONT):
p.cullFace(p.FRONT_AND_BACK),p.enable(p.CULL_FACE)):p.disable(p.CULL_FACE)};this.supportsVertexTextures=function(){return va}};
THREE.WebGLRenderTarget=function(b,c,e){this.width=b;this.height=c;e=e||{};this.wrapS=e.wrapS!==void 0?e.wrapS:THREE.ClampToEdgeWrapping;this.wrapT=e.wrapT!==void 0?e.wrapT:THREE.ClampToEdgeWrapping;this.magFilter=e.magFilter!==void 0?e.magFilter:THREE.LinearFilter;this.minFilter=e.minFilter!==void 0?e.minFilter:THREE.LinearMipMapLinearFilter;this.offset=new THREE.Vector2(0,0);this.repeat=new THREE.Vector2(1,1);this.format=e.format!==void 0?e.format:THREE.RGBAFormat;this.type=e.type!==void 0?e.type:
THREE.UnsignedByteType;this.depthBuffer=e.depthBuffer!==void 0?e.depthBuffer:true;this.stencilBuffer=e.stencilBuffer!==void 0?e.stencilBuffer:true};
THREE.WebGLRenderTarget.prototype.clone=function(){var b=new THREE.WebGLRenderTarget(this.width,this.height);b.wrapS=this.wrapS;b.wrapT=this.wrapT;b.magFilter=this.magFilter;b.minFilter=this.minFilter;b.offset.copy(this.offset);b.repeat.copy(this.repeat);b.format=this.format;b.type=this.type;b.depthBuffer=this.depthBuffer;b.stencilBuffer=this.stencilBuffer;return b};THREE.WebGLRenderTargetCube=function(b,c,e){THREE.WebGLRenderTarget.call(this,b,c,e);this.activeCubeFace=0};
THREE.WebGLRenderTargetCube.prototype=new THREE.WebGLRenderTarget;THREE.WebGLRenderTargetCube.prototype.constructor=THREE.WebGLRenderTargetCube;THREE.RenderableVertex=function(){this.positionWorld=new THREE.Vector3;this.positionScreen=new THREE.Vector4;this.visible=true};THREE.RenderableVertex.prototype.copy=function(b){this.positionWorld.copy(b.positionWorld);this.positionScreen.copy(b.positionScreen)};
THREE.RenderableFace3=function(){this.v1=new THREE.RenderableVertex;this.v2=new THREE.RenderableVertex;this.v3=new THREE.RenderableVertex;this.centroidWorld=new THREE.Vector3;this.centroidScreen=new THREE.Vector3;this.normalWorld=new THREE.Vector3;this.vertexNormalsWorld=[new THREE.Vector3,new THREE.Vector3,new THREE.Vector3];this.faceMaterials=this.meshMaterials=null;this.overdraw=false;this.uvs=[[]];this.z=null};
THREE.RenderableFace4=function(){this.v1=new THREE.RenderableVertex;this.v2=new THREE.RenderableVertex;this.v3=new THREE.RenderableVertex;this.v4=new THREE.RenderableVertex;this.centroidWorld=new THREE.Vector3;this.centroidScreen=new THREE.Vector3;this.normalWorld=new THREE.Vector3;this.vertexNormalsWorld=[new THREE.Vector3,new THREE.Vector3,new THREE.Vector3,new THREE.Vector3];this.faceMaterials=this.meshMaterials=null;this.overdraw=false;this.uvs=[[]];this.z=null};
THREE.RenderableObject=function(){this.z=this.object=null};THREE.RenderableParticle=function(){this.rotation=this.z=this.y=this.x=null;this.scale=new THREE.Vector2;this.materials=null};THREE.RenderableLine=function(){this.z=null;this.v1=new THREE.RenderableVertex;this.v2=new THREE.RenderableVertex;this.materials=null};
THREE.ColorUtils={adjustHSV:function(b,c,e,f){var k=THREE.ColorUtils.__hsv;THREE.ColorUtils.rgbToHsv(b,k);k.h=THREE.ColorUtils.clamp(k.h+c,0,1);k.s=THREE.ColorUtils.clamp(k.s+e,0,1);k.v=THREE.ColorUtils.clamp(k.v+f,0,1);b.setHSV(k.h,k.s,k.v)},rgbToHsv:function(b,c){var e=b.r,f=b.g,k=b.b,m=Math.max(Math.max(e,f),k),h=Math.min(Math.min(e,f),k);if(h==m)h=e=0;else{var n=m-h,h=n/m,e=e==m?(f-k)/n:f==m?2+(k-e)/n:4+(e-f)/n;e/=6;e<0&&(e+=1);e>1&&(e-=1)}c===void 0&&(c={h:0,s:0,v:0});c.h=e;c.s=h;c.v=m;return c},
clamp:function(b,c,e){return b<c?c:b>e?e:b}};THREE.ColorUtils.__hsv={h:0,s:0,v:0};
THREE.GeometryUtils={merge:function(b,c){var e=c instanceof THREE.Mesh,f=b.vertices.length,k=e?c.geometry:c,m=b.vertices,h=k.vertices,n=b.faces,o=k.faces,t=b.faceVertexUvs[0],k=k.faceVertexUvs[0];e&&c.matrixAutoUpdate&&c.updateMatrix();for(var u=0,v=h.length;u<v;u++){var x=new THREE.Vertex(h[u].position.clone());e&&c.matrix.multiplyVector3(x.position);m.push(x)}u=0;for(v=o.length;u<v;u++){var h=o[u],w,B,A=h.vertexNormals,x=h.vertexColors;h instanceof THREE.Face3?w=new THREE.Face3(h.a+f,h.b+f,h.c+
f):h instanceof THREE.Face4&&(w=new THREE.Face4(h.a+f,h.b+f,h.c+f,h.d+f));w.normal.copy(h.normal);e=0;for(m=A.length;e<m;e++)B=A[e],w.vertexNormals.push(B.clone());w.color.copy(h.color);e=0;for(m=x.length;e<m;e++)B=x[e],w.vertexColors.push(B.clone());w.materials=h.materials.slice();w.centroid.copy(h.centroid);n.push(w)}u=0;for(v=k.length;u<v;u++){f=k[u];n=[];e=0;for(m=f.length;e<m;e++)n.push(new THREE.UV(f[e].u,f[e].v));t.push(n)}},clone:function(b){var c=new THREE.Geometry,e,f=b.vertices,k=b.faces,
m=b.faceVertexUvs[0],b=0;for(e=f.length;b<e;b++){var h=new THREE.Vertex(f[b].position.clone());c.vertices.push(h)}b=0;for(e=k.length;b<e;b++){var n=k[b],o,t,u=n.vertexNormals,v=n.vertexColors;n instanceof THREE.Face3?o=new THREE.Face3(n.a,n.b,n.c):n instanceof THREE.Face4&&(o=new THREE.Face4(n.a,n.b,n.c,n.d));o.normal.copy(n.normal);f=0;for(h=u.length;f<h;f++)t=u[f],o.vertexNormals.push(t.clone());o.color.copy(n.color);f=0;for(h=v.length;f<h;f++)t=v[f],o.vertexColors.push(t.clone());o.materials=n.materials.slice();
o.centroid.copy(n.centroid);c.faces.push(o)}b=0;for(e=m.length;b<e;b++){k=m[b];o=[];f=0;for(h=k.length;f<h;f++)o.push(new THREE.UV(k[f].u,k[f].v));c.faceVertexUvs[0].push(o)}return c},randomPointInTriangle:function(b,c,e){var f,k,m,h=new THREE.Vector3,n=THREE.GeometryUtils.__v1;f=THREE.GeometryUtils.random();k=THREE.GeometryUtils.random();f+k>1&&(f=1-f,k=1-k);m=1-f-k;h.copy(b);h.multiplyScalar(f);n.copy(c);n.multiplyScalar(k);h.addSelf(n);n.copy(e);n.multiplyScalar(m);h.addSelf(n);return h},randomPointInFace:function(b,
c,e){var f,k,m;if(b instanceof THREE.Face3)return f=c.vertices[b.a].position,k=c.vertices[b.b].position,m=c.vertices[b.c].position,THREE.GeometryUtils.randomPointInTriangle(f,k,m);else if(b instanceof THREE.Face4){f=c.vertices[b.a].position;k=c.vertices[b.b].position;m=c.vertices[b.c].position;var c=c.vertices[b.d].position,h;e?b._area1&&b._area2?(e=b._area1,h=b._area2):(e=THREE.GeometryUtils.triangleArea(f,k,c),h=THREE.GeometryUtils.triangleArea(k,m,c),b._area1=e,b._area2=h):(e=THREE.GeometryUtils.triangleArea(f,
k,c),h=THREE.GeometryUtils.triangleArea(k,m,c));return THREE.GeometryUtils.random()*(e+h)<e?THREE.GeometryUtils.randomPointInTriangle(f,k,c):THREE.GeometryUtils.randomPointInTriangle(k,m,c)}},randomPointsInGeometry:function(b,c){function e(b){function e(c,f){if(f<c)return c;var h=c+Math.floor((f-c)/2);return t[h]>b?e(c,h-1):t[h]<b?e(h+1,f):h}return e(0,t.length-1)}var f,k,m=b.faces,h=b.vertices,n=m.length,o=0,t=[],u,v,x,w;for(k=0;k<n;k++){f=m[k];if(f instanceof THREE.Face3)u=h[f.a].position,v=h[f.b].position,
x=h[f.c].position,f._area=THREE.GeometryUtils.triangleArea(u,v,x);else if(f instanceof THREE.Face4)u=h[f.a].position,v=h[f.b].position,x=h[f.c].position,w=h[f.d].position,f._area1=THREE.GeometryUtils.triangleArea(u,v,w),f._area2=THREE.GeometryUtils.triangleArea(v,x,w),f._area=f._area1+f._area2;o+=f._area;t[k]=o}f=[];h={};for(k=0;k<c;k++)n=THREE.GeometryUtils.random()*o,n=e(n),f[k]=THREE.GeometryUtils.randomPointInFace(m[n],b,true),h[n]?h[n]+=1:h[n]=1;return f},triangleArea:function(b,c,e){var f,k=
THREE.GeometryUtils.__v1;k.sub(b,c);f=k.length();k.sub(b,e);b=k.length();k.sub(c,e);e=k.length();c=0.5*(f+b+e);return Math.sqrt(c*(c-f)*(c-b)*(c-e))},random16:function(){return(65280*Math.random()+255*Math.random())/65535}};THREE.GeometryUtils.random=THREE.GeometryUtils.random16;THREE.GeometryUtils.__v1=new THREE.Vector3;
THREE.ImageUtils={loadTexture:function(b,c,e){var f=new Image,k=new THREE.Texture(f,c);f.onload=function(){k.needsUpdate=true;e&&e(this)};f.crossOrigin="";f.src=b;return k},loadTextureCube:function(b,c,e){var f,k=[],m=new THREE.Texture(k,c),c=k.loadCount=0;for(f=b.length;c<f;++c)k[c]=new Image,k[c].onload=function(){k.loadCount+=1;if(k.loadCount==6)m.needsUpdate=true;e&&e(this)},k[c].crossOrigin="",k[c].src=b[c];return m},getNormalMap:function(b,c){var e=function(b){var e=Math.sqrt(b[0]*b[0]+b[1]*
b[1]+b[2]*b[2]);return[b[0]/e,b[1]/e,b[2]/e]};c|=1;var f=b.width,k=b.height,m=document.createElement("canvas");m.width=f;m.height=k;var h=m.getContext("2d");h.drawImage(b,0,0);for(var n=h.getImageData(0,0,f,k).data,o=h.createImageData(f,k),t=o.data,u=0;u<f;u++)for(var v=1;v<k;v++){var x=v-1<0?k-1:v-1,w=(v+1)%k,B=u-1<0?f-1:u-1,A=(u+1)%f,y=[],D=[0,0,n[(v*f+u)*4]/255*c];y.push([-1,0,n[(v*f+B)*4]/255*c]);y.push([-1,-1,n[(x*f+B)*4]/255*c]);y.push([0,-1,n[(x*f+u)*4]/255*c]);y.push([1,-1,n[(x*f+A)*4]/255*
c]);y.push([1,0,n[(v*f+A)*4]/255*c]);y.push([1,1,n[(w*f+A)*4]/255*c]);y.push([0,1,n[(w*f+u)*4]/255*c]);y.push([-1,1,n[(w*f+B)*4]/255*c]);x=[];B=y.length;for(w=0;w<B;w++){var A=y[w],C=y[(w+1)%B],A=[A[0]-D[0],A[1]-D[1],A[2]-D[2]],C=[C[0]-D[0],C[1]-D[1],C[2]-D[2]];x.push(e([A[1]*C[2]-A[2]*C[1],A[2]*C[0]-A[0]*C[2],A[0]*C[1]-A[1]*C[0]]))}y=[0,0,0];for(w=0;w<x.length;w++)y[0]+=x[w][0],y[1]+=x[w][1],y[2]+=x[w][2];y[0]/=x.length;y[1]/=x.length;y[2]/=x.length;D=(v*f+u)*4;t[D]=(y[0]+1)/2*255|0;t[D+1]=(y[1]+
0.5)*255|0;t[D+2]=y[2]*255|0;t[D+3]=255}h.putImageData(o,0,0);return m}};THREE.SceneUtils={showHierarchy:function(b,c){THREE.SceneUtils.traverseHierarchy(b,function(b){b.visible=c})},traverseHierarchy:function(b,c){var e,f,k=b.children.length;for(f=0;f<k;f++)e=b.children[f],c(e),THREE.SceneUtils.traverseHierarchy(e,c)}};
if(THREE.WebGLRenderer)THREE.ShaderUtils={lib:{fresnel:{uniforms:{mRefractionRatio:{type:"f",value:1.02},mFresnelBias:{type:"f",value:0.1},mFresnelPower:{type:"f",value:2},mFresnelScale:{type:"f",value:1},tCube:{type:"t",value:1,texture:null}},fragmentShader:"uniform samplerCube tCube;\nvarying vec3 vReflect;\nvarying vec3 vRefract[3];\nvarying float vReflectionFactor;\nvoid main() {\nvec4 reflectedColor = textureCube( tCube, vec3( -vReflect.x, vReflect.yz ) );\nvec4 refractedColor = vec4( 1.0, 1.0, 1.0, 1.0 );\nrefractedColor.r = textureCube( tCube, vec3( -vRefract[0].x, vRefract[0].yz ) ).r;\nrefractedColor.g = textureCube( tCube, vec3( -vRefract[1].x, vRefract[1].yz ) ).g;\nrefractedColor.b = textureCube( tCube, vec3( -vRefract[2].x, vRefract[2].yz ) ).b;\nrefractedColor.a = 1.0;\ngl_FragColor = mix( refractedColor, reflectedColor, clamp( vReflectionFactor, 0.0, 1.0 ) );\n}",
vertexShader:"uniform float mRefractionRatio;\nuniform float mFresnelBias;\nuniform float mFresnelScale;\nuniform float mFresnelPower;\nvarying vec3 vReflect;\nvarying vec3 vRefract[3];\nvarying float vReflectionFactor;\nvoid main() {\nvec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );\nvec4 mPosition = objectMatrix * vec4( position, 1.0 );\nvec3 nWorld = normalize ( mat3( objectMatrix[0].xyz, objectMatrix[1].xyz, objectMatrix[2].xyz ) * normal );\nvec3 I = mPosition.xyz - cameraPosition;\nvReflect = reflect( I, nWorld );\nvRefract[0] = refract( normalize( I ), nWorld, mRefractionRatio );\nvRefract[1] = refract( normalize( I ), nWorld, mRefractionRatio * 0.99 );\nvRefract[2] = refract( normalize( I ), nWorld, mRefractionRatio * 0.98 );\nvReflectionFactor = mFresnelBias + mFresnelScale * pow( 1.0 + dot( normalize( I ), nWorld ), mFresnelPower );\ngl_Position = projectionMatrix * mvPosition;\n}"},
normal:{uniforms:THREE.UniformsUtils.merge([THREE.UniformsLib.fog,THREE.UniformsLib.lights,{enableAO:{type:"i",value:0},enableDiffuse:{type:"i",value:0},enableSpecular:{type:"i",value:0},tDiffuse:{type:"t",value:0,texture:null},tNormal:{type:"t",value:2,texture:null},tSpecular:{type:"t",value:3,texture:null},tAO:{type:"t",value:4,texture:null},uNormalScale:{type:"f",value:1},tDisplacement:{type:"t",value:5,texture:null},uDisplacementBias:{type:"f",value:0},uDisplacementScale:{type:"f",value:1},uDiffuseColor:{type:"c",
value:new THREE.Color(15658734)},uSpecularColor:{type:"c",value:new THREE.Color(1118481)},uAmbientColor:{type:"c",value:new THREE.Color(328965)},uShininess:{type:"f",value:30},uOpacity:{type:"f",value:1}}]),fragmentShader:["uniform vec3 uAmbientColor;\nuniform vec3 uDiffuseColor;\nuniform vec3 uSpecularColor;\nuniform float uShininess;\nuniform float uOpacity;\nuniform bool enableDiffuse;\nuniform bool enableSpecular;\nuniform bool enableAO;\nuniform sampler2D tDiffuse;\nuniform sampler2D tNormal;\nuniform sampler2D tSpecular;\nuniform sampler2D tAO;\nuniform float uNormalScale;\nvarying vec3 vTangent;\nvarying vec3 vBinormal;\nvarying vec3 vNormal;\nvarying vec2 vUv;\nuniform vec3 ambientLightColor;\n#if MAX_DIR_LIGHTS > 0\nuniform vec3 directionalLightColor[ MAX_DIR_LIGHTS ];\nuniform vec3 directionalLightDirection[ MAX_DIR_LIGHTS ];\n#endif\n#if MAX_POINT_LIGHTS > 0\nuniform vec3 pointLightColor[ MAX_POINT_LIGHTS ];\nvarying vec4 vPointLight[ MAX_POINT_LIGHTS ];\n#endif\nvarying vec3 vViewPosition;",
THREE.ShaderChunk.fog_pars_fragment,"void main() {\ngl_FragColor = vec4( 1.0 );\nvec4 mColor = vec4( uDiffuseColor, uOpacity );\nvec4 mSpecular = vec4( uSpecularColor, uOpacity );\nvec3 specularTex = vec3( 1.0 );\nvec3 normalTex = texture2D( tNormal, vUv ).xyz * 2.0 - 1.0;\nnormalTex.xy *= uNormalScale;\nnormalTex = normalize( normalTex );\nif( enableDiffuse )\ngl_FragColor = gl_FragColor * texture2D( tDiffuse, vUv );\nif( enableAO )\ngl_FragColor = gl_FragColor * texture2D( tAO, vUv );\nif( enableSpecular )\nspecularTex = texture2D( tSpecular, vUv ).xyz;\nmat3 tsb = mat3( vTangent, vBinormal, vNormal );\nvec3 finalNormal = tsb * normalTex;\nvec3 normal = normalize( finalNormal );\nvec3 viewPosition = normalize( vViewPosition );\n#if MAX_POINT_LIGHTS > 0\nvec4 pointTotal = vec4( vec3( 0.0 ), 1.0 );\nfor ( int i = 0; i < MAX_POINT_LIGHTS; i ++ ) {\nvec3 pointVector = normalize( vPointLight[ i ].xyz );\nvec3 pointHalfVector = normalize( vPointLight[ i ].xyz + viewPosition );\nfloat pointDistance = vPointLight[ i ].w;\nfloat pointDotNormalHalf = dot( normal, pointHalfVector );\nfloat pointDiffuseWeight = max( dot( normal, pointVector ), 0.0 );\nfloat pointSpecularWeight = 0.0;\nif ( pointDotNormalHalf >= 0.0 )\npointSpecularWeight = specularTex.r * pow( pointDotNormalHalf, uShininess );\npointTotal += pointDistance * vec4( pointLightColor[ i ], 1.0 ) * ( mColor * pointDiffuseWeight + mSpecular * pointSpecularWeight * pointDiffuseWeight );\n}\n#endif\n#if MAX_DIR_LIGHTS > 0\nvec4 dirTotal = vec4( vec3( 0.0 ), 1.0 );\nfor( int i = 0; i < MAX_DIR_LIGHTS; i++ ) {\nvec4 lDirection = viewMatrix * vec4( directionalLightDirection[ i ], 0.0 );\nvec3 dirVector = normalize( lDirection.xyz );\nvec3 dirHalfVector = normalize( lDirection.xyz + viewPosition );\nfloat dirDotNormalHalf = dot( normal, dirHalfVector );\nfloat dirDiffuseWeight = max( dot( normal, dirVector ), 0.0 );\nfloat dirSpecularWeight = 0.0;\nif ( dirDotNormalHalf >= 0.0 )\ndirSpecularWeight = specularTex.r * pow( dirDotNormalHalf, uShininess );\ndirTotal += vec4( directionalLightColor[ i ], 1.0 ) * ( mColor * dirDiffuseWeight + mSpecular * dirSpecularWeight * dirDiffuseWeight );\n}\n#endif\nvec4 totalLight = vec4( ambientLightColor * uAmbientColor, uOpacity );\n#if MAX_DIR_LIGHTS > 0\ntotalLight += dirTotal;\n#endif\n#if MAX_POINT_LIGHTS > 0\ntotalLight += pointTotal;\n#endif\ngl_FragColor = gl_FragColor * totalLight;",
THREE.ShaderChunk.fog_fragment,"}"].join("\n"),vertexShader:"attribute vec4 tangent;\n#ifdef VERTEX_TEXTURES\nuniform sampler2D tDisplacement;\nuniform float uDisplacementScale;\nuniform float uDisplacementBias;\n#endif\nvarying vec3 vTangent;\nvarying vec3 vBinormal;\nvarying vec3 vNormal;\nvarying vec2 vUv;\n#if MAX_POINT_LIGHTS > 0\nuniform vec3 pointLightPosition[ MAX_POINT_LIGHTS ];\nuniform float pointLightDistance[ MAX_POINT_LIGHTS ];\nvarying vec4 vPointLight[ MAX_POINT_LIGHTS ];\n#endif\nvarying vec3 vViewPosition;\nvoid main() {\nvec4 mPosition = objectMatrix * vec4( position, 1.0 );\nvec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );\nvViewPosition = -mvPosition.xyz;\nvNormal = normalize( normalMatrix * normal );\nvTangent = normalize( normalMatrix * tangent.xyz );\nvBinormal = cross( vNormal, vTangent ) * tangent.w;\nvBinormal = normalize( vBinormal );\nvUv = uv;\n#if MAX_POINT_LIGHTS > 0\nfor( int i = 0; i < MAX_POINT_LIGHTS; i++ ) {\nvec4 lPosition = viewMatrix * vec4( pointLightPosition[ i ], 1.0 );\nvec3 lVector = lPosition.xyz - mvPosition.xyz;\nfloat lDistance = 1.0;\nif ( pointLightDistance[ i ] > 0.0 )\nlDistance = 1.0 - min( ( length( lVector ) / pointLightDistance[ i ] ), 1.0 );\nlVector = normalize( lVector );\nvPointLight[ i ] = vec4( lVector, lDistance );\n}\n#endif\n#ifdef VERTEX_TEXTURES\nvec3 dv = texture2D( tDisplacement, uv ).xyz;\nfloat df = uDisplacementScale * dv.x + uDisplacementBias;\nvec4 displacedPosition = vec4( vNormal.xyz * df, 0.0 ) + mvPosition;\ngl_Position = projectionMatrix * displacedPosition;\n#else\ngl_Position = projectionMatrix * mvPosition;\n#endif\n}"},
cube:{uniforms:{tCube:{type:"t",value:1,texture:null}},vertexShader:"varying vec3 vViewPosition;\nvoid main() {\nvec4 mPosition = objectMatrix * vec4( position, 1.0 );\nvViewPosition = cameraPosition - mPosition.xyz;\ngl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );\n}",fragmentShader:"uniform samplerCube tCube;\nvarying vec3 vViewPosition;\nvoid main() {\nvec3 wPos = cameraPosition - vViewPosition;\ngl_FragColor = textureCube( tCube, vec3( - wPos.x, wPos.yz ) );\n}"}}};
THREE.Curve=function(){};THREE.Curve.prototype.getPoint=function(){console.log("Warning, getPoint() not implemented!");return null};THREE.Curve.prototype.getPointAt=function(b){return this.getPoint(this.getUtoTmapping(b))};THREE.Curve.prototype.getPoints=function(b){b||(b=5);var c,e=[];for(c=0;c<=b;c++)e.push(this.getPoint(c/b));return e};THREE.Curve.prototype.getSpacedPoints=function(b){b||(b=5);var c,e=[];for(c=0;c<=b;c++)e.push(this.getPointAt(c/b));return e};
THREE.Curve.prototype.getLength=function(){var b=this.getLengths();return b[b.length-1]};THREE.Curve.prototype.getLengths=function(b){b||(b=200);if(this.cacheArcLengths&&this.cacheArcLengths.length==b+1)return this.cacheArcLengths;var c=[],e,f=this.getPoint(0),k,m=0;c.push(0);for(k=1;k<=b;k++)e=this.getPoint(k/b),m+=e.distanceTo(f),c.push(m),f=e;return this.cacheArcLengths=c};
THREE.Curve.prototype.getUtoTmapping=function(b,c){var e=this.getLengths(),f=0,k=e.length,m;m=c?c:b*e[k-1];time=Date.now();for(var h=0,n=k-1,o;h<=n;)if(f=Math.floor(h+(n-h)/2),o=e[f]-m,o<0)h=f+1;else if(o>0)n=f-1;else{n=f;break}f=n;if(e[f]==m)return f/(k-1);h=e[f];return(f+(m-h)/(e[f+1]-h))/(k-1)};THREE.Curve.prototype.getNormalVector=function(b){b=this.getTangent(b);return new THREE.Vector2(-b.y,b.x)};
THREE.Curve.prototype.getTangent=function(b){var c=b-1.0E-4;b+=1.0E-4;c<0&&(c=0);b>1&&(b=1);var c=this.getPoint(c),b=this.getPoint(b),e=new THREE.Vector2;e.sub(b,c);return e.unit()};THREE.LineCurve=function(b,c){b instanceof THREE.Vector2?(this.v1=b,this.v2=c):THREE.LineCurve.oldConstructor.apply(this,arguments)};THREE.LineCurve.oldConstructor=function(b,c,e,f){this.constructor(new THREE.Vector2(b,c),new THREE.Vector2(e,f))};THREE.LineCurve.prototype=new THREE.Curve;
THREE.LineCurve.prototype.constructor=THREE.LineCurve;THREE.LineCurve.prototype.getPoint=function(b){var c=new THREE.Vector2;c.sub(this.v2,this.v1);c.multiplyScalar(b).addSelf(this.v1);return c};THREE.LineCurve.prototype.getPointAt=function(b){return this.getPoint(b)};THREE.LineCurve.prototype.getTangent=function(){var b=new THREE.Vector2;b.sub(this.v2,this.v1);b.normalize();return b};
THREE.QuadraticBezierCurve=function(b,c,e){if(!(c instanceof THREE.Vector2))var f=Array.prototype.slice.call(arguments),b=new THREE.Vector2(f[0],f[1]),c=new THREE.Vector2(f[2],f[3]),e=new THREE.Vector2(f[4],f[5]);this.v0=b;this.v1=c;this.v2=e};THREE.QuadraticBezierCurve.prototype=new THREE.Curve;THREE.QuadraticBezierCurve.prototype.constructor=THREE.QuadraticBezierCurve;
THREE.QuadraticBezierCurve.prototype.getPoint=function(b){var c;c=THREE.Shape.Utils.b2(b,this.v0.x,this.v1.x,this.v2.x);b=THREE.Shape.Utils.b2(b,this.v0.y,this.v1.y,this.v2.y);return new THREE.Vector2(c,b)};THREE.QuadraticBezierCurve.prototype.getTangent=function(b){var c;c=THREE.Curve.Utils.tangentQuadraticBezier(b,this.v0.x,this.v1.x,this.v2.x);b=THREE.Curve.Utils.tangentQuadraticBezier(b,this.v0.y,this.v1.y,this.v2.y);c=new THREE.Vector2(c,b);c.normalize();return c};
THREE.CubicBezierCurve=function(b,c,e,f){if(!(c instanceof THREE.Vector2))var k=Array.prototype.slice.call(arguments),b=new THREE.Vector2(k[0],k[1]),c=new THREE.Vector2(k[2],k[3]),e=new THREE.Vector2(k[4],k[5]),f=new THREE.Vector2(k[6],k[7]);this.v0=b;this.v1=c;this.v2=e;this.v3=f};THREE.CubicBezierCurve.prototype=new THREE.Curve;THREE.CubicBezierCurve.prototype.constructor=THREE.CubicBezierCurve;
THREE.CubicBezierCurve.prototype.getPoint=function(b){var c;c=THREE.Shape.Utils.b3(b,this.v0.x,this.v1.x,this.v2.x,this.v3.x);b=THREE.Shape.Utils.b3(b,this.v0.y,this.v1.y,this.v2.y,this.v3.y);return new THREE.Vector2(c,b)};THREE.CubicBezierCurve.prototype.getTangent=function(b){var c;c=THREE.Curve.Utils.tangentCubicBezier(b,this.v0.x,this.v1.x,this.v2.x,this.v3.x);b=THREE.Curve.Utils.tangentCubicBezier(b,this.v0.y,this.v1.y,this.v2.y,this.v3.y);c=new THREE.Vector2(c,b);c.normalize();return c};
THREE.SplineCurve=function(b){this.points=b};THREE.SplineCurve.prototype=new THREE.Curve;THREE.SplineCurve.prototype.constructor=THREE.SplineCurve;
THREE.SplineCurve.prototype.getPoint=function(b){var c=new THREE.Vector2,e=[],f=this.points,k;k=(f.length-1)*b;b=Math.floor(k);k-=b;e[0]=b==0?b:b-1;e[1]=b;e[2]=b>f.length-2?b:b+1;e[3]=b>f.length-3?b:b+2;c.x=THREE.Curve.Utils.interpolate(f[e[0]].x,f[e[1]].x,f[e[2]].x,f[e[3]].x,k);c.y=THREE.Curve.Utils.interpolate(f[e[0]].y,f[e[1]].y,f[e[2]].y,f[e[3]].y,k);return c};THREE.ArcCurve=function(b,c,e,f,k,m){this.aX=b;this.aY=c;this.aRadius=e;this.aStartAngle=f;this.aEndAngle=k;this.aClockwise=m};
THREE.ArcCurve.prototype=new THREE.Curve;THREE.ArcCurve.prototype.constructor=THREE.ArcCurve;THREE.ArcCurve.prototype.getPoint=function(b){var c=this.aEndAngle-this.aStartAngle;this.aClockwise||(b=1-b);b=this.aStartAngle+b*c;return new THREE.Vector2(this.aX+this.aRadius*Math.cos(b),this.aY+this.aRadius*Math.sin(b))};
THREE.Curve.Utils={tangentQuadraticBezier:function(b,c,e,f){return 2*(1-b)*(e-c)+2*b*(f-e)},tangentCubicBezier:function(b,c,e,f,k){return-3*c*(1-b)*(1-b)+3*e*(1-b)*(1-b)-6*b*e*(1-b)+6*b*f*(1-b)-3*b*b*f+3*b*b*k},tangentSpline:function(b){return 6*b*b-6*b+(3*b*b-4*b+1)+(-6*b*b+6*b)+(3*b*b-2*b)},interpolate:function(b,c,e,f,k){var b=(e-b)*0.5,f=(f-c)*0.5,m=k*k;return(2*c-2*e+b+f)*k*m+(-3*c+3*e-2*b-f)*m+b*k+c}};
THREE.Curve.create=function(b,c){b.prototype=new THREE.Curve;b.prototype.constructor=b;b.prototype.getPoint=c;return b};THREE.LineCurve3=THREE.Curve.create(function(b,c){this.v1=b;this.v2=c},function(b){var c=new THREE.Vector3;c.sub(v2,v1);c.multiplyScalar(b);c.addSelf(this.v1);return c});
THREE.QuadraticBezierCurve3=THREE.Curve.create(function(b,c,e){this.v0=b;this.v1=c;this.v2=e},function(b){var c,e;c=THREE.Shape.Utils.b2(b,this.v0.x,this.v1.x,this.v2.x);e=THREE.Shape.Utils.b2(b,this.v0.y,this.v1.y,this.v2.y);b=THREE.Shape.Utils.b2(b,this.v0.z,this.v1.z,this.v2.z);return new THREE.Vector3(c,e,b)});THREE.CurvePath=function(){this.curves=[];this.bends=[]};THREE.CurvePath.prototype=new THREE.Curve;THREE.CurvePath.prototype.constructor=THREE.CurvePath;THREE.CurvePath.prototype.add=function(b){this.curves.push(b)};
THREE.CurvePath.prototype.checkConnection=function(){};THREE.CurvePath.prototype.closePath=function(){};THREE.CurvePath.prototype.getPoint=function(b){for(var c=b*this.getLength(),e=this.getCurveLengths(),b=0;b<e.length;){if(e[b]>=c)return c=e[b]-c,b=this.curves[b],c=1-c/b.getLength(),b.getPointAt(c);b++}return null};THREE.CurvePath.prototype.getLength=function(){var b=this.getCurveLengths();return b[b.length-1]};
THREE.CurvePath.prototype.getCurveLengths=function(){if(this.cacheLengths&&this.cacheLengths.length==this.curves.length)return this.cacheLengths;var b=[],c=0,e,f=this.curves.length;for(e=0;e<f;e++)c+=this.curves[e].getLength(),b.push(c);return this.cacheLengths=b};
THREE.CurvePath.prototype.getBoundingBox=function(){var b=this.getPoints(),c,e,f,k;c=e=Number.NEGATIVE_INFINITY;f=k=Number.POSITIVE_INFINITY;var m,h,n,o;o=new THREE.Vector2;h=0;for(n=b.length;h<n;h++){m=b[h];if(m.x>c)c=m.x;else if(m.x<f)f=m.x;if(m.y>e)e=m.y;else if(m.y<e)k=m.y;o.addSelf(m.x,m.y)}return{minX:f,minY:k,maxX:c,maxY:e,centroid:o.divideScalar(n)}};THREE.CurvePath.prototype.createPointsGeometry=function(b){return this.createGeometry(this.getPoints(b,true))};
THREE.CurvePath.prototype.createSpacedPointsGeometry=function(b){return this.createGeometry(this.getSpacedPoints(b,true))};THREE.CurvePath.prototype.createGeometry=function(b){for(var c=new THREE.Geometry,e=0;e<b.length;e++)c.vertices.push(new THREE.Vertex(new THREE.Vector3(b[e].x,b[e].y,0)));return c};THREE.CurvePath.prototype.addWrapPath=function(b){this.bends.push(b)};
THREE.CurvePath.prototype.getTransformedPoints=function(b,c){var e=this.getPoints(b),f,k;if(!c)c=this.bends;f=0;for(k=c.length;f<k;f++)e=this.getWrapPoints(e,c[f]);return e};THREE.CurvePath.prototype.getTransformedSpacedPoints=function(b,c){var e=this.getSpacedPoints(b),f,k;if(!c)c=this.bends;f=0;for(k=c.length;f<k;f++)e=this.getWrapPoints(e,c[f]);return e};
THREE.CurvePath.prototype.getWrapPoints=function(b,c){var e=this.getBoundingBox(),f,k,m,h,n,o;f=0;for(k=b.length;f<k;f++)m=b[f],h=m.x,n=m.y,o=h/e.maxX,o=c.getUtoTmapping(o,h),h=c.getPoint(o),n=c.getNormalVector(o).multiplyScalar(n),m.x=h.x+n.x,m.y=h.y+n.y;return b};THREE.Path=function(b){THREE.CurvePath.call(this);this.actions=[];b&&this.fromPoints(b)};THREE.Path.prototype=new THREE.CurvePath;THREE.Path.prototype.constructor=THREE.Path;
THREE.PathActions={MOVE_TO:"moveTo",LINE_TO:"lineTo",QUADRATIC_CURVE_TO:"quadraticCurveTo",BEZIER_CURVE_TO:"bezierCurveTo",CSPLINE_THRU:"splineThru",ARC:"arc"};THREE.Path.prototype.fromPoints=function(b){this.moveTo(b[0].x,b[0].y);var c,e=b.length;for(c=1;c<e;c++)this.lineTo(b[c].x,b[c].y)};THREE.Path.prototype.moveTo=function(){var b=Array.prototype.slice.call(arguments);this.actions.push({action:THREE.PathActions.MOVE_TO,args:b})};
THREE.Path.prototype.lineTo=function(b,c){var e=Array.prototype.slice.call(arguments),f=this.actions[this.actions.length-1].args;this.curves.push(new THREE.LineCurve(new THREE.Vector2(f[f.length-2],f[f.length-1]),new THREE.Vector2(b,c)));this.actions.push({action:THREE.PathActions.LINE_TO,args:e})};
THREE.Path.prototype.quadraticCurveTo=function(b,c,e,f){var k=Array.prototype.slice.call(arguments),m=this.actions[this.actions.length-1].args;this.curves.push(new THREE.QuadraticBezierCurve(new THREE.Vector2(m[m.length-2],m[m.length-1]),new THREE.Vector2(b,c),new THREE.Vector2(e,f)));this.actions.push({action:THREE.PathActions.QUADRATIC_CURVE_TO,args:k})};
THREE.Path.prototype.bezierCurveTo=function(b,c,e,f,k,m){var h=Array.prototype.slice.call(arguments),n=this.actions[this.actions.length-1].args;this.curves.push(new THREE.CubicBezierCurve(new THREE.Vector2(n[n.length-2],n[n.length-1]),new THREE.Vector2(b,c),new THREE.Vector2(e,f),new THREE.Vector2(k,m)));this.actions.push({action:THREE.PathActions.BEZIER_CURVE_TO,args:h})};
THREE.Path.prototype.splineThru=function(b){var c=Array.prototype.slice.call(arguments),e=this.actions[this.actions.length-1].args,e=[new THREE.Vector2(e[e.length-2],e[e.length-1])],e=e.concat(b);this.curves.push(new THREE.SplineCurve(e));this.actions.push({action:THREE.PathActions.CSPLINE_THRU,args:c})};THREE.Path.prototype.arc=function(b,c,e,f,k,m){var h=Array.prototype.slice.call(arguments);this.curves.push(new THREE.ArcCurve(b,c,e,f,k,m));this.actions.push({action:THREE.PathActions.ARC,args:h})};
THREE.Path.prototype.getSpacedPoints=function(b){b||(b=40);for(var c=[],e=0;e<b;e++)c.push(this.getPoint(e/b));return c};
THREE.Path.prototype.getPoints=function(b,c){var b=b||12,e=[],f,k,m,h,n,o,t,u,v,x,w,B,A;f=0;for(k=this.actions.length;f<k;f++)switch(m=this.actions[f],h=m.action,m=m.args,h){case THREE.PathActions.LINE_TO:e.push(new THREE.Vector2(m[0],m[1]));break;case THREE.PathActions.QUADRATIC_CURVE_TO:n=m[2];o=m[3];v=m[0];x=m[1];e.length>0?(h=e[e.length-1],w=h.x,B=h.y):(h=this.actions[f-1].args,w=h[h.length-2],B=h[h.length-1]);for(h=1;h<=b;h++)A=h/b,m=THREE.Shape.Utils.b2(A,w,v,n),A=THREE.Shape.Utils.b2(A,B,x,
o),e.push(new THREE.Vector2(m,A));break;case THREE.PathActions.BEZIER_CURVE_TO:n=m[4];o=m[5];v=m[0];x=m[1];t=m[2];u=m[3];e.length>0?(h=e[e.length-1],w=h.x,B=h.y):(h=this.actions[f-1].args,w=h[h.length-2],B=h[h.length-1]);for(h=1;h<=b;h++)A=h/b,m=THREE.Shape.Utils.b3(A,w,v,t,n),A=THREE.Shape.Utils.b3(A,B,x,u,o),e.push(new THREE.Vector2(m,A));break;case THREE.PathActions.CSPLINE_THRU:h=this.actions[f-1].args;h=[new THREE.Vector2(h[h.length-2],h[h.length-1])];A=b*m[0].length;h=h.concat(m[0]);m=new THREE.SplineCurve(h);
for(h=1;h<=A;h++)e.push(m.getPointAt(h/A));break;case THREE.PathActions.ARC:h=this.actions[f-1].args;n=m[0];o=m[1];t=m[2];v=m[3];A=m[4];x=!!m[5];u=h[h.length-2];w=h[h.length-1];h.length==0&&(u=w=0);B=A-v;var y=b*2;for(h=1;h<=y;h++)A=h/y,x||(A=1-A),A=v+A*B,m=u+n+t*Math.cos(A),A=w+o+t*Math.sin(A),e.push(new THREE.Vector2(m,A))}c&&e.push(e[0]);return e};THREE.Path.prototype.transform=function(b,c){this.getBoundingBox();return this.getWrapPoints(this.getPoints(c),b)};
THREE.Path.prototype.nltransform=function(b,c,e,f,k,m){var h=this.getPoints(),n,o,t,u,v;n=0;for(o=h.length;n<o;n++)t=h[n],u=t.x,v=t.y,t.x=b*u+c*v+e,t.y=f*v+k*u+m;return h};
THREE.Path.prototype.debug=function(b){var c=this.getBoundingBox();b||(b=document.createElement("canvas"),b.setAttribute("width",c.maxX+100),b.setAttribute("height",c.maxY+100),document.body.appendChild(b));c=b.getContext("2d");c.fillStyle="white";c.fillRect(0,0,b.width,b.height);c.strokeStyle="black";c.beginPath();var e,f,k,b=0;for(e=this.actions.length;b<e;b++)f=this.actions[b],k=f.args,f=f.action,f!=THREE.PathActions.CSPLINE_THRU&&c[f].apply(c,k);c.stroke();c.closePath();c.strokeStyle="red";f=
this.getPoints();b=0;for(e=f.length;b<e;b++)k=f[b],c.beginPath(),c.arc(k.x,k.y,1.5,0,Math.PI*2,false),c.stroke(),c.closePath()};
THREE.Path.prototype.toShapes=function(){var b,c,e,f,k=[],m=new THREE.Path;b=0;for(c=this.actions.length;b<c;b++)e=this.actions[b],f=e.args,e=e.action,e==THREE.PathActions.MOVE_TO&&m.actions.length!=0&&(k.push(m),m=new THREE.Path),m[e].apply(m,f);m.actions.length!=0&&k.push(m);if(k.length==0)return[];var h,m=[];if(THREE.Shape.Utils.isClockWise(k[0].getPoints())){b=0;for(c=k.length;b<c;b++)f=k[b],THREE.Shape.Utils.isClockWise(f.getPoints())?(h&&m.push(h),h=new THREE.Shape,h.actions=f.actions,h.curves=
f.curves):h.holes.push(f);m.push(h)}else{h=new THREE.Shape;b=0;for(c=k.length;b<c;b++)f=k[b],THREE.Shape.Utils.isClockWise(f.getPoints())?(h.actions=f.actions,h.curves=f.curves,m.push(h),h=new THREE.Shape):h.holes.push(f)}return m};THREE.Shape=function(){THREE.Path.apply(this,arguments);this.holes=[]};THREE.Shape.prototype=new THREE.Path;THREE.Shape.prototype.constructor=THREE.Path;THREE.Shape.prototype.extrude=function(b){return new THREE.ExtrudeGeometry(this,b)};
THREE.Shape.prototype.getPointsHoles=function(b){var c,e=this.holes.length,f=[];for(c=0;c<e;c++)f[c]=this.holes[c].getTransformedPoints(b,this.bends);return f};THREE.Shape.prototype.getSpacedPointsHoles=function(b){var c,e=this.holes.length,f=[];for(c=0;c<e;c++)f[c]=this.holes[c].getTransformedSpacedPoints(b,this.bends);return f};THREE.Shape.prototype.extractAllPoints=function(b){return{shape:this.getTransformedPoints(b),holes:this.getPointsHoles(b)}};
THREE.Shape.prototype.extractAllSpacedPoints=function(b){return{shape:this.getTransformedSpacedPoints(b),holes:this.getSpacedPointsHoles(b)}};
THREE.Shape.Utils={removeHoles:function(b,c){var e=b.concat(),f=e.concat(),k,m,h,n,o,t,u,v,x,w,B=[];for(o=0;o<c.length;o++){t=c[o];f=f.concat(t);m=Number.POSITIVE_INFINITY;for(k=0;k<t.length;k++){x=t[k];w=[];for(v=0;v<e.length;v++)u=e[v],u=x.distanceToSquared(u),w.push(u),u<m&&(m=u,h=k,n=v)}k=n-1>=0?n-1:e.length-1;m=h-1>=0?h-1:t.length-1;var A=[t[h],e[n],e[k]];v=THREE.FontUtils.Triangulate.area(A);var y=[t[h],t[m],e[n]];x=THREE.FontUtils.Triangulate.area(y);w=n;u=h;n+=1;h+=-1;n<0&&(n+=e.length);n%=
e.length;h<0&&(h+=t.length);h%=t.length;k=n-1>=0?n-1:e.length-1;m=h-1>=0?h-1:t.length-1;A=[t[h],e[n],e[k]];A=THREE.FontUtils.Triangulate.area(A);y=[t[h],t[m],e[n]];y=THREE.FontUtils.Triangulate.area(y);v+x>A+y&&(n=w,h=u,n<0&&(n+=e.length),n%=e.length,h<0&&(h+=t.length),h%=t.length,k=n-1>=0?n-1:e.length-1,m=h-1>=0?h-1:t.length-1);v=e.slice(0,n);x=e.slice(n);w=t.slice(h);u=t.slice(0,h);m=[t[h],t[m],e[n]];B.push([t[h],e[n],e[k]]);B.push(m);e=v.concat(w).concat(u).concat(x)}return{shape:e,isolatedPts:B,
allpoints:f}},triangulateShape:function(b,c){var e=THREE.Shape.Utils.removeHoles(b,c),f=e.allpoints,k=e.isolatedPts,e=THREE.FontUtils.Triangulate(e.shape,false),m,h,n,o,t={};m=0;for(h=f.length;m<h;m++)o=f[m].x+":"+f[m].y,t[o]!==void 0&&console.log("Duplicate point",o),t[o]=m;m=0;for(h=e.length;m<h;m++){n=e[m];for(f=0;f<3;f++)o=n[f].x+":"+n[f].y,o=t[o],o!==void 0&&(n[f]=o)}m=0;for(h=k.length;m<h;m++){n=k[m];for(f=0;f<3;f++)o=n[f].x+":"+n[f].y,o=t[o],o!==void 0&&(n[f]=o)}return e.concat(k)},isClockWise:function(b){return THREE.FontUtils.Triangulate.area(b)<
0},b2p0:function(b,c){var e=1-b;return e*e*c},b2p1:function(b,c){return 2*(1-b)*b*c},b2p2:function(b,c){return b*b*c},b2:function(b,c,e,f){return this.b2p0(b,c)+this.b2p1(b,e)+this.b2p2(b,f)},b3p0:function(b,c){var e=1-b;return e*e*e*c},b3p1:function(b,c){var e=1-b;return 3*e*e*b*c},b3p2:function(b,c){return 3*(1-b)*b*b*c},b3p3:function(b,c){return b*b*b*c},b3:function(b,c,e,f,k){return this.b3p0(b,c)+this.b3p1(b,e)+this.b3p2(b,f)+this.b3p3(b,k)}};
THREE.TextPath=function(b,c){THREE.Path.call(this);this.parameters=c||{};this.set(b)};THREE.TextPath.prototype.set=function(b,c){this.text=b;var c=c||this.parameters,e=c.curveSegments!==void 0?c.curveSegments:4,f=c.font!==void 0?c.font:"helvetiker",k=c.weight!==void 0?c.weight:"normal",m=c.style!==void 0?c.style:"normal";THREE.FontUtils.size=c.size!==void 0?c.size:100;THREE.FontUtils.divisions=e;THREE.FontUtils.face=f;THREE.FontUtils.weight=k;THREE.FontUtils.style=m};
THREE.TextPath.prototype.toShapes=function(){for(var b=THREE.FontUtils.drawText(this.text).paths,c=[],e=0,f=b.length;e<f;e++)c=c.concat(b[e].toShapes());return c};
THREE.AnimationHandler=function(){var b=[],c={},e={update:function(e){for(var c=0;c<b.length;c++)b[c].update(e)},addToUpdate:function(e){b.indexOf(e)===-1&&b.push(e)},removeFromUpdate:function(e){e=b.indexOf(e);e!==-1&&b.splice(e,1)},add:function(b){c[b.name]!==void 0&&console.log("THREE.AnimationHandler.add: Warning! "+b.name+" already exists in library. Overwriting.");c[b.name]=b;if(b.initialized!==true){for(var e=0;e<b.hierarchy.length;e++){for(var f=0;f<b.hierarchy[e].keys.length;f++){if(b.hierarchy[e].keys[f].time<
0)b.hierarchy[e].keys[f].time=0;if(b.hierarchy[e].keys[f].rot!==void 0&&!(b.hierarchy[e].keys[f].rot instanceof THREE.Quaternion)){var n=b.hierarchy[e].keys[f].rot;b.hierarchy[e].keys[f].rot=new THREE.Quaternion(n[0],n[1],n[2],n[3])}}if(b.hierarchy[e].keys[0].morphTargets!==void 0){n={};for(f=0;f<b.hierarchy[e].keys.length;f++)for(var o=0;o<b.hierarchy[e].keys[f].morphTargets.length;o++){var t=b.hierarchy[e].keys[f].morphTargets[o];n[t]=-1}b.hierarchy[e].usedMorphTargets=n;for(f=0;f<b.hierarchy[e].keys.length;f++){var u=
{};for(t in n){for(o=0;o<b.hierarchy[e].keys[f].morphTargets.length;o++)if(b.hierarchy[e].keys[f].morphTargets[o]===t){u[t]=b.hierarchy[e].keys[f].morphTargetsInfluences[o];break}o===b.hierarchy[e].keys[f].morphTargets.length&&(u[t]=0)}b.hierarchy[e].keys[f].morphTargetsInfluences=u}}for(f=1;f<b.hierarchy[e].keys.length;f++)b.hierarchy[e].keys[f].time===b.hierarchy[e].keys[f-1].time&&(b.hierarchy[e].keys.splice(f,1),f--);for(f=1;f<b.hierarchy[e].keys.length;f++)b.hierarchy[e].keys[f].index=f}f=parseInt(b.length*
b.fps,10);b.JIT={};b.JIT.hierarchy=[];for(e=0;e<b.hierarchy.length;e++)b.JIT.hierarchy.push(Array(f));b.initialized=true}},get:function(b){if(typeof b==="string")return c[b]?c[b]:(console.log("THREE.AnimationHandler.get: Couldn't find animation "+b),null)},parse:function(b){var e=[];if(b instanceof THREE.SkinnedMesh)for(var c=0;c<b.bones.length;c++)e.push(b.bones[c]);else f(b,e);return e}},f=function(b,e){e.push(b);for(var c=0;c<b.children.length;c++)f(b.children[c],e)};e.LINEAR=0;e.CATMULLROM=1;
e.CATMULLROM_FORWARD=2;return e}();THREE.Animation=function(b,c,e,f){this.root=b;this.data=THREE.AnimationHandler.get(c);this.hierarchy=THREE.AnimationHandler.parse(b);this.currentTime=0;this.timeScale=1;this.isPlaying=false;this.loop=this.isPaused=true;this.interpolationType=e!==void 0?e:THREE.AnimationHandler.LINEAR;this.JITCompile=f!==void 0?f:true;this.points=[];this.target=new THREE.Vector3};
THREE.Animation.prototype.play=function(b,c){if(!this.isPlaying){this.isPlaying=true;this.loop=b!==void 0?b:true;this.currentTime=c!==void 0?c:0;var e,f=this.hierarchy.length,k;for(e=0;e<f;e++){k=this.hierarchy[e];if(this.interpolationType!==THREE.AnimationHandler.CATMULLROM_FORWARD)k.useQuaternion=true;k.matrixAutoUpdate=true;if(k.animationCache===void 0)k.animationCache={},k.animationCache.prevKey={pos:0,rot:0,scl:0},k.animationCache.nextKey={pos:0,rot:0,scl:0},k.animationCache.originalMatrix=k instanceof
THREE.Bone?k.skinMatrix:k.matrix;var m=k.animationCache.prevKey;k=k.animationCache.nextKey;m.pos=this.data.hierarchy[e].keys[0];m.rot=this.data.hierarchy[e].keys[0];m.scl=this.data.hierarchy[e].keys[0];k.pos=this.getNextKeyWith("pos",e,1);k.rot=this.getNextKeyWith("rot",e,1);k.scl=this.getNextKeyWith("scl",e,1)}this.update(0)}this.isPaused=false;THREE.AnimationHandler.addToUpdate(this)};
THREE.Animation.prototype.pause=function(){this.isPaused?THREE.AnimationHandler.addToUpdate(this):THREE.AnimationHandler.removeFromUpdate(this);this.isPaused=!this.isPaused};
THREE.Animation.prototype.stop=function(){this.isPaused=this.isPlaying=false;THREE.AnimationHandler.removeFromUpdate(this);for(var b=0;b<this.hierarchy.length;b++)if(this.hierarchy[b].animationCache!==void 0)this.hierarchy[b]instanceof THREE.Bone?this.hierarchy[b].skinMatrix=this.hierarchy[b].animationCache.originalMatrix:this.hierarchy[b].matrix=this.hierarchy[b].animationCache.originalMatrix,delete this.hierarchy[b].animationCache};
THREE.Animation.prototype.update=function(b){if(this.isPlaying){var c=["pos","rot","scl"],e,f,k,m,h,n,o,t,u=this.data.JIT.hierarchy,v,x;this.currentTime+=b*this.timeScale;x=this.currentTime;v=this.currentTime%=this.data.length;t=parseInt(Math.min(v*this.data.fps,this.data.length*this.data.fps),10);for(var w=0,B=this.hierarchy.length;w<B;w++)if(b=this.hierarchy[w],o=b.animationCache,this.JITCompile&&u[w][t]!==void 0)b instanceof THREE.Bone?(b.skinMatrix=u[w][t],b.matrixAutoUpdate=false,b.matrixWorldNeedsUpdate=
false):(b.matrix=u[w][t],b.matrixAutoUpdate=false,b.matrixWorldNeedsUpdate=true);else{if(this.JITCompile)b instanceof THREE.Bone?b.skinMatrix=b.animationCache.originalMatrix:b.matrix=b.animationCache.originalMatrix;for(var A=0;A<3;A++){e=c[A];h=o.prevKey[e];n=o.nextKey[e];if(n.time<=x){if(v<x)if(this.loop){h=this.data.hierarchy[w].keys[0];for(n=this.getNextKeyWith(e,w,1);n.time<v;)h=n,n=this.getNextKeyWith(e,w,n.index+1)}else{this.stop();return}else{do h=n,n=this.getNextKeyWith(e,w,n.index+1);while(n.time<
v)}o.prevKey[e]=h;o.nextKey[e]=n}b.matrixAutoUpdate=true;b.matrixWorldNeedsUpdate=true;f=(v-h.time)/(n.time-h.time);k=h[e];m=n[e];if(f<0||f>1)console.log("THREE.Animation.update: Warning! Scale out of bounds:"+f+" on bone "+w),f=f<0?0:1;if(e==="pos")if(e=b.position,this.interpolationType===THREE.AnimationHandler.LINEAR)e.x=k[0]+(m[0]-k[0])*f,e.y=k[1]+(m[1]-k[1])*f,e.z=k[2]+(m[2]-k[2])*f;else{if(this.interpolationType===THREE.AnimationHandler.CATMULLROM||this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD)if(this.points[0]=
this.getPrevKeyWith("pos",w,h.index-1).pos,this.points[1]=k,this.points[2]=m,this.points[3]=this.getNextKeyWith("pos",w,n.index+1).pos,f=f*0.33+0.33,k=this.interpolateCatmullRom(this.points,f),e.x=k[0],e.y=k[1],e.z=k[2],this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD)f=this.interpolateCatmullRom(this.points,f*1.01),this.target.set(f[0],f[1],f[2]),this.target.subSelf(e),this.target.y=0,this.target.normalize(),f=Math.atan2(this.target.x,this.target.z),b.rotation.set(0,f,0)}else if(e===
"rot")THREE.Quaternion.slerp(k,m,b.quaternion,f);else if(e==="scl")e=b.scale,e.x=k[0]+(m[0]-k[0])*f,e.y=k[1]+(m[1]-k[1])*f,e.z=k[2]+(m[2]-k[2])*f}}if(this.JITCompile&&u[0][t]===void 0){this.hierarchy[0].update(void 0,true);for(w=0;w<this.hierarchy.length;w++)u[w][t]=this.hierarchy[w]instanceof THREE.Bone?this.hierarchy[w].skinMatrix.clone():this.hierarchy[w].matrix.clone()}}};
THREE.Animation.prototype.interpolateCatmullRom=function(b,c){var e=[],f=[],k,m,h,n,o,t;k=(b.length-1)*c;m=Math.floor(k);k-=m;e[0]=m==0?m:m-1;e[1]=m;e[2]=m>b.length-2?m:m+1;e[3]=m>b.length-3?m:m+2;m=b[e[0]];n=b[e[1]];o=b[e[2]];t=b[e[3]];e=k*k;h=k*e;f[0]=this.interpolate(m[0],n[0],o[0],t[0],k,e,h);f[1]=this.interpolate(m[1],n[1],o[1],t[1],k,e,h);f[2]=this.interpolate(m[2],n[2],o[2],t[2],k,e,h);return f};
THREE.Animation.prototype.interpolate=function(b,c,e,f,k,m,h){b=(e-b)*0.5;f=(f-c)*0.5;return(2*(c-e)+b+f)*h+(-3*(c-e)-2*b-f)*m+b*k+c};THREE.Animation.prototype.getNextKeyWith=function(b,c,e){var f=this.data.hierarchy[c].keys;for(this.interpolationType===THREE.AnimationHandler.CATMULLROM||this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD?e=e<f.length-1?e:f.length-1:e%=f.length;e<f.length;e++)if(f[e][b]!==void 0)return f[e];return this.data.hierarchy[c].keys[0]};
THREE.Animation.prototype.getPrevKeyWith=function(b,c,e){for(var f=this.data.hierarchy[c].keys,e=this.interpolationType===THREE.AnimationHandler.CATMULLROM||this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD?e>0?e:0:e>=0?e:e+f.length;e>=0;e--)if(f[e][b]!==void 0)return f[e];return this.data.hierarchy[c].keys[f.length-1]};
THREE.FirstPersonCamera=function(b){function c(b,c){return function(){c.apply(b,arguments)}}THREE.Camera.call(this,b.fov,b.aspect,b.near,b.far,b.target);this.movementSpeed=1;this.lookSpeed=0.005;this.noFly=false;this.lookVertical=true;this.autoForward=false;this.activeLook=true;this.heightSpeed=false;this.heightCoef=1;this.heightMin=0;this.constrainVertical=false;this.verticalMin=0;this.verticalMax=3.14;this.domElement=document;this.lastUpdate=(new Date).getTime();this.tdiff=0;if(b){if(b.movementSpeed!==
void 0)this.movementSpeed=b.movementSpeed;if(b.lookSpeed!==void 0)this.lookSpeed=b.lookSpeed;if(b.noFly!==void 0)this.noFly=b.noFly;if(b.lookVertical!==void 0)this.lookVertical=b.lookVertical;if(b.autoForward!==void 0)this.autoForward=b.autoForward;if(b.activeLook!==void 0)this.activeLook=b.activeLook;if(b.heightSpeed!==void 0)this.heightSpeed=b.heightSpeed;if(b.heightCoef!==void 0)this.heightCoef=b.heightCoef;if(b.heightMin!==void 0)this.heightMin=b.heightMin;if(b.heightMax!==void 0)this.heightMax=
b.heightMax;if(b.constrainVertical!==void 0)this.constrainVertical=b.constrainVertical;if(b.verticalMin!==void 0)this.verticalMin=b.verticalMin;if(b.verticalMax!==void 0)this.verticalMax=b.verticalMax;if(b.domElement!==void 0)this.domElement=b.domElement}this.theta=this.phi=this.lon=this.lat=this.mouseY=this.mouseX=this.autoSpeedFactor=0;this.mouseDragOn=this.freeze=this.moveRight=this.moveLeft=this.moveBackward=this.moveForward=false;this.windowHalfX=window.innerWidth/2;this.windowHalfY=window.innerHeight/
2;this.onMouseDown=function(b){b.preventDefault();b.stopPropagation();if(this.activeLook)switch(b.button){case 0:this.moveForward=true;break;case 2:this.moveBackward=true}this.mouseDragOn=true};this.onMouseUp=function(b){b.preventDefault();b.stopPropagation();if(this.activeLook)switch(b.button){case 0:this.moveForward=false;break;case 2:this.moveBackward=false}this.mouseDragOn=false};this.onMouseMove=function(b){this.mouseX=b.clientX-this.windowHalfX;this.mouseY=b.clientY-this.windowHalfY};this.onKeyDown=
function(b){switch(b.keyCode){case 38:case 87:this.moveForward=true;break;case 37:case 65:this.moveLeft=true;break;case 40:case 83:this.moveBackward=true;break;case 39:case 68:this.moveRight=true;break;case 82:this.moveUp=true;break;case 70:this.moveDown=true;break;case 81:this.freeze=!this.freeze}};this.onKeyUp=function(b){switch(b.keyCode){case 38:case 87:this.moveForward=false;break;case 37:case 65:this.moveLeft=false;break;case 40:case 83:this.moveBackward=false;break;case 39:case 68:this.moveRight=
false;break;case 82:this.moveUp=false;break;case 70:this.moveDown=false}};this.update=function(){var b=(new Date).getTime();this.tdiff=(b-this.lastUpdate)/1E3;this.lastUpdate=b;if(!this.freeze){this.autoSpeedFactor=this.heightSpeed?this.tdiff*((this.position.y<this.heightMin?this.heightMin:this.position.y>this.heightMax?this.heightMax:this.position.y)-this.heightMin)*this.heightCoef:0;var c=this.tdiff*this.movementSpeed;(this.moveForward||this.autoForward&&!this.moveBackward)&&this.translateZ(-(c+
this.autoSpeedFactor));this.moveBackward&&this.translateZ(c);this.moveLeft&&this.translateX(-c);this.moveRight&&this.translateX(c);this.moveUp&&this.translateY(c);this.moveDown&&this.translateY(-c);c=this.tdiff*this.lookSpeed;this.activeLook||(c=0);this.lon+=this.mouseX*c;this.lookVertical&&(this.lat-=this.mouseY*c);this.lat=Math.max(-85,Math.min(85,this.lat));this.phi=(90-this.lat)*Math.PI/180;this.theta=this.lon*Math.PI/180;var b=this.target.position,k=this.position;b.x=k.x+100*Math.sin(this.phi)*
Math.cos(this.theta);b.y=k.y+100*Math.cos(this.phi);b.z=k.z+100*Math.sin(this.phi)*Math.sin(this.theta)}b=1;this.constrainVertical&&(b=3.14/(this.verticalMax-this.verticalMin));this.lon+=this.mouseX*c;this.lookVertical&&(this.lat-=this.mouseY*c*b);this.lat=Math.max(-85,Math.min(85,this.lat));this.phi=(90-this.lat)*Math.PI/180;this.theta=this.lon*Math.PI/180;if(this.constrainVertical)this.phi=(this.phi-0)*(this.verticalMax-this.verticalMin)/3.14+this.verticalMin;b=this.target.position;k=this.position;
b.x=k.x+100*Math.sin(this.phi)*Math.cos(this.theta);b.y=k.y+100*Math.cos(this.phi);b.z=k.z+100*Math.sin(this.phi)*Math.sin(this.theta);this.supr.update.call(this)};this.domElement.addEventListener("contextmenu",function(b){b.preventDefault()},false);this.domElement.addEventListener("mousemove",c(this,this.onMouseMove),false);this.domElement.addEventListener("mousedown",c(this,this.onMouseDown),false);this.domElement.addEventListener("mouseup",c(this,this.onMouseUp),false);this.domElement.addEventListener("keydown",
c(this,this.onKeyDown),false);this.domElement.addEventListener("keyup",c(this,this.onKeyUp),false)};THREE.FirstPersonCamera.prototype=new THREE.Camera;THREE.FirstPersonCamera.prototype.constructor=THREE.FirstPersonCamera;THREE.FirstPersonCamera.prototype.supr=THREE.Camera.prototype;THREE.FirstPersonCamera.prototype.translate=function(b,c){this.matrix.rotateAxis(c);if(this.noFly)c.y=0;this.position.addSelf(c.multiplyScalar(b));this.target.position.addSelf(c.multiplyScalar(b))};
THREE.PathCamera=function(b){function c(b,e,c,f){var h={name:c,fps:0.6,length:f,hierarchy:[]},m,k=e.getControlPointsArray(),n=e.getLength(),o=k.length,C=0;m=o-1;e={parent:-1,keys:[]};e.keys[0]={time:0,pos:k[0],rot:[0,0,0,1],scl:[1,1,1]};e.keys[m]={time:f,pos:k[m],rot:[0,0,0,1],scl:[1,1,1]};for(m=1;m<o-1;m++)C=f*n.chunks[m]/n.total,e.keys[m]={time:C,pos:k[m]};h.hierarchy[0]=e;THREE.AnimationHandler.add(h);return new THREE.Animation(b,c,THREE.AnimationHandler.CATMULLROM_FORWARD,false)}function e(b,
e){var c,f,h=new THREE.Geometry;for(c=0;c<b.points.length*e;c++)f=c/(b.points.length*e),f=b.getPoint(f),h.vertices[c]=new THREE.Vertex(new THREE.Vector3(f.x,f.y,f.z));return h}function f(b,c){var f=e(c,10),h=e(c,10),m=new THREE.LineBasicMaterial({color:16711680,linewidth:3});lineObj=new THREE.Line(f,m);particleObj=new THREE.ParticleSystem(h,new THREE.ParticleBasicMaterial({color:16755200,size:3}));lineObj.scale.set(1,1,1);b.addChild(lineObj);particleObj.scale.set(1,1,1);b.addChild(particleObj);h=
new THREE.SphereGeometry(1,16,8);m=new THREE.MeshBasicMaterial({color:65280});for(i=0;i<c.points.length;i++)f=new THREE.Mesh(h,m),f.position.copy(c.points[i]),f.updateMatrix(),b.addChild(f)}THREE.Camera.call(this,b.fov,b.aspect,b.near,b.far,b.target);this.id="PathCamera"+THREE.PathCameraIdCounter++;this.duration=1E4;this.waypoints=[];this.useConstantSpeed=true;this.resamplingCoef=50;this.debugPath=new THREE.Object3D;this.debugDummy=new THREE.Object3D;this.animationParent=new THREE.Object3D;this.lookSpeed=
0.005;this.lookHorizontal=this.lookVertical=true;this.verticalAngleMap={srcRange:[0,6.28],dstRange:[0,6.28]};this.horizontalAngleMap={srcRange:[0,6.28],dstRange:[0,6.28]};this.domElement=document;if(b){if(b.duration!==void 0)this.duration=b.duration*1E3;if(b.waypoints!==void 0)this.waypoints=b.waypoints;if(b.useConstantSpeed!==void 0)this.useConstantSpeed=b.useConstantSpeed;if(b.resamplingCoef!==void 0)this.resamplingCoef=b.resamplingCoef;if(b.createDebugPath!==void 0)this.createDebugPath=b.createDebugPath;
if(b.createDebugDummy!==void 0)this.createDebugDummy=b.createDebugDummy;if(b.lookSpeed!==void 0)this.lookSpeed=b.lookSpeed;if(b.lookVertical!==void 0)this.lookVertical=b.lookVertical;if(b.lookHorizontal!==void 0)this.lookHorizontal=b.lookHorizontal;if(b.verticalAngleMap!==void 0)this.verticalAngleMap=b.verticalAngleMap;if(b.horizontalAngleMap!==void 0)this.horizontalAngleMap=b.horizontalAngleMap;if(b.domElement!==void 0)this.domElement=b.domElement}this.theta=this.phi=this.lon=this.lat=this.mouseY=
this.mouseX=0;this.windowHalfX=window.innerWidth/2;this.windowHalfY=window.innerHeight/2;var k=Math.PI*2,m=Math.PI/180;this.update=function(b,e,c){var f,h;this.lookHorizontal&&(this.lon+=this.mouseX*this.lookSpeed);this.lookVertical&&(this.lat-=this.mouseY*this.lookSpeed);this.lon=Math.max(0,Math.min(360,this.lon));this.lat=Math.max(-85,Math.min(85,this.lat));this.phi=(90-this.lat)*m;this.theta=this.lon*m;f=this.phi%k;this.phi=f>=0?f:f+k;f=this.verticalAngleMap.srcRange;h=this.verticalAngleMap.dstRange;
var n=h[1]-h[0];this.phi=TWEEN.Easing.Quadratic.EaseInOut(((this.phi-f[0])*(h[1]-h[0])/(f[1]-f[0])+h[0]-h[0])/n)*n+h[0];f=this.horizontalAngleMap.srcRange;h=this.horizontalAngleMap.dstRange;n=h[1]-h[0];this.theta=TWEEN.Easing.Quadratic.EaseInOut(((this.theta-f[0])*(h[1]-h[0])/(f[1]-f[0])+h[0]-h[0])/n)*n+h[0];f=this.target.position;f.x=100*Math.sin(this.phi)*Math.cos(this.theta);f.y=100*Math.cos(this.phi);f.z=100*Math.sin(this.phi)*Math.sin(this.theta);this.supr.update.call(this,b,e,c)};this.onMouseMove=
function(b){this.mouseX=b.clientX-this.windowHalfX;this.mouseY=b.clientY-this.windowHalfY};this.spline=new THREE.Spline;this.spline.initFromArray(this.waypoints);this.useConstantSpeed&&this.spline.reparametrizeByArcLength(this.resamplingCoef);if(this.createDebugDummy){var b=new THREE.MeshLambertMaterial({color:30719}),h=new THREE.MeshLambertMaterial({color:65280}),n=new THREE.CubeGeometry(10,10,20),o=new THREE.CubeGeometry(2,2,10);this.animationParent=new THREE.Mesh(n,b);b=new THREE.Mesh(o,h);b.position.set(0,
10,0);this.animation=c(this.animationParent,this.spline,this.id,this.duration);this.animationParent.addChild(this);this.animationParent.addChild(this.target);this.animationParent.addChild(b)}else this.animation=c(this.animationParent,this.spline,this.id,this.duration),this.animationParent.addChild(this.target),this.animationParent.addChild(this);this.createDebugPath&&f(this.debugPath,this.spline);this.domElement.addEventListener("mousemove",function(b,e){return function(){e.apply(b,arguments)}}(this,
this.onMouseMove),false)};THREE.PathCamera.prototype=new THREE.Camera;THREE.PathCamera.prototype.constructor=THREE.PathCamera;THREE.PathCamera.prototype.supr=THREE.Camera.prototype;THREE.PathCameraIdCounter=0;
THREE.FlyCamera=function(b){function c(b,c){return function(){c.apply(b,arguments)}}THREE.Camera.call(this,b.fov,b.aspect,b.near,b.far,b.target);this.tmpQuaternion=new THREE.Quaternion;this.movementSpeed=1;this.rollSpeed=0.005;this.autoForward=this.dragToLook=false;this.domElement=document;if(b){if(b.movementSpeed!==void 0)this.movementSpeed=b.movementSpeed;if(b.rollSpeed!==void 0)this.rollSpeed=b.rollSpeed;if(b.dragToLook!==void 0)this.dragToLook=b.dragToLook;if(b.autoForward!==void 0)this.autoForward=
b.autoForward;if(b.domElement!==void 0)this.domElement=b.domElement}this.useTarget=false;this.useQuaternion=true;this.mouseStatus=0;this.moveState={up:0,down:0,left:0,right:0,forward:0,back:0,pitchUp:0,pitchDown:0,yawLeft:0,yawRight:0,rollLeft:0,rollRight:0};this.moveVector=new THREE.Vector3(0,0,0);this.rotationVector=new THREE.Vector3(0,0,0);this.lastUpdate=-1;this.tdiff=0;this.handleEvent=function(b){if(typeof this[b.type]=="function")this[b.type](b)};this.keydown=function(b){if(!b.altKey){switch(b.keyCode){case 16:this.movementSpeedMultiplier=
0.1;break;case 87:this.moveState.forward=1;break;case 83:this.moveState.back=1;break;case 65:this.moveState.left=1;break;case 68:this.moveState.right=1;break;case 82:this.moveState.up=1;break;case 70:this.moveState.down=1;break;case 38:this.moveState.pitchUp=1;break;case 40:this.moveState.pitchDown=1;break;case 37:this.moveState.yawLeft=1;break;case 39:this.moveState.yawRight=1;break;case 81:this.moveState.rollLeft=1;break;case 69:this.moveState.rollRight=1}this.updateMovementVector();this.updateRotationVector()}};
this.keyup=function(b){switch(b.keyCode){case 16:this.movementSpeedMultiplier=1;break;case 87:this.moveState.forward=0;break;case 83:this.moveState.back=0;break;case 65:this.moveState.left=0;break;case 68:this.moveState.right=0;break;case 82:this.moveState.up=0;break;case 70:this.moveState.down=0;break;case 38:this.moveState.pitchUp=0;break;case 40:this.moveState.pitchDown=0;break;case 37:this.moveState.yawLeft=0;break;case 39:this.moveState.yawRight=0;break;case 81:this.moveState.rollLeft=0;break;
case 69:this.moveState.rollRight=0}this.updateMovementVector();this.updateRotationVector()};this.mousedown=function(b){b.preventDefault();b.stopPropagation();if(this.dragToLook)this.mouseStatus++;else switch(b.button){case 0:this.moveForward=true;break;case 2:this.moveBackward=true}};this.mousemove=function(b){if(!this.dragToLook||this.mouseStatus>0){var c=this.getContainerDimensions(),k=c.size[0]/2,m=c.size[1]/2;this.moveState.yawLeft=-(b.clientX-c.offset[0]-k)/k;this.moveState.pitchDown=(b.clientY-
c.offset[1]-m)/m;this.updateRotationVector()}};this.mouseup=function(b){b.preventDefault();b.stopPropagation();if(this.dragToLook)this.mouseStatus--,this.moveState.yawLeft=this.moveState.pitchDown=0;else switch(b.button){case 0:this.moveForward=false;break;case 2:this.moveBackward=false}this.updateRotationVector()};this.update=function(){var b=(new Date).getTime();if(this.lastUpdate==-1)this.lastUpdate=b;this.tdiff=(b-this.lastUpdate)/1E3;this.lastUpdate=b;var b=this.tdiff*this.movementSpeed,c=this.tdiff*
this.rollSpeed;this.translateX(this.moveVector.x*b);this.translateY(this.moveVector.y*b);this.translateZ(this.moveVector.z*b);this.tmpQuaternion.set(this.rotationVector.x*c,this.rotationVector.y*c,this.rotationVector.z*c,1).normalize();this.quaternion.multiplySelf(this.tmpQuaternion);this.matrix.setPosition(this.position);this.matrix.setRotationFromQuaternion(this.quaternion);this.matrixWorldNeedsUpdate=true;this.supr.update.call(this)};this.updateMovementVector=function(){var b=this.moveState.forward||
this.autoForward&&!this.moveState.back?1:0;this.moveVector.x=-this.moveState.left+this.moveState.right;this.moveVector.y=-this.moveState.down+this.moveState.up;this.moveVector.z=-b+this.moveState.back};this.updateRotationVector=function(){this.rotationVector.x=-this.moveState.pitchDown+this.moveState.pitchUp;this.rotationVector.y=-this.moveState.yawRight+this.moveState.yawLeft;this.rotationVector.z=-this.moveState.rollRight+this.moveState.rollLeft};this.getContainerDimensions=function(){return this.domElement!=
document?{size:[this.domElement.offsetWidth,this.domElement.offsetHeight],offset:[this.domElement.offsetLeft,this.domElement.offsetTop]}:{size:[window.innerWidth,window.innerHeight],offset:[0,0]}};this.domElement.addEventListener("mousemove",c(this,this.mousemove),false);this.domElement.addEventListener("mousedown",c(this,this.mousedown),false);this.domElement.addEventListener("mouseup",c(this,this.mouseup),false);window.addEventListener("keydown",c(this,this.keydown),false);window.addEventListener("keyup",
c(this,this.keyup),false);this.updateMovementVector();this.updateRotationVector()};THREE.FlyCamera.prototype=new THREE.Camera;THREE.FlyCamera.prototype.constructor=THREE.FlyCamera;THREE.FlyCamera.prototype.supr=THREE.Camera.prototype;
THREE.RollCamera=function(b,c,e,f){THREE.Camera.call(this,b,c,e,f);this.mouseLook=true;this.autoForward=false;this.rollSpeed=this.movementSpeed=this.lookSpeed=1;this.constrainVertical=[-0.9,0.9];this.domElement=document;this.matrixAutoUpdate=this.useTarget=false;this.forward=new THREE.Vector3(0,0,1);this.roll=0;this.lastUpdate=-1;this.delta=0;var k=new THREE.Vector3,m=new THREE.Vector3,h=new THREE.Vector3,n=new THREE.Matrix4,o=false,t=1,u=0,v=0,x=0,w=0,B=0,A=window.innerWidth/2,y=window.innerHeight/
2;this.update=function(){var b=(new Date).getTime();if(this.lastUpdate==-1)this.lastUpdate=b;this.delta=(b-this.lastUpdate)/1E3;this.lastUpdate=b;this.mouseLook&&(b=this.delta*this.lookSpeed,this.rotateHorizontally(b*w),this.rotateVertically(b*B));b=this.delta*this.movementSpeed;this.translateZ(b*(u>0||this.autoForward&&!(u<0)?1:u));this.translateX(b*v);this.translateY(b*x);o&&(this.roll+=this.rollSpeed*this.delta*t);if(this.forward.y>this.constrainVertical[1])this.forward.y=this.constrainVertical[1],
this.forward.normalize();else if(this.forward.y<this.constrainVertical[0])this.forward.y=this.constrainVertical[0],this.forward.normalize();h.copy(this.forward);m.set(0,1,0);k.cross(m,h).normalize();m.cross(h,k).normalize();this.matrix.n11=k.x;this.matrix.n12=m.x;this.matrix.n13=h.x;this.matrix.n21=k.y;this.matrix.n22=m.y;this.matrix.n23=h.y;this.matrix.n31=k.z;this.matrix.n32=m.z;this.matrix.n33=h.z;n.identity();n.n11=Math.cos(this.roll);n.n12=-Math.sin(this.roll);n.n21=Math.sin(this.roll);n.n22=
Math.cos(this.roll);this.matrix.multiplySelf(n);this.matrixWorldNeedsUpdate=true;this.matrix.n14=this.position.x;this.matrix.n24=this.position.y;this.matrix.n34=this.position.z;this.supr.update.call(this)};this.translateX=function(b){this.position.x+=this.matrix.n11*b;this.position.y+=this.matrix.n21*b;this.position.z+=this.matrix.n31*b};this.translateY=function(b){this.position.x+=this.matrix.n12*b;this.position.y+=this.matrix.n22*b;this.position.z+=this.matrix.n32*b};this.translateZ=function(b){this.position.x-=
this.matrix.n13*b;this.position.y-=this.matrix.n23*b;this.position.z-=this.matrix.n33*b};this.rotateHorizontally=function(b){k.set(this.matrix.n11,this.matrix.n21,this.matrix.n31);k.multiplyScalar(b);this.forward.subSelf(k);this.forward.normalize()};this.rotateVertically=function(b){m.set(this.matrix.n12,this.matrix.n22,this.matrix.n32);m.multiplyScalar(b);this.forward.addSelf(m);this.forward.normalize()};this.domElement.addEventListener("contextmenu",function(b){b.preventDefault()},false);this.domElement.addEventListener("mousemove",
function(b){w=(b.clientX-A)/window.innerWidth;B=(b.clientY-y)/window.innerHeight},false);this.domElement.addEventListener("mousedown",function(b){b.preventDefault();b.stopPropagation();switch(b.button){case 0:u=1;break;case 2:u=-1}},false);this.domElement.addEventListener("mouseup",function(b){b.preventDefault();b.stopPropagation();switch(b.button){case 0:u=0;break;case 2:u=0}},false);this.domElement.addEventListener("keydown",function(b){switch(b.keyCode){case 38:case 87:u=1;break;case 37:case 65:v=
-1;break;case 40:case 83:u=-1;break;case 39:case 68:v=1;break;case 81:o=true;t=1;break;case 69:o=true;t=-1;break;case 82:x=1;break;case 70:x=-1}},false);this.domElement.addEventListener("keyup",function(b){switch(b.keyCode){case 38:case 87:u=0;break;case 37:case 65:v=0;break;case 40:case 83:u=0;break;case 39:case 68:v=0;break;case 81:o=false;break;case 69:o=false;break;case 82:x=0;break;case 70:x=0}},false)};THREE.RollCamera.prototype=new THREE.Camera;THREE.RollCamera.prototype.constructor=THREE.RollCamera;
THREE.RollCamera.prototype.supr=THREE.Camera.prototype;
THREE.TrackballCamera=function(b){function c(b,e){return function(){e.apply(b,arguments)}}b=b||{};THREE.Camera.call(this,b.fov,b.aspect,b.near,b.far,b.target);this.domElement=b.domElement||document;this.screen=b.screen||{width:window.innerWidth,height:window.innerHeight,offsetLeft:0,offsetTop:0};this.radius=b.radius||(this.screen.width+this.screen.height)/4;this.rotateSpeed=b.rotateSpeed||1;this.zoomSpeed=b.zoomSpeed||1.2;this.panSpeed=b.panSpeed||0.3;this.noZoom=b.noZoom||false;this.noPan=b.noPan||
false;this.staticMoving=b.staticMoving||false;this.dynamicDampingFactor=b.dynamicDampingFactor||0.2;this.minDistance=b.minDistance||0;this.maxDistance=b.maxDistance||Infinity;this.keys=b.keys||[65,83,68];this.useTarget=true;var e=false,f=this.STATE.NONE,k=new THREE.Vector3,m=new THREE.Vector3,h=new THREE.Vector3,n=new THREE.Vector2,o=new THREE.Vector2,t=new THREE.Vector2,u=new THREE.Vector2;this.handleEvent=function(b){if(typeof this[b.type]=="function")this[b.type](b)};this.getMouseOnScreen=function(b,
e){return new THREE.Vector2((b-this.screen.offsetLeft)/this.radius*0.5,(e-this.screen.offsetTop)/this.radius*0.5)};this.getMouseProjectionOnBall=function(b,e){var c=new THREE.Vector3((b-this.screen.width*0.5-this.screen.offsetLeft)/this.radius,(this.screen.height*0.5+this.screen.offsetTop-e)/this.radius,0),f=c.length();f>1?c.normalize():c.z=Math.sqrt(1-f*f);k=this.position.clone().subSelf(this.target.position);f=this.up.clone().setLength(c.y);f.addSelf(this.up.clone().crossSelf(k).setLength(c.x));
f.addSelf(k.setLength(c.z));return f};this.rotateCamera=function(){var b=Math.acos(m.dot(h)/m.length()/h.length());if(b){var e=(new THREE.Vector3).cross(m,h).normalize(),c=new THREE.Quaternion;b*=this.rotateSpeed;c.setFromAxisAngle(e,-b);c.multiplyVector3(k);c.multiplyVector3(this.up);c.multiplyVector3(h);this.staticMoving?m=h:(c.setFromAxisAngle(e,b*(this.dynamicDampingFactor-1)),c.multiplyVector3(m))}};this.zoomCamera=function(){var b=1+(o.y-n.y)*this.zoomSpeed;b!==1&&b>0&&(k.multiplyScalar(b),
this.staticMoving?n=o:n.y+=(o.y-n.y)*this.dynamicDampingFactor)};this.panCamera=function(){var b=u.clone().subSelf(t);if(b.lengthSq()){b.multiplyScalar(k.length()*this.panSpeed);var e=k.clone().crossSelf(this.up).setLength(b.x);e.addSelf(this.up.clone().setLength(b.y));this.position.addSelf(e);this.target.position.addSelf(e);this.staticMoving?t=u:t.addSelf(b.sub(u,t).multiplyScalar(this.dynamicDampingFactor))}};this.checkDistances=function(){if(!this.noZoom||!this.noPan)this.position.lengthSq()>this.maxDistance*
this.maxDistance&&this.position.setLength(this.maxDistance),k.lengthSq()<this.minDistance*this.minDistance&&this.position.add(this.target.position,k.setLength(this.minDistance))};this.update=function(b,e,c){k=this.position.clone().subSelf(this.target.position);this.rotateCamera();this.noZoom||this.zoomCamera();this.noPan||this.panCamera();this.position.add(this.target.position,k);this.checkDistances();this.supr.update.call(this,b,e,c)};this.domElement.addEventListener("contextmenu",function(b){b.preventDefault()},
false);this.domElement.addEventListener("mousemove",c(this,function(b){e&&(m=h=this.getMouseProjectionOnBall(b.clientX,b.clientY),n=o=this.getMouseOnScreen(b.clientX,b.clientY),t=u=this.getMouseOnScreen(b.clientX,b.clientY),e=false);f!==this.STATE.NONE&&(f===this.STATE.ROTATE?h=this.getMouseProjectionOnBall(b.clientX,b.clientY):f===this.STATE.ZOOM&&!this.noZoom?o=this.getMouseOnScreen(b.clientX,b.clientY):f===this.STATE.PAN&&!this.noPan&&(u=this.getMouseOnScreen(b.clientX,b.clientY)))}),false);this.domElement.addEventListener("mousedown",
c(this,function(b){b.preventDefault();b.stopPropagation();if(f===this.STATE.NONE)f=b.button,f===this.STATE.ROTATE?m=h=this.getMouseProjectionOnBall(b.clientX,b.clientY):f===this.STATE.ZOOM&&!this.noZoom?n=o=this.getMouseOnScreen(b.clientX,b.clientY):this.noPan||(t=u=this.getMouseOnScreen(b.clientX,b.clientY))}),false);this.domElement.addEventListener("mouseup",c(this,function(b){b.preventDefault();b.stopPropagation();f=this.STATE.NONE}),false);window.addEventListener("keydown",c(this,function(b){if(f===
this.STATE.NONE){if(b.keyCode===this.keys[this.STATE.ROTATE])f=this.STATE.ROTATE;else if(b.keyCode===this.keys[this.STATE.ZOOM]&&!this.noZoom)f=this.STATE.ZOOM;else if(b.keyCode===this.keys[this.STATE.PAN]&&!this.noPan)f=this.STATE.PAN;f!==this.STATE.NONE&&(e=true)}}),false);window.addEventListener("keyup",c(this,function(){if(f!==this.STATE.NONE)f=this.STATE.NONE}),false)};THREE.TrackballCamera.prototype=new THREE.Camera;THREE.TrackballCamera.prototype.constructor=THREE.TrackballCamera;
THREE.TrackballCamera.prototype.supr=THREE.Camera.prototype;THREE.TrackballCamera.prototype.STATE={NONE:-1,ROTATE:0,ZOOM:1,PAN:2};THREE.QuakeCamera=THREE.FirstPersonCamera;
THREE.CubeGeometry=function(b,c,e,f,k,m,h,n,o){function t(b,e,c,h,n,o,t,w){var v,x,A=f||1,B=k||1,J=n/2,Q=o/2,O=u.vertices.length;if(b=="x"&&e=="y"||b=="y"&&e=="x")v="z";else if(b=="x"&&e=="z"||b=="z"&&e=="x")v="y",B=m||1;else if(b=="z"&&e=="y"||b=="y"&&e=="z")v="x",A=m||1;var Y=A+1,V=B+1;n/=A;var Z=o/B;for(x=0;x<V;x++)for(o=0;o<Y;o++){var K=new THREE.Vector3;K[b]=(o*n-J)*c;K[e]=(x*Z-Q)*h;K[v]=t;u.vertices.push(new THREE.Vertex(K))}for(x=0;x<B;x++)for(o=0;o<A;o++)u.faces.push(new THREE.Face4(o+Y*x+
O,o+Y*(x+1)+O,o+1+Y*(x+1)+O,o+1+Y*x+O,null,null,w)),u.faceVertexUvs[0].push([new THREE.UV(o/A,x/B),new THREE.UV(o/A,(x+1)/B),new THREE.UV((o+1)/A,(x+1)/B),new THREE.UV((o+1)/A,x/B)])}THREE.Geometry.call(this);var u=this,v=b/2,x=c/2,w=e/2,n=n?-1:1;if(h!==void 0)if(h instanceof Array)this.materials=h;else{this.materials=[];for(var B=0;B<6;B++)this.materials.push([h])}else this.materials=[];this.sides={px:true,nx:true,py:true,ny:true,pz:true,nz:true};if(o!=void 0)for(var A in o)this.sides[A]!=void 0&&
(this.sides[A]=o[A]);this.sides.px&&t("z","y",1*n,-1,e,c,-v,this.materials[0]);this.sides.nx&&t("z","y",-1*n,-1,e,c,v,this.materials[1]);this.sides.py&&t("x","z",1*n,1,b,e,x,this.materials[2]);this.sides.ny&&t("x","z",1*n,-1,b,e,-x,this.materials[3]);this.sides.pz&&t("x","y",1*n,-1,b,c,w,this.materials[4]);this.sides.nz&&t("x","y",-1*n,-1,b,c,-w,this.materials[5]);(function(){for(var b=[],e=[],c=0,f=u.vertices.length;c<f;c++){for(var h=u.vertices[c],m=false,k=0,n=b.length;k<n;k++){var o=b[k];if(h.position.x==
o.position.x&&h.position.y==o.position.y&&h.position.z==o.position.z){e[c]=k;m=true;break}}if(!m)e[c]=b.length,b.push(new THREE.Vertex(h.position.clone()))}c=0;for(f=u.faces.length;c<f;c++)h=u.faces[c],h.a=e[h.a],h.b=e[h.b],h.c=e[h.c],h.d=e[h.d];u.vertices=b})();this.computeCentroids();this.computeFaceNormals()};THREE.CubeGeometry.prototype=new THREE.Geometry;THREE.CubeGeometry.prototype.constructor=THREE.CubeGeometry;
THREE.CylinderGeometry=function(b,c,e,f,k,m){function h(b,e,c){n.vertices.push(new THREE.Vertex(new THREE.Vector3(b,e,c)))}THREE.Geometry.call(this);var n=this,o,t=Math.PI*2,u=f/2;for(o=0;o<b;o++)h(Math.sin(t*o/b)*c,Math.cos(t*o/b)*c,-u);for(o=0;o<b;o++)h(Math.sin(t*o/b)*e,Math.cos(t*o/b)*e,u);var v,x,w,B,A=c-e;for(o=0;o<b;o++)v=new THREE.Vector3,v.copy(n.vertices[o].position),v.z=A,v.normalize(),x=new THREE.Vector3,x.copy(n.vertices[o+b].position),x.z=A,x.normalize(),w=new THREE.Vector3,w.copy(n.vertices[b+
(o+1)%b].position),w.z=A,w.normalize(),B=new THREE.Vector3,B.copy(n.vertices[(o+1)%b].position),B.z=A,B.normalize(),n.faces.push(new THREE.Face4(o,o+b,b+(o+1)%b,(o+1)%b,[v,x,w,B]));if(e>0){e=new THREE.Vector3(0,0,-1);h(0,0,-u-(m||0));for(o=b;o<b+b/2;o++)n.faces.push(new THREE.Face4(2*b,(2*o-2*b)%b,(2*o-2*b+1)%b,(2*o-2*b+2)%b,[e,e,e,e]))}if(c>0){c=new THREE.Vector3(0,0,1);h(0,0,u+(k||0));for(o=b+b/2;o<2*b;o++)n.faces.push(new THREE.Face4(2*b+1,(2*o-2*b+2)%b+b,(2*o-2*b+1)%b+b,(2*o-2*b)%b+b,[c,c,c,c]))}o=
0;for(b=this.faces.length;o<b;o++)k=[],u=this.faces[o],c=this.vertices[u.a],m=this.vertices[u.b],e=this.vertices[u.c],v=this.vertices[u.d],k.push(new THREE.UV(0.5+Math.atan2(c.position.x,c.position.y)/t,0.5+c.position.z/f)),k.push(new THREE.UV(0.5+Math.atan2(m.position.x,m.position.y)/t,0.5+m.position.z/f)),k.push(new THREE.UV(0.5+Math.atan2(e.position.x,e.position.y)/t,0.5+e.position.z/f)),u instanceof THREE.Face4&&k.push(new THREE.UV(0.5+Math.atan2(v.position.x,v.position.y)/t,0.5+v.position.z/
f)),this.faceVertexUvs[0].push(k);this.computeCentroids();this.computeFaceNormals()};THREE.CylinderGeometry.prototype=new THREE.Geometry;THREE.CylinderGeometry.prototype.constructor=THREE.CylinderGeometry;THREE.ExtrudeGeometry=function(b,c){if(typeof b!="undefined"){THREE.Geometry.call(this);var b=b instanceof Array?b:[b],e,f=b.length,k;this.shapebb=b[f-1].getBoundingBox();for(e=0;e<f;e++)k=b[e],this.addShape(k,c);this.computeCentroids();this.computeFaceNormals()}};
THREE.ExtrudeGeometry.prototype=new THREE.Geometry;THREE.ExtrudeGeometry.prototype.constructor=THREE.ExtrudeGeometry;
THREE.ExtrudeGeometry.prototype.addShape=function(b,c){function e(b,e,c){e||console.log("die");return e.clone().multiplyScalar(c).addSelf(b)}function f(b,e,c){var f=THREE.ExtrudeGeometry.__v1,h=THREE.ExtrudeGeometry.__v2,m=THREE.ExtrudeGeometry.__v3,k=THREE.ExtrudeGeometry.__v4,n=THREE.ExtrudeGeometry.__v5,o=THREE.ExtrudeGeometry.__v6;f.set(b.x-e.x,b.y-e.y);h.set(b.x-c.x,b.y-c.y);f=f.normalize();h=h.normalize();m.set(-f.y,f.x);k.set(h.y,-h.x);n.copy(b).addSelf(m);o.copy(b).addSelf(k);if(n.equals(o))return k.clone();
n.copy(e).addSelf(m);o.copy(c).addSelf(k);m=f.dot(k);k=o.subSelf(n).dot(k);m==0&&(console.log("Either infinite or no solutions!"),k==0?console.log("Its finite solutions."):console.log("Too bad, no solutions."));k/=m;return k<0?(e=Math.atan2(e.y-b.y,e.x-b.x),b=Math.atan2(c.y-b.y,c.x-b.x),e>b&&(b+=Math.PI*2),anglec=(e+b)/2,new THREE.Vector2(-Math.cos(anglec),-Math.sin(anglec))):f.multiplyScalar(k).addSelf(n).subSelf(b).clone()}function k(b){for(M=b.length;--M>=0;){aa=M;la=M-1;la<0&&(la=b.length-1);
for(var e=0,c=w+u*2,e=0;e<c;e++){var f=Z*e,h=Z*(e+1),m=ka+aa+f,k=ka+aa+h,t=m,f=ka+la+f,h=ka+la+h,p=k;t+=W;f+=W;h+=W;p+=W;H.faces.push(new THREE.Face4(t,f,h,p,null,null,z));z&&(t=e/c,f=(e+1)/c,h=n+o*2,m=(H.vertices[m].position.z+o)/h,k=(H.vertices[k].position.z+o)/h,H.faceVertexUvs[0].push([new THREE.UV(m,t),new THREE.UV(k,t),new THREE.UV(k,f),new THREE.UV(m,f)]))}}}function m(b,e,c){H.vertices.push(new THREE.Vertex(new THREE.Vector3(b,e,c)))}function h(b,e,c){b+=W;e+=W;c+=W;H.faces.push(new THREE.Face3(b,
e,c,null,null,L));if(L){var f=E.maxY,h=E.maxX,m=H.vertices[e].position.x,e=H.vertices[e].position.y,k=H.vertices[c].position.x,c=H.vertices[c].position.y;H.faceVertexUvs[0].push([new THREE.UV(H.vertices[b].position.x/h,H.vertices[b].position.y/f),new THREE.UV(m/h,e/f),new THREE.UV(k/h,c/f)])}}var n=c.amount!==void 0?c.amount:100,o=c.bevelThickness!==void 0?c.bevelThickness:6,t=c.bevelSize!==void 0?c.bevelSize:o-2,u=c.bevelSegments!==void 0?c.bevelSegments:3,v=c.bevelEnabled!==void 0?c.bevelEnabled:
true,x=c.curveSegments!==void 0?c.curveSegments:12,w=c.steps!==void 0?c.steps:1,B=c.bendPath,A=c.extrudePath,y,D=false,C=c.useSpacedPoints!==void 0?c.useSpacedPoints:false,L=c.material,z=c.extrudeMaterial,E=this.shapebb;if(A)y=A.getPoints(x),w=y.length,D=true,v=false;v||(t=o=u=0);var N,I,P,H=this,W=this.vertices.length;B&&b.addWrapPath(B);x=C?b.extractAllSpacedPoints(x):b.extractAllPoints(x);B=x.shape;x=x.holes;if(A=!THREE.Shape.Utils.isClockWise(B)){B=B.reverse();I=0;for(P=x.length;I<P;I++)N=x[I],
THREE.Shape.Utils.isClockWise(N)&&(x[I]=N.reverse());A=false}A=THREE.Shape.Utils.triangulateShape(B,x);C=B;I=0;for(P=x.length;I<P;I++)N=x[I],B=B.concat(N);var M,J,Q,O,Y,V,Z=B.length,K=A.length,X=[];M=0;J=C.length;aa=J-1;for(la=M+1;M<J;M++,aa++,la++)aa==J&&(aa=0),la==J&&(la=0),X[M]=f(C[M],C[aa],C[la]);var S=[],p,ca=X.concat();I=0;for(P=x.length;I<P;I++){N=x[I];p=[];M=0;J=N.length;aa=J-1;for(la=M+1;M<J;M++,aa++,la++)aa==J&&(aa=0),la==J&&(la=0),p[M]=f(N[M],N[aa],N[la]);S.push(p);ca=ca.concat(p)}for(Q=
0;Q<u;Q++){O=Q/u;Y=o*(1-O);O=t*Math.sin(O*Math.PI/2);M=0;for(J=C.length;M<J;M++)V=e(C[M],X[M],O),m(V.x,V.y,-Y);I=0;for(P=x.length;I<P;I++){N=x[I];p=S[I];M=0;for(J=N.length;M<J;M++)V=e(N[M],p[M],O),m(V.x,V.y,-Y)}}O=t;for(M=0;M<Z;M++)V=v?e(B[M],ca[M],O):B[M],D?m(V.x,V.y+y[0].y,y[0].x):m(V.x,V.y,0);for(Q=1;Q<=w;Q++)for(M=0;M<Z;M++)V=v?e(B[M],ca[M],O):B[M],D?m(V.x,V.y+y[Q-1].y,y[Q-1].x):m(V.x,V.y,n/w*Q);for(Q=u-1;Q>=0;Q--){O=Q/u;Y=o*(1-O);O=t*Math.sin(O*Math.PI/2);M=0;for(J=C.length;M<J;M++)V=e(C[M],
X[M],O),m(V.x,V.y,n+Y);I=0;for(P=x.length;I<P;I++){N=x[I];p=S[I];M=0;for(J=N.length;M<J;M++)V=e(N[M],p[M],O),D?m(V.x,V.y+y[w-1].y,y[w-1].x+Y):m(V.x,V.y,n+Y)}}if(v){v=Z*0;for(M=0;M<K;M++)t=A[M],h(t[2]+v,t[1]+v,t[0]+v);v=Z*(w+u*2);for(M=0;M<K;M++)t=A[M],h(t[0]+v,t[1]+v,t[2]+v)}else{for(M=0;M<K;M++)t=A[M],h(t[2],t[1],t[0]);for(M=0;M<K;M++)t=A[M],h(t[0]+Z*w,t[1]+Z*w,t[2]+Z*w)}var aa,la,ka=0;k(C);ka+=C.length;I=0;for(P=x.length;I<P;I++)N=x[I],k(N),ka+=N.length};THREE.ExtrudeGeometry.__v1=new THREE.Vector2;
THREE.ExtrudeGeometry.__v2=new THREE.Vector2;THREE.ExtrudeGeometry.__v3=new THREE.Vector2;THREE.ExtrudeGeometry.__v4=new THREE.Vector2;THREE.ExtrudeGeometry.__v5=new THREE.Vector2;THREE.ExtrudeGeometry.__v6=new THREE.Vector2;
THREE.IcosahedronGeometry=function(b){function c(b,e,c){var f=Math.sqrt(b*b+e*e+c*c);return k.vertices.push(new THREE.Vertex(new THREE.Vector3(b/f,e/f,c/f)))-1}function e(b,e,c,f){f.faces.push(new THREE.Face3(b,e,c))}function f(b,e){var f=k.vertices[b].position,h=k.vertices[e].position;return c((f.x+h.x)/2,(f.y+h.y)/2,(f.z+h.z)/2)}var k=this,m=new THREE.Geometry;this.subdivisions=b||0;THREE.Geometry.call(this);b=(1+Math.sqrt(5))/2;c(-1,b,0);c(1,b,0);c(-1,-b,0);c(1,-b,0);c(0,-1,b);c(0,1,b);c(0,-1,
-b);c(0,1,-b);c(b,0,-1);c(b,0,1);c(-b,0,-1);c(-b,0,1);e(0,11,5,m);e(0,5,1,m);e(0,1,7,m);e(0,7,10,m);e(0,10,11,m);e(1,5,9,m);e(5,11,4,m);e(11,10,2,m);e(10,7,6,m);e(7,1,8,m);e(3,9,4,m);e(3,4,2,m);e(3,2,6,m);e(3,6,8,m);e(3,8,9,m);e(4,9,5,m);e(2,4,11,m);e(6,2,10,m);e(8,6,7,m);e(9,8,1,m);for(var h=0;h<this.subdivisions;h++){var b=new THREE.Geometry,n;for(n in m.faces){var o=f(m.faces[n].a,m.faces[n].b),t=f(m.faces[n].b,m.faces[n].c),u=f(m.faces[n].c,m.faces[n].a);e(m.faces[n].a,o,u,b);e(m.faces[n].b,t,
o,b);e(m.faces[n].c,u,t,b);e(o,t,u,b)}m.faces=b.faces}k.faces=m.faces;this.computeCentroids();this.computeFaceNormals();this.computeVertexNormals()};THREE.IcosahedronGeometry.prototype=new THREE.Geometry;THREE.IcosahedronGeometry.prototype.constructor=THREE.IcosahedronGeometry;
THREE.LatheGeometry=function(b,c,e){THREE.Geometry.call(this);this.steps=c||12;this.angle=e||2*Math.PI;for(var c=this.angle/this.steps,e=[],f=[],k=[],m=[],h=(new THREE.Matrix4).setRotationZ(c),n=0;n<b.length;n++)this.vertices.push(new THREE.Vertex(b[n])),e[n]=b[n].clone(),f[n]=this.vertices.length-1;for(var o=0;o<=this.angle+0.001;o+=c){for(n=0;n<e.length;n++)o<this.angle?(e[n]=h.multiplyVector3(e[n].clone()),this.vertices.push(new THREE.Vertex(e[n])),k[n]=this.vertices.length-1):k=m;o==0&&(m=f);
for(n=0;n<f.length-1;n++)this.faces.push(new THREE.Face4(k[n],k[n+1],f[n+1],f[n])),this.faceVertexUvs[0].push([new THREE.UV(1-o/this.angle,n/b.length),new THREE.UV(1-o/this.angle,(n+1)/b.length),new THREE.UV(1-(o-c)/this.angle,(n+1)/b.length),new THREE.UV(1-(o-c)/this.angle,n/b.length)]);f=k;k=[]}this.computeCentroids();this.computeFaceNormals();this.computeVertexNormals()};THREE.LatheGeometry.prototype=new THREE.Geometry;THREE.LatheGeometry.prototype.constructor=THREE.LatheGeometry;
THREE.PlaneGeometry=function(b,c,e,f){THREE.Geometry.call(this);var k,m=b/2,h=c/2,e=e||1,f=f||1,n=e+1,o=f+1;b/=e;var t=c/f;for(k=0;k<o;k++)for(c=0;c<n;c++)this.vertices.push(new THREE.Vertex(new THREE.Vector3(c*b-m,-(k*t-h),0)));for(k=0;k<f;k++)for(c=0;c<e;c++)this.faces.push(new THREE.Face4(c+n*k,c+n*(k+1),c+1+n*(k+1),c+1+n*k)),this.faceVertexUvs[0].push([new THREE.UV(c/e,k/f),new THREE.UV(c/e,(k+1)/f),new THREE.UV((c+1)/e,(k+1)/f),new THREE.UV((c+1)/e,k/f)]);this.computeCentroids();this.computeFaceNormals()};
THREE.PlaneGeometry.prototype=new THREE.Geometry;THREE.PlaneGeometry.prototype.constructor=THREE.PlaneGeometry;
THREE.SphereGeometry=function(b,c,e){THREE.Geometry.call(this);for(var b=b||50,f,k=Math.PI,m=Math.max(3,c||8),h=Math.max(2,e||6),c=[],e=0;e<h+1;e++){f=e/h;var n=b*Math.cos(f*k),o=b*Math.sin(f*k),t=[],u=0;for(f=0;f<m;f++){var v=2*f/m,x=o*Math.sin(v*k),v=o*Math.cos(v*k);(e==0||e==h)&&f>0||(u=this.vertices.push(new THREE.Vertex(new THREE.Vector3(v,n,x)))-1);t.push(u)}c.push(t)}for(var w,B,A,k=c.length,e=0;e<k;e++)if(m=c[e].length,e>0)for(f=0;f<m;f++){t=f==m-1;h=c[e][t?0:f+1];n=c[e][t?m-1:f];o=c[e-1][t?
m-1:f];t=c[e-1][t?0:f+1];x=e/(k-1);w=(e-1)/(k-1);B=(f+1)/m;var v=f/m,u=new THREE.UV(1-B,x),x=new THREE.UV(1-v,x),v=new THREE.UV(1-v,w),y=new THREE.UV(1-B,w);e<c.length-1&&(w=this.vertices[h].position.clone(),B=this.vertices[n].position.clone(),A=this.vertices[o].position.clone(),w.normalize(),B.normalize(),A.normalize(),this.faces.push(new THREE.Face3(h,n,o,[new THREE.Vector3(w.x,w.y,w.z),new THREE.Vector3(B.x,B.y,B.z),new THREE.Vector3(A.x,A.y,A.z)])),this.faceVertexUvs[0].push([u,x,v]));e>1&&(w=
this.vertices[h].position.clone(),B=this.vertices[o].position.clone(),A=this.vertices[t].position.clone(),w.normalize(),B.normalize(),A.normalize(),this.faces.push(new THREE.Face3(h,o,t,[new THREE.Vector3(w.x,w.y,w.z),new THREE.Vector3(B.x,B.y,B.z),new THREE.Vector3(A.x,A.y,A.z)])),this.faceVertexUvs[0].push([u,v,y]))}this.computeCentroids();this.computeFaceNormals();this.computeVertexNormals();this.boundingSphere={radius:b}};THREE.SphereGeometry.prototype=new THREE.Geometry;
THREE.SphereGeometry.prototype.constructor=THREE.SphereGeometry;
THREE.TextGeometry=function(b,c){var e=(new THREE.TextPath(b,c)).toShapes();c.amount=c.height!==void 0?c.height:50;if(c.bevelThickness===void 0)c.bevelThickness=10;if(c.bevelSize===void 0)c.bevelSize=8;if(c.bevelEnabled===void 0)c.bevelEnabled=false;if(c.bend){var f=e[e.length-1].getBoundingBox().maxX;c.bendPath=new THREE.QuadraticBezierCurve(new THREE.Vector2(0,0),new THREE.Vector2(f/2,120),new THREE.Vector2(f,0))}THREE.ExtrudeGeometry.call(this,e,c)};THREE.TextGeometry.prototype=new THREE.ExtrudeGeometry;
THREE.TextGeometry.prototype.constructor=THREE.TextGeometry;
THREE.FontUtils={faces:{},face:"helvetiker",weight:"normal",style:"normal",size:150,divisions:10,getFace:function(){return this.faces[this.face][this.weight][this.style]},getTextShapes:function(b,c){return(new TextPath(b,c)).toShapes()},loadFace:function(b){var c=b.familyName.toLowerCase();this.faces[c]=this.faces[c]||{};this.faces[c][b.cssFontWeight]=this.faces[c][b.cssFontWeight]||{};this.faces[c][b.cssFontWeight][b.cssFontStyle]=b;return this.faces[c][b.cssFontWeight][b.cssFontStyle]=b},drawText:function(b){for(var c=
this.getFace(),e=this.size/c.resolution,f=0,k=String(b).split(""),m=k.length,h=[],b=0;b<m;b++){var n=new THREE.Path,n=this.extractGlyphPoints(k[b],c,e,f,n);f+=n.offset;h.push(n.path)}return{paths:h,offset:f/2}},extractGlyphPoints:function(b,c,e,f,k){var m=[],h,n,o,t,u,v,x,w,B,A,y=c.glyphs[b]||c.glyphs[ctxt.options.fallbackCharacter];if(y){if(y.o){c=y._cachedOutline||(y._cachedOutline=y.o.split(" "));o=c.length;for(b=0;b<o;)switch(n=c[b++],n){case "m":n=c[b++]*e+f;t=c[b++]*e;m.push(new THREE.Vector2(n,
t));k.moveTo(n,t);break;case "l":n=c[b++]*e+f;t=c[b++]*e;m.push(new THREE.Vector2(n,t));k.lineTo(n,t);break;case "q":n=c[b++]*e+f;t=c[b++]*e;x=c[b++]*e+f;w=c[b++]*e;k.quadraticCurveTo(x,w,n,t);if(h=m[m.length-1]){u=h.x;v=h.y;h=1;for(divisions=this.divisions;h<=divisions;h++){var D=h/divisions,C=THREE.Shape.Utils.b2(D,u,x,n),D=THREE.Shape.Utils.b2(D,v,w,t);m.push(new THREE.Vector2(C,D))}}break;case "b":if(n=c[b++]*e+f,t=c[b++]*e,x=c[b++]*e+f,w=c[b++]*-e,B=c[b++]*e+f,A=c[b++]*-e,k.bezierCurveTo(n,t,
x,w,B,A),h=m[m.length-1]){u=h.x;v=h.y;h=1;for(divisions=this.divisions;h<=divisions;h++)D=h/divisions,C=THREE.Shape.Utils.b3(D,u,x,B,n),D=THREE.Shape.Utils.b3(D,v,w,A,t),m.push(new THREE.Vector2(C,D))}}}return{offset:y.ha*e,points:m,path:k}}}};
(function(b){var c=function(b){for(var c=b.length,k=0,m=c-1,h=0;h<c;m=h++)k+=b[m].x*b[h].y-b[h].x*b[m].y;return k*0.5};b.Triangulate=function(b,f){var k=b.length;if(k<3)return null;var m=[],h=[],n=[],o,t,u;if(c(b)>0)for(t=0;t<k;t++)h[t]=t;else for(t=0;t<k;t++)h[t]=k-1-t;var v=2*k;for(t=k-1;k>2;){if(v--<=0){console.log("Warning, unable to triangulate polygon!");break}o=t;k<=o&&(o=0);t=o+1;k<=t&&(t=0);u=t+1;k<=u&&(u=0);var x;a:{x=b;var w=o,B=t,A=u,y=k,D=h,C=void 0,L=void 0,z=void 0,E=void 0,N=void 0,
I=void 0,P=void 0,H=void 0,W=void 0,L=x[D[w]].x,z=x[D[w]].y,E=x[D[B]].x,N=x[D[B]].y,I=x[D[A]].x,P=x[D[A]].y;if(1.0E-10>(E-L)*(P-z)-(N-z)*(I-L))x=false;else{for(C=0;C<y;C++)if(!(C==w||C==B||C==A)){var H=x[D[C]].x,W=x[D[C]].y,M=void 0,J=void 0,Q=void 0,O=void 0,Y=void 0,V=void 0,Z=void 0,K=void 0,X=void 0,S=void 0,p=void 0,ca=void 0,M=I-E,J=P-N,Q=L-I,O=z-P,Y=E-L,V=N-z,Z=H-L,K=W-z,X=H-E,S=W-N,p=H-I,ca=W-P,M=M*S-J*X,Y=Y*K-V*Z,Q=Q*ca-O*p;if(M>=0&&Q>=0&&Y>=0){x=false;break a}}x=true}}if(x){m.push([b[h[o]],
b[h[t]],b[h[u]]]);n.push([h[o],h[t],h[u]]);o=t;for(u=t+1;u<k;o++,u++)h[o]=h[u];k--;v=2*k}}return f?n:m};b.Triangulate.area=c;return b})(THREE.FontUtils);window._typeface_js={faces:THREE.FontUtils.faces,loadFace:THREE.FontUtils.loadFace};
THREE.TorusGeometry=function(b,c,e,f,k){THREE.Geometry.call(this);this.radius=b||100;this.tube=c||40;this.segmentsR=e||8;this.segmentsT=f||6;this.arc=k||Math.PI*2;k=new THREE.Vector3;b=[];c=[];for(e=0;e<=this.segmentsR;e++)for(f=0;f<=this.segmentsT;f++){var m=f/this.segmentsT*this.arc,h=e/this.segmentsR*Math.PI*2;k.x=this.radius*Math.cos(m);k.y=this.radius*Math.sin(m);var n=new THREE.Vector3;n.x=(this.radius+this.tube*Math.cos(h))*Math.cos(m);n.y=(this.radius+this.tube*Math.cos(h))*Math.sin(m);n.z=
this.tube*Math.sin(h);this.vertices.push(new THREE.Vertex(n));b.push(new THREE.UV(f/this.segmentsT,1-e/this.segmentsR));c.push(n.clone().subSelf(k).normalize())}for(e=1;e<=this.segmentsR;e++)for(f=1;f<=this.segmentsT;f++){var k=(this.segmentsT+1)*e+f-1,m=(this.segmentsT+1)*(e-1)+f-1,h=(this.segmentsT+1)*(e-1)+f,n=(this.segmentsT+1)*e+f,o=new THREE.Face4(k,m,h,n,[c[k],c[m],c[h],c[n]]);o.normal.addSelf(c[k]);o.normal.addSelf(c[m]);o.normal.addSelf(c[h]);o.normal.addSelf(c[n]);o.normal.normalize();this.faces.push(o);
this.faceVertexUvs[0].push([b[k].clone(),b[m].clone(),b[h].clone(),b[n].clone()])}this.computeCentroids()};THREE.TorusGeometry.prototype=new THREE.Geometry;THREE.TorusGeometry.prototype.constructor=THREE.TorusGeometry;
THREE.TorusKnotGeometry=function(b,c,e,f,k,m,h){function n(b,e,c,f,h,m){e=c/f*b;c=Math.cos(e);return new THREE.Vector3(h*(2+c)*0.5*Math.cos(b),h*(2+c)*Math.sin(b)*0.5,m*h*Math.sin(e)*0.5)}THREE.Geometry.call(this);this.radius=b||200;this.tube=c||40;this.segmentsR=e||64;this.segmentsT=f||8;this.p=k||2;this.q=m||3;this.heightScale=h||1;this.grid=Array(this.segmentsR);e=new THREE.Vector3;f=new THREE.Vector3;m=new THREE.Vector3;for(b=0;b<this.segmentsR;++b){this.grid[b]=Array(this.segmentsT);for(c=0;c<
this.segmentsT;++c){var o=b/this.segmentsR*2*this.p*Math.PI,h=c/this.segmentsT*2*Math.PI,k=n(o,h,this.q,this.p,this.radius,this.heightScale),o=n(o+0.01,h,this.q,this.p,this.radius,this.heightScale);e.x=o.x-k.x;e.y=o.y-k.y;e.z=o.z-k.z;f.x=o.x+k.x;f.y=o.y+k.y;f.z=o.z+k.z;m.cross(e,f);f.cross(m,e);m.normalize();f.normalize();o=-this.tube*Math.cos(h);h=this.tube*Math.sin(h);k.x+=o*f.x+h*m.x;k.y+=o*f.y+h*m.y;k.z+=o*f.z+h*m.z;this.grid[b][c]=this.vertices.push(new THREE.Vertex(new THREE.Vector3(k.x,k.y,
k.z)))-1}}for(b=0;b<this.segmentsR;++b)for(c=0;c<this.segmentsT;++c){var f=(b+1)%this.segmentsR,m=(c+1)%this.segmentsT,k=this.grid[b][c],e=this.grid[f][c],f=this.grid[f][m],m=this.grid[b][m],h=new THREE.UV(b/this.segmentsR,c/this.segmentsT),o=new THREE.UV((b+1)/this.segmentsR,c/this.segmentsT),t=new THREE.UV((b+1)/this.segmentsR,(c+1)/this.segmentsT),u=new THREE.UV(b/this.segmentsR,(c+1)/this.segmentsT);this.faces.push(new THREE.Face4(k,e,f,m));this.faceVertexUvs[0].push([h,o,t,u])}this.computeCentroids();
this.computeFaceNormals();this.computeVertexNormals()};THREE.TorusKnotGeometry.prototype=new THREE.Geometry;THREE.TorusKnotGeometry.prototype.constructor=THREE.TorusKnotGeometry;THREE.Loader=function(b){this.statusDomElement=(this.showStatus=b)?THREE.Loader.prototype.addStatusElement():null;this.onLoadStart=function(){};this.onLoadProgress=function(){};this.onLoadComplete=function(){}};
THREE.Loader.prototype={addStatusElement:function(){var b=document.createElement("div");b.style.position="absolute";b.style.right="0px";b.style.top="0px";b.style.fontSize="0.8em";b.style.textAlign="left";b.style.background="rgba(0,0,0,0.25)";b.style.color="#fff";b.style.width="120px";b.style.padding="0.5em 0.5em 0.5em 0.5em";b.style.zIndex=1E3;b.innerHTML="Loading ...";return b},updateProgress:function(b){var c="Loaded ";c+=b.total?(100*b.loaded/b.total).toFixed(0)+"%":(b.loaded/1E3).toFixed(2)+" KB";
this.statusDomElement.innerHTML=c},extractUrlbase:function(b){b=b.split("/");b.pop();return b.join("/")},init_materials:function(b,c,e){b.materials=[];for(var f=0;f<c.length;++f)b.materials[f]=[THREE.Loader.prototype.createMaterial(c[f],e)]},hasNormals:function(b){var c,e,f=b.materials.length;for(e=0;e<f;e++)if(c=b.materials[e][0],c instanceof THREE.MeshShaderMaterial)return true;return false},createMaterial:function(b,c){function e(b){b=Math.log(b)/Math.LN2;return Math.floor(b)==b}function f(b,c){var f=
new Image;f.onload=function(){if(!e(this.width)||!e(this.height)){var c=Math.pow(2,Math.round(Math.log(this.width)/Math.LN2)),f=Math.pow(2,Math.round(Math.log(this.height)/Math.LN2));b.image.width=c;b.image.height=f;b.image.getContext("2d").drawImage(this,0,0,c,f)}else b.image=this;b.needsUpdate=true};f.src=c}function k(b,e,h,m,k,n){var o=document.createElement("canvas");b[e]=new THREE.Texture(o);b[e].sourceFile=h;if(m){b[e].repeat.set(m[0],m[1]);if(m[0]!=1)b[e].wrapS=THREE.RepeatWrapping;if(m[1]!=
1)b[e].wrapT=THREE.RepeatWrapping}k&&b[e].offset.set(k[0],k[1]);if(n){m={repeat:THREE.RepeatWrapping,mirror:THREE.MirroredRepeatWrapping};if(m[n[0]]!==void 0)b[e].wrapS=m[n[0]];if(m[n[1]]!==void 0)b[e].wrapT=m[n[1]]}f(b[e],c+"/"+h)}function m(b){return(b[0]*255<<16)+(b[1]*255<<8)+b[2]*255}var h,n,o;n="MeshLambertMaterial";h={color:15658734,opacity:1,map:null,lightMap:null,normalMap:null,wireframe:b.wireframe};b.shading&&(b.shading=="Phong"?n="MeshPhongMaterial":b.shading=="Basic"&&(n="MeshBasicMaterial"));
if(b.blending)if(b.blending=="Additive")h.blending=THREE.AdditiveBlending;else if(b.blending=="Subtractive")h.blending=THREE.SubtractiveBlending;else if(b.blending=="Multiply")h.blending=THREE.MultiplyBlending;if(b.transparent!==void 0||b.opacity<1)h.transparent=b.transparent;if(b.depthTest!==void 0)h.depthTest=b.depthTest;if(b.vertexColors!==void 0)if(b.vertexColors=="face")h.vertexColors=THREE.FaceColors;else if(b.vertexColors)h.vertexColors=THREE.VertexColors;if(b.colorDiffuse)h.color=m(b.colorDiffuse);
else if(b.DbgColor)h.color=b.DbgColor;if(b.colorSpecular)h.specular=m(b.colorSpecular);if(b.colorAmbient)h.ambient=m(b.colorAmbient);if(b.transparency)h.opacity=b.transparency;if(b.specularCoef)h.shininess=b.specularCoef;b.mapDiffuse&&c&&k(h,"map",b.mapDiffuse,b.mapDiffuseRepeat,b.mapDiffuseOffset,b.mapDiffuseWrap);b.mapLight&&c&&k(h,"lightMap",b.mapLight,b.mapLightRepeat,b.mapLightOffset,b.mapLightWrap);b.mapNormal&&c&&k(h,"normalMap",b.mapNormal,b.mapNormalRepeat,b.mapNormalOffset,b.mapNormalWrap);
b.mapSpecular&&c&&k(h,"specularMap",b.mapSpecular,b.mapSpecularRepeat,b.mapSpecularOffset,b.mapSpecularWrap);if(b.mapNormal){var t=THREE.ShaderUtils.lib.normal,u=THREE.UniformsUtils.clone(t.uniforms),v=h.color;n=h.specular;o=h.ambient;var x=h.shininess;u.tNormal.texture=h.normalMap;if(b.mapNormalFactor)u.uNormalScale.value=b.mapNormalFactor;if(h.map)u.tDiffuse.texture=h.map,u.enableDiffuse.value=true;if(h.specularMap)u.tSpecular.texture=h.specularMap,u.enableSpecular.value=true;if(h.lightMap)u.tAO.texture=
h.lightMap,u.enableAO.value=true;u.uDiffuseColor.value.setHex(v);u.uSpecularColor.value.setHex(n);u.uAmbientColor.value.setHex(o);u.uShininess.value=x;if(h.opacity)u.uOpacity.value=h.opacity;h=new THREE.MeshShaderMaterial({fragmentShader:t.fragmentShader,vertexShader:t.vertexShader,uniforms:u,lights:true,fog:true})}else h=new THREE[n](h);return h},constructor:THREE.Loader};THREE.BinaryLoader=function(b){THREE.Loader.call(this,b)};THREE.BinaryLoader.prototype=new THREE.Loader;
THREE.BinaryLoader.prototype.constructor=THREE.BinaryLoader;THREE.BinaryLoader.prototype.supr=THREE.Loader.prototype;
THREE.BinaryLoader.prototype.load=function(b){var c=b.model,e=b.callback,f=b.texture_path?b.texture_path:THREE.Loader.prototype.extractUrlbase(c),k=b.bin_path?b.bin_path:THREE.Loader.prototype.extractUrlbase(c),b=(new Date).getTime(),c=new Worker(c),m=this.showProgress?THREE.Loader.prototype.updateProgress:null;c.onmessage=function(b){THREE.BinaryLoader.prototype.loadAjaxBuffers(b.data.buffers,b.data.materials,e,k,f,m)};c.onerror=function(b){alert("worker.onerror: "+b.message+"\n"+b.data);b.preventDefault()};
c.postMessage(b)};
THREE.BinaryLoader.prototype.loadAjaxBuffers=function(b,c,e,f,k,m){var h=new XMLHttpRequest,n=f+"/"+b,o=0;h.onreadystatechange=function(){h.readyState==4?h.status==200||h.status==0?THREE.BinaryLoader.prototype.createBinModel(h.responseText,e,k,c):alert("Couldn't load ["+n+"] ["+h.status+"]"):h.readyState==3?m&&(o==0&&(o=h.getResponseHeader("Content-Length")),m({total:o,loaded:h.responseText.length})):h.readyState==2&&(o=h.getResponseHeader("Content-Length"))};h.open("GET",n,true);h.overrideMimeType("text/plain; charset=x-user-defined");
h.setRequestHeader("Content-Type","text/plain");h.send(null)};
THREE.BinaryLoader.prototype.createBinModel=function(b,c,e,f){var k=function(e){var c,k,o,t,u,v,x,w,B,A,y,D,C,L,z,E,N,I;function P(b,e){var c=J(b,e),f=J(b,e+1),h=J(b,e+2),m=J(b,e+3),k=(m<<1&255|h>>7)-127;c|=(h&127)<<16|f<<8;return c==0&&k==-127?0:(1-2*(m>>7))*(1+c*Math.pow(2,-23))*Math.pow(2,k)}function H(b,e){var c=J(b,e),f=J(b,e+1),h=J(b,e+2);return(J(b,e+3)<<24)+(h<<16)+(f<<8)+c}function W(b,e){var c=J(b,e);return(J(b,e+1)<<8)+c}function M(b,e){var c=J(b,e);return c>127?c-256:c}function J(b,e){return b.charCodeAt(e)&
255}function Q(e){var c,f,h;c=H(b,e);f=H(b,e+aa);h=H(b,e+la);e=W(b,e+ka);X.faces.push(new THREE.Face3(c,f,h,null,null,X.materials[e]))}function O(e){var c,f,h,m,k,n;c=H(b,e);f=H(b,e+aa);h=H(b,e+la);m=W(b,e+ka);k=H(b,e+ja);n=H(b,e+ea);e=H(b,e+da);m=X.materials[m];var o=p[n*3],t=p[n*3+1];n=p[n*3+2];var v=p[e*3],w=p[e*3+1],e=p[e*3+2];X.faces.push(new THREE.Face3(c,f,h,[new THREE.Vector3(p[k*3],p[k*3+1],p[k*3+2]),new THREE.Vector3(o,t,n),new THREE.Vector3(v,w,e)],null,m))}function Y(e){var c,f,h,m;c=
H(b,e);f=H(b,e+ga);h=H(b,e+ya);m=H(b,e+ma);e=W(b,e+na);X.faces.push(new THREE.Face4(c,f,h,m,null,null,X.materials[e]))}function V(e){var c,f,h,m,k,n,o,t;c=H(b,e);f=H(b,e+ga);h=H(b,e+ya);m=H(b,e+ma);k=W(b,e+na);n=H(b,e+za);o=H(b,e+ta);t=H(b,e+Aa);e=H(b,e+Fa);k=X.materials[k];var v=p[o*3],w=p[o*3+1];o=p[o*3+2];var u=p[t*3],x=p[t*3+1];t=p[t*3+2];var y=p[e*3],J=p[e*3+1],e=p[e*3+2];X.faces.push(new THREE.Face4(c,f,h,m,[new THREE.Vector3(p[n*3],p[n*3+1],p[n*3+2]),new THREE.Vector3(v,w,o),new THREE.Vector3(u,
x,t),new THREE.Vector3(y,J,e)],null,k))}function Z(e){var c,f,h,m;c=H(b,e);f=H(b,e+Da);h=H(b,e+U);e=ca[c*2];m=ca[c*2+1];c=ca[f*2];var k=X.faceVertexUvs[0];f=ca[f*2+1];var n=ca[h*2];h=ca[h*2+1];var o=[];o.push(new THREE.UV(e,m));o.push(new THREE.UV(c,f));o.push(new THREE.UV(n,h));k.push(o)}function K(e){var c,f,h,m,k,n;c=H(b,e);f=H(b,e+Ha);h=H(b,e+qa);m=H(b,e+ra);e=ca[c*2];k=ca[c*2+1];c=ca[f*2];n=ca[f*2+1];f=ca[h*2];var o=X.faceVertexUvs[0];h=ca[h*2+1];var t=ca[m*2];m=ca[m*2+1];var p=[];p.push(new THREE.UV(e,
k));p.push(new THREE.UV(c,n));p.push(new THREE.UV(f,h));p.push(new THREE.UV(t,m));o.push(p)}var X=this,S=0,p=[],ca=[],aa,la,ka,ja,ea,da,ga,ya,ma,na,za,ta,Aa,Fa,Da,U,Ha,qa,ra,R,G,Ga,ha,ia,ua;THREE.Geometry.call(this);THREE.Loader.prototype.init_materials(X,f,e);b.substr(S,8);e=J(b,S+8);c=J(b,S+9);k=J(b,S+10);o=J(b,S+11);t=J(b,S+12);u=J(b,S+13);v=J(b,S+14);x=J(b,S+15);w=H(b,S+16);B=H(b,S+16+4);A=H(b,S+16+8);y=H(b,S+16+12);D=H(b,S+16+16);C=H(b,S+16+20);L=H(b,S+16+24);z=H(b,S+16+28);E=H(b,S+16+32);N=
H(b,S+16+36);I=H(b,S+16+40);S+=e;aa=t;la=t*2;ka=t*3;ja=t*3+x;ea=t*3+x+u;da=t*3+x+u*2;ga=t;ya=t*2;ma=t*3;na=t*4;za=t*4+x;ta=t*4+x+u;Aa=t*4+x+u*2;Fa=t*4+x+u*3;Da=v;U=v*2;Ha=v;qa=v*2;ra=v*3;e=t*3+x;ua=t*4+x;R=y*e;G=D*(e+u*3);Ga=C*(e+v*3);ha=L*(e+u*3+v*3);ia=z*ua;e=E*(ua+u*4);ua=N*(ua+v*4);S+=function(e){for(var f,m,k,n=c*3,o=e+w*n;e<o;e+=n)f=P(b,e),m=P(b,e+c),k=P(b,e+c*2),X.vertices.push(new THREE.Vertex(new THREE.Vector3(f,m,k)));return w*n}(S);S+=function(e){for(var c,f,h,m=k*3,o=e+B*m;e<o;e+=m)c=
M(b,e),f=M(b,e+k),h=M(b,e+k*2),p.push(c/127,f/127,h/127);return B*m}(S);S+=function(e){for(var c,f,h=o*2,m=e+A*h;e<m;e+=h)c=P(b,e),f=P(b,e+o),ca.push(c,f);return A*h}(S);R=S+R;G=R+G;Ga=G+Ga;ha=Ga+ha;ia=ha+ia;e=ia+e;ua=e+ua;(function(b){var e,c=t*3+x,f=c+v*3,h=b+C*f;for(e=b;e<h;e+=f)Q(e),Z(e+c);return h-b})(G);(function(b){var e,c=t*3+x+u*3,f=c+v*3,h=b+L*f;for(e=b;e<h;e+=f)O(e),Z(e+c);return h-b})(Ga);(function(b){var e,c=t*4+x,f=c+v*4,h=b+N*f;for(e=b;e<h;e+=f)Y(e),K(e+c);return h-b})(e);(function(b){var e,
c=t*4+x+u*4,f=c+v*4,h=b+I*f;for(e=b;e<h;e+=f)V(e),K(e+c);return h-b})(ua);(function(b){var e,c=t*3+x,f=b+y*c;for(e=b;e<f;e+=c)Q(e);return f-b})(S);(function(b){var e,c=t*3+x+u*3,f=b+D*c;for(e=b;e<f;e+=c)O(e);return f-b})(R);(function(b){var e,c=t*4+x,f=b+z*c;for(e=b;e<f;e+=c)Y(e);return f-b})(ha);(function(b){var e,c=t*4+x+u*4,f=b+E*c;for(e=b;e<f;e+=c)V(e);return f-b})(ia);this.computeCentroids();this.computeFaceNormals();THREE.Loader.prototype.hasNormals(this)&&this.computeTangents()};k.prototype=
new THREE.Geometry;k.prototype.constructor=k;c(new k(e))};
var ColladaLoader=function(){function b(b,e,c){for(var b=la.evaluate(b,la,Z,XPathResult.ORDERED_NODE_ITERATOR_TYPE,null),f={},h=b.iterateNext(),m=0;h;){h=(new e).parse(h);if(h.id.length==0)h.id=c+m++;f[h.id]=h;h=b.iterateNext()}return f}function c(){var b=1E6,e=-b,c=0,f;for(f in ga)for(var h=ga[f],m=0;m<h.sampler.length;m++){var k=h.sampler[m];k.create();b=Math.min(b,k.startTime);e=Math.max(e,k.endTime);c=Math.max(c,k.input.length)}return{start:b,end:e,frames:c}}function e(b,c,f,h){b.world=b.world||
new THREE.Matrix4;b.world.copy(b.matrix);if(b.channels&&b.channels.length){var m=b.channels[0].sampler.output[f];m instanceof THREE.Matrix4&&b.world.copy(m)}h&&b.world.multiply(h,b.world);c.push(b);for(h=0;h<b.nodes.length;h++)e(b.nodes[h],c,f,b.world)}function f(b,f,h){var m=ya[f.url];if(!m||!m.skin)console.log("could not find skin controller!");else if(!f.skeleton||!f.skeleton.length)console.log("could not find the skeleton for the skin!");else{var k=c(),f=ja.getChildById(f.skeleton[0],true)||ja.getChildBySid(f.skeleton[0],
true),n,o,t,p,v=new THREE.Vector3,w;for(n=0;n<b.vertices.length;n++)m.skin.bindShapeMatrix.multiplyVector3(b.vertices[n].position);for(h=0;h<k.frames;h++){var u=[],x=[];for(n=0;n<b.vertices.length;n++)x.push(new THREE.Vertex(new THREE.Vector3));e(f,u,h);n=u;o=m.skin;for(p=0;p<n.length;p++){t=n[p];w=-1;for(var y=0;y<o.joints.length;y++)if(t.sid==o.joints[y]){w=y;break}if(w>=0){y=o.invBindMatrices[w];t.invBindMatrix=y;t.skinningMatrix=new THREE.Matrix4;t.skinningMatrix.multiply(t.world,y);t.weights=
[];for(y=0;y<o.weights.length;y++)for(var J=0;J<o.weights[y].length;J++){var z=o.weights[y][J];z.joint==w&&t.weights.push(z)}}else throw"could not find joint!";}for(n=0;n<u.length;n++)for(o=0;o<u[n].weights.length;o++)t=u[n].weights[o],p=t.index,t=t.weight,w=b.vertices[p],p=x[p],v.x=w.position.x,v.y=w.position.y,v.z=w.position.z,u[n].skinningMatrix.multiplyVector3(v),p.position.x+=v.x*t,p.position.y+=v.y*t,p.position.z+=v.z*t;b.morphTargets.push({name:"target_"+h,vertices:x})}}}function k(b){var e=
new THREE.Object3D,c,h,m;e.name=b.id||"";e.matrixAutoUpdate=false;e.matrix=b.matrix;for(m=0;m<b.controllers.length;m++){var n=ya[b.controllers[m].url];switch(n.type){case "skin":if(ma[n.skin.source]){var o=new B;o.url=n.skin.source;o.instance_material=b.controllers[m].instance_material;b.geometries.push(o);c=b.controllers[m]}else if(ya[n.skin.source]&&(h=n=ya[n.skin.source],n.morph&&ma[n.morph.source]))o=new B,o.url=n.morph.source,o.instance_material=b.controllers[m].instance_material,b.geometries.push(o);
break;case "morph":if(ma[n.morph.source])o=new B,o.url=n.morph.source,o.instance_material=b.controllers[m].instance_material,b.geometries.push(o),h=b.controllers[m];console.log("DAE: morph-controller partially supported.")}}for(m=0;m<b.geometries.length;m++){var n=b.geometries[m],o=n.instance_material,n=ma[n.url],t={},p=0,v;if(n&&n.mesh&&n.mesh.primitives){if(e.name.length==0)e.name=n.id;if(o)for(j=0;j<o.length;j++){v=o[j];var w=za[na[v.target].instance_effect.url].shader;w.material.opacity=!w.material.opacity?
1:w.material.opacity;v=t[v.symbol]=w.material;p++}o=v||new THREE.MeshLambertMaterial({color:14540253,shading:THREE.FlatShading});n=n.mesh.geometry3js;if(p>1){o=new THREE.MeshFaceMaterial;for(j=0;j<n.faces.length;j++)p=n.faces[j],p.materials=[t[p.daeMaterial]]}if(c!==void 0)f(n,c),o.morphTargets=true,o=new THREE.SkinnedMesh(n,o),o.skeleton=c.skeleton,o.skinController=ya[c.url],o.skinInstanceController=c,o.name="skin_"+U.length,U.push(o);else if(h!==void 0){t=n;p=h instanceof x?ya[h.url]:h;if(!p||!p.morph)console.log("could not find morph controller!");
else{p=p.morph;for(w=0;w<p.targets.length;w++){var u=ma[p.targets[w]];if(u.mesh&&u.mesh.primitives&&u.mesh.primitives.length)u=u.mesh.primitives[0].geometry,u.vertices.length===t.vertices.length&&t.morphTargets.push({name:"target_1",vertices:u.vertices})}t.morphTargets.push({name:"target_Z",vertices:t.vertices})}o.morphTargets=true;o=new THREE.Mesh(n,o);o.name="morph_"+Da.length;Da.push(o)}else o=new THREE.Mesh(n,o);e.addChild(o)}}for(m=0;m<b.nodes.length;m++)e.addChild(k(b.nodes[m],b));return e}
function m(){this.init_from=this.id=""}function h(){this.type=this.name=this.id="";this.morph=this.skin=null}function n(){this.weights=this.targets=this.source=this.method=null}function o(){this.source="";this.bindShapeMatrix=null;this.invBindMatrices=[];this.joints=[];this.weights=[]}function t(){this.name=this.id="";this.nodes=[];this.scene=new THREE.Object3D}function u(){this.sid=this.name=this.id="";this.nodes=[];this.controllers=[];this.transforms=[];this.geometries=[];this.channels=[];this.matrix=
new THREE.Matrix4}function v(){this.type=this.sid="";this.data=[];this.matrix=new THREE.Matrix4}function x(){this.url="";this.skeleton=[];this.instance_material=[]}function w(){this.target=this.symbol=""}function B(){this.url="";this.instance_material=[]}function A(){this.id="";this.mesh=null}function y(b){this.geometry=b.id;this.primitives=[];this.geometry3js=this.vertices=null}function D(){}function C(){this.material="";this.count=0;this.inputs=[];this.vcount=null;this.p=[];this.geometry=new THREE.Geometry}
function L(){this.source="";this.stride=this.count=0;this.params=[]}function z(){this.input={}}function E(){this.semantic="";this.offset=0;this.source="";this.set=0}function N(b){this.id=b;this.type=null}function I(){this.name=this.id="";this.instance_effect=null}function P(){this.color=new THREE.Color(0);this.color.setRGB(Math.random(),Math.random(),Math.random());this.color.a=1;this.texcoord=this.texture=null}function H(b,e){this.type=b;this.effect=e;this.material=null}function W(b){this.effect=
b;this.format=this.init_from=null}function M(b){this.effect=b;this.mipfilter=this.magfilter=this.minfilter=this.wrap_t=this.wrap_s=this.source=null}function J(){this.name=this.id="";this.sampler=this.surface=this.shader=null}function Q(){this.url=""}function O(){this.name=this.id="";this.source={};this.sampler=[];this.channel=[]}function Y(b){this.animation=b;this.target=this.source="";this.member=this.arrIndices=this.arrSyntax=this.dotSyntax=this.sid=null}function V(b){this.id="";this.animation=
b;this.inputs=[];this.endTime=this.startTime=this.interpolation=this.output=this.input=null;this.duration=0}function Z(b){return b=="dae"?"http://www.collada.org/2005/11/COLLADASchema":null}function K(b){for(var b=S(b),e=[],c=0;c<b.length;c++)e.push(parseFloat(b[c]));return e}function X(b){for(var b=S(b),e=[],c=0;c<b.length;c++)e.push(parseInt(b[c],10));return e}function S(b){return b.replace(/^\s+/,"").replace(/\s+$/,"").split(/\s+/)}function p(b,e,c){return b.hasAttribute(e)?parseInt(b.getAttribute(e),
10):c}function ca(b,e){if(b===void 0){for(var c="0.";c.length<e+2;)c+="0";return c}e=e||2;c=b.toString().split(".");for(c[1]=c.length>1?c[1].substr(0,e):"0";c[1].length<e;)c[1]+="0";return c.join(".")}function aa(b,e){var c="";c+=ca(b.x,e)+",";c+=ca(b.y,e)+",";c+=ca(b.z,e);return c}var la=null,ka=null,ja,ea={},da={},ga={},ya={},ma={},na={},za={},ta,Aa=null,Fa,Da,U,Ha=THREE.SmoothShading;m.prototype.parse=function(b){this.id=b.getAttribute("id");for(var e=0;e<b.childNodes.length;e++){var c=b.childNodes[e];
if(c.nodeName=="init_from")this.init_from=c.textContent}return this};h.prototype.parse=function(b){this.id=b.getAttribute("id");this.name=b.getAttribute("name");this.type="none";for(var e=0;e<b.childNodes.length;e++){var c=b.childNodes[e];switch(c.nodeName){case "skin":this.skin=(new o).parse(c);this.type=c.nodeName;break;case "morph":this.morph=(new n).parse(c),this.type=c.nodeName}}return this};n.prototype.parse=function(b){var e={},c=[],f;this.method=b.getAttribute("method");this.source=b.getAttribute("source").replace(/^#/,
"");for(f=0;f<b.childNodes.length;f++){var h=b.childNodes[f];if(h.nodeType==1)switch(h.nodeName){case "source":h=(new N).parse(h);e[h.id]=h;break;case "targets":c=this.parseInputs(h);break;default:console.log(h.nodeName)}}for(f=0;f<c.length;f++)switch(b=c[f],h=e[b.source],b.semantic){case "MORPH_TARGET":this.targets=h.read();break;case "MORPH_WEIGHT":this.weights=h.read()}return this};n.prototype.parseInputs=function(b){for(var e=[],c=0;c<b.childNodes.length;c++){var f=b.childNodes[c];if(f.nodeType==
1)switch(f.nodeName){case "input":e.push((new E).parse(f))}}return e};o.prototype.parse=function(b){var e={},c,f;this.source=b.getAttribute("source").replace(/^#/,"");this.invBindMatrices=[];this.joints=[];this.weights=[];for(var h=0;h<b.childNodes.length;h++){var m=b.childNodes[h];if(m.nodeType==1)switch(m.nodeName){case "bind_shape_matrix":m=K(m.textContent);this.bindShapeMatrix=new THREE.Matrix4;this.bindShapeMatrix.set(m[0],m[1],m[2],m[3],m[4],m[5],m[6],m[7],m[8],m[9],m[10],m[11],m[12],m[13],
m[14],m[15]);break;case "source":m=(new N).parse(m);e[m.id]=m;break;case "joints":c=m;break;case "vertex_weights":f=m;break;default:console.log(m.nodeName)}}this.parseJoints(c,e);this.parseWeights(f,e);return this};o.prototype.parseJoints=function(b,e){for(var c=0;c<b.childNodes.length;c++){var f=b.childNodes[c];if(f.nodeType==1)switch(f.nodeName){case "input":var f=(new E).parse(f),h=e[f.source];if(f.semantic=="JOINT")this.joints=h.read();else if(f.semantic=="INV_BIND_MATRIX")this.invBindMatrices=
h.read()}}};o.prototype.parseWeights=function(b,e){for(var c,f,h=[],m=0;m<b.childNodes.length;m++){var k=b.childNodes[m];if(k.nodeType==1)switch(k.nodeName){case "input":h.push((new E).parse(k));break;case "v":c=X(k.textContent);break;case "vcount":f=X(k.textContent)}}for(m=k=0;m<f.length;m++){for(var n=f[m],o=[],t=0;t<n;t++){for(var p={},v=0;v<h.length;v++){var w=h[v],u=c[k+w.offset];switch(w.semantic){case "JOINT":p.joint=u;break;case "WEIGHT":p.weight=e[w.source].data[u]}}o.push(p);k+=h.length}for(t=
0;t<o.length;t++)o[t].index=m;this.weights.push(o)}};t.prototype.getChildById=function(b,e){for(var c=0;c<this.nodes.length;c++){var f=this.nodes[c].getChildById(b,e);if(f)return f}return null};t.prototype.getChildBySid=function(b,e){for(var c=0;c<this.nodes.length;c++){var f=this.nodes[c].getChildBySid(b,e);if(f)return f}return null};t.prototype.parse=function(b){this.id=b.getAttribute("id");this.name=b.getAttribute("name");this.nodes=[];for(var e=0;e<b.childNodes.length;e++){var c=b.childNodes[e];
if(c.nodeType==1)switch(c.nodeName){case "node":this.nodes.push((new u).parse(c))}}return this};u.prototype.getChannelForTransform=function(b){for(var e=0;e<this.channels.length;e++){var c=this.channels[e],f=c.target.split("/");f.shift();var h=f.shift(),m=h.indexOf(".")>=0,k=h.indexOf("(")>=0,n;if(m)f=h.split("."),h=f.shift(),f.shift();else if(k){n=h.split("(");h=n.shift();for(f=0;f<n.length;f++)n[f]=parseInt(n[f].replace(/\)/,""))}if(h==b)return c.info={sid:h,dotSyntax:m,arrSyntax:k,arrIndices:n},
c}return null};u.prototype.getChildById=function(b,e){if(this.id==b)return this;if(e)for(var c=0;c<this.nodes.length;c++){var f=this.nodes[c].getChildById(b,e);if(f)return f}return null};u.prototype.getChildBySid=function(b,e){if(this.sid==b)return this;if(e)for(var c=0;c<this.nodes.length;c++){var f=this.nodes[c].getChildBySid(b,e);if(f)return f}return null};u.prototype.getTransformBySid=function(b){for(var e=0;e<this.transforms.length;e++)if(this.transforms[e].sid==b)return this.transforms[e];return null};
u.prototype.parse=function(b){var e;this.id=b.getAttribute("id");this.sid=b.getAttribute("sid");this.name=b.getAttribute("name");this.type=b.getAttribute("type");this.type=this.type=="JOINT"?this.type:"NODE";this.nodes=[];this.transforms=[];this.geometries=[];this.controllers=[];this.matrix=new THREE.Matrix4;for(var c=0;c<b.childNodes.length;c++)if(e=b.childNodes[c],e.nodeType==1)switch(e.nodeName){case "node":this.nodes.push((new u).parse(e));break;case "instance_camera":break;case "instance_controller":this.controllers.push((new x).parse(e));
break;case "instance_geometry":this.geometries.push((new B).parse(e));break;case "instance_light":break;case "instance_node":e=e.getAttribute("url").replace(/^#/,"");(e=la.evaluate(".//dae:library_nodes//dae:node[@id='"+e+"']",la,Z,XPathResult.ORDERED_NODE_ITERATOR_TYPE,null).iterateNext())&&this.nodes.push((new u).parse(e));break;case "rotate":case "translate":case "scale":case "matrix":case "lookat":case "skew":this.transforms.push((new v).parse(e));break;case "extra":break;default:console.log(e.nodeName)}b=
[];c=1E6;e=-1E6;for(var f in ga)for(var h=ga[f],m=0;m<h.channel.length;m++){var k=h.channel[m],n=h.sampler[m];f=k.target.split("/")[0];if(f==this.id)n.create(),k.sampler=n,c=Math.min(c,n.startTime),e=Math.max(e,n.endTime),b.push(k)}if(b.length)this.startTime=c,this.endTime=e;if((this.channels=b)&&this.channels.length){f=1E7;for(i=0;i<this.channels.length;i++){b=this.channels[i].sampler;for(c=0;c<b.input.length-1;c++)f=Math.min(f,b.input[c+1]-b.input[c])}c=[];for(b=this.startTime;b<this.endTime;b+=
f){e=b;for(var h={},o=void 0,m=0;m<this.channels.length;m++)o=this.channels[m],h[o.sid]=o;k=new THREE.Matrix4;for(m=0;m<this.transforms.length;m++)if(n=this.transforms[m],o=h[n.sid],o!==void 0){for(var t=o.sampler,p,o=0;o<t.input.length-1;o++)if(t.input[o+1]>e){p=t.output[o];break}k=p!==void 0?p instanceof THREE.Matrix4?k.multiply(k,p):k.multiply(k,n.matrix):k.multiply(k,n.matrix)}else k=k.multiply(k,n.matrix);e=k;c.push({time:b,pos:[e.n14,e.n24,e.n34],rotq:[0,0,0,1],scl:[1,1,1]})}this.keys=c}this.updateMatrix();
return this};u.prototype.updateMatrix=function(){this.matrix.identity();for(var b=0;b<this.transforms.length;b++)this.matrix.multiply(this.matrix,this.transforms[b].matrix)};v.prototype.parse=function(b){this.sid=b.getAttribute("sid");this.type=b.nodeName;this.data=K(b.textContent);this.updateMatrix();return this};v.prototype.updateMatrix=function(){var b=0;this.matrix.identity();switch(this.type){case "matrix":this.matrix.set(this.data[0],this.data[1],this.data[2],this.data[3],this.data[4],this.data[5],
this.data[6],this.data[7],this.data[8],this.data[9],this.data[10],this.data[11],this.data[12],this.data[13],this.data[14],this.data[15]);break;case "translate":this.matrix.setTranslation(this.data[0],this.data[1],this.data[2]);break;case "rotate":b=this.data[3]*(Math.PI/180);this.matrix.setRotationAxis(new THREE.Vector3(this.data[0],this.data[1],this.data[2]),b);break;case "scale":this.matrix.setScale(this.data[0],this.data[1],this.data[2])}return this.matrix};x.prototype.parse=function(b){this.url=
b.getAttribute("url").replace(/^#/,"");this.skeleton=[];this.instance_material=[];for(var e=0;e<b.childNodes.length;e++){var c=b.childNodes[e];if(c.nodeType==1)switch(c.nodeName){case "skeleton":this.skeleton.push(c.textContent.replace(/^#/,""));break;case "bind_material":if(c=la.evaluate(".//dae:instance_material",c,Z,XPathResult.ORDERED_NODE_ITERATOR_TYPE,null))for(var f=c.iterateNext();f;)this.instance_material.push((new w).parse(f)),f=c.iterateNext()}}return this};w.prototype.parse=function(b){this.symbol=
b.getAttribute("symbol");this.target=b.getAttribute("target").replace(/^#/,"");return this};B.prototype.parse=function(b){this.url=b.getAttribute("url").replace(/^#/,"");this.instance_material=[];for(var e=0;e<b.childNodes.length;e++){var c=b.childNodes[e];if(c.nodeType==1&&c.nodeName=="bind_material"){if(b=la.evaluate(".//dae:instance_material",c,Z,XPathResult.ORDERED_NODE_ITERATOR_TYPE,null))for(e=b.iterateNext();e;)this.instance_material.push((new w).parse(e)),e=b.iterateNext();break}}return this};
A.prototype.parse=function(b){this.id=b.getAttribute("id");for(var e=0;e<b.childNodes.length;e++){var c=b.childNodes[e];switch(c.nodeName){case "mesh":this.mesh=(new y(this)).parse(c)}}return this};y.prototype.parse=function(b){this.primitives=[];var e;for(e=0;e<b.childNodes.length;e++){var c=b.childNodes[e];switch(c.nodeName){case "source":var f=c.getAttribute("id");ea[f]==void 0&&(ea[f]=(new N(f)).parse(c));break;case "vertices":this.vertices=(new z).parse(c);break;case "triangles":this.primitives.push((new C).parse(c));
break;case "polygons":console.warn("polygon holes not yet supported!");case "polylist":this.primitives.push((new D).parse(c))}}f={};this.geometry3js=new THREE.Geometry;c=ea[this.vertices.input.POSITION.source].data;for(b=e=0;e<c.length;e+=3,b++){var h=new THREE.Vertex(new THREE.Vector3(c[e],c[e+1],c[e+2])),m=h,k=b,n=aa(m.position);f[n]===void 0&&(f[n]={v:m,index:k});this.geometry3js.vertices.push(h)}for(e=0;e<this.primitives.length;e++)primitive=this.primitives[e],primitive.setVertices(this.vertices),
this.handlePrimitive(primitive,this.geometry3js,f);this.geometry3js.computeCentroids();this.geometry3js.computeFaceNormals();this.geometry3js.computeVertexNormals();this.geometry3js.computeBoundingBox();return this};y.prototype.handlePrimitive=function(b,e,c){var f=0,h,m,k=b.p,n=b.inputs,o,t,p,v=0,w=3,u=[];for(h=0;h<n.length;h++)o=n[h],o.semantic=="TEXCOORD"&&u.push(o.set);for(;f<k.length;){var x=[],y=[],J={};b.vcount&&(w=b.vcount[v++]);for(h=0;h<w;h++)for(m=0;m<n.length;m++)switch(o=n[m],source=
ea[o.source],t=k[f+h*n.length+o.offset],numParams=source.accessor.params.length,p=t*numParams,o.semantic){case "VERTEX":o=aa(e.vertices[t].position);x.push(c[o].index);break;case "NORMAL":y.push(new THREE.Vector3(source.data[p+0],source.data[p+1],source.data[p+2]));break;case "TEXCOORD":J[o.set]===void 0&&(J[o.set]=[]),J[o.set].push(new THREE.UV(source.data[p+0],source.data[p+1]))}m=new THREE.Face3(x[0],x[1],x[2],[y[0],y[1],y[2]]);m.daeMaterial=b.material;e.faces.push(m);for(m=0;m<u.length;m++)o=
J[u[m]],e.faceVertexUvs[m].push([o[0],o[1],o[2]]);if(w>3)for(h=2;h<x.length-1;h++){m=new THREE.Face3(x[0],x[h],x[h+1],[y[0],y[h],y[h+1]]);m.daeMaterial=b.material;e.faces.push(m);for(m=0;m<u.length;m++)o=J[u[m]],e.faceVertexUvs[m].push([o[0],o[h],o[h+1]])}f+=n.length*w}};D.prototype=new C;D.prototype.constructor=D;C.prototype.setVertices=function(b){for(var e=0;e<this.inputs.length;e++)if(this.inputs[e].source==b.id)this.inputs[e].source=b.input.POSITION.source};C.prototype.parse=function(b){this.inputs=
[];this.material=b.getAttribute("material");this.count=p(b,"count",0);for(var e=0;e<b.childNodes.length;e++){var c=b.childNodes[e];switch(c.nodeName){case "input":this.inputs.push((new E).parse(b.childNodes[e]));break;case "vcount":this.vcount=X(c.textContent);break;case "p":this.p=X(c.textContent)}}return this};L.prototype.parse=function(b){this.params=[];this.source=b.getAttribute("source");this.count=p(b,"count",0);this.stride=p(b,"stride",0);for(var e=0;e<b.childNodes.length;e++){var c=b.childNodes[e];
if(c.nodeName=="param"){var f={};f.name=c.getAttribute("name");f.type=c.getAttribute("type");this.params.push(f)}}return this};z.prototype.parse=function(b){this.id=b.getAttribute("id");for(var e=0;e<b.childNodes.length;e++)b.childNodes[e].nodeName=="input"&&(input=(new E).parse(b.childNodes[e]),this.input[input.semantic]=input);return this};E.prototype.parse=function(b){this.semantic=b.getAttribute("semantic");this.source=b.getAttribute("source").replace(/^#/,"");this.set=p(b,"set",-1);this.offset=
p(b,"offset",0);if(this.semantic=="TEXCOORD"&&this.set<0)this.set=0;return this};N.prototype.parse=function(b){this.id=b.getAttribute("id");for(var e=0;e<b.childNodes.length;e++){var c=b.childNodes[e];switch(c.nodeName){case "bool_array":for(var f=S(c.textContent),h=[],m=0;m<f.length;m++)h.push(f[m]=="true"||f[m]=="1"?true:false);this.data=h;this.type=c.nodeName;break;case "float_array":this.data=K(c.textContent);this.type=c.nodeName;break;case "int_array":this.data=X(c.textContent);this.type=c.nodeName;
break;case "IDREF_array":case "Name_array":this.data=S(c.textContent);this.type=c.nodeName;break;case "technique_common":for(f=0;f<c.childNodes.length;f++)if(c.childNodes[f].nodeName=="accessor"){this.accessor=(new L).parse(c.childNodes[f]);break}}}return this};N.prototype.read=function(){var b=[],e=this.accessor.params[0];switch(e.type){case "IDREF":case "Name":case "float":return this.data;case "float4x4":for(e=0;e<this.data.length;e+=16){var c=this.data.slice(e,e+16),f=new THREE.Matrix4;f.set(c[0],
c[1],c[2],c[3],c[4],c[5],c[6],c[7],c[8],c[9],c[10],c[11],c[12],c[13],c[14],c[15]);b.push(f)}break;default:console.log("Dae::Source:read dont know how to read "+e.type)}return b};I.prototype.parse=function(b){this.id=b.getAttribute("id");this.name=b.getAttribute("name");for(var e=0;e<b.childNodes.length;e++)if(b.childNodes[e].nodeName=="instance_effect"){this.instance_effect=(new Q).parse(b.childNodes[e]);break}return this};P.prototype.isColor=function(){return this.texture==null};P.prototype.isTexture=
function(){return this.texture!=null};P.prototype.parse=function(b){for(var e=0;e<b.childNodes.length;e++){var c=b.childNodes[e];if(c.nodeType==1)switch(c.nodeName){case "color":c=K(c.textContent);this.color=new THREE.Color(0);this.color.setRGB(c[0],c[1],c[2]);this.color.a=c[3];break;case "texture":this.texture=c.getAttribute("texture"),this.texcoord=c.getAttribute("texcoord")}}return this};H.prototype.parse=function(b){for(var e=0;e<b.childNodes.length;e++){var c=b.childNodes[e];if(c.nodeType==1)switch(c.nodeName){case "ambient":case "emission":case "diffuse":case "specular":case "transparent":this[c.nodeName]=
(new P).parse(c);break;case "shininess":case "reflectivity":case "transparency":var f;f=la.evaluate(".//dae:float",c,Z,XPathResult.ORDERED_NODE_ITERATOR_TYPE,null);for(var h=f.iterateNext(),m=[];h;)m.push(h),h=f.iterateNext();f=m;f.length>0&&(this[c.nodeName]=parseFloat(f[0].textContent))}}this.create();return this};H.prototype.create=function(){var b={},e=this.transparency!==void 0&&this.transparency<1,c;for(c in this)switch(c){case "ambient":case "emission":case "diffuse":case "specular":var f=
this[c];if(f instanceof P)if(f.isTexture()){if(this.effect.sampler&&this.effect.surface&&this.effect.sampler.source==this.effect.surface.sid&&(f=da[this.effect.surface.init_from]))b.map=THREE.ImageUtils.loadTexture(Fa+f.init_from),b.map.wrapS=THREE.RepeatWrapping,b.map.wrapT=THREE.RepeatWrapping,b.map.repeat.x=1,b.map.repeat.y=-1}else c=="diffuse"?b.color=f.color.getHex():e||(b[c]=f.color.getHex());break;case "shininess":case "reflectivity":b[c]=this[c];break;case "transparency":if(e)b.transparent=
true,b.opacity=this[c],e=true}b.shading=Ha;return this.material=new THREE.MeshLambertMaterial(b)};W.prototype.parse=function(b){for(var e=0;e<b.childNodes.length;e++){var c=b.childNodes[e];if(c.nodeType==1)switch(c.nodeName){case "init_from":this.init_from=c.textContent;break;case "format":this.format=c.textContent;break;default:console.log("unhandled Surface prop: "+c.nodeName)}}return this};M.prototype.parse=function(b){for(var e=0;e<b.childNodes.length;e++){var c=b.childNodes[e];if(c.nodeType==
1)switch(c.nodeName){case "source":this.source=c.textContent;break;case "minfilter":this.minfilter=c.textContent;break;case "magfilter":this.magfilter=c.textContent;break;case "mipfilter":this.mipfilter=c.textContent;break;case "wrap_s":this.wrap_s=c.textContent;break;case "wrap_t":this.wrap_t=c.textContent;break;default:console.log("unhandled Sampler2D prop: "+c.nodeName)}}return this};J.prototype.create=function(){if(this.shader==null)return null};J.prototype.parse=function(b){this.id=b.getAttribute("id");
this.name=b.getAttribute("name");this.shader=null;for(var e=0;e<b.childNodes.length;e++){var c=b.childNodes[e];if(c.nodeType==1)switch(c.nodeName){case "profile_COMMON":this.parseTechnique(this.parseProfileCOMMON(c))}}return this};J.prototype.parseNewparam=function(b){for(var e=b.getAttribute("sid"),c=0;c<b.childNodes.length;c++){var f=b.childNodes[c];if(f.nodeType==1)switch(f.nodeName){case "surface":this.surface=(new W(this)).parse(f);this.surface.sid=e;break;case "sampler2D":this.sampler=(new M(this)).parse(f);
this.sampler.sid=e;break;case "extra":break;default:console.log(f.nodeName)}}};J.prototype.parseProfileCOMMON=function(b){for(var e,c=0;c<b.childNodes.length;c++){var f=b.childNodes[c];if(f.nodeType==1)switch(f.nodeName){case "profile_COMMON":this.parseProfileCOMMON(f);break;case "technique":e=f;break;case "newparam":this.parseNewparam(f);break;case "extra":break;default:console.log(f.nodeName)}}return e};J.prototype.parseTechnique=function(b){for(var e=0;e<b.childNodes.length;e++){var c=b.childNodes[e];
if(c.nodeType==1)switch(c.nodeName){case "lambert":case "blinn":case "phong":this.shader=(new H(c.nodeName,this)).parse(c)}}};Q.prototype.parse=function(b){this.url=b.getAttribute("url").replace(/^#/,"");return this};O.prototype.parse=function(b){this.id=b.getAttribute("id");this.name=b.getAttribute("name");this.source={};for(var e=0;e<b.childNodes.length;e++){var c=b.childNodes[e];if(c.nodeType==1)switch(c.nodeName){case "source":c=(new N).parse(c);this.source[c.id]=c;break;case "sampler":this.sampler.push((new V(this)).parse(c));
break;case "channel":this.channel.push((new Y(this)).parse(c))}}return this};Y.prototype.parse=function(b){this.source=b.getAttribute("source").replace(/^#/,"");this.target=b.getAttribute("target");var e=this.target.split("/");e.shift();var b=e.shift(),c=b.indexOf(".")>=0,f=b.indexOf("(")>=0,h,m;if(c)e=b.split("."),b=e.shift(),m=e.shift();else if(f){h=b.split("(");b=h.shift();for(e=0;e<h.length;e++)h[e]=parseInt(h[e].replace(/\)/,""))}this.sid=b;this.dotSyntax=c;this.arrSyntax=f;this.arrIndices=h;
this.member=m;return this};V.prototype.parse=function(b){this.id=b.getAttribute("id");this.inputs=[];for(var e=0;e<b.childNodes.length;e++){var c=b.childNodes[e];if(c.nodeType==1)switch(c.nodeName){case "input":this.inputs.push((new E).parse(c))}}return this};V.prototype.create=function(){for(var b=0;b<this.inputs.length;b++){var e=this.inputs[b],c=this.animation.source[e.source];switch(e.semantic){case "INPUT":this.input=c.read();break;case "OUTPUT":this.output=c.read();break;case "INTERPOLATION":this.interpolation=
c.read();break;case "IN_TANGENT":break;case "OUT_TANGENT":break;default:console.log(e.semantic)}}this.duration=this.endTime=this.startTime=0;if(this.input.length){this.startTime=1E8;this.endTime=-1E8;for(b=0;b<this.input.length;b++)this.startTime=Math.min(this.startTime,this.input[b]),this.endTime=Math.max(this.endTime,this.input[b]);this.duration=this.endTime-this.startTime}};return{load:function(e,f){if(document.implementation&&document.implementation.createDocument){document.implementation.createDocument("http://www.collada.org/2005/11/COLLADASchema",
"COLLADA",null);e+="?rnd="+Math.random();var n=new XMLHttpRequest;n.overrideMimeType&&n.overrideMimeType("text/xml");n.onreadystatechange=function(){if(n.readyState==4&&(n.status==0||n.status==200)){Aa=f;var o,p=e;la=n.responseXML;o=Aa;p!==void 0&&(p=p.split("/"),p.pop(),Fa=p.join("/")+"/");da=b("//dae:library_images/dae:image",m,"image");na=b("//dae:library_materials/dae:material",I,"material");za=b("//dae:library_effects/dae:effect",J,"effect");ma=b("//dae:library_geometries/dae:geometry",A,"geometry");
ya=b("//dae:library_controllers/dae:controller",h,"controller");ga=b("//dae:library_animations/dae:animation",O,"animation");ta=b(".//dae:library_visual_scenes/dae:visual_scene",t,"visual_scene");Da=[];U=[];(p=la.evaluate(".//dae:scene/dae:instance_visual_scene",la,Z,XPathResult.ORDERED_NODE_ITERATOR_TYPE,null).iterateNext())?(p=p.getAttribute("url").replace(/^#/,""),ja=ta[p]):ja=null;ka=new THREE.Object3D;for(p=0;p<ja.nodes.length;p++)ka.addChild(k(ja.nodes[p]));c();for(var v in ga);v={scene:ka,
morphs:Da,skins:U,dae:{images:da,materials:na,effects:za,geometries:ma,controllers:ya,animations:ga,visualScenes:ta,scene:ja}};o&&o(v)}};n.open("GET",e,true);n.send(null)}else alert("Don't know how to parse XML!")},setPreferredShading:function(b){Ha=b},applySkin:f,geometries:ma}};THREE.JSONLoader=function(b){THREE.Loader.call(this,b)};THREE.JSONLoader.prototype=new THREE.Loader;THREE.JSONLoader.prototype.constructor=THREE.JSONLoader;THREE.JSONLoader.prototype.supr=THREE.Loader.prototype;
THREE.JSONLoader.prototype.load=function(b){var c=this,e=b.model,f=b.callback,k=b.texture_path?b.texture_path:this.extractUrlbase(e),b=new Worker(e);b.onmessage=function(b){c.createModel(b.data,f,k);c.onLoadComplete()};this.onLoadStart();b.postMessage((new Date).getTime())};
THREE.JSONLoader.prototype.createModel=function(b,c,e){var f=new THREE.Geometry,k=b.scale!==void 0?1/b.scale:1;this.init_materials(f,b.materials,e);(function(e){if(b.version===void 0||b.version!=2)console.error("Deprecated file format.");else{var c,k,o,t,u,v,x,w,B,A,y,D,C,L,z=b.faces;v=b.vertices;var E=b.normals,N=b.colors,I=0;for(c=0;c<b.uvs.length;c++)b.uvs[c].length&&I++;for(c=0;c<I;c++)f.faceUvs[c]=[],f.faceVertexUvs[c]=[];t=0;for(u=v.length;t<u;)x=new THREE.Vertex,x.position.x=v[t++]*e,x.position.y=
v[t++]*e,x.position.z=v[t++]*e,f.vertices.push(x);t=0;for(u=z.length;t<u;){e=z[t++];v=e&1;o=e&2;c=e&4;k=e&8;w=e&16;x=e&32;A=e&64;e&=128;v?(y=new THREE.Face4,y.a=z[t++],y.b=z[t++],y.c=z[t++],y.d=z[t++],v=4):(y=new THREE.Face3,y.a=z[t++],y.b=z[t++],y.c=z[t++],v=3);if(o)o=z[t++],y.materials=f.materials[o];o=f.faces.length;if(c)for(c=0;c<I;c++)D=b.uvs[c],B=z[t++],L=D[B*2],B=D[B*2+1],f.faceUvs[c][o]=new THREE.UV(L,B);if(k)for(c=0;c<I;c++){D=b.uvs[c];C=[];for(k=0;k<v;k++)B=z[t++],L=D[B*2],B=D[B*2+1],C[k]=
new THREE.UV(L,B);f.faceVertexUvs[c][o]=C}if(w)w=z[t++]*3,k=new THREE.Vector3,k.x=E[w++],k.y=E[w++],k.z=E[w],y.normal=k;if(x)for(c=0;c<v;c++)w=z[t++]*3,k=new THREE.Vector3,k.x=E[w++],k.y=E[w++],k.z=E[w],y.vertexNormals.push(k);if(A)x=z[t++],x=new THREE.Color(N[x]),y.color=x;if(e)for(c=0;c<v;c++)x=z[t++],x=new THREE.Color(N[x]),y.vertexColors.push(x);f.faces.push(y)}}})(k);(function(){var e,c,k,o;if(b.skinWeights){e=0;for(c=b.skinWeights.length;e<c;e+=2)k=b.skinWeights[e],o=b.skinWeights[e+1],f.skinWeights.push(new THREE.Vector4(k,
o,0,0))}if(b.skinIndices){e=0;for(c=b.skinIndices.length;e<c;e+=2)k=b.skinIndices[e],o=b.skinIndices[e+1],f.skinIndices.push(new THREE.Vector4(k,o,0,0))}f.bones=b.bones;f.animation=b.animation})();(function(e){if(b.morphTargets!==void 0){var c,k,o,t,u,v,x,w,B;c=0;for(k=b.morphTargets.length;c<k;c++){f.morphTargets[c]={};f.morphTargets[c].name=b.morphTargets[c].name;f.morphTargets[c].vertices=[];w=f.morphTargets[c].vertices;B=b.morphTargets[c].vertices;o=0;for(t=B.length;o<t;o+=3)u=B[o]*e,v=B[o+1]*
e,x=B[o+2]*e,w.push(new THREE.Vertex(new THREE.Vector3(u,v,x)))}}if(b.morphColors!==void 0){c=0;for(k=b.morphColors.length;c<k;c++){f.morphColors[c]={};f.morphColors[c].name=b.morphColors[c].name;f.morphColors[c].colors=[];t=f.morphColors[c].colors;u=b.morphColors[c].colors;e=0;for(o=u.length;e<o;e+=3)v=new THREE.Color(16755200),v.setRGB(u[e],u[e+1],u[e+2]),t.push(v)}}})(k);(function(){if(b.edges!==void 0){var e,c,k;for(e=0;e<b.edges.length;e+=2)c=b.edges[e],k=b.edges[e+1],f.edges.push(new THREE.Edge(f.vertices[c],
f.vertices[k],c,k))}})();f.computeCentroids();f.computeFaceNormals();this.hasNormals(f)&&f.computeTangents();c(f)};THREE.SceneLoader=function(){this.onLoadStart=function(){};this.onLoadProgress=function(){};this.onLoadComplete=function(){};this.callbackSync=function(){};this.callbackProgress=function(){}};
THREE.SceneLoader.prototype={load:function(b,c){var e=this,f=new Worker(b);f.postMessage(0);var k=THREE.Loader.prototype.extractUrlbase(b);f.onmessage=function(b){function f(b,e){return e=="relativeToHTML"?b:k+"/"+b}function n(){for(w in J.objects)if(!K.objects[w])if(C=J.objects[w],C.geometry!==void 0){if(N=K.geometries[C.geometry]){var b=false;W=[];for(S=0;S<C.materials.length;S++)W[S]=K.materials[C.materials[S]],b=W[S]instanceof THREE.MeshShaderMaterial;b&&N.computeTangents();L=C.position;r=C.rotation;
q=C.quaternion;s=C.scale;q=0;W.length==0&&(W[0]=new THREE.MeshFaceMaterial);W.length>1&&(W=[new THREE.MeshFaceMaterial]);object=new THREE.Mesh(N,W);object.name=w;object.position.set(L[0],L[1],L[2]);q?(object.quaternion.set(q[0],q[1],q[2],q[3]),object.useQuaternion=true):object.rotation.set(r[0],r[1],r[2]);object.scale.set(s[0],s[1],s[2]);object.visible=C.visible;K.scene.addObject(object);K.objects[w]=object;C.meshCollider&&(b=THREE.CollisionUtils.MeshColliderWBox(object),K.scene.collisions.colliders.push(b));
if(C.castsShadow)b=new THREE.ShadowVolume(N),K.scene.addChild(b),b.position=object.position,b.rotation=object.rotation,b.scale=object.scale;C.trigger&&C.trigger.toLowerCase()!="none"&&(b={type:C.trigger,object:C},K.triggers[object.name]=b)}}else L=C.position,r=C.rotation,q=C.quaternion,s=C.scale,q=0,object=new THREE.Object3D,object.name=w,object.position.set(L[0],L[1],L[2]),q?(object.quaternion.set(q[0],q[1],q[2],q[3]),object.useQuaternion=true):object.rotation.set(r[0],r[1],r[2]),object.scale.set(s[0],
s[1],s[2]),object.visible=C.visible!==void 0?C.visible:false,K.scene.addObject(object),K.objects[w]=object,K.empties[w]=object,C.trigger&&C.trigger.toLowerCase()!="none"&&(b={type:C.trigger,object:C},K.triggers[object.name]=b)}function o(b){return function(c){K.geometries[b]=c;n();O-=1;e.onLoadComplete();u()}}function t(b){return function(e){K.geometries[b]=e}}function u(){e.callbackProgress({totalModels:V,totalTextures:Z,loadedModels:V-O,loadedTextures:Z-Y},K);e.onLoadProgress();O==0&&Y==0&&c(K)}
var v,x,w,B,A,y,D,C,L,z,E,N,I,P,H,W,M,J,Q,O,Y,V,Z,K;J=b.data;H=new THREE.BinaryLoader;Q=new THREE.JSONLoader;Y=O=0;K={scene:new THREE.Scene,geometries:{},materials:{},textures:{},objects:{},cameras:{},lights:{},fogs:{},triggers:{},empties:{}};b=false;for(w in J.objects)if(C=J.objects[w],C.meshCollider){b=true;break}if(b)K.scene.collisions=new THREE.CollisionSystem;if(J.transform){b=J.transform.position;z=J.transform.rotation;var X=J.transform.scale;b&&K.scene.position.set(b[0],b[1],b[2]);z&&K.scene.rotation.set(z[0],
z[1],z[2]);X&&K.scene.scale.set(X[0],X[1],X[2]);(b||z||X)&&K.scene.updateMatrix()}b=function(){Y-=1;u();e.onLoadComplete()};for(A in J.cameras){z=J.cameras[A];if(z.type=="perspective")I=new THREE.Camera(z.fov,z.aspect,z.near,z.far);else if(z.type=="ortho")I=new THREE.Camera,I.projectionMatrix=THREE.Matrix4.makeOrtho(z.left,z.right,z.top,z.bottom,z.near,z.far);L=z.position;z=z.target;I.position.set(L[0],L[1],L[2]);I.target.position.set(z[0],z[1],z[2]);K.cameras[A]=I}for(B in J.lights)A=J.lights[B],
I=A.color!==void 0?A.color:16777215,z=A.intensity!==void 0?A.intensity:1,A.type=="directional"?(L=A.direction,M=new THREE.DirectionalLight(I,z),M.position.set(L[0],L[1],L[2]),M.position.normalize()):A.type=="point"?(L=A.position,d=A.distance,M=new THREE.PointLight(I,z,d),M.position.set(L[0],L[1],L[2])):A.type=="ambient"&&(M=new THREE.AmbientLight(I)),K.scene.addLight(M),K.lights[B]=M;for(y in J.fogs)B=J.fogs[y],B.type=="linear"?P=new THREE.Fog(0,B.near,B.far):B.type=="exp2"&&(P=new THREE.FogExp2(0,
B.density)),z=B.color,P.color.setRGB(z[0],z[1],z[2]),K.fogs[y]=P;if(K.cameras&&J.defaults.camera)K.currentCamera=K.cameras[J.defaults.camera];if(K.fogs&&J.defaults.fog)K.scene.fog=K.fogs[J.defaults.fog];z=J.defaults.bgcolor;K.bgColor=new THREE.Color;K.bgColor.setRGB(z[0],z[1],z[2]);K.bgColorAlpha=J.defaults.bgalpha;for(v in J.geometries)if(y=J.geometries[v],y.type=="bin_mesh"||y.type=="ascii_mesh")O+=1,e.onLoadStart();V=O;for(v in J.geometries)y=J.geometries[v],y.type=="cube"?(N=new THREE.CubeGeometry(y.width,
y.height,y.depth,y.segmentsWidth,y.segmentsHeight,y.segmentsDepth,null,y.flipped,y.sides),K.geometries[v]=N):y.type=="plane"?(N=new THREE.PlaneGeometry(y.width,y.height,y.segmentsWidth,y.segmentsHeight),K.geometries[v]=N):y.type=="sphere"?(N=new THREE.SphereGeometry(y.radius,y.segmentsWidth,y.segmentsHeight),K.geometries[v]=N):y.type=="cylinder"?(N=new THREE.CylinderGeometry(y.numSegs,y.topRad,y.botRad,y.height,y.topOffset,y.botOffset),K.geometries[v]=N):y.type=="torus"?(N=new THREE.TorusGeometry(y.radius,
y.tube,y.segmentsR,y.segmentsT),K.geometries[v]=N):y.type=="icosahedron"?(N=new THREE.IcosahedronGeometry(y.subdivisions),K.geometries[v]=N):y.type=="bin_mesh"?H.load({model:f(y.url,J.urlBaseType),callback:o(v)}):y.type=="ascii_mesh"?Q.load({model:f(y.url,J.urlBaseType),callback:o(v)}):y.type=="embedded_mesh"&&(y=J.embeds[y.id])&&Q.createModel(y,t(v),"");for(D in J.textures)if(v=J.textures[D],v.url instanceof Array){Y+=v.url.length;for(H=0;H<v.url.length;H++)e.onLoadStart()}else Y+=1,e.onLoadStart();
Z=Y;for(D in J.textures){v=J.textures[D];if(v.mapping!=void 0&&THREE[v.mapping]!=void 0)v.mapping=new THREE[v.mapping];if(v.url instanceof Array){H=[];for(var S=0;S<v.url.length;S++)H[S]=f(v.url[S],J.urlBaseType);H=THREE.ImageUtils.loadTextureCube(H,v.mapping,b)}else{H=THREE.ImageUtils.loadTexture(f(v.url,J.urlBaseType),v.mapping,b);if(THREE[v.minFilter]!=void 0)H.minFilter=THREE[v.minFilter];if(THREE[v.magFilter]!=void 0)H.magFilter=THREE[v.magFilter];if(v.repeat){H.repeat.set(v.repeat[0],v.repeat[1]);
if(v.repeat[0]!=1)H.wrapS=THREE.RepeatWrapping;if(v.repeat[1]!=1)H.wrapT=THREE.RepeatWrapping}v.offset&&H.offset.set(v.offset[0],v.offset[1]);if(v.wrap){Q={repeat:THREE.RepeatWrapping,mirror:THREE.MirroredRepeatWrapping};if(Q[v.wrap[0]]!==void 0)H.wrapS=Q[v.wrap[0]];if(Q[v.wrap[1]]!==void 0)H.wrapT=Q[v.wrap[1]]}}K.textures[D]=H}for(x in J.materials){D=J.materials[x];for(E in D.parameters)if(E=="envMap"||E=="map"||E=="lightMap")D.parameters[E]=K.textures[D.parameters[E]];else if(E=="shading")D.parameters[E]=
D.parameters[E]=="flat"?THREE.FlatShading:THREE.SmoothShading;else if(E=="blending")D.parameters[E]=THREE[D.parameters[E]]?THREE[D.parameters[E]]:THREE.NormalBlending;else if(E=="combine")D.parameters[E]=D.parameters[E]=="MixOperation"?THREE.MixOperation:THREE.MultiplyOperation;else if(E=="vertexColors")if(D.parameters[E]=="face")D.parameters[E]=THREE.FaceColors;else if(D.parameters[E])D.parameters[E]=THREE.VertexColors;if(D.parameters.opacity!==void 0&&D.parameters.opacity<1)D.parameters.transparent=
true;if(D.parameters.normalMap){v=THREE.ShaderUtils.lib.normal;b=THREE.UniformsUtils.clone(v.uniforms);H=D.parameters.color;Q=D.parameters.specular;y=D.parameters.ambient;P=D.parameters.shininess;b.tNormal.texture=K.textures[D.parameters.normalMap];if(D.parameters.normalMapFactor)b.uNormalScale.value=D.parameters.normalMapFactor;if(D.parameters.map)b.tDiffuse.texture=D.parameters.map,b.enableDiffuse.value=true;if(D.parameters.lightMap)b.tAO.texture=D.parameters.lightMap,b.enableAO.value=true;if(D.parameters.specularMap)b.tSpecular.texture=
K.textures[D.parameters.specularMap],b.enableSpecular.value=true;b.uDiffuseColor.value.setHex(H);b.uSpecularColor.value.setHex(Q);b.uAmbientColor.value.setHex(y);b.uShininess.value=P;if(D.parameters.opacity)b.uOpacity.value=D.parameters.opacity;D=new THREE.MeshShaderMaterial({fragmentShader:v.fragmentShader,vertexShader:v.vertexShader,uniforms:b,lights:true,fog:true})}else D=new THREE[D.type](D.parameters);K.materials[x]=D}n();e.callbackSync(K)}},constructor:THREE.SceneLoader};THREE.UTF8Loader=function(){};
THREE.UTF8Loader.prototype=new THREE.UTF8Loader;THREE.UTF8Loader.prototype.constructor=THREE.UTF8Loader;
THREE.UTF8Loader.prototype.load=function(b){var c=new XMLHttpRequest,e=b.model,f=b.callback,k=b.scale!==void 0?b.scale:1,m=b.offsetX!==void 0?b.offsetX:0,h=b.offsetY!==void 0?b.offsetY:0,n=b.offsetZ!==void 0?b.offsetZ:0;c.onreadystatechange=function(){c.readyState==4?c.status==200||c.status==0?THREE.UTF8Loader.prototype.createModel(c.responseText,f,k,m,h,n):alert("Couldn't load ["+e+"] ["+c.status+"]"):c.readyState!=3&&c.readyState==2&&c.getResponseHeader("Content-Length")};c.open("GET",e,true);c.send(null)};
THREE.UTF8Loader.prototype.decompressMesh=function(b){var c=b.charCodeAt(0);c>=57344&&(c-=2048);c++;for(var e=new Float32Array(8*c),f=1,k=0;k<8;k++){for(var m=0,h=0;h<c;++h){var n=b.charCodeAt(h+f);m+=n>>1^-(n&1);e[8*h+k]=m}f+=c}c=b.length-f;m=new Uint16Array(c);for(k=h=0;k<c;k++)n=b.charCodeAt(k+f),m[k]=h-n,n==0&&h++;return[e,m]};
THREE.UTF8Loader.prototype.createModel=function(b,c,e,f,k,m){var h=function(){var c=this;c.materials=[];THREE.Geometry.call(this);var h=THREE.UTF8Loader.prototype.decompressMesh(b),t=[],u=[];(function(b,h,o){for(var t,u,y,D=b.length;o<D;o+=h)t=b[o],u=b[o+1],y=b[o+2],t=t/16383*e,u=u/16383*e,y=y/16383*e,t+=f,u+=k,y+=m,c.vertices.push(new THREE.Vertex(new THREE.Vector3(t,u,y)))})(h[0],8,0);(function(b,e,c){for(var f,h,k=b.length;c<k;c+=e)f=b[c],h=b[c+1],f/=1023,h/=1023,u.push(f,h)})(h[0],8,3);(function(b,
e,c){for(var f,h,k,m=b.length;c<m;c+=e)f=b[c],h=b[c+1],k=b[c+2],f=(f-512)/511,h=(h-512)/511,k=(k-512)/511,t.push(f,h,k)})(h[0],8,5);(function(b){var e,f,h,k,m,o,C,L,z,E=b.length;for(e=0;e<E;e+=3){f=b[e];h=b[e+1];k=b[e+2];m=c;L=f;z=h;o=k;C=f;var N=h,I=k,P=m.materials[0],H=t[N*3],W=t[N*3+1],N=t[N*3+2],M=t[I*3],J=t[I*3+1],I=t[I*3+2];C=new THREE.Vector3(t[C*3],t[C*3+1],t[C*3+2]);N=new THREE.Vector3(H,W,N);I=new THREE.Vector3(M,J,I);m.faces.push(new THREE.Face3(L,z,o,[C,N,I],null,P));m=u[f*2];f=u[f*2+
1];o=u[h*2];C=u[h*2+1];L=u[k*2];z=u[k*2+1];k=c.faceVertexUvs[0];h=o;o=C;C=[];C.push(new THREE.UV(m,f));C.push(new THREE.UV(h,o));C.push(new THREE.UV(L,z));k.push(C)}})(h[1]);this.computeCentroids();this.computeFaceNormals()};h.prototype=new THREE.Geometry;h.prototype.constructor=h;c(new h)};
THREE.MarchingCubes=function(b,c){THREE.Object3D.call(this);this.materials=c instanceof Array?c:[c];this.init=function(b){this.isolation=80;this.size=b;this.size2=this.size*this.size;this.size3=this.size2*this.size;this.halfsize=this.size/2;this.delta=2/this.size;this.yd=this.size;this.zd=this.size2;this.field=new Float32Array(this.size3);this.normal_cache=new Float32Array(this.size3*3);this.vlist=new Float32Array(36);this.nlist=new Float32Array(36);this.firstDraw=true;this.maxCount=4096;this.count=
0;this.hasNormal=this.hasPos=false;this.positionArray=new Float32Array(this.maxCount*3);this.normalArray=new Float32Array(this.maxCount*3)};this.lerp=function(b,c,k){return b+(c-b)*k};this.VIntX=function(b,c,k,m,h,n,o,t,u,v){h=(h-u)/(v-u);u=this.normal_cache;c[m]=n+h*this.delta;c[m+1]=o;c[m+2]=t;k[m]=this.lerp(u[b],u[b+3],h);k[m+1]=this.lerp(u[b+1],u[b+4],h);k[m+2]=this.lerp(u[b+2],u[b+5],h)};this.VIntY=function(b,c,k,m,h,n,o,t,u,v){h=(h-u)/(v-u);u=this.normal_cache;c[m]=n;c[m+1]=o+h*this.delta;c[m+
2]=t;c=b+this.yd*3;k[m]=this.lerp(u[b],u[c],h);k[m+1]=this.lerp(u[b+1],u[c+1],h);k[m+2]=this.lerp(u[b+2],u[c+2],h)};this.VIntZ=function(b,c,k,m,h,n,o,t,u,v){h=(h-u)/(v-u);u=this.normal_cache;c[m]=n;c[m+1]=o;c[m+2]=t+h*this.delta;c=b+this.zd*3;k[m]=this.lerp(u[b],u[c],h);k[m+1]=this.lerp(u[b+1],u[c+1],h);k[m+2]=this.lerp(u[b+2],u[c+2],h)};this.compNorm=function(b){var c=b*3;this.normal_cache[c]==0&&(this.normal_cache[c]=this.field[b-1]-this.field[b+1],this.normal_cache[c+1]=this.field[b-this.yd]-this.field[b+
this.yd],this.normal_cache[c+2]=this.field[b-this.zd]-this.field[b+this.zd])};this.polygonize=function(b,c,k,m,h,n){var o=m+1,t=m+this.yd,u=m+this.zd,v=o+this.yd,x=o+this.zd,w=m+this.yd+this.zd,B=o+this.yd+this.zd,A=0,y=this.field[m],D=this.field[o],C=this.field[t],L=this.field[v],z=this.field[u],E=this.field[x],N=this.field[w],I=this.field[B];y<h&&(A|=1);D<h&&(A|=2);C<h&&(A|=8);L<h&&(A|=4);z<h&&(A|=16);E<h&&(A|=32);N<h&&(A|=128);I<h&&(A|=64);var P=THREE.edgeTable[A];if(P==0)return 0;var H=this.delta,
W=b+H,M=c+H,H=k+H;P&1&&(this.compNorm(m),this.compNorm(o),this.VIntX(m*3,this.vlist,this.nlist,0,h,b,c,k,y,D));P&2&&(this.compNorm(o),this.compNorm(v),this.VIntY(o*3,this.vlist,this.nlist,3,h,W,c,k,D,L));P&4&&(this.compNorm(t),this.compNorm(v),this.VIntX(t*3,this.vlist,this.nlist,6,h,b,M,k,C,L));P&8&&(this.compNorm(m),this.compNorm(t),this.VIntY(m*3,this.vlist,this.nlist,9,h,b,c,k,y,C));P&16&&(this.compNorm(u),this.compNorm(x),this.VIntX(u*3,this.vlist,this.nlist,12,h,b,c,H,z,E));P&32&&(this.compNorm(x),
this.compNorm(B),this.VIntY(x*3,this.vlist,this.nlist,15,h,W,c,H,E,I));P&64&&(this.compNorm(w),this.compNorm(B),this.VIntX(w*3,this.vlist,this.nlist,18,h,b,M,H,N,I));P&128&&(this.compNorm(u),this.compNorm(w),this.VIntY(u*3,this.vlist,this.nlist,21,h,b,c,H,z,N));P&256&&(this.compNorm(m),this.compNorm(u),this.VIntZ(m*3,this.vlist,this.nlist,24,h,b,c,k,y,z));P&512&&(this.compNorm(o),this.compNorm(x),this.VIntZ(o*3,this.vlist,this.nlist,27,h,W,c,k,D,E));P&1024&&(this.compNorm(v),this.compNorm(B),this.VIntZ(v*
3,this.vlist,this.nlist,30,h,W,M,k,L,I));P&2048&&(this.compNorm(t),this.compNorm(w),this.VIntZ(t*3,this.vlist,this.nlist,33,h,b,M,k,C,N));A<<=4;for(h=m=0;THREE.triTable[A+h]!=-1;)b=A+h,c=b+1,k=b+2,this.posnormtriv(this.vlist,this.nlist,3*THREE.triTable[b],3*THREE.triTable[c],3*THREE.triTable[k],n),h+=3,m++;return m};this.posnormtriv=function(b,c,k,m,h,n){var o=this.count*3;this.positionArray[o]=b[k];this.positionArray[o+1]=b[k+1];this.positionArray[o+2]=b[k+2];this.positionArray[o+3]=b[m];this.positionArray[o+
4]=b[m+1];this.positionArray[o+5]=b[m+2];this.positionArray[o+6]=b[h];this.positionArray[o+7]=b[h+1];this.positionArray[o+8]=b[h+2];this.normalArray[o]=c[k];this.normalArray[o+1]=c[k+1];this.normalArray[o+2]=c[k+2];this.normalArray[o+3]=c[m];this.normalArray[o+4]=c[m+1];this.normalArray[o+5]=c[m+2];this.normalArray[o+6]=c[h];this.normalArray[o+7]=c[h+1];this.normalArray[o+8]=c[h+2];this.hasNormal=this.hasPos=true;this.count+=3;this.count>=this.maxCount-3&&n(this)};this.begin=function(){this.count=
0;this.hasNormal=this.hasPos=false};this.end=function(b){if(this.count!=0){for(var c=this.count*3;c<this.positionArray.length;c++)this.positionArray[c]=0;b(this)}};this.addBall=function(b,c,k,m,h){var n=this.size*Math.sqrt(m/h),o=k*this.size,t=c*this.size,u=b*this.size,v=Math.floor(o-n);v<1&&(v=1);o=Math.floor(o+n);o>this.size-1&&(o=this.size-1);var x=Math.floor(t-n);x<1&&(x=1);t=Math.floor(t+n);t>this.size-1&&(t=this.size-1);var w=Math.floor(u-n);w<1&&(w=1);n=Math.floor(u+n);n>this.size-1&&(n=this.size-
1);for(var B,A,y,D,C,L;v<o;v++){u=this.size2*v;A=v/this.size-k;C=A*A;for(A=x;A<t;A++){y=u+this.size*A;B=A/this.size-c;L=B*B;for(B=w;B<n;B++)D=B/this.size-b,D=m/(1.0E-6+D*D+L+C)-h,D>0&&(this.field[y+B]+=D)}}};this.addPlaneX=function(b,c){var k,m,h,n,o,t=this.size,u=this.yd,v=this.zd,x=this.field,w=t*Math.sqrt(b/c);w>t&&(w=t);for(k=0;k<w;k++)if(m=k/t,m*=m,n=b/(1.0E-4+m)-c,n>0)for(m=0;m<t;m++){o=k+m*u;for(h=0;h<t;h++)x[v*h+o]+=n}};this.addPlaneY=function(b,c){var k,m,h,n,o,t,u=this.size,v=this.yd,x=
this.zd,w=this.field,B=u*Math.sqrt(b/c);B>u&&(B=u);for(m=0;m<B;m++)if(k=m/u,k*=k,n=b/(1.0E-4+k)-c,n>0){o=m*v;for(k=0;k<u;k++){t=o+k;for(h=0;h<u;h++)w[x*h+t]+=n}}};this.addPlaneZ=function(b,c){var k,m,h,n,o,t;size=this.size;yd=this.yd;zd=this.zd;field=this.field;dist=size*Math.sqrt(b/c);dist>size&&(dist=size);for(h=0;h<dist;h++)if(k=h/size,k*=k,n=b/(1.0E-4+k)-c,n>0){o=zd*h;for(m=0;m<size;m++){t=o+m*yd;for(k=0;k<size;k++)field[t+k]+=n}}};this.reset=function(){var b;for(b=0;b<this.size3;b++)this.normal_cache[b*
3]=0,this.field[b]=0};this.render=function(b){this.begin();var c,k,m,h,n,o,t,u,v,x=this.size-2;for(h=1;h<x;h++){v=this.size2*h;t=(h-this.halfsize)/this.halfsize;for(m=1;m<x;m++){u=v+this.size*m;o=(m-this.halfsize)/this.halfsize;for(k=1;k<x;k++)n=(k-this.halfsize)/this.halfsize,c=u+k,this.polygonize(n,o,t,c,this.isolation,b)}}this.end(b)};this.generateGeometry=function(){var b=0,c=new THREE.Geometry,k=[];this.render(function(m){var h,n,o,t,u,v,x,w;for(h=0;h<m.count;h++)x=h*3,u=x+1,w=x+2,n=m.positionArray[x],
o=m.positionArray[u],t=m.positionArray[w],v=new THREE.Vector3(n,o,t),n=m.normalArray[x],o=m.normalArray[u],t=m.normalArray[w],x=new THREE.Vector3(n,o,t),x.normalize(),u=new THREE.Vertex(v),c.vertices.push(u),k.push(x);nfaces=m.count/3;for(h=0;h<nfaces;h++)x=(b+h)*3,u=x+1,w=x+2,v=k[x],n=k[u],o=k[w],x=new THREE.Face3(x,u,w,[v,n,o]),c.faces.push(x);b+=nfaces;m.count=0});return c};this.init(b)};THREE.MarchingCubes.prototype=new THREE.Object3D;THREE.MarchingCubes.prototype.constructor=THREE.MarchingCubes;
THREE.edgeTable=new Int32Array([0,265,515,778,1030,1295,1541,1804,2060,2309,2575,2822,3082,3331,3593,3840,400,153,915,666,1430,1183,1941,1692,2460,2197,2975,2710,3482,3219,3993,3728,560,825,51,314,1590,1855,1077,1340,2620,2869,2111,2358,3642,3891,3129,3376,928,681,419,170,1958,1711,1445,1196,2988,2725,2479,2214,4010,3747,3497,3232,1120,1385,1635,1898,102,367,613,876,3180,3429,3695,3942,2154,2403,2665,2912,1520,1273,2035,1786,502,255,1013,764,3580,3317,4095,3830,2554,2291,3065,2800,1616,1881,1107,
1370,598,863,85,348,3676,3925,3167,3414,2650,2899,2137,2384,1984,1737,1475,1226,966,719,453,204,4044,3781,3535,3270,3018,2755,2505,2240,2240,2505,2755,3018,3270,3535,3781,4044,204,453,719,966,1226,1475,1737,1984,2384,2137,2899,2650,3414,3167,3925,3676,348,85,863,598,1370,1107,1881,1616,2800,3065,2291,2554,3830,4095,3317,3580,764,1013,255,502,1786,2035,1273,1520,2912,2665,2403,2154,3942,3695,3429,3180,876,613,367,102,1898,1635,1385,1120,3232,3497,3747,4010,2214,2479,2725,2988,1196,1445,1711,1958,170,
419,681,928,3376,3129,3891,3642,2358,2111,2869,2620,1340,1077,1855,1590,314,51,825,560,3728,3993,3219,3482,2710,2975,2197,2460,1692,1941,1183,1430,666,915,153,400,3840,3593,3331,3082,2822,2575,2309,2060,1804,1541,1295,1030,778,515,265,0]);
THREE.triTable=new Int32Array([-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,8,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,1,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,8,3,9,8,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,2,10,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,8,3,1,2,10,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,9,2,10,0,2,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,8,3,2,10,8,10,9,8,-1,-1,-1,-1,-1,-1,-1,3,11,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,11,2,8,11,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,9,0,2,3,11,-1,-1,-1,-1,-1,
-1,-1,-1,-1,-1,1,11,2,1,9,11,9,8,11,-1,-1,-1,-1,-1,-1,-1,3,10,1,11,10,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,10,1,0,8,10,8,11,10,-1,-1,-1,-1,-1,-1,-1,3,9,0,3,11,9,11,10,9,-1,-1,-1,-1,-1,-1,-1,9,8,10,10,8,11,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,4,7,8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,4,3,0,7,3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,1,9,8,4,7,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,4,1,9,4,7,1,7,3,1,-1,-1,-1,-1,-1,-1,-1,1,2,10,8,4,7,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,3,4,7,3,0,4,1,2,10,-1,-1,-1,-1,-1,-1,-1,9,2,10,9,0,2,8,4,7,
-1,-1,-1,-1,-1,-1,-1,2,10,9,2,9,7,2,7,3,7,9,4,-1,-1,-1,-1,8,4,7,3,11,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,11,4,7,11,2,4,2,0,4,-1,-1,-1,-1,-1,-1,-1,9,0,1,8,4,7,2,3,11,-1,-1,-1,-1,-1,-1,-1,4,7,11,9,4,11,9,11,2,9,2,1,-1,-1,-1,-1,3,10,1,3,11,10,7,8,4,-1,-1,-1,-1,-1,-1,-1,1,11,10,1,4,11,1,0,4,7,11,4,-1,-1,-1,-1,4,7,8,9,0,11,9,11,10,11,0,3,-1,-1,-1,-1,4,7,11,4,11,9,9,11,10,-1,-1,-1,-1,-1,-1,-1,9,5,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,9,5,4,0,8,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,5,4,1,5,0,-1,-1,-1,-1,-1,-1,
-1,-1,-1,-1,8,5,4,8,3,5,3,1,5,-1,-1,-1,-1,-1,-1,-1,1,2,10,9,5,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,3,0,8,1,2,10,4,9,5,-1,-1,-1,-1,-1,-1,-1,5,2,10,5,4,2,4,0,2,-1,-1,-1,-1,-1,-1,-1,2,10,5,3,2,5,3,5,4,3,4,8,-1,-1,-1,-1,9,5,4,2,3,11,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,11,2,0,8,11,4,9,5,-1,-1,-1,-1,-1,-1,-1,0,5,4,0,1,5,2,3,11,-1,-1,-1,-1,-1,-1,-1,2,1,5,2,5,8,2,8,11,4,8,5,-1,-1,-1,-1,10,3,11,10,1,3,9,5,4,-1,-1,-1,-1,-1,-1,-1,4,9,5,0,8,1,8,10,1,8,11,10,-1,-1,-1,-1,5,4,0,5,0,11,5,11,10,11,0,3,-1,-1,-1,-1,5,4,8,5,
8,10,10,8,11,-1,-1,-1,-1,-1,-1,-1,9,7,8,5,7,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,9,3,0,9,5,3,5,7,3,-1,-1,-1,-1,-1,-1,-1,0,7,8,0,1,7,1,5,7,-1,-1,-1,-1,-1,-1,-1,1,5,3,3,5,7,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,9,7,8,9,5,7,10,1,2,-1,-1,-1,-1,-1,-1,-1,10,1,2,9,5,0,5,3,0,5,7,3,-1,-1,-1,-1,8,0,2,8,2,5,8,5,7,10,5,2,-1,-1,-1,-1,2,10,5,2,5,3,3,5,7,-1,-1,-1,-1,-1,-1,-1,7,9,5,7,8,9,3,11,2,-1,-1,-1,-1,-1,-1,-1,9,5,7,9,7,2,9,2,0,2,7,11,-1,-1,-1,-1,2,3,11,0,1,8,1,7,8,1,5,7,-1,-1,-1,-1,11,2,1,11,1,7,7,1,5,-1,-1,-1,-1,-1,-1,
-1,9,5,8,8,5,7,10,1,3,10,3,11,-1,-1,-1,-1,5,7,0,5,0,9,7,11,0,1,0,10,11,10,0,-1,11,10,0,11,0,3,10,5,0,8,0,7,5,7,0,-1,11,10,5,7,11,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,10,6,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,8,3,5,10,6,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,9,0,1,5,10,6,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,8,3,1,9,8,5,10,6,-1,-1,-1,-1,-1,-1,-1,1,6,5,2,6,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,6,5,1,2,6,3,0,8,-1,-1,-1,-1,-1,-1,-1,9,6,5,9,0,6,0,2,6,-1,-1,-1,-1,-1,-1,-1,5,9,8,5,8,2,5,2,6,3,2,8,-1,-1,-1,-1,2,3,11,10,6,
5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,11,0,8,11,2,0,10,6,5,-1,-1,-1,-1,-1,-1,-1,0,1,9,2,3,11,5,10,6,-1,-1,-1,-1,-1,-1,-1,5,10,6,1,9,2,9,11,2,9,8,11,-1,-1,-1,-1,6,3,11,6,5,3,5,1,3,-1,-1,-1,-1,-1,-1,-1,0,8,11,0,11,5,0,5,1,5,11,6,-1,-1,-1,-1,3,11,6,0,3,6,0,6,5,0,5,9,-1,-1,-1,-1,6,5,9,6,9,11,11,9,8,-1,-1,-1,-1,-1,-1,-1,5,10,6,4,7,8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,4,3,0,4,7,3,6,5,10,-1,-1,-1,-1,-1,-1,-1,1,9,0,5,10,6,8,4,7,-1,-1,-1,-1,-1,-1,-1,10,6,5,1,9,7,1,7,3,7,9,4,-1,-1,-1,-1,6,1,2,6,5,1,4,7,8,-1,-1,-1,-1,
-1,-1,-1,1,2,5,5,2,6,3,0,4,3,4,7,-1,-1,-1,-1,8,4,7,9,0,5,0,6,5,0,2,6,-1,-1,-1,-1,7,3,9,7,9,4,3,2,9,5,9,6,2,6,9,-1,3,11,2,7,8,4,10,6,5,-1,-1,-1,-1,-1,-1,-1,5,10,6,4,7,2,4,2,0,2,7,11,-1,-1,-1,-1,0,1,9,4,7,8,2,3,11,5,10,6,-1,-1,-1,-1,9,2,1,9,11,2,9,4,11,7,11,4,5,10,6,-1,8,4,7,3,11,5,3,5,1,5,11,6,-1,-1,-1,-1,5,1,11,5,11,6,1,0,11,7,11,4,0,4,11,-1,0,5,9,0,6,5,0,3,6,11,6,3,8,4,7,-1,6,5,9,6,9,11,4,7,9,7,11,9,-1,-1,-1,-1,10,4,9,6,4,10,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,4,10,6,4,9,10,0,8,3,-1,-1,-1,-1,-1,-1,-1,
10,0,1,10,6,0,6,4,0,-1,-1,-1,-1,-1,-1,-1,8,3,1,8,1,6,8,6,4,6,1,10,-1,-1,-1,-1,1,4,9,1,2,4,2,6,4,-1,-1,-1,-1,-1,-1,-1,3,0,8,1,2,9,2,4,9,2,6,4,-1,-1,-1,-1,0,2,4,4,2,6,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,8,3,2,8,2,4,4,2,6,-1,-1,-1,-1,-1,-1,-1,10,4,9,10,6,4,11,2,3,-1,-1,-1,-1,-1,-1,-1,0,8,2,2,8,11,4,9,10,4,10,6,-1,-1,-1,-1,3,11,2,0,1,6,0,6,4,6,1,10,-1,-1,-1,-1,6,4,1,6,1,10,4,8,1,2,1,11,8,11,1,-1,9,6,4,9,3,6,9,1,3,11,6,3,-1,-1,-1,-1,8,11,1,8,1,0,11,6,1,9,1,4,6,4,1,-1,3,11,6,3,6,0,0,6,4,-1,-1,-1,-1,-1,-1,-1,
6,4,8,11,6,8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,7,10,6,7,8,10,8,9,10,-1,-1,-1,-1,-1,-1,-1,0,7,3,0,10,7,0,9,10,6,7,10,-1,-1,-1,-1,10,6,7,1,10,7,1,7,8,1,8,0,-1,-1,-1,-1,10,6,7,10,7,1,1,7,3,-1,-1,-1,-1,-1,-1,-1,1,2,6,1,6,8,1,8,9,8,6,7,-1,-1,-1,-1,2,6,9,2,9,1,6,7,9,0,9,3,7,3,9,-1,7,8,0,7,0,6,6,0,2,-1,-1,-1,-1,-1,-1,-1,7,3,2,6,7,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,3,11,10,6,8,10,8,9,8,6,7,-1,-1,-1,-1,2,0,7,2,7,11,0,9,7,6,7,10,9,10,7,-1,1,8,0,1,7,8,1,10,7,6,7,10,2,3,11,-1,11,2,1,11,1,7,10,6,1,6,7,1,-1,-1,-1,-1,
8,9,6,8,6,7,9,1,6,11,6,3,1,3,6,-1,0,9,1,11,6,7,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,7,8,0,7,0,6,3,11,0,11,6,0,-1,-1,-1,-1,7,11,6,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,7,6,11,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,3,0,8,11,7,6,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,1,9,11,7,6,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,8,1,9,8,3,1,11,7,6,-1,-1,-1,-1,-1,-1,-1,10,1,2,6,11,7,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,2,10,3,0,8,6,11,7,-1,-1,-1,-1,-1,-1,-1,2,9,0,2,10,9,6,11,7,-1,-1,-1,-1,-1,-1,-1,6,11,7,2,10,3,10,8,3,10,9,8,-1,-1,-1,-1,7,
2,3,6,2,7,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,7,0,8,7,6,0,6,2,0,-1,-1,-1,-1,-1,-1,-1,2,7,6,2,3,7,0,1,9,-1,-1,-1,-1,-1,-1,-1,1,6,2,1,8,6,1,9,8,8,7,6,-1,-1,-1,-1,10,7,6,10,1,7,1,3,7,-1,-1,-1,-1,-1,-1,-1,10,7,6,1,7,10,1,8,7,1,0,8,-1,-1,-1,-1,0,3,7,0,7,10,0,10,9,6,10,7,-1,-1,-1,-1,7,6,10,7,10,8,8,10,9,-1,-1,-1,-1,-1,-1,-1,6,8,4,11,8,6,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,3,6,11,3,0,6,0,4,6,-1,-1,-1,-1,-1,-1,-1,8,6,11,8,4,6,9,0,1,-1,-1,-1,-1,-1,-1,-1,9,4,6,9,6,3,9,3,1,11,3,6,-1,-1,-1,-1,6,8,4,6,11,8,2,10,1,-1,-1,-1,
-1,-1,-1,-1,1,2,10,3,0,11,0,6,11,0,4,6,-1,-1,-1,-1,4,11,8,4,6,11,0,2,9,2,10,9,-1,-1,-1,-1,10,9,3,10,3,2,9,4,3,11,3,6,4,6,3,-1,8,2,3,8,4,2,4,6,2,-1,-1,-1,-1,-1,-1,-1,0,4,2,4,6,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,9,0,2,3,4,2,4,6,4,3,8,-1,-1,-1,-1,1,9,4,1,4,2,2,4,6,-1,-1,-1,-1,-1,-1,-1,8,1,3,8,6,1,8,4,6,6,10,1,-1,-1,-1,-1,10,1,0,10,0,6,6,0,4,-1,-1,-1,-1,-1,-1,-1,4,6,3,4,3,8,6,10,3,0,3,9,10,9,3,-1,10,9,4,6,10,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,4,9,5,7,6,11,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,8,3,4,9,5,11,7,6,
-1,-1,-1,-1,-1,-1,-1,5,0,1,5,4,0,7,6,11,-1,-1,-1,-1,-1,-1,-1,11,7,6,8,3,4,3,5,4,3,1,5,-1,-1,-1,-1,9,5,4,10,1,2,7,6,11,-1,-1,-1,-1,-1,-1,-1,6,11,7,1,2,10,0,8,3,4,9,5,-1,-1,-1,-1,7,6,11,5,4,10,4,2,10,4,0,2,-1,-1,-1,-1,3,4,8,3,5,4,3,2,5,10,5,2,11,7,6,-1,7,2,3,7,6,2,5,4,9,-1,-1,-1,-1,-1,-1,-1,9,5,4,0,8,6,0,6,2,6,8,7,-1,-1,-1,-1,3,6,2,3,7,6,1,5,0,5,4,0,-1,-1,-1,-1,6,2,8,6,8,7,2,1,8,4,8,5,1,5,8,-1,9,5,4,10,1,6,1,7,6,1,3,7,-1,-1,-1,-1,1,6,10,1,7,6,1,0,7,8,7,0,9,5,4,-1,4,0,10,4,10,5,0,3,10,6,10,7,3,7,10,
-1,7,6,10,7,10,8,5,4,10,4,8,10,-1,-1,-1,-1,6,9,5,6,11,9,11,8,9,-1,-1,-1,-1,-1,-1,-1,3,6,11,0,6,3,0,5,6,0,9,5,-1,-1,-1,-1,0,11,8,0,5,11,0,1,5,5,6,11,-1,-1,-1,-1,6,11,3,6,3,5,5,3,1,-1,-1,-1,-1,-1,-1,-1,1,2,10,9,5,11,9,11,8,11,5,6,-1,-1,-1,-1,0,11,3,0,6,11,0,9,6,5,6,9,1,2,10,-1,11,8,5,11,5,6,8,0,5,10,5,2,0,2,5,-1,6,11,3,6,3,5,2,10,3,10,5,3,-1,-1,-1,-1,5,8,9,5,2,8,5,6,2,3,8,2,-1,-1,-1,-1,9,5,6,9,6,0,0,6,2,-1,-1,-1,-1,-1,-1,-1,1,5,8,1,8,0,5,6,8,3,8,2,6,2,8,-1,1,5,6,2,1,6,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
1,3,6,1,6,10,3,8,6,5,6,9,8,9,6,-1,10,1,0,10,0,6,9,5,0,5,6,0,-1,-1,-1,-1,0,3,8,5,6,10,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,10,5,6,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,11,5,10,7,5,11,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,11,5,10,11,7,5,8,3,0,-1,-1,-1,-1,-1,-1,-1,5,11,7,5,10,11,1,9,0,-1,-1,-1,-1,-1,-1,-1,10,7,5,10,11,7,9,8,1,8,3,1,-1,-1,-1,-1,11,1,2,11,7,1,7,5,1,-1,-1,-1,-1,-1,-1,-1,0,8,3,1,2,7,1,7,5,7,2,11,-1,-1,-1,-1,9,7,5,9,2,7,9,0,2,2,11,7,-1,-1,-1,-1,7,5,2,7,2,11,5,9,2,3,2,8,9,8,2,-1,2,5,10,2,3,5,3,7,5,-1,-1,
-1,-1,-1,-1,-1,8,2,0,8,5,2,8,7,5,10,2,5,-1,-1,-1,-1,9,0,1,5,10,3,5,3,7,3,10,2,-1,-1,-1,-1,9,8,2,9,2,1,8,7,2,10,2,5,7,5,2,-1,1,3,5,3,7,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,8,7,0,7,1,1,7,5,-1,-1,-1,-1,-1,-1,-1,9,0,3,9,3,5,5,3,7,-1,-1,-1,-1,-1,-1,-1,9,8,7,5,9,7,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,5,8,4,5,10,8,10,11,8,-1,-1,-1,-1,-1,-1,-1,5,0,4,5,11,0,5,10,11,11,3,0,-1,-1,-1,-1,0,1,9,8,4,10,8,10,11,10,4,5,-1,-1,-1,-1,10,11,4,10,4,5,11,3,4,9,4,1,3,1,4,-1,2,5,1,2,8,5,2,11,8,4,5,8,-1,-1,-1,-1,0,4,11,0,11,3,4,5,11,
2,11,1,5,1,11,-1,0,2,5,0,5,9,2,11,5,4,5,8,11,8,5,-1,9,4,5,2,11,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,5,10,3,5,2,3,4,5,3,8,4,-1,-1,-1,-1,5,10,2,5,2,4,4,2,0,-1,-1,-1,-1,-1,-1,-1,3,10,2,3,5,10,3,8,5,4,5,8,0,1,9,-1,5,10,2,5,2,4,1,9,2,9,4,2,-1,-1,-1,-1,8,4,5,8,5,3,3,5,1,-1,-1,-1,-1,-1,-1,-1,0,4,5,1,0,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,8,4,5,8,5,3,9,0,5,0,3,5,-1,-1,-1,-1,9,4,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,4,11,7,4,9,11,9,10,11,-1,-1,-1,-1,-1,-1,-1,0,8,3,4,9,7,9,11,7,9,10,11,-1,-1,-1,-1,1,10,11,1,11,
4,1,4,0,7,4,11,-1,-1,-1,-1,3,1,4,3,4,8,1,10,4,7,4,11,10,11,4,-1,4,11,7,9,11,4,9,2,11,9,1,2,-1,-1,-1,-1,9,7,4,9,11,7,9,1,11,2,11,1,0,8,3,-1,11,7,4,11,4,2,2,4,0,-1,-1,-1,-1,-1,-1,-1,11,7,4,11,4,2,8,3,4,3,2,4,-1,-1,-1,-1,2,9,10,2,7,9,2,3,7,7,4,9,-1,-1,-1,-1,9,10,7,9,7,4,10,2,7,8,7,0,2,0,7,-1,3,7,10,3,10,2,7,4,10,1,10,0,4,0,10,-1,1,10,2,8,7,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,4,9,1,4,1,7,7,1,3,-1,-1,-1,-1,-1,-1,-1,4,9,1,4,1,7,0,8,1,8,7,1,-1,-1,-1,-1,4,0,3,7,4,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,4,8,7,-1,-1,-1,
-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,9,10,8,10,11,8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,3,0,9,3,9,11,11,9,10,-1,-1,-1,-1,-1,-1,-1,0,1,10,0,10,8,8,10,11,-1,-1,-1,-1,-1,-1,-1,3,1,10,11,3,10,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,2,11,1,11,9,9,11,8,-1,-1,-1,-1,-1,-1,-1,3,0,9,3,9,11,1,2,9,2,11,9,-1,-1,-1,-1,0,2,11,8,0,11,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,3,2,11,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,3,8,2,8,10,10,8,9,-1,-1,-1,-1,-1,-1,-1,9,10,2,0,9,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,3,8,2,8,10,0,1,8,1,10,8,-1,-1,-1,-1,1,10,
2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,3,8,9,1,8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,9,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,3,8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]);
THREE.Trident=function(b){function c(c){return new THREE.Mesh(new THREE.CylinderGeometry(30,0.1,b.length/20,b.length/5),new THREE.MeshBasicMaterial({color:c}))}function e(b,c){var e=new THREE.Geometry;e.vertices=[new THREE.Vertex,new THREE.Vertex(b)];return new THREE.Line(e,new THREE.LineBasicMaterial({color:c}))}THREE.Object3D.call(this);var f=Math.PI/2,k,b=b||THREE.Trident.defaultParams;if(b!==THREE.Trident.defaultParams)for(k in THREE.Trident.defaultParams)b.hasOwnProperty(k)||(b[k]=THREE.Trident.defaultParams[k]);
this.scale=new THREE.Vector3(b.scale,b.scale,b.scale);this.addChild(e(new THREE.Vector3(b.length,0,0),b.xAxisColor));this.addChild(e(new THREE.Vector3(0,b.length,0),b.yAxisColor));this.addChild(e(new THREE.Vector3(0,0,b.length),b.zAxisColor));if(b.showArrows)k=c(b.xAxisColor),k.rotation.y=-f,k.position.x=b.length,this.addChild(k),k=c(b.yAxisColor),k.rotation.x=f,k.position.y=b.length,this.addChild(k),k=c(b.zAxisColor),k.rotation.y=Math.PI,k.position.z=b.length,this.addChild(k)};
THREE.Trident.prototype=new THREE.Object3D;THREE.Trident.prototype.constructor=THREE.Trident;THREE.Trident.defaultParams={xAxisColor:16711680,yAxisColor:65280,zAxisColor:255,showArrows:true,length:100,scale:1};THREE.PlaneCollider=function(b,c){this.point=b;this.normal=c};THREE.SphereCollider=function(b,c){this.center=b;this.radius=c;this.radiusSq=c*c};THREE.BoxCollider=function(b,c){this.min=b;this.max=c;this.dynamic=true;this.normal=new THREE.Vector3};
THREE.MeshCollider=function(b,c){this.mesh=b;this.box=c;this.numFaces=this.mesh.geometry.faces.length;this.normal=new THREE.Vector3};THREE.CollisionSystem=function(){this.collisionNormal=new THREE.Vector3;this.colliders=[];this.hits=[]};THREE.Collisions=new THREE.CollisionSystem;THREE.CollisionSystem.prototype.merge=function(b){this.colliders=this.colliders.concat(b.colliders);this.hits=this.hits.concat(b.hits)};
THREE.CollisionSystem.prototype.rayCastAll=function(b){b.direction.normalize();this.hits.length=0;var c,e,f,k,m=0;c=0;for(e=this.colliders.length;c<e;c++)if(k=this.colliders[c],f=this.rayCast(b,k),f<Number.MAX_VALUE)k.distance=f,f>m?this.hits.push(k):this.hits.unshift(k),m=f;return this.hits};
THREE.CollisionSystem.prototype.rayCastNearest=function(b){var c=this.rayCastAll(b);if(c.length==0)return null;for(var e=0;c[e]instanceof THREE.MeshCollider;){var f=this.rayMesh(b,c[e]);if(f.dist<Number.MAX_VALUE){c[e].distance=f.dist;c[e].faceIndex=f.faceIndex;break}e++}return e>c.length?null:c[e]};
THREE.CollisionSystem.prototype.rayCast=function(b,c){if(c instanceof THREE.PlaneCollider)return this.rayPlane(b,c);else if(c instanceof THREE.SphereCollider)return this.raySphere(b,c);else if(c instanceof THREE.BoxCollider)return this.rayBox(b,c);else if(c instanceof THREE.MeshCollider&&c.box)return this.rayBox(b,c.box)};
THREE.CollisionSystem.prototype.rayMesh=function(b,c){for(var e=this.makeRayLocal(b,c.mesh),f=Number.MAX_VALUE,k,m=0;m<c.numFaces;m++){var h=c.mesh.geometry.faces[m],n=c.mesh.geometry.vertices[h.a].position,o=c.mesh.geometry.vertices[h.b].position,t=c.mesh.geometry.vertices[h.c].position,u=h instanceof THREE.Face4?c.mesh.geometry.vertices[h.d].position:null;h instanceof THREE.Face3?(h=this.rayTriangle(e,n,o,t,f,this.collisionNormal,c.mesh),h<f&&(f=h,k=m,c.normal.copy(this.collisionNormal),c.normal.normalize())):
h instanceof THREE.Face4&&(h=this.rayTriangle(e,n,o,u,f,this.collisionNormal,c.mesh),h<f&&(f=h,k=m,c.normal.copy(this.collisionNormal),c.normal.normalize()),h=this.rayTriangle(e,o,t,u,f,this.collisionNormal,c.mesh),h<f&&(f=h,k=m,c.normal.copy(this.collisionNormal),c.normal.normalize()))}return{dist:f,faceIndex:k}};
THREE.CollisionSystem.prototype.rayTriangle=function(b,c,e,f,k,m,h){var n=THREE.CollisionSystem.__v1,o=THREE.CollisionSystem.__v2;m.set(0,0,0);n.sub(e,c);o.sub(f,e);m.cross(n,o);n=m.dot(b.direction);if(!(n<0))if(h.doubleSided||h.flipSided)m.multiplyScalar(-1),n*=-1;else return Number.MAX_VALUE;h=m.dot(c)-m.dot(b.origin);if(!(h<=0))return Number.MAX_VALUE;if(!(h>=n*k))return Number.MAX_VALUE;h/=n;n=THREE.CollisionSystem.__v3;n.copy(b.direction);n.multiplyScalar(h);n.addSelf(b.origin);Math.abs(m.x)>
Math.abs(m.y)?Math.abs(m.x)>Math.abs(m.z)?(b=n.y-c.y,m=e.y-c.y,k=f.y-c.y,n=n.z-c.z,e=e.z-c.z,f=f.z-c.z):(b=n.x-c.x,m=e.x-c.x,k=f.x-c.x,n=n.y-c.y,e=e.y-c.y,f=f.y-c.y):Math.abs(m.y)>Math.abs(m.z)?(b=n.x-c.x,m=e.x-c.x,k=f.x-c.x,n=n.z-c.z,e=e.z-c.z,f=f.z-c.z):(b=n.x-c.x,m=e.x-c.x,k=f.x-c.x,n=n.y-c.y,e=e.y-c.y,f=f.y-c.y);c=m*f-e*k;if(c==0)return Number.MAX_VALUE;c=1/c;f=(b*f-n*k)*c;if(!(f>=0))return Number.MAX_VALUE;c*=m*n-e*b;return!(c>=0)?Number.MAX_VALUE:!(1-f-c>=0)?Number.MAX_VALUE:h};
THREE.CollisionSystem.prototype.makeRayLocal=function(b,c){var e=THREE.CollisionSystem.__m;THREE.Matrix4.makeInvert(c.matrixWorld,e);var f=THREE.CollisionSystem.__r;f.origin.copy(b.origin);f.direction.copy(b.direction);e.multiplyVector3(f.origin);e.rotateAxis(f.direction);f.direction.normalize();return f};
THREE.CollisionSystem.prototype.rayBox=function(b,c){var e;c.dynamic&&c.mesh&&c.mesh.matrixWorld?e=this.makeRayLocal(b,c.mesh):(e=THREE.CollisionSystem.__r,e.origin.copy(b.origin),e.direction.copy(b.direction));var f=0,k=0,m=0,h=0,n=0,o=0,t=true;e.origin.x<c.min.x?(f=c.min.x-e.origin.x,f/=e.direction.x,t=false,h=-1):e.origin.x>c.max.x&&(f=c.max.x-e.origin.x,f/=e.direction.x,t=false,h=1);e.origin.y<c.min.y?(k=c.min.y-e.origin.y,k/=e.direction.y,t=false,n=-1):e.origin.y>c.max.y&&(k=c.max.y-e.origin.y,
k/=e.direction.y,t=false,n=1);e.origin.z<c.min.z?(m=c.min.z-e.origin.z,m/=e.direction.z,t=false,o=-1):e.origin.z>c.max.z&&(m=c.max.z-e.origin.z,m/=e.direction.z,t=false,o=1);if(t)return-1;t=0;k>f&&(t=1,f=k);m>f&&(t=2,f=m);switch(t){case 0:n=e.origin.y+e.direction.y*f;if(n<c.min.y||n>c.max.y)return Number.MAX_VALUE;e=e.origin.z+e.direction.z*f;if(e<c.min.z||e>c.max.z)return Number.MAX_VALUE;c.normal.set(h,0,0);break;case 1:h=e.origin.x+e.direction.x*f;if(h<c.min.x||h>c.max.x)return Number.MAX_VALUE;
e=e.origin.z+e.direction.z*f;if(e<c.min.z||e>c.max.z)return Number.MAX_VALUE;c.normal.set(0,n,0);break;case 2:h=e.origin.x+e.direction.x*f;if(h<c.min.x||h>c.max.x)return Number.MAX_VALUE;n=e.origin.y+e.direction.y*f;if(n<c.min.y||n>c.max.y)return Number.MAX_VALUE;c.normal.set(0,0,o)}return f};THREE.CollisionSystem.prototype.rayPlane=function(b,c){var e=b.direction.dot(c.normal),f=c.point.dot(c.normal);if(e<0)e=(f-b.origin.dot(c.normal))/e;else return Number.MAX_VALUE;return e>0?e:Number.MAX_VALUE};
THREE.CollisionSystem.prototype.raySphere=function(b,c){var e=c.center.clone().subSelf(b.origin);if(e.lengthSq<c.radiusSq)return-1;var f=e.dot(b.direction.clone());if(f<=0)return Number.MAX_VALUE;e=c.radiusSq-(e.lengthSq()-f*f);return e>=0?Math.abs(f)-Math.sqrt(e):Number.MAX_VALUE};THREE.CollisionSystem.__v1=new THREE.Vector3;THREE.CollisionSystem.__v2=new THREE.Vector3;THREE.CollisionSystem.__v3=new THREE.Vector3;THREE.CollisionSystem.__nr=new THREE.Vector3;THREE.CollisionSystem.__m=new THREE.Matrix4;
THREE.CollisionSystem.__r=new THREE.Ray;THREE.CollisionUtils={};THREE.CollisionUtils.MeshOBB=function(b){b.geometry.computeBoundingBox();var c=b.geometry.boundingBox,e=new THREE.Vector3(c.x[0],c.y[0],c.z[0]),c=new THREE.Vector3(c.x[1],c.y[1],c.z[1]),e=new THREE.BoxCollider(e,c);e.mesh=b;return e};THREE.CollisionUtils.MeshAABB=function(b){var c=THREE.CollisionUtils.MeshOBB(b);c.min.addSelf(b.position);c.max.addSelf(b.position);c.dynamic=false;return c};
THREE.CollisionUtils.MeshColliderWBox=function(b){return new THREE.MeshCollider(b,THREE.CollisionUtils.MeshOBB(b))};
if(THREE.WebGLRenderer)THREE.AnaglyphWebGLRenderer=function(b){THREE.WebGLRenderer.call(this,b);var c=this,e=this.setSize,f=this.render,k=new THREE.Camera,m=new THREE.Camera,h=new THREE.Matrix4,n=new THREE.Matrix4,o,t,u;k.useTarget=m.useTarget=false;k.matrixAutoUpdate=m.matrixAutoUpdate=false;var b={minFilter:THREE.LinearFilter,magFilter:THREE.NearestFilter,format:THREE.RGBAFormat},v=new THREE.WebGLRenderTarget(512,512,b),x=new THREE.WebGLRenderTarget(512,512,b),w=new THREE.Camera(53,1,1,1E4);w.position.z=
2;_material=new THREE.MeshShaderMaterial({uniforms:{mapLeft:{type:"t",value:0,texture:v},mapRight:{type:"t",value:1,texture:x}},vertexShader:"varying vec2 vUv;\nvoid main() {\nvUv = vec2( uv.x, 1.0 - uv.y );\ngl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );\n}",fragmentShader:"uniform sampler2D mapLeft;\nuniform sampler2D mapRight;\nvarying vec2 vUv;\nvoid main() {\nvec4 colorL, colorR;\nvec2 uv = vUv;\ncolorL = texture2D( mapLeft, uv );\ncolorR = texture2D( mapRight, uv );\ngl_FragColor = vec4( colorL.g * 0.7 + colorL.b * 0.3, colorR.g, colorR.b, colorL.a + colorR.a ) * 1.1;\n}"});
var B=new THREE.Scene;B.addObject(new THREE.Mesh(new THREE.PlaneGeometry(2,2),_material));this.setSize=function(b,f){e.call(c,b,f);v.width=b;v.height=f;x.width=b;x.height=f};this.render=function(b,e){e.update(null,true);if(o!==e.aspect||t!==e.near||u!==e.fov){o=e.aspect;t=e.near;u=e.fov;var D=e.projectionMatrix.clone(),C=125/30*0.5,L=C*t/125,z=t*Math.tan(u*Math.PI/360),E;h.n14=C;n.n14=-C;C=-z*o+L;E=z*o+L;D.n11=2*t/(E-C);D.n13=(E+C)/(E-C);k.projectionMatrix=D.clone();C=-z*o-L;E=z*o-L;D.n11=2*t/(E-
C);D.n13=(E+C)/(E-C);m.projectionMatrix=D.clone()}k.matrix=e.matrixWorld.clone().multiplySelf(n);k.update(null,true);k.position.copy(e.position);k.near=t;k.far=e.far;f.call(c,b,k,v,true);m.matrix=e.matrixWorld.clone().multiplySelf(h);m.update(null,true);m.position.copy(e.position);m.near=t;m.far=e.far;f.call(c,b,m,x,true);f.call(c,B,w)}};
if(THREE.WebGLRenderer)THREE.CrosseyedWebGLRenderer=function(b){THREE.WebGLRenderer.call(this,b);this.autoClear=false;var c=this,e=this.setSize,f=this.render,k,m,h=new THREE.Camera,n=new THREE.Camera;c.separation=10;if(b&&b.separation!==void 0)c.separation=b.separation;(new THREE.Camera(53,window.innerWidth/2/window.innerHeight,1,1E4)).position.z=-10;this.setSize=function(b,f){e.call(c,b,f);k=b/2;m=f};this.render=function(b,e){this.clear();h.fov=e.fov;h.aspect=0.5*e.aspect;h.near=e.near;h.far=e.far;
h.updateProjectionMatrix();h.position.copy(e.position);h.target.position.copy(e.target.position);h.translateX(c.separation);n.projectionMatrix=h.projectionMatrix;n.position.copy(e.position);n.target.position.copy(e.target.position);n.translateX(-c.separation);this.setViewport(0,0,k,m);f.call(c,b,h);this.setViewport(k,0,k,m);f.call(c,b,n,false)}};define("three",function(){});
define("dat/mahog/shaders/BookUniforms",["dat/mahog/params","three"],function(b){return{near:{type:"f",value:10},far:{type:"f",value:1E3},transparency:{type:"f",value:1},dim:{type:"f",value:0},fogColor:{type:"v3",value:new THREE.Vector3(0,0,0)},fogNear:{type:"f",value:b.near},fogFar:{type:"f",value:b.far},isCover:{type:"f",value:0},isOpened:{type:"f",value:0},thickness:{type:"f",value:0},tint:{type:"v4",value:new THREE.Vector4(1,1,1,0.001)},tileSize:{type:"f",value:0.0625},tileColumn:{type:"f",value:0},
tileRow:{type:"f",value:0},texturemap:{type:"t",value:2,texture:null},lightmap:{type:"t",value:3,texture:null},enableLighting:{type:"i",value:1},ambientLightColor:{type:"fv",value:[]},directionalLightDirection:{type:"fv",value:[]},directionalLightColor:{type:"fv",value:[]},pointLightColor:{type:"fv",value:[]},pointLightPosition:{type:"fv",value:[]},pointLightDistance:{type:"fv1",value:[]},morphInfluences:{type:"fv1",value:[]}}});
(function(b){function c(b,c,e,h,n){this._listener=c;this._isOnce=e;this.context=h;this._signal=b;this._priority=n||0}var e={VERSION:"0.6.1"};c.prototype={active:true,execute:function(b){var c;this.active&&(c=this._listener.apply(this.context,b),this._isOnce&&this.detach());return c},detach:function(){return this._signal.remove(this._listener)},getListener:function(){return this._listener},dispose:function(){this.detach();this._destroy()},_destroy:function(){delete this._signal;delete this._isOnce;
delete this._listener;delete this.context},isOnce:function(){return this._isOnce},toString:function(){return"[SignalBinding isOnce: "+this._isOnce+", active: "+this.active+"]"}};e.Signal=function(){this._bindings=[]};e.Signal.prototype={_shouldPropagate:true,active:true,_registerListener:function(b,e,m,h){if(typeof b!=="function")throw Error("listener is a required param of add() and addOnce() and should be a Function.");var n=this._indexOfListener(b);if(n!==-1){if(b=this._bindings[n],b.isOnce()!==
e)throw Error("You cannot add"+(e?"":"Once")+"() then add"+(!e?"":"Once")+"() the same listener without removing the relationship first.");}else b=new c(this,b,e,m,h),this._addBinding(b);return b},_addBinding:function(b){var c=this._bindings.length;do--c;while(this._bindings[c]&&b._priority<=this._bindings[c]._priority);this._bindings.splice(c+1,0,b)},_indexOfListener:function(b){for(var c=this._bindings.length;c--;)if(this._bindings[c]._listener===b)return c;return-1},add:function(b,c,e){return this._registerListener(b,
false,c,e)},addOnce:function(b,c,e){return this._registerListener(b,true,c,e)},remove:function(b){if(typeof b!=="function")throw Error("listener is a required param of remove() and should be a Function.");var c=this._indexOfListener(b);c!==-1&&(this._bindings[c]._destroy(),this._bindings.splice(c,1));return b},removeAll:function(){for(var b=this._bindings.length;b--;)this._bindings[b]._destroy();this._bindings.length=0},getNumListeners:function(){return this._bindings.length},halt:function(){this._shouldPropagate=
false},dispatch:function(b){if(this.active){var c=Array.prototype.slice.call(arguments),e=this._bindings.slice(),h=this._bindings.length;this._shouldPropagate=true;do h--;while(e[h]&&this._shouldPropagate&&e[h].execute(c)!==false)}},dispose:function(){this.removeAll();delete this._bindings},toString:function(){return"[Signal active: "+this.active+" numListeners: "+this.getNumListeners()+"]"}};b.signals=e})(window||global||this);define("third-party/js-signals.min",function(){});
define("dat/mahog/BookInfo",["third-party/js-signals.min"],function(){function b(b){function e(b,c){b[c]=false}e(b,"displayer_attached");e(b,"data_request_queued",true);e(b,"data_requested");e(b,"data_received");e(b,"thumbnail_requested");e(b,"thumbnail_received");e(b,"thumbnail_created");e(b,"thumbnail_applied",true);e(b,"fullsize_requested");e(b,"fullsize_received");e(b,"fullsize_applied");this.registerListeners=function(){};this.clearListeners=function(){}}return function(c){this.data=c||{};this.status=
new b(this);this.textures={};this.bookDisplayer=this.id=void 0;this.applyThumbnail=function(){}}});define("dat/utils/urlArgs",[],function(){for(var b={},c=window.location.search.toString(),c=c.replace("?",""),c=c.split("&"),e=0;e<c.length;e++){var f=c[e].split("=");f&&f[0]!=""&&(b[f[0]]=f[1])}return b});
define("dat/mahog/utils",["dat/mahog/params","dat/utils/urlArgs"],function(b){return{qrURL:function(b){return"api/qr/"+b},fullsizeURL:function(b){return"api/image/"+b},orbitToY:function(c){return-c*b.shelfHeight/(Math.PI*2)},yToRevolution:function(c){return-Math.PI*2*(c/b.shelfHeight-Math.floor(c/b.shelfHeight))},yToOrbit:function(c){return-Math.PI*2*c/b.shelfHeight},indexToY:function(c){return c/b.booksPerCircle*b.shelfHeight},yToIndex:function(c){return c/b.shelfHeight*b.booksPerCircle},orbitToIndex:function(b){return this.yToIndex(this.orbitToY(b))}}});
define("text!dat/mahog/data/dominant_colors.json",function(){return"[[255, 255, 255], [1, 1, 1], [0, 0, 0], [255, 255, 255], [227, 7, 10], [255, 255, 255], [255, 255, 255], [81, 66, 117], [0, 0, 0], [255, 255, 255], [255, 255, 255], [159, 0, 0], [255, 255, 255], [24, 34, 44], [255, 255, 255], [50, 51, 38], [255, 255, 255], [250, 214, 135], [255, 255, 255], [161, 189, 209], [255, 255, 255], [100, 16, 18], [232, 24, 40], [223, 227, 230], [255, 255, 255], [255, 255, 255], [255, 255, 255], [3, 7, 8], [255, 255, 255], [255, 255, 255], [0, 0, 0], [0, 0, 0], [255, 255, 255], [19, 15, 12], [246, 159, 28], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [121, 73, 120], [153, 28, 31], [255, 255, 255], [0, 255, 0], [255, 255, 255], [255, 255, 0], [246, 243, 236], [0, 0, 0], [1, 1, 1], [0, 0, 0], [0, 139, 204], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 0, 0], [183, 184, 169], [0, 0, 0], [255, 255, 255], [255, 1, 0], [23, 117, 239], [255, 255, 255], [255, 255, 255], [255, 255, 255], [9, 8, 14], [40, 40, 88], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [34, 39, 42], [255, 255, 255], [0, 0, 0], [216, 56, 40], [255, 255, 255], [0, 195, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [5, 6, 8], [255, 255, 255], [1, 1, 0], [0, 0, 0], [255, 30, 25], [248, 200, 200], [255, 0, 0], [255, 255, 255], [254, 212, 74], [18, 12, 12], [255, 70, 0], [255, 255, 255], [255, 255, 255], [255, 243, 0], [255, 0, 0], [255, 255, 255], [35, 31, 32], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 232, 183], [255, 255, 255], [0, 255, 255], [255, 255, 255], [34, 32, 33], [0, 9, 8], [0, 0, 0], [239, 185, 255], [56, 50, 52], [255, 255, 255], [0, 1, 5], [0, 69, 41], [165, 207, 99], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [43, 24, 17], [255, 255, 255], [255, 255, 255], [237, 115, 94], [175, 147, 82], [0, 0, 0], [255, 69, 34], [255, 248, 0], [255, 243, 167], [255, 255, 0], [255, 255, 255], [239, 229, 214], [255, 255, 255], [255, 255, 255], [248, 232, 232], [68, 23, 27], [255, 255, 255], [255, 255, 255], [15, 8, 16], [16, 20, 19], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [254, 255, 255], [255, 8, 0], [250, 214, 135], [255, 255, 255], [254, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [1, 2, 7], [2, 205, 213], [255, 255, 255], [240, 247, 255], [1, 1, 1], [216, 152, 40], [90, 145, 138], [56, 56, 72], [154, 154, 154], [255, 255, 255], [255, 255, 255], [255, 255, 255], [232, 24, 40], [255, 255, 255], [255, 255, 255], [69, 39, 31], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [237, 33, 36], [0, 0, 0], [0, 12, 16], [7, 6, 4], [255, 255, 255], [34, 24, 23], [255, 255, 255], [25, 27, 22], [192, 31, 37], [0, 0, 0], [253, 253, 253], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [1, 2, 6], [243, 244, 213], [18, 18, 20], [0, 0, 0], [0, 0, 0], [255, 255, 255], [0, 0, 0], [255, 255, 255], [0, 28, 255], [255, 29, 36], [249, 230, 187], [209, 178, 0], [255, 255, 255], [255, 255, 255], [255, 244, 216], [255, 255, 255], [255, 69, 0], [255, 255, 255], [0, 0, 0], [126, 52, 54], [0, 81, 255], [255, 255, 255], [43, 38, 42], [24, 120, 184], [255, 255, 255], [255, 255, 255], [13, 12, 10], [0, 255, 255], [98, 148, 159], [23, 14, 31], [0, 0, 0], [255, 255, 255], [248, 232, 8], [255, 255, 255], [0, 0, 0], [178, 138, 5], [255, 255, 255], [3, 1, 2], [255, 255, 255], [255, 255, 255], [248, 243, 247], [255, 255, 255], [255, 255, 255], [254, 243, 213], [239, 232, 210], [255, 255, 137], [127, 27, 27], [255, 255, 255], [255, 255, 255], [7, 55, 116], [231, 232, 234], [255, 255, 255], [255, 255, 255], [254, 245, 108], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [155, 154, 156], [0, 0, 0], [255, 255, 255], [255, 255, 255], [79, 80, 84], [8, 8, 8], [255, 255, 255], [4, 2, 3], [255, 255, 0], [255, 255, 255], [95, 31, 34], [255, 255, 255], [183, 184, 169], [255, 255, 255], [255, 255, 255], [255, 255, 255], [252, 226, 41], [255, 255, 255], [119, 13, 25], [130, 175, 216], [255, 1, 0], [0, 0, 0], [255, 255, 255], [255, 255, 255], [88, 104, 136], [255, 255, 255], [6, 19, 24], [229, 227, 215], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 7, 8], [0, 0, 0], [0, 0, 0], [1, 1, 1], [255, 255, 255], [255, 255, 255], [111, 135, 181], [0, 0, 0], [59, 186, 218], [255, 199, 157], [223, 220, 214], [255, 81, 134], [255, 255, 255], [0, 0, 0], [255, 255, 255], [11, 11, 11], [1, 1, 1], [255, 255, 255], [14, 14, 14], [0, 234, 198], [255, 255, 255], [255, 255, 251], [8, 8, 8], [255, 17, 111], [255, 255, 255], [238, 227, 30], [238, 248, 247], [254, 254, 254], [255, 255, 255], [255, 255, 255], [39, 14, 16], [255, 26, 20], [255, 255, 255], [254, 253, 232], [255, 255, 255], [255, 255, 255], [255, 255, 255], [204, 223, 206], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [23, 32, 49], [255, 0, 0], [6, 8, 7], [238, 217, 0], [0, 144, 189], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [245, 29, 0], [253, 179, 22], [0, 0, 0], [255, 255, 255], [255, 76, 60], [255, 255, 255], [150, 143, 0], [0, 0, 0], [255, 255, 255], [0, 255, 255], [127, 100, 73], [255, 255, 255], [255, 255, 255], [234, 214, 163], [255, 255, 255], [255, 255, 255], [255, 255, 255], [12, 31, 149], [255, 255, 255], [16, 15, 13], [142, 156, 0], [255, 255, 255], [16, 18, 17], [15, 15, 65], [0, 0, 0], [179, 64, 180], [255, 255, 255], [19, 65, 89], [90, 151, 182], [19, 18, 16], [255, 255, 255], [255, 255, 122], [164, 89, 47], [255, 255, 255], [65, 174, 255], [0, 6, 15], [255, 255, 255], [20, 182, 76], [241, 51, 37], [200, 56, 24], [255, 255, 255], [255, 255, 255], [255, 255, 241], [153, 31, 20], [255, 255, 255], [213, 231, 219], [196, 216, 225], [255, 255, 255], [255, 255, 255], [137, 138, 129], [255, 255, 255], [255, 255, 255], [242, 225, 216], [255, 255, 255], [7, 11, 14], [254, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [198, 214, 214], [196, 196, 196], [248, 232, 200], [255, 255, 255], [255, 255, 255], [255, 255, 255], [8, 9, 11], [14, 21, 34], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 254, 249], [20, 18, 18], [254, 255, 239], [149, 54, 49], [255, 255, 255], [255, 255, 255], [255, 249, 234], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 253], [255, 255, 255], [19, 15, 12], [255, 255, 255], [46, 123, 163], [57, 154, 207], [255, 222, 157], [1, 29, 77], [247, 130, 35], [34, 11, 57], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [239, 255, 255], [246, 159, 28], [128, 62, 12], [0, 0, 0], [19, 119, 194], [255, 255, 255], [255, 255, 220], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [53, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [252, 223, 9], [255, 255, 255], [255, 255, 255], [255, 255, 255], [1, 1, 1], [255, 255, 255], [56, 56, 56], [255, 255, 255], [232, 234, 247], [255, 255, 255], [242, 241, 228], [254, 254, 254], [35, 31, 32], [233, 248, 249], [250, 254, 255], [255, 255, 255], [232, 225, 220], [255, 255, 255], [59, 63, 66], [249, 242, 189], [255, 39, 255], [0, 81, 122], [255, 255, 255], [0, 173, 239], [255, 186, 27], [255, 255, 255], [31, 30, 28], [255, 255, 255], [3, 3, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [37, 64, 142], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [249, 255, 205], [0, 121, 194], [167, 216, 29], [24, 200, 40], [41, 43, 40], [255, 255, 255], [250, 248, 227], [255, 255, 255], [255, 255, 255], [0, 166, 222], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 56, 82], [216, 216, 216], [43, 163, 255], [255, 255, 255], [255, 255, 30], [71, 71, 71], [255, 255, 255], [255, 255, 255], [24, 120, 200], [255, 255, 255], [255, 255, 255], [255, 255, 255], [250, 6, 8], [255, 255, 255], [0, 0, 82], [206, 172, 125], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [0, 160, 47], [35, 31, 30], [39, 102, 19], [255, 255, 255], [5, 6, 8], [255, 251, 240], [0, 0, 0], [216, 40, 40], [239, 49, 33], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [53, 112, 57], [255, 255, 255], [255, 255, 255], [211, 76, 56], [255, 255, 255], [255, 255, 255], [24, 24, 26], [248, 88, 40], [255, 255, 255], [0, 0, 0], [122, 128, 186], [255, 73, 16], [255, 255, 255], [78, 201, 242], [255, 255, 255], [11, 10, 15], [0, 0, 0], [255, 229, 0], [255, 255, 255], [255, 255, 15], [255, 227, 255], [72, 73, 69], [255, 255, 255], [255, 164, 155], [255, 21, 0], [8, 20, 8], [0, 0, 0], [255, 255, 255], [21, 24, 42], [255, 255, 255], [255, 255, 255], [255, 255, 255], [38, 51, 95], [255, 255, 255], [134, 24, 27], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [105, 154, 212], [24, 27, 30], [3, 7, 8], [226, 244, 255], [255, 255, 255], [255, 255, 255], [104, 200, 168], [23, 22, 0], [10, 10, 12], [153, 28, 31], [255, 255, 255], [255, 255, 255], [255, 221, 0], [57, 73, 124], [93, 0, 0], [111, 83, 49], [255, 255, 255], [255, 255, 255], [255, 240, 23], [3, 153, 126], [114, 90, 253], [203, 144, 53], [255, 255, 255], [15, 44, 255], [255, 255, 255], [0, 139, 204], [0, 41, 75], [255, 24, 33], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [91, 143, 157], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 33, 34], [252, 243, 225], [2, 0, 1], [0, 0, 0], [255, 255, 255], [255, 255, 255], [253, 255, 254], [246, 19, 0], [255, 255, 255], [255, 30, 25], [255, 255, 255], [255, 255, 255], [255, 255, 255], [188, 215, 40], [157, 205, 164], [255, 255, 255], [255, 255, 255], [255, 0, 0], [255, 255, 255], [255, 255, 255], [22, 51, 91], [0, 49, 242], [255, 255, 255], [255, 255, 255], [8, 10, 9], [255, 255, 255], [5, 6, 8], [255, 253, 232], [255, 255, 255], [255, 103, 135], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 20, 15], [255, 255, 255], [12, 0, 0], [255, 255, 255], [255, 198, 231], [0, 0, 243], [255, 255, 255], [8, 8, 8], [241, 90, 63], [206, 197, 142], [8, 0, 0], [255, 255, 255], [32, 17, 12], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [100, 126, 78], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [1, 1, 0], [35, 31, 32], [255, 255, 255], [184, 216, 24], [255, 255, 255], [0, 28, 255], [6, 24, 0], [254, 24, 0], [255, 255, 255], [255, 255, 255], [6, 24, 0], [255, 255, 255], [184, 216, 24], [210, 0, 9], [6, 24, 0], [255, 255, 255], [0, 0, 0], [255, 255, 255], [200, 216, 40], [255, 255, 255], [255, 255, 255], [6, 24, 0], [255, 255, 255], [6, 24, 0], [6, 24, 0], [255, 255, 255], [255, 255, 255], [6, 24, 0], [255, 255, 255], [6, 24, 0], [254, 242, 0], [255, 255, 255], [200, 216, 40], [255, 255, 255], [6, 24, 0], [6, 24, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [3, 7, 8], [233, 213, 200], [6, 24, 0], [147, 0, 0], [6, 24, 0], [255, 255, 255], [184, 216, 24], [6, 24, 34], [24, 200, 40], [255, 255, 255], [255, 255, 255], [6, 24, 0], [200, 216, 40], [40, 40, 40], [6, 24, 0], [255, 255, 255], [255, 255, 255], [6, 24, 0], [255, 255, 255], [0, 173, 239], [200, 216, 40], [6, 24, 0], [255, 255, 255], [255, 255, 255], [226, 246, 246], [6, 24, 0], [6, 24, 34], [239, 94, 39], [255, 255, 255], [255, 255, 255], [255, 255, 255], [6, 24, 34], [33, 43, 98], [6, 24, 0], [6, 24, 34], [6, 24, 34], [255, 255, 255], [255, 255, 255], [255, 255, 255], [254, 254, 254], [255, 255, 255], [200, 216, 40], [6, 23, 0], [200, 216, 40], [255, 255, 255], [255, 255, 255], [6, 24, 34], [6, 24, 0], [8, 88, 72], [255, 255, 255], [255, 255, 255], [253, 241, 189], [16, 17, 22], [223, 211, 197], [175, 30, 37], [0, 234, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 200, 1], [255, 255, 255], [255, 255, 255], [220, 27, 48], [39, 34, 100], [172, 36, 40], [255, 255, 255], [248, 253, 255], [236, 236, 236], [238, 232, 204], [176, 146, 71], [255, 255, 0], [240, 232, 211], [182, 216, 5], [255, 255, 255], [250, 247, 29], [255, 255, 255], [249, 240, 201], [255, 255, 255], [254, 232, 1], [246, 135, 17], [200, 224, 255], [255, 255, 255], [215, 200, 158], [255, 27, 48], [255, 255, 255], [255, 255, 255], [6, 24, 0], [8, 56, 8], [35, 31, 32], [4, 3, 8], [255, 255, 255], [187, 90, 21], [255, 76, 28], [231, 229, 170], [255, 255, 255], [6, 24, 0], [230, 226, 237], [254, 254, 254], [10, 10, 10], [255, 255, 255], [255, 255, 255], [255, 255, 255], [254, 242, 0], [255, 247, 224], [118, 56, 37], [255, 255, 255], [255, 255, 255], [206, 19, 67], [186, 3, 34], [255, 255, 33], [255, 255, 255], [255, 255, 255], [255, 255, 231], [255, 238, 237], [6, 24, 0], [255, 255, 255], [255, 255, 255], [254, 23, 0], [24, 88, 168], [13, 22, 21], [6, 24, 0], [193, 142, 85], [25, 27, 22], [255, 255, 255], [255, 255, 255], [112, 198, 47], [255, 255, 255], [254, 245, 230], [255, 255, 255], [255, 255, 255], [231, 219, 8], [83, 153, 208], [255, 255, 255], [231, 231, 231], [28, 44, 77], [150, 202, 76], [81, 35, 11], [255, 22, 42], [0, 0, 225], [82, 52, 14], [223, 76, 24], [255, 255, 255], [255, 255, 255], [1, 1, 0], [255, 255, 255], [255, 16, 16], [255, 255, 255], [255, 255, 255], [91, 87, 161], [255, 255, 255], [255, 89, 33], [210, 235, 239], [255, 255, 255], [186, 233, 251], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 0, 82], [255, 42, 43], [255, 255, 255], [249, 239, 79], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [50, 51, 53], [255, 255, 255], [6, 0, 0], [243, 232, 178], [255, 255, 255], [255, 243, 24], [246, 214, 0], [255, 202, 32], [255, 255, 255], [233, 213, 200], [238, 65, 48], [32, 18, 17], [255, 255, 255], [193, 228, 229], [255, 255, 255], [51, 88, 132], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 15, 13], [6, 24, 0], [255, 255, 255], [248, 248, 216], [247, 203, 16], [255, 30, 0], [255, 255, 255], [176, 163, 207], [222, 217, 239], [255, 243, 223], [255, 35, 47], [255, 255, 255], [255, 255, 255], [255, 0, 0], [191, 222, 20], [255, 255, 255], [255, 176, 0], [254, 56, 45], [255, 255, 255], [253, 252, 222], [255, 255, 255], [255, 255, 255], [255, 255, 255], [198, 222, 100], [255, 255, 255], [255, 255, 255], [255, 255, 255], [154, 1, 81], [255, 255, 255], [214, 177, 122], [255, 129, 49], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 255, 255], [255, 255, 255], [255, 255, 255], [220, 29, 36], [255, 255, 149], [255, 255, 76], [139, 173, 0], [21, 17, 14], [246, 189, 170], [255, 255, 255], [255, 252, 217], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [18, 16, 19], [231, 250, 255], [255, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [197, 38, 42], [96, 187, 70], [182, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [254, 252, 191], [255, 255, 255], [250, 244, 255], [209, 121, 112], [255, 0, 40], [0, 0, 0], [16, 17, 0], [255, 255, 255], [6, 24, 34], [255, 21, 20], [255, 255, 255], [22, 24, 23], [255, 255, 255], [255, 255, 255], [224, 76, 25], [255, 255, 255], [0, 0, 0], [255, 249, 233], [255, 255, 255], [35, 15, 14], [255, 255, 255], [255, 255, 255], [255, 255, 255], [6, 24, 0], [239, 233, 211], [229, 0, 0], [255, 255, 255], [237, 56, 151], [255, 255, 255], [236, 33, 39], [241, 228, 194], [255, 255, 255], [255, 255, 255], [255, 255, 255], [247, 247, 249], [255, 255, 255], [255, 255, 255], [255, 255, 255], [220, 69, 48], [255, 255, 0], [247, 21, 16], [0, 0, 0], [254, 232, 0], [255, 255, 255], [185, 30, 34], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 254, 0], [255, 255, 255], [11, 5, 5], [255, 255, 255], [255, 255, 98], [255, 255, 255], [6, 7, 9], [255, 255, 255], [255, 255, 255], [255, 255, 255], [24, 32, 25], [255, 0, 0], [255, 255, 255], [255, 255, 255], [255, 8, 0], [255, 255, 255], [255, 255, 255], [0, 87, 23], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [25, 28, 31], [255, 255, 255], [255, 255, 255], [83, 44, 0], [255, 255, 255], [255, 255, 255], [41, 24, 255], [255, 255, 255], [255, 16, 24], [255, 255, 255], [255, 255, 255], [216, 200, 104], [255, 255, 255], [238, 27, 42], [0, 29, 0], [0, 154, 0], [255, 255, 255], [176, 0, 0], [255, 255, 255], [1, 10, 27], [26, 27, 31], [0, 0, 0], [0, 255, 255], [255, 255, 255], [40, 8, 8], [255, 255, 255], [255, 255, 255], [124, 72, 155], [255, 49, 0], [255, 0, 0], [1, 1, 1], [0, 0, 0], [123, 208, 232], [255, 211, 255], [19, 20, 50], [0, 9, 8], [255, 255, 255], [46, 52, 45], [255, 255, 255], [255, 221, 0], [255, 255, 255], [0, 0, 0], [255, 255, 255], [13, 22, 101], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 1, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [5, 6, 8], [5, 6, 8], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [48, 65, 34], [255, 255, 255], [241, 215, 174], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [31, 21, 21], [255, 29, 16], [255, 255, 255], [255, 255, 255], [114, 36, 49], [0, 47, 57], [165, 29, 34], [255, 21, 0], [255, 255, 255], [19, 20, 19], [24, 24, 24], [255, 255, 255], [1, 27, 140], [255, 255, 255], [16, 7, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [20, 27, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [4, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 0], [158, 32, 40], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [50, 95, 148], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 24, 27], [6, 7, 9], [0, 0, 0], [255, 255, 255], [0, 0, 0], [255, 255, 255], [46, 47, 52], [6, 19, 0], [21, 19, 22], [255, 255, 255], [255, 255, 255], [3, 7, 8], [255, 85, 53], [255, 255, 255], [0, 0, 0], [154, 12, 0], [17, 14, 18], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 255], [80, 54, 52], [80, 81, 83], [255, 255, 255], [255, 0, 0], [0, 1, 6], [255, 255, 255], [255, 255, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [95, 93, 105], [255, 255, 255], [255, 255, 255], [255, 255, 255], [19, 13, 13], [255, 255, 255], [255, 255, 42], [255, 0, 0], [255, 0, 0], [255, 254, 0], [255, 1, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 221, 155], [75, 38, 0], [255, 255, 255], [255, 66, 27], [255, 255, 255], [255, 255, 255], [7, 6, 11], [255, 255, 255], [0, 0, 0], [255, 0, 0], [73, 138, 49], [255, 255, 255], [255, 255, 255], [255, 9, 10], [0, 255, 0], [255, 44, 34], [8, 8, 8], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 38, 34], [255, 13, 39], [255, 255, 255], [46, 52, 45], [0, 0, 0], [255, 255, 98], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [0, 111, 144], [255, 255, 255], [21, 22, 36], [21, 27, 43], [255, 255, 255], [248, 168, 56], [255, 255, 255], [255, 255, 255], [255, 74, 87], [255, 255, 255], [255, 252, 247], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 44, 29], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [181, 195, 230], [198, 184, 171], [255, 255, 255], [254, 245, 152], [238, 77, 48], [0, 89, 133], [255, 255, 255], [189, 216, 239], [54, 246, 79], [240, 241, 236], [255, 255, 255], [255, 0, 0], [5, 5, 5], [203, 239, 251], [255, 255, 255], [25, 21, 18], [255, 255, 255], [255, 255, 255], [0, 0, 0], [0, 0, 0], [255, 255, 255], [255, 23, 0], [255, 255, 255], [50, 133, 115], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 13, 16], [255, 255, 255], [255, 255, 255], [0, 255, 0], [255, 255, 255], [255, 255, 255], [255, 72, 0], [5, 6, 8], [4, 2, 3], [255, 255, 255], [0, 22, 48], [255, 255, 255], [255, 255, 255], [29, 214, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 131], [15, 18, 133], [255, 255, 255], [255, 255, 255], [26, 72, 161], [255, 255, 255], [8, 10, 8], [0, 0, 0], [0, 255, 0], [255, 255, 0], [255, 255, 255], [255, 255, 255], [251, 245, 223], [255, 255, 255], [0, 0, 0], [255, 255, 255], [0, 0, 0], [255, 255, 255], [161, 156, 42], [255, 255, 255], [255, 255, 255], [147, 196, 241], [0, 70, 255], [255, 255, 255], [255, 255, 255], [183, 17, 55], [1, 0, 0], [225, 233, 235], [255, 0, 0], [83, 44, 0], [255, 255, 255], [255, 255, 255], [255, 255, 40], [203, 0, 44], [255, 255, 255], [255, 255, 255], [16, 15, 13], [255, 255, 255], [2, 2, 2], [255, 183, 166], [255, 255, 255], [250, 248, 255], [1, 12, 66], [17, 13, 10], [255, 203, 5], [10, 8, 9], [255, 255, 255], [96, 86, 85], [255, 235, 249], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [31, 148, 188], [255, 255, 0], [255, 13, 39], [255, 255, 255], [223, 227, 230], [255, 255, 255], [50, 194, 220], [255, 16, 24], [0, 0, 0], [255, 255, 255], [0, 0, 0], [255, 255, 250], [255, 250, 243], [255, 255, 255], [255, 255, 255], [17, 20, 16], [255, 255, 255], [0, 0, 0], [115, 95, 94], [255, 255, 255], [1, 85, 0], [255, 255, 255], [13, 22, 101], [234, 167, 27], [255, 255, 255], [255, 255, 255], [0, 113, 189], [255, 255, 255], [48, 19, 16], [16, 17, 16], [101, 15, 54], [230, 228, 212], [255, 255, 255], [0, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [226, 231, 237], [34, 30, 0], [255, 255, 255], [24, 0, 0], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [0, 0, 255], [253, 255, 254], [255, 0, 0], [3, 7, 8], [255, 255, 255], [1, 1, 1], [41, 41, 41], [255, 255, 255], [255, 255, 255], [148, 215, 215], [255, 255, 255], [0, 0, 0], [255, 255, 255], [26, 27, 31], [255, 255, 255], [195, 181, 12], [255, 255, 255], [0, 0, 0], [255, 255, 255], [0, 0, 0], [0, 0, 0], [255, 255, 255], [255, 255, 255], [18, 40, 53], [255, 255, 255], [237, 27, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [230, 232, 73], [180, 32, 42], [255, 15, 13], [255, 49, 0], [19, 19, 255], [255, 255, 255], [255, 255, 233], [255, 255, 255], [70, 0, 0], [0, 0, 255], [0, 0, 0], [255, 255, 255], [253, 255, 254], [0, 0, 255], [255, 255, 255], [255, 255, 255], [255, 173, 255], [255, 244, 255], [0, 223, 171], [3, 7, 8], [255, 233, 0], [8, 182, 17], [16, 52, 108], [255, 255, 255], [255, 255, 13], [230, 244, 201], [237, 27, 36], [255, 255, 255], [255, 23, 22], [253, 250, 245], [255, 255, 255], [255, 15, 17], [0, 0, 0], [255, 255, 255], [255, 255, 255], [19, 20, 50], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [143, 27, 72], [255, 255, 255], [255, 255, 255], [30, 20, 18], [255, 255, 255], [91, 134, 62], [0, 0, 0], [255, 255, 255], [0, 0, 0], [255, 255, 255], [178, 169, 149], [8, 6, 18], [11, 12, 7], [29, 108, 175], [255, 255, 255], [0, 0, 0], [255, 0, 0], [255, 255, 255], [253, 253, 253], [212, 61, 40], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [221, 198, 96], [255, 255, 255], [0, 0, 0], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 0, 0], [255, 17, 15], [255, 255, 255], [255, 255, 255], [198, 220, 206], [255, 255, 255], [174, 32, 72], [255, 255, 255], [254, 177, 23], [11, 0, 0], [255, 255, 255], [33, 0, 0], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 0], [255, 237, 230], [204, 181, 232], [255, 1, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [179, 163, 60], [255, 255, 255], [255, 255, 255], [197, 219, 224], [255, 23, 39], [255, 0, 16], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 0], [255, 255, 255], [255, 75, 56], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 202, 255], [255, 255, 255], [255, 0, 0], [0, 255, 0], [255, 255, 255], [255, 75, 74], [255, 255, 255], [255, 255, 255], [1, 1, 1], [255, 255, 255], [255, 255, 255], [167, 226, 36], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [189, 37, 43], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [8, 24, 8], [255, 255, 255], [255, 250, 231], [255, 45, 39], [255, 255, 255], [255, 255, 255], [18, 20, 34], [228, 219, 179], [3, 7, 8], [255, 255, 255], [255, 255, 255], [255, 243, 255], [255, 255, 255], [255, 255, 13], [255, 255, 255], [0, 9, 8], [255, 250, 255], [255, 255, 255], [255, 255, 255], [0, 187, 181], [255, 255, 255], [121, 73, 120], [255, 16, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [0, 29, 0], [110, 154, 137], [255, 255, 255], [155, 31, 41], [255, 85, 95], [255, 255, 255], [0, 0, 0], [255, 255, 255], [136, 56, 72], [255, 255, 255], [255, 255, 255], [156, 194, 169], [10, 12, 15], [255, 255, 255], [255, 255, 255], [31, 1, 0], [255, 255, 255], [125, 35, 27], [0, 0, 0], [1, 3, 0], [255, 255, 255], [255, 253, 240], [255, 229, 255], [0, 0, 0], [0, 73, 36], [10, 10, 10], [255, 255, 255], [255, 255, 255], [255, 247, 0], [15, 12, 16], [255, 255, 255], [255, 255, 255], [255, 255, 255], [189, 22, 29], [255, 255, 255], [55, 0, 147], [40, 36, 15], [255, 255, 255], [255, 255, 255], [254, 254, 123], [66, 181, 225], [114, 36, 49], [255, 134, 146], [255, 255, 255], [255, 255, 255], [255, 0, 0], [255, 255, 255], [255, 255, 255], [0, 0, 0], [66, 224, 159], [247, 174, 46], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 0, 254], [248, 237, 205], [86, 104, 174], [251, 208, 7], [19, 20, 19], [255, 255, 0], [255, 255, 255], [255, 255, 255], [1, 1, 1], [255, 255, 255], [240, 226, 189], [255, 255, 255], [1, 27, 140], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [17, 15, 16], [255, 255, 255], [16, 7, 255], [255, 255, 255], [7, 6, 11], [255, 255, 255], [255, 255, 255], [126, 65, 34], [206, 175, 123], [0, 255, 255], [255, 248, 237], [255, 255, 255], [0, 255, 255], [0, 0, 0], [20, 27, 255], [255, 255, 255], [255, 255, 255], [0, 255, 255], [255, 0, 0], [255, 5, 0], [243, 251, 253], [248, 200, 216], [216, 216, 232], [255, 0, 112], [255, 255, 255], [255, 255, 255], [56, 40, 40], [255, 255, 255], [57, 44, 0], [41, 45, 0], [221, 123, 50], [0, 0, 0], [255, 255, 255], [255, 255, 255], [0, 8, 0], [255, 212, 59], [255, 255, 255], [232, 207, 127], [161, 127, 90], [27, 237, 240], [156, 32, 34], [255, 255, 255], [191, 202, 204], [255, 255, 255], [0, 133, 255], [255, 255, 255], [59, 137, 183], [254, 254, 7], [242, 233, 173], [52, 60, 60], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 226, 39], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 121, 33], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 151, 40], [0, 0, 0], [54, 38, 39], [248, 248, 232], [255, 255, 255], [255, 194, 152], [21, 16, 13], [202, 127, 2], [255, 255, 255], [0, 255, 255], [18, 53, 9], [10, 10, 10], [0, 255, 255], [255, 255, 255], [255, 255, 255], [255, 205, 181], [255, 255, 255], [255, 255, 255], [255, 255, 82], [255, 255, 255], [255, 255, 255], [129, 109, 51], [0, 0, 0], [50, 95, 148], [255, 255, 255], [255, 255, 255], [159, 137, 181], [255, 53, 96], [255, 255, 255], [97, 143, 156], [5, 7, 6], [255, 255, 255], [0, 0, 0], [255, 255, 255], [0, 22, 0], [255, 255, 255], [0, 0, 16], [255, 255, 255], [255, 255, 255], [240, 236, 246], [209, 210, 212], [255, 255, 255], [255, 255, 255], [32, 13, 17], [1, 1, 1], [0, 0, 0], [255, 255, 255], [6, 8, 5], [255, 255, 255], [5, 6, 8], [100, 113, 165], [0, 120, 137], [5, 6, 8], [255, 255, 255], [255, 255, 255], [255, 7, 0], [46, 47, 52], [255, 255, 255], [255, 255, 255], [11, 23, 255], [6, 19, 0], [255, 141, 64], [255, 198, 0], [0, 0, 12], [255, 255, 255], [255, 30, 0], [255, 255, 255], [255, 142, 198], [255, 255, 255], [255, 135, 13], [255, 16, 15], [1, 1, 1], [255, 206, 43], [255, 255, 255], [255, 255, 255], [69, 255, 255], [3, 7, 8], [255, 255, 255], [255, 255, 255], [0, 170, 0], [255, 255, 255], [255, 255, 255], [1, 149, 175], [255, 72, 69], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 30, 25], [255, 255, 255], [255, 242, 213], [255, 255, 255], [29, 55, 35], [3, 2, 0], [39, 40, 255], [255, 255, 255], [17, 14, 18], [255, 255, 255], [43, 48, 140], [255, 255, 255], [255, 255, 255], [92, 88, 53], [255, 255, 255], [255, 255, 255], [8, 0, 0], [44, 210, 212], [248, 44, 255], [255, 255, 255], [16, 7, 2], [255, 255, 255], [255, 255, 255], [0, 0, 0], [0, 78, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [0, 0, 255], [243, 247, 255], [255, 255, 255], [80, 54, 52], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 68, 0], [80, 81, 83], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 70, 0], [18, 20, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 243, 0], [0, 0, 14], [255, 255, 255], [255, 255, 255], [255, 255, 250], [255, 255, 255], [255, 255, 255], [255, 0, 0], [255, 8, 7], [37, 21, 255], [7, 6, 11], [255, 0, 0], [255, 30, 38], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 236, 164], [0, 1, 6], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 189, 217], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 31, 9], [255, 0, 0], [255, 255, 255], [255, 255, 255], [0, 218, 54], [255, 255, 255], [35, 31, 32], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [167, 214, 218], [255, 255, 255], [254, 252, 240], [12, 33, 16], [255, 255, 255], [0, 162, 228], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [110, 154, 137], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [0, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [220, 217, 195], [17, 19, 60], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 0], [255, 255, 255], [255, 255, 255], [191, 0, 0], [160, 59, 17], [56, 255, 49], [160, 59, 17], [255, 255, 49], [255, 255, 255], [160, 59, 17], [72, 179, 70], [72, 179, 70], [72, 179, 70], [160, 59, 17], [255, 102, 0], [58, 53, 49], [72, 179, 70], [72, 179, 70], [0, 137, 204], [160, 59, 17], [255, 246, 247], [60, 50, 49], [247, 255, 255], [72, 179, 70], [0, 0, 0], [255, 255, 247], [0, 137, 204], [255, 255, 247], [255, 255, 255], [59, 49, 48], [0, 85, 171], [255, 255, 49], [72, 179, 70], [0, 137, 204], [191, 0, 0], [0, 137, 204], [59, 56, 49], [255, 255, 49], [56, 255, 49], [255, 102, 0], [0, 85, 171], [191, 0, 0], [247, 255, 255], [191, 0, 0], [0, 85, 171], [255, 102, 0], [255, 102, 0], [0, 137, 204], [255, 255, 247], [57, 52, 48], [49, 58, 53], [191, 0, 0], [255, 255, 247], [56, 255, 49], [72, 179, 70], [191, 0, 0], [191, 0, 0], [49, 52, 255], [51, 255, 50], [255, 255, 247], [49, 58, 57], [0, 85, 171], [160, 59, 17], [191, 0, 0], [191, 0, 0], [191, 0, 0], [50, 50, 60], [72, 179, 70], [191, 0, 0], [191, 0, 0], [50, 50, 60], [191, 0, 0], [220, 212, 201], [42, 16, 8], [255, 102, 0], [0, 137, 204], [72, 179, 70], [255, 102, 0], [51, 58, 50], [49, 58, 55], [0, 85, 171], [160, 59, 17], [255, 255, 255], [255, 255, 49], [16, 18, 14], [255, 255, 247], [255, 102, 0], [0, 85, 171], [160, 59, 17], [255, 102, 0], [255, 102, 0], [0, 137, 204], [57, 52, 48], [59, 49, 48], [57, 58, 50], [160, 59, 17], [255, 255, 49], [55, 58, 49], [0, 85, 171], [191, 0, 0], [247, 255, 255], [255, 255, 255], [255, 102, 0], [191, 0, 0], [49, 52, 255], [60, 50, 49], [191, 0, 0], [58, 55, 48], [255, 255, 49], [0, 85, 171], [255, 255, 49], [0, 137, 204], [255, 102, 0], [255, 49, 48], [255, 102, 0], [48, 58, 49], [72, 179, 70], [58, 58, 50], [60, 50, 49], [0, 85, 171], [72, 179, 70], [0, 85, 171], [255, 255, 247], [191, 0, 0], [0, 85, 171], [48, 58, 49], [72, 179, 70], [0, 137, 204], [72, 179, 70], [55, 58, 49], [255, 50, 49], [255, 255, 255], [255, 102, 0], [255, 255, 255], [160, 59, 17], [255, 102, 0], [72, 179, 70], [160, 59, 17], [191, 0, 0], [255, 102, 0], [255, 102, 0], [255, 250, 48], [57, 58, 50], [72, 179, 70], [0, 85, 171], [191, 0, 0], [72, 179, 70], [255, 255, 247], [191, 0, 0], [255, 102, 0], [160, 59, 17], [0, 137, 204], [160, 59, 17], [255, 102, 0], [160, 59, 17], [255, 255, 255], [72, 179, 70], [191, 0, 0], [5, 255, 255], [72, 179, 70], [160, 59, 17], [52, 57, 50], [58, 58, 50], [255, 255, 255], [48, 255, 49], [191, 0, 0], [160, 59, 17], [72, 179, 70], [255, 255, 255], [57, 57, 49], [191, 0, 0], [191, 0, 0], [0, 85, 171], [0, 85, 171], [0, 85, 171], [255, 102, 0], [58, 55, 48], [0, 137, 204], [49, 255, 57], [72, 179, 70], [255, 102, 0], [255, 102, 0], [160, 59, 17], [255, 50, 49], [56, 28, 30], [72, 179, 70], [255, 255, 247], [49, 58, 53], [255, 102, 0], [52, 255, 50], [255, 255, 49], [160, 59, 17], [160, 59, 17], [0, 137, 204], [0, 137, 204], [0, 85, 171], [191, 0, 0], [0, 85, 171], [0, 85, 171], [57, 58, 50], [48, 58, 49], [49, 58, 57], [0, 85, 171], [58, 55, 50], [0, 137, 204], [0, 137, 204], [255, 255, 247], [0, 137, 204], [221, 206, 195], [72, 179, 70], [255, 255, 255], [191, 0, 0], [72, 179, 70], [72, 179, 70], [72, 179, 70], [160, 59, 17], [160, 59, 17], [0, 137, 204], [160, 59, 17], [160, 59, 17], [255, 255, 247], [0, 85, 171], [255, 255, 49], [59, 49, 48], [0, 137, 204], [160, 59, 17], [59, 56, 49], [160, 59, 17], [72, 179, 70], [0, 85, 171], [0, 85, 171], [55, 58, 49], [0, 85, 171], [255, 255, 247], [0, 85, 171], [225, 213, 170], [0, 137, 204], [255, 102, 0], [160, 59, 17], [160, 59, 17], [255, 255, 255], [160, 59, 17], [0, 85, 171], [72, 179, 70], [0, 85, 171], [56, 57, 49], [191, 0, 0], [58, 53, 49], [51, 58, 50], [255, 102, 0], [0, 137, 204], [0, 85, 171], [160, 59, 17], [72, 179, 70], [72, 179, 70], [55, 255, 49], [247, 255, 255], [160, 59, 17], [59, 49, 48], [0, 137, 204], [49, 255, 51], [255, 53, 49], [0, 137, 204], [255, 255, 247], [58, 55, 48], [191, 0, 0], [72, 179, 70], [0, 85, 171], [72, 179, 70], [255, 255, 255], [58, 58, 50], [191, 0, 0], [160, 59, 17], [0, 137, 204], [255, 255, 247], [160, 59, 17], [0, 137, 204], [0, 137, 204], [72, 179, 70], [255, 255, 247], [255, 50, 49], [191, 0, 0], [255, 255, 255], [59, 49, 48], [49, 52, 61], [0, 137, 204], [255, 102, 0], [255, 255, 255], [0, 137, 204], [255, 53, 49], [247, 255, 255], [255, 255, 255], [255, 102, 0], [59, 56, 49], [72, 179, 70], [72, 179, 70], [72, 179, 70], [57, 57, 49], [57, 57, 49], [0, 85, 171], [58, 58, 50], [191, 0, 0], [255, 102, 0], [255, 255, 255], [59, 49, 48], [72, 179, 70], [191, 0, 0], [255, 255, 247], [0, 85, 171], [0, 137, 204], [49, 255, 255], [255, 255, 247], [160, 59, 17], [160, 59, 17], [255, 255, 247], [0, 137, 204], [160, 59, 17], [0, 137, 204], [255, 102, 0], [72, 179, 70], [255, 255, 255], [255, 255, 255], [0, 85, 171], [57, 58, 50], [0, 85, 171], [255, 255, 255], [255, 102, 0], [255, 255, 247], [0, 137, 204], [57, 57, 49], [255, 102, 0], [49, 52, 61], [117, 107, 39], [255, 255, 255], [56, 57, 49], [0, 85, 171], [59, 56, 49], [191, 0, 0], [0, 85, 171], [72, 179, 70], [52, 58, 48], [255, 255, 48], [60, 50, 49], [0, 137, 204], [49, 58, 57], [51, 58, 50], [191, 0, 0], [57, 57, 49], [0, 137, 204], [255, 255, 247], [72, 179, 70], [0, 85, 171], [255, 255, 247], [255, 102, 0], [0, 137, 204], [55, 58, 49], [255, 255, 247], [0, 137, 204], [52, 255, 50], [0, 137, 204], [248, 249, 235], [0, 137, 204], [57, 52, 48], [52, 255, 50], [160, 59, 17], [225, 218, 198], [191, 0, 0], [0, 137, 204], [0, 85, 171], [191, 0, 0], [191, 0, 0], [191, 0, 0], [60, 50, 49], [0, 85, 171], [0, 85, 171], [255, 102, 0], [255, 102, 0], [255, 102, 0], [255, 255, 49], [255, 49, 48], [0, 137, 204], [57, 57, 49], [0, 85, 171], [191, 0, 0], [0, 85, 171], [191, 0, 0], [58, 55, 50], [255, 255, 255], [50, 50, 60], [0, 85, 171], [58, 55, 50], [58, 53, 49], [255, 255, 255], [255, 255, 49], [255, 102, 0], [0, 137, 204], [0, 137, 204], [255, 255, 255], [0, 85, 171], [191, 0, 0], [255, 254, 49], [0, 85, 171], [255, 255, 255], [255, 102, 0], [160, 59, 17], [255, 102, 0], [59, 56, 49], [59, 49, 48], [160, 59, 17], [0, 85, 171], [49, 57, 59], [255, 255, 255], [0, 85, 171], [0, 137, 204], [49, 58, 55], [160, 59, 17], [0, 137, 204], [52, 58, 48], [255, 49, 48], [48, 56, 58], [57, 52, 48], [72, 179, 70], [0, 137, 204], [255, 102, 0], [255, 255, 255], [0, 137, 204], [160, 59, 17], [255, 255, 255], [49, 58, 53], [51, 58, 50], [49, 255, 255], [58, 58, 50], [0, 137, 204], [191, 0, 0], [0, 85, 171], [52, 57, 50], [58, 53, 49], [72, 179, 70], [51, 58, 50], [58, 53, 49], [0, 137, 204], [0, 137, 204], [0, 137, 204], [255, 255, 255], [0, 137, 204], [72, 179, 70], [255, 102, 0], [59, 49, 48], [49, 58, 57], [255, 255, 48], [51, 255, 50], [72, 179, 70], [0, 85, 171], [72, 179, 70], [72, 179, 70], [61, 72, 56], [255, 255, 255], [0, 137, 204], [0, 137, 204], [0, 137, 204], [0, 137, 204], [191, 0, 0], [255, 255, 255], [72, 179, 70], [51, 58, 50], [0, 85, 171], [49, 58, 57], [255, 255, 255], [60, 50, 49], [58, 55, 48], [72, 180, 71], [72, 180, 71], [255, 255, 255], [0, 84, 170], [160, 59, 17], [153, 147, 129], [255, 101, 1], [0, 137, 205], [48, 58, 49], [52, 58, 48], [0, 137, 205], [0, 137, 204], [57, 52, 48], [160, 59, 17], [255, 255, 247], [255, 255, 247], [160, 59, 17], [160, 59, 17], [0, 137, 204], [255, 101, 1], [48, 255, 49], [190, 0, 2], [191, 0, 0], [160, 59, 17], [255, 255, 255], [160, 59, 17], [190, 0, 2], [0, 85, 171], [72, 180, 71], [0, 137, 205], [255, 102, 0], [253, 254, 246], [160, 59, 17], [72, 180, 71], [255, 255, 255], [72, 180, 71], [190, 0, 2], [0, 137, 205], [72, 180, 71], [0, 84, 170], [0, 84, 170], [255, 250, 247], [49, 52, 61], [255, 101, 1], [255, 255, 42], [34, 32, 33], [255, 255, 255], [255, 255, 255], [10, 4, 26], [239, 229, 214], [255, 255, 255], [251, 245, 223], [0, 9, 8], [255, 255, 255], [0, 0, 0], [98, 148, 159], [248, 232, 8], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 1, 0], [203, 204, 199], [40, 8, 8], [255, 255, 255], [255, 255, 255], [255, 255, 255], [90, 198, 208], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 195, 49], [0, 3, 5], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [253, 251, 252], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [82, 47, 129], [83, 83, 119], [255, 255, 255], [255, 29, 36], [255, 255, 255], [248, 232, 200], [0, 23, 0], [0, 7, 15], [6, 24, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [178, 162, 133], [255, 0, 0], [255, 0, 0], [0, 0, 0], [255, 0, 0], [5, 1, 2], [0, 0, 0], [242, 185, 56], [0, 87, 23], [94, 159, 186], [255, 255, 255], [255, 255, 255], [255, 30, 47], [255, 255, 255], [0, 255, 255], [212, 212, 174], [0, 0, 0], [0, 93, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [146, 26, 28], [0, 0, 0], [255, 255, 255], [255, 255, 0], [122, 144, 59], [255, 255, 255], [255, 28, 99], [161, 156, 42], [255, 255, 255], [0, 146, 43], [1, 0, 0], [243, 118, 152], [255, 255, 255], [1, 1, 1], [6, 6, 8], [255, 183, 166], [255, 203, 5], [255, 255, 255], [255, 255, 255], [0, 0, 0], [0, 0, 0], [42, 69, 138], [0, 0, 0], [255, 255, 255], [233, 245, 246], [0, 0, 0], [11, 12, 47], [255, 255, 255], [0, 0, 0], [187, 90, 73], [255, 14, 50], [162, 49, 45], [255, 255, 255], [45, 138, 117], [45, 138, 117], [35, 34, 203], [249, 247, 230], [248, 232, 184], [255, 255, 255], [237, 211, 36], [255, 255, 225], [255, 255, 255], [245, 235, 173], [255, 27, 26], [0, 255, 255], [255, 255, 255], [35, 31, 32], [0, 0, 0], [0, 0, 0], [255, 255, 255], [255, 0, 0], [25, 36, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [237, 27, 0], [255, 255, 255], [255, 255, 255], [255, 0, 0], [255, 255, 255], [255, 255, 255], [0, 0, 255], [255, 255, 255], [255, 233, 0], [111, 195, 195], [255, 255, 255], [228, 238, 255], [10, 10, 12], [255, 255, 255], [5, 0, 6], [255, 23, 22], [255, 255, 255], [0, 255, 255], [0, 0, 0], [255, 255, 255], [206, 206, 228], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 40, 78], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [252, 223, 9], [166, 71, 101], [255, 255, 255], [255, 255, 255], [13, 13, 11], [255, 255, 255], [165, 70, 154], [255, 255, 255], [127, 27, 27], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [152, 200, 72], [255, 255, 255], [242, 241, 228], [20, 48, 223], [242, 242, 242], [0, 0, 0], [25, 58, 62], [255, 255, 255], [197, 219, 224], [255, 255, 40], [142, 145, 0], [255, 202, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [19, 39, 74], [255, 255, 255], [255, 255, 255], [255, 255, 255], [99, 203, 232], [255, 255, 255], [255, 228, 124], [0, 0, 0], [0, 0, 0], [253, 252, 248], [255, 255, 255], [239, 243, 255], [255, 255, 255], [255, 255, 255], [24, 136, 200], [255, 255, 255], [255, 255, 255], [255, 255, 255], [209, 31, 42], [239, 214, 43], [241, 246, 0], [255, 255, 255], [229, 228, 224], [255, 255, 255], [255, 255, 255], [229, 227, 215], [0, 0, 0], [0, 0, 0], [255, 255, 255], [31, 21, 21], [255, 46, 49], [255, 255, 255], [35, 64, 142], [0, 0, 0], [1, 1, 1], [36, 95, 175], [0, 6, 17], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [243, 227, 227], [5, 6, 8], [255, 255, 249], [0, 0, 0], [255, 255, 255], [250, 254, 255], [40, 135, 255], [120, 56, 104], [86, 104, 174], [0, 0, 0], [255, 255, 255], [120, 56, 104], [14, 14, 14], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [247, 245, 0], [255, 255, 255], [0, 0, 0], [255, 255, 255], [245, 28, 213], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [22, 51, 91], [255, 255, 255], [0, 0, 0], [243, 243, 243], [4, 0, 0], [255, 255, 255], [255, 255, 255], [248, 248, 246], [255, 255, 255], [248, 88, 40], [0, 0, 0], [255, 255, 255], [0, 0, 0], [10, 10, 10], [23, 32, 49], [6, 8, 7], [6, 6, 6], [255, 255, 255], [255, 255, 255], [99, 74, 159], [255, 255, 255], [85, 24, 6], [129, 109, 51], [255, 0, 37], [164, 188, 255], [246, 234, 188], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 209, 205], [255, 255, 255], [255, 255, 255], [111, 195, 195], [255, 255, 255], [0, 195, 255], [232, 56, 40], [255, 255, 255], [255, 231, 225], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [254, 254, 252], [255, 135, 13], [255, 255, 255], [0, 5, 6], [41, 31, 22], [1, 3, 2], [255, 255, 255], [255, 255, 255], [255, 255, 255], [1, 56, 95], [0, 0, 0], [255, 255, 255], [255, 255, 255], [227, 231, 236], [255, 255, 255], [255, 255, 255], [255, 255, 255], [247, 245, 232], [255, 70, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 232, 236], [255, 37, 124], [255, 255, 255], [255, 8, 7], [255, 255, 255], [255, 243, 209], [255, 41, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [45, 75, 165], [0, 1, 1], [255, 255, 255], [12, 255, 255], [255, 255, 255], [255, 255, 255], [253, 255, 254], [255, 255, 255], [255, 255, 255], [255, 255, 255], [24, 24, 26], [255, 255, 255], [36, 54, 139], [255, 255, 0], [0, 0, 0], [255, 255, 255], [19, 176, 66], [255, 255, 255], [242, 225, 216], [255, 255, 255], [0, 0, 6], [255, 40, 26], [8, 72, 104], [131, 83, 135], [0, 178, 182], [255, 255, 255], [255, 8, 0], [254, 254, 242], [255, 255, 255], [255, 255, 255], [215, 202, 111], [0, 0, 0], [255, 255, 252], [255, 255, 0], [0, 255, 255], [255, 255, 255], [88, 8, 40], [0, 0, 0], [255, 255, 255], [240, 149, 192], [255, 255, 255], [253, 253, 255], [51, 58, 50], [255, 20, 255], [255, 255, 255], [193, 224, 25], [227, 34, 41], [0, 0, 210], [208, 28, 20], [53, 68, 68], [248, 247, 242], [255, 255, 255], [255, 255, 255], [26, 72, 161], [255, 255, 255], [35, 75, 25], [255, 255, 255], [255, 249, 227], [5, 108, 55], [255, 35, 39], [255, 35, 47], [255, 255, 255], [255, 212, 59], [255, 243, 230], [255, 30, 0], [255, 255, 255], [255, 255, 255], [148, 143, 198], [255, 255, 255], [59, 56, 49], [223, 227, 230], [255, 255, 255], [255, 255, 255], [255, 255, 247], [0, 0, 0], [49, 52, 57], [72, 180, 71], [216, 40, 40], [0, 78, 0], [0, 255, 255], [255, 255, 255], [34, 26, 0], [0, 1, 11], [206, 229, 70], [140, 148, 196], [246, 243, 255], [171, 210, 179], [30, 37, 39], [179, 77, 57], [172, 148, 121], [221, 205, 17], [81, 43, 72], [115, 139, 149], [255, 249, 255], [106, 44, 40], [241, 233, 216], [2, 3, 23], [4, 53, 100], [150, 56, 59], [255, 202, 24], [255, 8, 255], [255, 202, 24], [22, 26, 109], [152, 48, 49], [98, 81, 56], [71, 111, 115], [82, 68, 149], [255, 255, 255], [115, 36, 44], [0, 4, 71], [255, 255, 255], [205, 179, 146], [244, 158, 73], [160, 101, 62], [154, 157, 167], [255, 204, 25], [102, 156, 169], [160, 59, 17], [1, 22, 34], [122, 66, 54], [129, 43, 52], [32, 39, 77], [14, 13, 11], [255, 9, 210], [91, 59, 58], [0, 0, 50], [0, 0, 0], [1, 54, 48], [0, 0, 10], [244, 184, 135], [169, 129, 130], [195, 213, 228], [124, 38, 36], [17, 15, 37], [0, 0, 6], [24, 23, 33], [136, 8, 88], [222, 194, 154], [23, 61, 78], [255, 233, 197], [78, 101, 58], [255, 255, 255], [255, 255, 255], [137, 104, 110], [33, 27, 60], [255, 255, 255], [30, 41, 115], [255, 255, 255], [155, 49, 53], [213, 158, 102], [11, 0, 28], [29, 42, 46], [38, 69, 89], [101, 139, 209], [229, 171, 97], [15, 29, 159], [255, 236, 129], [247, 238, 157], [15, 17, 16], [237, 121, 72], [184, 190, 204], [255, 255, 255], [200, 143, 171], [82, 138, 208], [117, 116, 90], [142, 66, 174], [0, 0, 6], [253, 201, 0], [202, 71, 74], [0, 0, 5], [255, 255, 255], [240, 142, 85], [229, 50, 47], [59, 123, 173], [169, 178, 149], [0, 0, 2], [255, 255, 255], [239, 57, 57], [201, 173, 125], [255, 255, 255], [240, 0, 235], [59, 89, 135], [211, 0, 0], [255, 255, 255], [44, 67, 156], [27, 26, 25], [38, 93, 175], [0, 229, 0], [19, 15, 54], [255, 255, 255], [246, 241, 245], [0, 0, 10], [1, 0, 0], [102, 154, 188], [248, 168, 24], [74, 34, 33], [245, 245, 255], [252, 245, 203], [55, 73, 43], [177, 78, 42], [0, 9, 71], [216, 103, 64], [255, 255, 255], [41, 44, 100], [161, 152, 112], [27, 0, 135], [255, 255, 255], [0, 0, 2], [228, 234, 192], [147, 165, 177], [145, 45, 40], [255, 88, 255], [255, 255, 255], [0, 19, 61], [60, 77, 147], [255, 255, 255], [151, 145, 115], [14, 49, 96], [50, 64, 132], [128, 33, 28], [248, 0, 67], [0, 0, 52], [255, 255, 255], [61, 53, 49], [255, 255, 255], [212, 104, 98], [255, 255, 255], [97, 36, 84], [255, 255, 255], [189, 126, 116], [32, 56, 25], [109, 42, 96], [255, 255, 255], [255, 249, 207], [201, 239, 250], [164, 137, 115], [170, 176, 192], [30, 46, 79], [2, 0, 14], [151, 169, 232], [245, 120, 69], [255, 255, 255], [23, 64, 42], [38, 47, 106], [255, 255, 255], [255, 255, 255], [83, 163, 164], [215, 144, 82], [35, 94, 121], [130, 58, 66], [139, 205, 190], [10, 21, 33], [207, 170, 124], [255, 255, 255], [19, 20, 41], [255, 255, 255], [245, 197, 85], [69, 60, 47], [22, 52, 48], [136, 8, 88], [48, 91, 115], [233, 186, 132], [186, 206, 238], [94, 68, 68], [0, 0, 134], [255, 255, 255], [42, 39, 95], [43, 94, 95], [32, 64, 148], [125, 51, 37], [56, 57, 49], [248, 193, 117], [32, 0, 0], [255, 255, 255], [0, 0, 216], [60, 126, 190], [137, 140, 192], [133, 69, 59], [24, 19, 52], [174, 197, 223], [248, 168, 24], [47, 25, 28], [243, 118, 247], [51, 89, 152], [10, 44, 31], [146, 53, 43], [255, 255, 255], [162, 176, 185], [185, 22, 21], [235, 195, 160], [0, 0, 6], [123, 163, 162], [0, 0, 0], [95, 126, 255], [190, 210, 242], [215, 158, 139], [38, 45, 118], [126, 156, 219], [255, 255, 255], [136, 107, 65], [18, 22, 33], [139, 111, 81], [255, 255, 255], [174, 155, 85], [74, 87, 117], [0, 10, 47], [217, 194, 146], [0, 0, 5], [22, 54, 84], [69, 17, 27], [232, 230, 235], [187, 217, 255], [109, 45, 54], [150, 51, 31], [232, 209, 199], [31, 44, 97], [174, 155, 79], [228, 202, 178], [255, 255, 255], [28, 44, 68], [126, 180, 229], [131, 13, 8], [255, 255, 255], [144, 140, 130], [25, 27, 39], [179, 75, 69], [230, 139, 56], [253, 115, 68], [0, 37, 125], [192, 139, 29], [192, 136, 92], [239, 148, 74], [241, 234, 205], [0, 0, 2], [36, 79, 100], [0, 42, 43], [142, 42, 37], [238, 227, 226], [4, 4, 17], [227, 194, 157], [65, 37, 86], [255, 226, 215], [239, 174, 98], [167, 200, 217], [255, 255, 255], [255, 255, 255], [22, 23, 36], [39, 60, 123], [28, 26, 52], [0, 24, 12], [27, 69, 130], [230, 184, 105], [15, 26, 80], [155, 182, 159], [98, 45, 46], [244, 242, 248], [202, 89, 66], [3, 15, 65], [247, 241, 84], [255, 226, 212], [248, 168, 24], [29, 33, 98], [200, 184, 151], [255, 255, 255], [255, 255, 255], [31, 35, 63], [255, 255, 255], [114, 164, 228], [0, 0, 0], [246, 245, 119], [249, 245, 246], [95, 57, 126], [136, 112, 82], [20, 32, 102], [255, 255, 255], [121, 159, 179], [254, 166, 144], [45, 0, 227], [239, 240, 242], [174, 185, 235], [112, 99, 55], [179, 205, 235], [255, 118, 0], [255, 255, 255], [107, 130, 224], [85, 115, 188], [191, 230, 212], [78, 66, 173], [69, 20, 12], [255, 255, 255], [255, 255, 255], [171, 151, 123], [255, 255, 255], [18, 61, 16], [43, 42, 57], [35, 26, 66], [21, 23, 34], [216, 204, 128], [253, 202, 61], [213, 224, 145], [171, 159, 200], [14, 33, 0], [93, 128, 48], [255, 255, 255], [113, 104, 163], [142, 83, 42], [58, 67, 104], [138, 38, 38], [140, 47, 31], [255, 255, 255], [122, 135, 123], [236, 196, 125], [255, 204, 25], [229, 28, 32], [255, 255, 255], [255, 255, 0], [0, 12, 25], [38, 49, 90], [30, 63, 53], [255, 255, 255], [26, 27, 80], [6, 24, 106], [218, 116, 157], [255, 255, 255], [35, 42, 115], [255, 47, 255], [0, 0, 40], [35, 128, 122], [27, 26, 35], [252, 0, 255], [113, 95, 65], [251, 250, 255], [66, 142, 128], [46, 124, 209], [30, 28, 127], [188, 138, 0], [242, 0, 0], [159, 93, 133], [32, 52, 128], [238, 227, 182], [190, 228, 238], [132, 43, 70], [247, 244, 249], [11, 10, 16], [213, 200, 173], [235, 179, 210], [11, 11, 17], [38, 24, 16], [104, 118, 168], [255, 255, 255], [243, 159, 73], [141, 144, 156], [211, 76, 70], [255, 255, 255], [254, 254, 254], [255, 255, 255], [22, 111, 185], [27, 35, 71], [77, 27, 34], [175, 50, 51], [255, 255, 255], [52, 91, 65], [170, 166, 165], [12, 0, 2], [207, 229, 164], [252, 150, 128], [7, 37, 110], [156, 92, 77], [155, 66, 63], [205, 203, 198], [2, 2, 4], [0, 0, 137], [24, 22, 54], [240, 200, 86], [143, 53, 52], [229, 202, 181], [254, 142, 70], [192, 185, 167], [255, 255, 255], [36, 41, 90], [0, 0, 55], [255, 255, 255], [174, 115, 109], [159, 52, 54], [255, 228, 74], [192, 8, 14], [255, 255, 255], [244, 158, 73], [99, 21, 43], [255, 247, 16], [255, 242, 213], [13, 11, 22], [225, 200, 178], [255, 255, 255], [181, 130, 41], [242, 208, 59], [50, 107, 109], [17, 57, 64], [255, 255, 255], [31, 33, 36], [63, 42, 107], [83, 41, 45], [161, 188, 217], [175, 118, 110], [122, 169, 227], [253, 250, 255], [80, 125, 188], [248, 247, 253], [62, 62, 66], [121, 44, 94], [255, 255, 255], [29, 46, 134], [163, 189, 108], [151, 50, 43], [49, 128, 98], [81, 34, 36], [31, 12, 0], [255, 219, 175], [146, 34, 33], [67, 91, 143], [133, 53, 122], [121, 28, 30], [47, 66, 154], [60, 94, 71], [31, 40, 74], [178, 201, 139], [72, 10, 22], [242, 231, 56], [22, 243, 247], [249, 89, 78], [131, 47, 36], [255, 255, 255], [170, 196, 226], [191, 106, 26], [255, 255, 255], [151, 0, 213], [43, 25, 30], [35, 29, 69], [28, 110, 104], [106, 39, 40], [32, 25, 9], [76, 68, 107], [1, 0, 6], [255, 234, 132], [1, 0, 5], [117, 128, 190], [151, 10, 44], [255, 255, 255], [0, 0, 10], [0, 0, 5], [56, 57, 83], [0, 12, 53], [160, 149, 121], [255, 255, 255], [248, 246, 249], [247, 240, 210], [185, 223, 208], [255, 235, 139], [81, 43, 68], [13, 13, 15], [34, 67, 52], [240, 239, 250], [199, 67, 55], [43, 39, 54], [28, 33, 76], [103, 73, 132], [40, 84, 176], [0, 0, 0], [0, 0, 0], [221, 75, 61], [252, 212, 154], [183, 151, 118], [36, 55, 115], [212, 191, 166], [116, 40, 255], [255, 202, 99], [112, 50, 205], [28, 109, 63], [109, 52, 59], [182, 186, 197], [200, 195, 63], [90, 138, 200], [163, 167, 145], [181, 116, 84], [193, 135, 61], [55, 83, 127], [58, 114, 125], [244, 158, 73], [6, 24, 49], [0, 0, 0], [37, 0, 5], [255, 255, 255], [26, 38, 74], [153, 168, 255], [1, 26, 37], [66, 49, 106], [2, 159, 26], [0, 0, 11], [2, 1, 6], [255, 255, 255], [15, 17, 20], [158, 49, 43], [57, 101, 176], [106, 49, 119], [76, 28, 32], [35, 0, 188], [38, 35, 114], [136, 8, 56], [29, 28, 42], [232, 195, 161], [24, 119, 56], [254, 254, 254], [32, 21, 71], [255, 255, 255], [255, 255, 255], [62, 39, 64], [255, 255, 255], [38, 67, 130], [88, 104, 104], [0, 0, 5], [31, 43, 123], [255, 255, 255], [129, 31, 20], [204, 218, 180], [39, 41, 98], [224, 204, 175], [0, 0, 0], [251, 244, 198], [239, 237, 239], [255, 76, 255], [255, 255, 255], [255, 255, 255], [34, 41, 96], [14, 27, 80], [22, 21, 60], [16, 19, 31], [49, 255, 255], [208, 189, 177], [15, 0, 16], [94, 117, 211], [21, 54, 171], [52, 146, 208], [255, 255, 255], [0, 0, 114], [169, 174, 186], [138, 40, 27], [0, 3, 23], [254, 254, 254], [242, 241, 243], [255, 255, 0], [62, 57, 73], [243, 240, 255], [214, 84, 85], [181, 165, 209], [88, 38, 39], [67, 27, 24], [255, 255, 255], [3, 20, 98], [241, 80, 54], [10, 36, 155], [173, 122, 128], [1, 0, 5], [34, 29, 30], [76, 25, 44], [173, 185, 232], [255, 255, 255], [216, 26, 89], [0, 0, 0], [234, 220, 185], [21, 21, 82], [26, 26, 28], [89, 132, 166], [231, 173, 126], [255, 255, 255], [13, 17, 46], [245, 226, 180], [254, 255, 255], [255, 255, 255], [0, 1, 6], [45, 97, 145], [244, 234, 238], [127, 121, 132], [193, 38, 54], [176, 112, 50], [255, 254, 233], [7, 132, 89], [42, 38, 96], [249, 246, 249], [255, 255, 255], [234, 217, 223], [255, 255, 255], [255, 255, 255], [175, 202, 231], [11, 14, 23], [155, 158, 171], [175, 162, 143], [69, 127, 137], [133, 38, 32], [255, 255, 255], [160, 21, 24], [255, 254, 171], [244, 158, 73], [255, 17, 20], [0, 5, 32], [86, 96, 146], [0, 137, 205], [251, 241, 240], [182, 71, 73], [231, 129, 255], [182, 155, 137], [0, 0, 0], [0, 0, 254], [72, 180, 71], [40, 69, 172], [126, 136, 50], [240, 191, 147], [167, 162, 180], [22, 56, 49], [22, 68, 155], [137, 57, 55], [92, 79, 192], [31, 26, 106], [160, 41, 135], [74, 122, 122], [255, 255, 255], [0, 0, 13], [89, 70, 40], [72, 133, 204], [107, 60, 63], [160, 61, 167], [79, 65, 48], [0, 0, 0], [241, 207, 92], [243, 240, 246], [43, 0, 12], [24, 24, 36], [238, 237, 242], [8, 72, 248], [91, 81, 172], [194, 104, 79], [15, 24, 48], [203, 70, 76], [27, 29, 27], [67, 125, 189], [33, 44, 72], [208, 220, 255], [143, 0, 40], [255, 255, 255], [255, 255, 255], [248, 168, 24], [23, 31, 31], [255, 255, 117], [183, 0, 37], [199, 175, 142], [214, 225, 208], [239, 198, 132], [17, 64, 177], [113, 35, 31], [198, 128, 59], [255, 255, 31], [255, 255, 255], [0, 137, 205], [25, 42, 129], [238, 193, 68], [255, 255, 255], [1, 0, 5], [36, 43, 79], [255, 255, 255], [8, 104, 184], [41, 61, 159], [255, 255, 255], [255, 255, 255], [0, 7, 41], [191, 83, 48], [198, 173, 153], [211, 203, 58], [97, 148, 152], [30, 139, 119], [204, 148, 99], [8, 9, 13], [25, 147, 120], [57, 35, 76], [117, 157, 204], [136, 147, 197], [27, 44, 92], [255, 255, 255], [60, 94, 170], [175, 65, 65], [221, 82, 59], [237, 232, 182], [255, 255, 16], [250, 249, 255], [210, 0, 0], [0, 24, 21], [168, 162, 130], [22, 9, 12], [209, 228, 235], [225, 89, 123], [66, 176, 234], [255, 255, 255], [7, 7, 0], [238, 235, 230], [190, 124, 40], [91, 100, 118], [138, 168, 170], [255, 0, 0], [39, 26, 43], [42, 43, 88], [0, 0, 0], [255, 255, 255], [29, 125, 64], [193, 153, 118], [171, 149, 119], [255, 255, 255], [255, 255, 255], [249, 248, 255], [157, 161, 174], [205, 81, 67], [255, 255, 255], [210, 65, 0], [49, 86, 176], [41, 10, 9], [0, 0, 0], [93, 31, 31], [112, 0, 37], [231, 153, 93], [156, 156, 166], [41, 50, 122], [206, 10, 12], [255, 255, 255], [255, 253, 228], [25, 15, 0], [45, 0, 194], [43, 71, 92], [223, 207, 189], [0, 0, 0], [79, 132, 202], [29, 31, 97], [147, 157, 118], [201, 75, 255], [72, 0, 0], [18, 0, 53], [77, 130, 195], [0, 0, 10], [0, 0, 55], [255, 255, 255], [128, 118, 106], [217, 202, 167], [25, 24, 21], [146, 150, 68], [255, 241, 243], [255, 255, 255], [181, 46, 52], [66, 18, 36], [0, 165, 55], [5, 17, 88], [63, 80, 130], [32, 38, 72], [254, 254, 254], [243, 237, 249], [255, 96, 53], [0, 0, 0], [153, 140, 118], [36, 24, 66], [206, 19, 67], [29, 20, 14], [132, 155, 222], [194, 175, 189], [189, 157, 137], [117, 63, 45], [215, 106, 77], [185, 181, 185], [255, 0, 210], [82, 41, 111], [80, 107, 110], [20, 24, 30], [130, 58, 51], [104, 94, 70], [255, 255, 255], [255, 237, 67], [118, 127, 60], [0, 0, 2], [255, 255, 255], [0, 0, 6], [254, 69, 255], [39, 53, 16], [1, 0, 3], [237, 181, 91], [117, 40, 32], [255, 255, 255], [168, 204, 181], [224, 232, 255], [255, 133, 0], [179, 70, 47], [44, 58, 39], [75, 91, 127], [17, 18, 13], [255, 255, 255], [3, 12, 48], [198, 90, 69], [122, 27, 112], [0, 0, 5], [156, 56, 56], [111, 0, 104], [14, 41, 131], [236, 234, 239], [255, 255, 255], [109, 42, 50], [240, 194, 119], [249, 244, 251], [184, 120, 56], [0, 0, 0], [253, 77, 64], [63, 30, 55], [43, 183, 240], [212, 186, 161], [161, 75, 67], [230, 244, 172], [31, 58, 121], [17, 68, 125], [214, 68, 29], [90, 28, 67], [254, 254, 254], [241, 227, 194], [97, 23, 166], [28, 31, 44], [157, 161, 172], [174, 163, 139], [0, 94, 0], [50, 28, 77], [27, 59, 64], [255, 255, 247], [68, 184, 79], [2, 1, 15], [55, 27, 68], [151, 201, 242], [255, 25, 255], [76, 126, 193], [35, 29, 67], [175, 175, 255], [47, 79, 88], [255, 255, 255], [82, 32, 22], [40, 54, 100], [144, 63, 61], [54, 73, 140], [249, 243, 247], [247, 244, 251], [0, 0, 0], [240, 210, 147], [59, 45, 98], [46, 69, 143], [188, 154, 65], [34, 41, 112], [12, 23, 142], [23, 31, 84], [209, 223, 249], [174, 202, 226], [255, 240, 195], [27, 27, 39], [156, 161, 175], [255, 236, 162], [160, 172, 225], [88, 61, 150], [238, 223, 192], [255, 255, 255], [255, 220, 253], [44, 46, 25], [137, 184, 255], [0, 0, 18], [255, 255, 255], [172, 104, 0], [255, 255, 255], [255, 0, 0], [101, 44, 47], [12, 11, 40], [255, 255, 255], [0, 133, 167], [35, 59, 54], [255, 255, 255], [148, 47, 49], [102, 38, 40], [255, 213, 179], [0, 30, 0], [29, 28, 86], [255, 128, 191], [195, 204, 255], [223, 196, 162], [225, 74, 47], [255, 255, 255], [209, 95, 70], [247, 206, 127], [255, 255, 255], [0, 0, 0], [255, 255, 255], [28, 59, 104], [1, 0, 14], [203, 121, 39], [255, 255, 255], [255, 155, 255], [255, 255, 255], [36, 29, 61], [123, 40, 51], [246, 240, 252], [255, 202, 24], [241, 181, 123], [25, 50, 107], [126, 156, 210], [142, 109, 78], [252, 250, 255], [19, 26, 115], [255, 255, 255], [101, 132, 45], [255, 255, 255], [48, 76, 158], [176, 136, 48], [74, 66, 100], [255, 255, 255], [79, 61, 99], [0, 0, 0], [0, 5, 16], [20, 21, 31], [32, 51, 255], [255, 12, 19], [26, 42, 138], [0, 113, 95], [255, 255, 255], [244, 230, 82], [255, 182, 252], [255, 255, 255], [237, 174, 102], [35, 61, 119], [165, 0, 0], [244, 242, 255], [214, 80, 63], [205, 188, 159], [255, 255, 255], [32, 33, 56], [0, 25, 87], [0, 0, 47], [255, 255, 255], [62, 22, 21], [25, 17, 45], [239, 171, 114], [79, 37, 51], [0, 0, 6], [29, 35, 72], [2, 24, 25], [255, 0, 0], [27, 0, 128], [16, 18, 27], [7, 0, 16], [244, 158, 73], [22, 46, 141], [163, 168, 185], [252, 234, 227], [130, 105, 99], [255, 0, 0], [36, 56, 140], [69, 99, 124], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [130, 42, 31], [1, 0, 213], [49, 52, 90], [250, 247, 248], [0, 0, 5], [0, 0, 0], [176, 180, 189], [0, 6, 16], [229, 200, 207], [255, 217, 162], [172, 155, 113], [196, 214, 238], [235, 219, 185], [248, 247, 255], [233, 175, 178], [205, 172, 125], [9, 24, 57], [93, 93, 105], [13, 73, 105], [9, 23, 95], [62, 28, 88], [255, 255, 255], [35, 112, 207], [237, 233, 218], [13, 55, 52], [22, 24, 63], [255, 255, 255], [206, 196, 124], [247, 205, 40], [255, 255, 255], [18, 20, 51], [3, 0, 0], [88, 136, 184], [0, 0, 0], [0, 0, 2], [255, 255, 255], [15, 56, 199], [14, 29, 60], [141, 99, 75], [156, 53, 63], [80, 38, 40], [255, 255, 255], [28, 32, 103], [255, 45, 45], [23, 2, 0], [36, 243, 255], [52, 255, 48], [163, 45, 45], [21, 29, 77], [105, 83, 35], [37, 50, 59], [255, 202, 24], [255, 255, 255], [218, 196, 152], [75, 107, 171], [255, 255, 255], [210, 46, 95], [97, 120, 72], [255, 255, 255], [190, 165, 9], [136, 166, 238], [5, 9, 20], [162, 166, 178], [255, 241, 95], [248, 120, 40], [255, 255, 255], [38, 56, 245], [194, 0, 0], [221, 190, 170], [213, 74, 107], [235, 15, 22], [30, 35, 76], [213, 214, 238], [0, 0, 148], [92, 34, 60], [155, 50, 40], [22, 26, 51], [40, 40, 88], [62, 140, 192], [255, 255, 255], [255, 255, 255], [243, 236, 195], [252, 252, 255], [61, 66, 122], [205, 83, 43], [170, 133, 114], [0, 211, 194], [255, 255, 255], [21, 43, 51], [188, 67, 70], [255, 255, 255], [248, 245, 240], [156, 89, 72], [95, 22, 28], [150, 158, 178], [240, 6, 8], [14, 21, 73], [84, 150, 232], [211, 179, 147], [84, 43, 114], [255, 30, 34], [234, 221, 174], [142, 134, 175], [255, 254, 250], [57, 98, 150], [146, 57, 44], [100, 40, 41], [157, 162, 174], [56, 45, 109], [227, 223, 240], [239, 229, 189], [255, 255, 255], [192, 168, 101], [18, 22, 31], [123, 211, 198], [244, 241, 255], [255, 255, 255], [255, 255, 255], [242, 218, 130], [255, 255, 255], [255, 202, 24], [255, 255, 255], [121, 115, 138], [77, 144, 192], [10, 21, 83], [205, 108, 67], [15, 18, 24], [234, 216, 177], [130, 8, 6], [21, 50, 123], [46, 122, 189], [150, 38, 35], [248, 249, 239], [255, 255, 255], [255, 255, 255], [63, 90, 255], [28, 29, 43], [29, 41, 120], [20, 30, 72], [75, 76, 0], [208, 195, 159], [255, 255, 255], [255, 255, 255], [130, 40, 38], [82, 114, 194], [248, 152, 40], [95, 109, 141], [248, 184, 24], [249, 124, 255], [6, 28, 88], [26, 109, 185], [187, 209, 255], [191, 64, 47], [253, 255, 255], [31, 80, 110], [72, 39, 61], [62, 47, 63], [255, 246, 247], [255, 255, 255], [0, 102, 151], [219, 28, 76], [101, 12, 12], [188, 189, 212], [38, 49, 58], [166, 173, 183], [90, 100, 74], [255, 255, 255], [27, 43, 93], [12, 23, 94], [204, 177, 150], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [1, 0, 7], [255, 255, 255], [10, 128, 116], [255, 255, 255], [255, 255, 255], [18, 31, 83], [30, 30, 97], [157, 161, 193], [63, 98, 118], [164, 68, 64], [228, 105, 68], [242, 240, 255], [139, 36, 32], [242, 193, 255], [255, 255, 255], [0, 0, 0], [145, 116, 118], [255, 255, 255], [35, 65, 131], [127, 38, 38], [231, 183, 149], [190, 122, 78], [144, 172, 115], [194, 38, 58], [255, 255, 255], [253, 254, 188], [116, 136, 227], [25, 28, 32], [150, 47, 48], [0, 0, 0], [228, 239, 245], [20, 66, 107], [47, 98, 164], [42, 76, 133], [180, 57, 119], [203, 210, 176], [255, 255, 255], [1, 0, 5], [112, 126, 73], [23, 27, 55], [255, 255, 255], [162, 53, 54], [205, 182, 160], [71, 46, 108], [250, 188, 9], [255, 255, 255], [255, 255, 255], [255, 255, 255], [126, 49, 75], [41, 51, 149], [124, 159, 226], [255, 255, 255], [167, 177, 199], [23, 29, 116], [255, 255, 255], [57, 77, 146], [255, 48, 49], [52, 16, 17], [225, 213, 186], [255, 255, 255], [117, 39, 244], [201, 0, 49], [39, 124, 218], [47, 59, 86], [248, 168, 24], [189, 110, 49], [6, 31, 98], [1, 15, 76], [38, 48, 96], [2, 8, 40], [130, 53, 60], [17, 61, 27], [217, 113, 69], [160, 163, 181], [250, 216, 171], [88, 27, 31], [217, 193, 167], [22, 33, 36], [36, 38, 78], [109, 51, 66], [255, 255, 255], [255, 255, 255], [141, 125, 185], [255, 215, 243], [237, 241, 235], [179, 141, 170], [254, 254, 254], [161, 58, 66], [47, 20, 101], [0, 2, 7], [206, 212, 228], [26, 25, 30], [149, 185, 212], [182, 145, 93], [19, 27, 63], [255, 255, 255], [251, 250, 255], [246, 247, 202], [255, 255, 255], [60, 43, 93], [0, 8, 25], [219, 68, 113], [232, 189, 83], [31, 33, 64], [191, 210, 243], [210, 174, 204], [255, 255, 255], [23, 25, 255], [3, 13, 24], [255, 242, 211], [159, 165, 174], [255, 26, 34], [0, 0, 0], [228, 150, 97], [3, 0, 0], [221, 82, 59], [43, 51, 97], [244, 222, 192], [98, 40, 39], [217, 68, 60], [255, 255, 255], [0, 148, 44], [255, 255, 255], [0, 132, 204], [0, 127, 255], [255, 255, 255], [67, 94, 163], [255, 255, 255], [160, 59, 17], [63, 100, 80], [227, 87, 69], [130, 192, 228], [160, 51, 51], [145, 119, 98], [44, 80, 177], [242, 243, 248], [255, 255, 255], [245, 252, 255], [255, 255, 255], [126, 173, 218], [241, 237, 238], [255, 255, 255], [255, 255, 255], [163, 158, 30], [202, 103, 42], [255, 255, 255], [210, 223, 192], [1, 1, 7], [43, 50, 140], [255, 101, 1], [255, 255, 255], [250, 245, 251], [255, 255, 255], [32, 33, 102], [255, 216, 144], [246, 242, 250], [131, 118, 176], [221, 214, 29], [255, 255, 255], [0, 0, 0], [213, 171, 131], [11, 13, 26], [233, 225, 173], [129, 121, 162], [136, 8, 56], [0, 97, 255], [11, 11, 23], [253, 241, 24], [159, 175, 169], [255, 255, 255], [28, 38, 100], [159, 51, 42], [60, 115, 181], [70, 129, 180], [6, 27, 61], [14, 18, 76], [239, 179, 97], [163, 66, 43], [248, 233, 180], [0, 242, 241], [255, 255, 255], [230, 214, 178], [24, 93, 70], [255, 255, 255], [2, 0, 7], [43, 52, 115], [240, 191, 103], [255, 255, 255], [135, 0, 49], [0, 0, 0], [28, 22, 88], [255, 255, 255], [14, 14, 22], [9, 8, 0], [143, 48, 48], [225, 0, 57], [32, 122, 167], [255, 255, 255], [198, 181, 173], [44, 74, 160], [219, 191, 51], [255, 234, 255], [22, 25, 60], [83, 78, 145], [255, 241, 202], [110, 136, 125], [255, 255, 255], [138, 39, 37], [195, 121, 122], [172, 138, 132], [255, 255, 255], [72, 56, 152], [35, 88, 164], [15, 19, 27], [120, 40, 72], [255, 255, 24], [171, 59, 44], [29, 28, 35], [59, 56, 49], [17, 68, 80], [198, 158, 76], [0, 0, 5], [208, 213, 180], [24, 24, 34], [206, 191, 179], [140, 191, 243], [240, 101, 101], [189, 175, 138], [3, 74, 115], [0, 0, 6], [143, 47, 48], [148, 97, 23], [221, 186, 148], [255, 255, 255], [194, 80, 131], [78, 120, 62], [24, 24, 40], [0, 8, 40], [34, 48, 85], [247, 247, 247], [132, 77, 93], [255, 255, 255], [0, 149, 87], [74, 141, 66], [255, 78, 58], [254, 242, 97], [2, 103, 85], [163, 186, 228], [255, 255, 255], [0, 0, 2], [119, 57, 38], [255, 36, 255], [232, 196, 71], [33, 35, 40], [68, 28, 26], [200, 213, 220], [255, 255, 255], [255, 255, 255], [193, 193, 108], [255, 0, 0], [149, 54, 49], [245, 243, 255], [30, 43, 85], [151, 114, 78], [255, 255, 255], [34, 73, 32], [244, 158, 73], [116, 71, 47], [51, 70, 146], [255, 255, 255], [37, 63, 86], [234, 86, 42], [96, 159, 202], [22, 27, 126], [254, 137, 60], [30, 212, 226], [255, 255, 255], [255, 255, 255], [0, 5, 25], [0, 45, 255], [179, 202, 225], [1, 1, 0], [47, 29, 55], [255, 255, 255], [9, 21, 41], [255, 255, 255], [255, 101, 79], [237, 195, 141], [250, 221, 154], [248, 118, 193], [1, 0, 5], [255, 252, 253], [25, 63, 90], [243, 212, 179], [43, 57, 126], [23, 19, 61], [54, 68, 142], [26, 127, 52], [17, 15, 29], [224, 111, 69], [25, 21, 18], [252, 243, 109], [1, 21, 56], [183, 198, 176], [172, 199, 220], [136, 123, 107], [241, 205, 140], [33, 30, 92], [120, 109, 165], [101, 145, 63], [183, 136, 136], [255, 49, 47], [95, 33, 49], [255, 255, 255], [199, 146, 64], [0, 175, 214], [197, 192, 192], [254, 247, 157], [230, 19, 96], [164, 161, 116], [255, 255, 255], [46, 48, 88], [74, 25, 44], [124, 72, 68], [238, 42, 103], [0, 0, 0], [206, 154, 107], [22, 27, 24], [181, 72, 77], [255, 255, 255], [183, 125, 137], [149, 50, 44], [1, 1, 0], [255, 255, 255], [0, 0, 0], [255, 123, 172], [0, 0, 255], [255, 255, 255], [28, 21, 109], [32, 45, 78], [255, 255, 255], [253, 249, 237], [121, 160, 166], [209, 86, 125], [16, 16, 28], [255, 255, 255], [219, 0, 64], [251, 248, 231], [213, 166, 83], [178, 194, 218], [123, 25, 39], [243, 234, 150], [52, 40, 27], [245, 215, 173], [0, 0, 6], [255, 252, 195], [117, 18, 9], [161, 163, 133], [28, 25, 103], [172, 187, 220], [0, 0, 6], [228, 190, 0], [132, 127, 95], [255, 255, 255], [187, 1, 38], [8, 26, 95], [37, 34, 106], [255, 255, 255], [141, 161, 35], [141, 63, 64], [252, 188, 10], [255, 255, 255], [34, 61, 171], [12, 46, 26], [255, 62, 44], [255, 255, 255], [236, 27, 211], [255, 255, 255], [29, 0, 187], [43, 0, 129], [0, 9, 76], [190, 72, 45], [146, 52, 52], [73, 46, 116], [255, 255, 255], [255, 28, 30], [7, 4, 11], [210, 36, 49], [0, 0, 0], [255, 255, 255], [28, 36, 23], [2, 0, 3], [161, 91, 55], [169, 75, 75], [21, 21, 33], [251, 249, 253], [0, 0, 0], [168, 69, 0], [255, 31, 28], [0, 50, 206], [45, 157, 108], [255, 255, 255], [255, 255, 255], [152, 43, 46], [48, 27, 183], [143, 183, 205], [54, 50, 98], [184, 181, 185], [255, 255, 255], [239, 236, 234], [251, 242, 205], [22, 19, 20], [246, 235, 219], [28, 60, 80], [255, 255, 255], [248, 184, 24], [62, 79, 112], [20, 23, 37], [171, 149, 98], [138, 44, 44], [40, 100, 63], [148, 34, 70], [255, 255, 255], [154, 168, 197], [255, 255, 255], [255, 40, 252], [243, 210, 152], [30, 24, 103], [47, 74, 98], [105, 53, 45], [24, 33, 88], [229, 23, 26], [24, 37, 54], [19, 22, 31], [161, 165, 177], [44, 115, 168], [158, 59, 59], [11, 10, 16], [176, 183, 193], [2, 0, 11], [189, 232, 211], [95, 47, 94], [29, 47, 130], [0, 0, 254], [14, 17, 27], [236, 217, 184], [255, 255, 255], [14, 110, 149], [31, 87, 146], [160, 40, 50], [253, 245, 208], [255, 204, 25], [171, 98, 75], [139, 40, 42], [14, 16, 255], [15, 32, 76], [255, 255, 255], [231, 203, 163], [255, 255, 255], [240, 183, 196], [243, 136, 63], [255, 255, 255], [178, 69, 40], [153, 76, 60], [255, 255, 255], [244, 158, 73], [118, 29, 11], [16, 47, 68], [132, 173, 232], [7, 27, 34], [50, 73, 38], [146, 56, 61], [248, 168, 24], [247, 210, 170], [255, 245, 104], [255, 255, 255], [255, 255, 255], [223, 197, 156], [33, 83, 131], [30, 31, 0], [0, 0, 0], [220, 200, 189], [255, 255, 255], [244, 158, 73], [148, 43, 40], [248, 248, 200], [255, 255, 255], [255, 255, 255], [39, 63, 148], [98, 155, 215], [255, 82, 63], [36, 75, 155], [27, 35, 104], [255, 255, 255], [255, 255, 255], [76, 141, 234], [250, 247, 248], [195, 148, 101], [255, 255, 255], [230, 150, 93], [24, 16, 23], [25, 15, 20], [117, 132, 192], [242, 201, 146], [157, 179, 229], [240, 204, 169], [255, 255, 255], [0, 0, 2], [0, 146, 110], [104, 52, 66], [255, 255, 255], [0, 0, 0], [0, 0, 0], [136, 8, 88], [0, 118, 130], [32, 42, 90], [255, 255, 255], [158, 52, 49], [0, 0, 240], [74, 125, 191], [255, 255, 255], [30, 30, 42], [255, 255, 255], [178, 0, 13], [64, 103, 182], [84, 32, 45], [229, 194, 187], [217, 35, 47], [12, 0, 0], [150, 39, 57], [109, 77, 53], [255, 254, 255], [198, 122, 0], [0, 27, 50], [193, 60, 54], [17, 115, 135], [153, 146, 177], [255, 254, 254], [100, 56, 61], [255, 255, 255], [0, 0, 0], [106, 49, 191], [23, 43, 255], [193, 17, 33], [162, 133, 127], [35, 35, 45], [242, 229, 185], [255, 28, 25], [126, 55, 9], [237, 173, 88], [255, 255, 255], [29, 56, 117], [54, 97, 113], [0, 0, 0], [255, 255, 255], [255, 255, 255], [236, 165, 125], [233, 107, 56], [255, 255, 255], [227, 223, 238], [0, 15, 47], [100, 126, 126], [13, 12, 10], [63, 52, 19], [247, 245, 246], [255, 255, 255], [44, 83, 143], [3, 4, 16], [236, 229, 200], [255, 255, 255], [255, 255, 255], [94, 56, 39], [33, 36, 76], [237, 232, 229], [201, 175, 141], [125, 52, 59], [255, 255, 255], [0, 0, 0], [2, 0, 0], [215, 238, 244], [254, 255, 255], [43, 57, 91], [19, 30, 116], [11, 43, 106], [255, 255, 255], [0, 0, 2], [0, 37, 131], [243, 158, 54], [249, 246, 252], [132, 71, 72], [6, 6, 17], [0, 0, 5], [255, 202, 24], [242, 202, 146], [168, 177, 208], [24, 37, 81], [21, 234, 230], [255, 24, 40], [196, 68, 59], [37, 89, 82], [30, 37, 65], [255, 255, 255], [255, 255, 195], [55, 58, 49], [109, 44, 42], [117, 131, 150], [255, 144, 72], [147, 152, 165], [255, 255, 255], [239, 191, 0], [215, 211, 245], [215, 200, 164], [49, 35, 147], [47, 125, 129], [109, 30, 56], [8, 12, 24], [255, 255, 255], [145, 64, 127], [255, 11, 60], [0, 0, 6], [0, 0, 22], [206, 179, 163], [109, 34, 40], [30, 43, 95], [255, 255, 255], [255, 118, 202], [29, 54, 98], [225, 23, 52], [255, 255, 255], [255, 255, 255], [255, 255, 255], [127, 41, 39], [0, 0, 255], [255, 255, 255], [108, 55, 65], [73, 126, 142], [255, 240, 23], [213, 0, 56], [230, 228, 235], [58, 54, 75], [51, 76, 122], [0, 0, 0], [0, 0, 0], [255, 255, 255], [40, 34, 78], [255, 233, 194], [255, 255, 255], [0, 0, 0], [59, 34, 36], [28, 30, 45], [255, 255, 255], [165, 116, 115], [236, 191, 156], [246, 106, 86], [255, 160, 60], [190, 136, 48], [0, 0, 10], [240, 130, 255], [35, 91, 127], [148, 47, 40], [233, 213, 58], [155, 63, 184], [0, 0, 10], [13, 55, 70], [239, 195, 149], [128, 49, 56], [94, 18, 29], [15, 18, 63], [255, 255, 255], [61, 148, 150], [28, 139, 214], [255, 255, 255], [36, 27, 88], [132, 99, 94], [0, 157, 255], [195, 221, 243], [175, 168, 118], [49, 255, 53], [255, 255, 255], [147, 172, 216], [234, 232, 245], [255, 255, 255], [0, 193, 200], [255, 255, 255], [255, 255, 255], [252, 251, 255], [250, 239, 246], [65, 154, 178], [250, 248, 253], [21, 24, 29], [50, 62, 124], [255, 255, 255], [0, 0, 0], [1, 0, 0], [15, 15, 18], [166, 0, 0], [255, 255, 255], [28, 0, 0], [41, 13, 123], [255, 255, 255], [226, 131, 83], [141, 54, 54], [255, 255, 255], [196, 91, 77], [0, 0, 0], [153, 70, 59], [232, 209, 157], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [36, 36, 71], [0, 0, 12], [11, 45, 93], [24, 28, 63], [222, 194, 182], [0, 0, 167], [201, 163, 84], [37, 33, 61], [0, 0, 79], [9, 28, 255], [255, 255, 255], [160, 59, 17], [0, 26, 53], [0, 0, 188], [255, 255, 255], [255, 255, 255], [255, 255, 255], [190, 0, 2], [77, 111, 118], [255, 202, 24], [29, 21, 61], [0, 20, 49], [244, 158, 73], [151, 71, 64], [135, 114, 69], [255, 255, 255], [25, 41, 88], [198, 134, 86], [217, 194, 159], [255, 255, 255], [0, 0, 0], [233, 105, 91], [208, 68, 77], [0, 0, 0], [59, 138, 84], [116, 98, 140], [0, 254, 254], [255, 255, 255], [247, 226, 182], [238, 186, 87], [24, 36, 151], [242, 228, 187], [54, 84, 121], [255, 255, 255], [255, 255, 255], [155, 49, 53], [13, 48, 29], [243, 158, 73], [99, 44, 84], [25, 49, 162], [85, 51, 101], [240, 220, 192], [186, 116, 123], [145, 42, 35], [255, 255, 255], [4, 46, 52], [19, 22, 35], [13, 48, 135], [191, 67, 51], [194, 163, 138], [0, 0, 2], [26, 53, 109], [132, 39, 33], [255, 255, 255], [0, 0, 0], [28, 51, 92], [0, 119, 60], [255, 255, 255], [77, 128, 188], [205, 194, 174], [0, 0, 0], [253, 239, 201], [229, 169, 102], [255, 255, 255], [255, 255, 255], [44, 111, 104], [163, 55, 59], [131, 65, 38], [92, 38, 14], [230, 23, 80], [191, 113, 140], [212, 239, 214], [205, 185, 189], [9, 11, 16], [241, 224, 102], [255, 255, 255], [212, 228, 255], [182, 47, 42], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 204, 25], [252, 250, 207], [244, 232, 0], [0, 0, 0], [255, 255, 255], [42, 49, 82], [140, 143, 156], [162, 61, 43], [196, 153, 110], [46, 58, 103], [35, 42, 122], [26, 101, 183], [19, 61, 49], [184, 0, 0], [187, 179, 166], [255, 40, 51], [68, 130, 83], [255, 255, 255], [36, 23, 31], [255, 255, 255], [230, 83, 64], [46, 51, 125], [111, 38, 30], [208, 0, 2], [214, 206, 192], [126, 157, 140], [0, 0, 0], [255, 255, 255], [115, 130, 182], [166, 98, 33], [248, 244, 243], [130, 104, 99], [18, 34, 121], [249, 241, 219], [17, 34, 28], [244, 158, 73], [255, 255, 255], [43, 33, 70], [29, 91, 61], [1, 0, 6], [21, 72, 113], [255, 255, 0], [16, 84, 38], [0, 0, 0], [255, 255, 255], [159, 57, 60], [255, 255, 255], [0, 0, 222], [242, 243, 245], [218, 140, 68], [22, 28, 50], [0, 0, 0], [190, 174, 110], [130, 155, 219], [242, 214, 181], [255, 255, 255], [1, 1, 13], [51, 27, 35], [0, 0, 34], [146, 52, 53], [1, 0, 41], [28, 72, 185], [163, 56, 43], [13, 28, 38], [107, 48, 48], [33, 62, 110], [25, 209, 216], [2, 0, 13], [31, 59, 130], [158, 40, 36], [1, 0, 5], [161, 50, 47], [144, 207, 60], [179, 57, 39], [246, 229, 73], [22, 33, 66], [253, 255, 254], [255, 255, 255], [253, 253, 255], [250, 28, 0], [8, 0, 0], [245, 221, 191], [255, 255, 255], [13, 12, 22], [112, 117, 58], [255, 255, 245], [144, 127, 108], [209, 209, 145], [250, 133, 108], [30, 16, 58], [255, 255, 255], [11, 5, 5], [244, 242, 255], [255, 255, 255], [2, 27, 243], [248, 248, 200], [238, 197, 142], [0, 7, 53], [196, 17, 49], [255, 255, 255], [0, 177, 149], [223, 0, 95], [255, 255, 255], [255, 255, 255], [174, 114, 54], [77, 87, 117], [0, 53, 0], [164, 165, 182], [162, 142, 91], [255, 245, 235], [255, 255, 255], [0, 0, 6], [255, 239, 255], [177, 205, 237], [255, 255, 255], [5, 52, 40], [38, 35, 56], [212, 0, 0], [255, 255, 255], [71, 66, 32], [145, 161, 173], [255, 255, 255], [0, 15, 58], [25, 91, 0], [122, 134, 0], [236, 111, 89], [255, 247, 95], [247, 247, 249], [223, 84, 35], [126, 175, 201], [255, 255, 255], [186, 173, 193], [40, 54, 119], [255, 255, 255], [0, 0, 0], [248, 248, 255], [157, 101, 33], [135, 18, 17], [255, 255, 255], [33, 46, 118], [199, 63, 52], [253, 224, 5], [0, 0, 0], [255, 255, 255], [255, 255, 255], [254, 254, 254], [33, 29, 52], [35, 35, 46], [255, 186, 150], [113, 58, 47], [7, 18, 24], [255, 255, 255], [6, 39, 114], [0, 91, 179], [28, 28, 41], [173, 157, 115], [39, 54, 255], [204, 198, 232], [255, 255, 255], [223, 184, 143], [16, 57, 49], [255, 227, 187], [195, 134, 209], [245, 248, 255], [255, 255, 255], [196, 75, 60], [0, 7, 15], [3, 22, 255], [184, 183, 223], [255, 255, 255], [4, 17, 61], [36, 37, 73], [0, 0, 71], [0, 0, 2], [215, 219, 193], [47, 76, 146], [8, 11, 25], [255, 255, 255], [170, 65, 46], [255, 255, 255], [26, 27, 47], [31, 37, 88], [134, 164, 224], [34, 87, 106], [245, 208, 113], [220, 93, 87], [184, 63, 62], [255, 255, 255], [164, 184, 100], [22, 69, 121], [6, 41, 81], [181, 185, 196], [255, 255, 255], [150, 45, 42], [19, 30, 68], [255, 255, 255], [35, 55, 138], [61, 69, 136], [15, 63, 31], [255, 217, 119], [255, 255, 255], [38, 127, 25], [255, 255, 255], [198, 177, 154], [238, 233, 194], [215, 179, 143], [1, 0, 6], [33, 116, 161], [0, 13, 60], [249, 245, 246], [189, 62, 54], [168, 172, 186], [66, 124, 80], [231, 119, 73], [160, 186, 178], [51, 255, 50], [246, 244, 255], [233, 163, 0], [193, 180, 150], [255, 0, 0], [255, 255, 255], [112, 161, 147], [78, 142, 177], [255, 255, 255], [34, 38, 69], [32, 27, 59], [152, 104, 56], [17, 15, 74], [208, 72, 119], [12, 0, 6], [201, 103, 194], [82, 41, 61], [55, 72, 148], [241, 224, 156], [241, 237, 249], [0, 0, 103], [243, 241, 241], [208, 225, 246], [109, 153, 227], [255, 70, 112], [42, 38, 30], [39, 30, 62], [165, 185, 39], [45, 72, 90], [192, 109, 43], [148, 47, 49], [195, 176, 140], [217, 183, 112], [0, 0, 0], [22, 64, 91], [38, 37, 85], [190, 0, 2], [155, 158, 170], [0, 0, 13], [193, 208, 207], [30, 40, 73], [1, 1, 11], [9, 3, 13], [32, 47, 88], [68, 40, 144], [244, 158, 73], [137, 131, 0], [16, 15, 26], [255, 255, 255], [202, 160, 105], [255, 255, 255], [78, 85, 106], [173, 201, 211], [37, 45, 117], [29, 0, 0], [255, 255, 255], [75, 74, 53], [0, 0, 6], [124, 130, 188], [57, 88, 255], [244, 158, 73], [244, 210, 51], [255, 255, 255], [29, 45, 98], [0, 6, 42], [255, 255, 255], [255, 255, 255], [170, 111, 80], [73, 38, 62], [0, 0, 0], [255, 255, 255], [255, 247, 249], [1, 0, 13], [255, 255, 255], [163, 149, 113], [169, 130, 149], [255, 253, 130], [224, 124, 92], [48, 60, 96], [216, 223, 233], [35, 31, 138], [26, 52, 95], [33, 34, 43], [248, 242, 246], [40, 58, 133], [202, 165, 119], [73, 82, 180], [225, 179, 182], [29, 86, 114], [0, 0, 10], [245, 0, 0], [155, 165, 184], [255, 255, 255], [238, 235, 108], [101, 84, 162], [255, 202, 24], [236, 200, 169], [255, 255, 255], [255, 255, 255], [213, 105, 30], [95, 46, 68], [255, 202, 24], [255, 255, 255], [27, 35, 37], [22, 25, 34], [0, 43, 87], [18, 48, 50], [0, 0, 0], [34, 33, 64], [255, 25, 36], [0, 0, 0], [110, 78, 61], [0, 0, 23], [1, 1, 1], [0, 4, 0], [5, 23, 23], [157, 58, 53], [190, 132, 40], [154, 87, 77], [255, 255, 255], [174, 155, 185], [0, 0, 0], [136, 8, 56], [255, 236, 204], [25, 26, 56], [160, 54, 55], [54, 79, 156], [211, 179, 62], [255, 255, 253], [235, 205, 135], [225, 0, 0], [208, 178, 144], [203, 29, 24], [182, 102, 155], [38, 91, 60], [18, 100, 255], [18, 34, 255], [240, 181, 17], [166, 71, 52], [249, 241, 238], [246, 209, 154], [11, 22, 101], [248, 177, 61], [8, 12, 20], [255, 255, 255], [5, 24, 108], [255, 213, 212], [114, 37, 45], [123, 76, 82], [38, 26, 33], [206, 200, 24], [144, 53, 50], [82, 147, 255], [255, 26, 112], [255, 255, 255], [193, 166, 81], [158, 214, 239], [223, 157, 111], [1, 0, 140], [255, 247, 219], [8, 10, 22], [23, 34, 88], [32, 31, 89], [255, 255, 255], [116, 129, 173], [0, 0, 0], [71, 140, 197], [255, 234, 67], [215, 94, 67], [68, 87, 167], [255, 255, 255], [82, 43, 255], [237, 241, 247], [255, 255, 255], [163, 170, 181], [0, 1, 15], [239, 239, 239], [255, 255, 255], [254, 243, 163], [41, 39, 255], [106, 130, 173], [255, 255, 255], [50, 53, 171], [95, 39, 56], [222, 82, 63], [0, 0, 6], [42, 19, 11], [255, 255, 255], [0, 0, 11], [255, 156, 23], [255, 255, 255], [96, 89, 123], [255, 255, 255], [145, 152, 188], [53, 53, 126], [234, 96, 58], [213, 68, 41], [27, 79, 69], [181, 20, 43], [255, 230, 123], [242, 236, 219], [7, 5, 7], [44, 83, 143], [177, 151, 118], [239, 80, 60], [251, 133, 120], [43, 99, 88], [46, 91, 36], [38, 39, 76], [31, 47, 98], [0, 0, 0], [0, 0, 0], [101, 145, 217], [203, 176, 151], [237, 200, 0], [166, 170, 206], [44, 58, 112], [97, 142, 68], [227, 0, 25], [0, 19, 30], [125, 1, 61], [255, 255, 255], [0, 0, 0], [255, 49, 49], [186, 151, 120], [24, 40, 109], [255, 255, 255], [255, 255, 255], [0, 0, 65], [132, 100, 169], [168, 164, 159], [38, 60, 141], [187, 98, 51], [199, 212, 208], [255, 76, 54], [101, 101, 92], [98, 144, 75], [255, 255, 255], [56, 32, 55], [110, 123, 142], [235, 219, 193], [255, 255, 255], [132, 138, 172], [255, 219, 169], [21, 41, 163], [251, 245, 213], [255, 255, 255], [255, 255, 255], [242, 214, 174], [145, 166, 218], [255, 255, 255], [58, 97, 105], [123, 45, 34], [241, 252, 246], [93, 30, 25], [33, 37, 48], [44, 88, 133], [255, 255, 255], [254, 252, 255], [19, 120, 47], [255, 255, 255], [5, 3, 9], [255, 255, 255], [49, 49, 96], [255, 255, 255], [255, 255, 255], [255, 255, 255], [212, 180, 155], [255, 255, 255], [255, 255, 255], [195, 74, 68], [12, 42, 106], [24, 44, 139], [176, 0, 21], [239, 231, 231], [161, 164, 177], [50, 69, 145], [25, 32, 81], [0, 0, 6], [255, 255, 255], [255, 255, 255], [212, 155, 100], [146, 152, 164], [121, 25, 28], [92, 39, 51], [41, 34, 113], [26, 113, 188], [1, 143, 207], [5, 72, 99], [149, 40, 40], [188, 127, 72], [183, 139, 112], [230, 221, 175], [99, 49, 62], [124, 130, 0], [255, 247, 255], [9, 62, 83], [255, 255, 255], [240, 239, 241], [42, 86, 161], [1, 47, 64], [255, 118, 108], [60, 50, 49], [0, 0, 5], [151, 150, 38], [12, 0, 8], [23, 102, 44], [135, 98, 67], [17, 18, 61], [0, 0, 0], [11, 9, 13], [255, 255, 255], [224, 211, 217], [255, 255, 255], [201, 161, 100], [170, 65, 72], [255, 255, 255], [39, 60, 75], [255, 58, 3], [0, 12, 45], [163, 182, 74], [179, 192, 140], [8, 56, 104], [165, 137, 150], [142, 187, 220], [242, 202, 107], [133, 183, 223], [255, 255, 255], [130, 0, 216], [43, 14, 55], [45, 61, 98], [245, 29, 235], [255, 255, 255], [32, 66, 91], [0, 0, 0], [255, 204, 25], [255, 255, 76], [25, 7, 26], [0, 0, 10], [26, 20, 35], [219, 196, 44], [220, 210, 192], [195, 180, 138], [4, 27, 96], [255, 253, 251], [255, 255, 255], [6, 9, 22], [235, 157, 66], [255, 255, 255], [249, 217, 173], [149, 184, 182], [145, 125, 78], [255, 255, 255], [1, 0, 6], [255, 255, 255], [55, 157, 143], [143, 45, 29], [255, 255, 255], [255, 255, 255], [12, 15, 24], [252, 252, 252], [239, 247, 252], [48, 65, 139], [200, 206, 234], [0, 56, 73], [149, 48, 31], [0, 71, 83], [8, 74, 123], [27, 37, 73], [27, 25, 64], [0, 0, 13], [241, 213, 80], [132, 44, 60], [255, 255, 255], [255, 255, 255], [36, 48, 104], [36, 32, 101], [255, 255, 255], [0, 0, 0], [194, 200, 221], [255, 255, 255], [214, 183, 33], [215, 212, 199], [250, 244, 250], [136, 173, 105], [0, 255, 255], [93, 41, 47], [0, 0, 0], [123, 67, 53], [28, 84, 48], [234, 177, 46], [203, 66, 58], [41, 74, 67], [238, 237, 242], [0, 0, 243], [56, 74, 92], [255, 0, 0], [11, 13, 22], [118, 40, 51], [55, 57, 50], [71, 99, 111], [29, 63, 130], [181, 49, 42], [3, 21, 35], [248, 245, 255], [173, 177, 187], [215, 50, 66], [0, 0, 215], [222, 120, 62], [144, 42, 28], [97, 123, 52], [165, 180, 234], [0, 0, 0], [1, 0, 5], [235, 51, 101], [255, 255, 255], [254, 254, 254], [255, 255, 215], [147, 119, 73], [240, 228, 180], [209, 198, 159], [150, 117, 95], [240, 190, 100], [144, 66, 62], [214, 26, 31], [55, 46, 112], [34, 46, 104], [117, 103, 69], [0, 0, 0], [232, 199, 235], [70, 124, 195], [0, 4, 22], [15, 0, 0], [0, 0, 0], [37, 99, 255], [2, 0, 6], [244, 158, 73], [158, 146, 173], [181, 0, 0], [244, 0, 11], [165, 46, 48], [48, 61, 162], [255, 255, 255], [19, 28, 134], [0, 0, 255], [243, 244, 213], [18, 12, 11], [255, 255, 255], [255, 255, 255], [78, 56, 42], [118, 171, 198], [255, 235, 228], [1, 3, 15], [255, 255, 255], [0, 0, 0], [255, 255, 255], [136, 8, 88], [137, 109, 39], [255, 255, 255], [255, 74, 53], [48, 69, 146], [135, 140, 154], [247, 246, 247], [255, 255, 255], [109, 42, 56], [107, 124, 155], [226, 210, 177], [220, 195, 159], [0, 0, 0], [38, 37, 113], [43, 62, 103], [112, 48, 41], [112, 28, 93], [0, 0, 15], [48, 54, 92], [0, 0, 86], [53, 255, 255], [101, 24, 32], [1, 1, 1], [150, 255, 100], [255, 255, 255], [250, 246, 249], [12, 14, 20], [22, 26, 35], [255, 255, 255], [152, 59, 72], [30, 54, 165], [255, 252, 255], [170, 147, 104], [255, 255, 255], [39, 30, 82], [200, 181, 130], [123, 42, 56], [255, 208, 196], [204, 29, 76], [25, 45, 85], [25, 36, 255], [38, 32, 43], [255, 246, 0], [234, 108, 60], [16, 18, 26], [0, 0, 82], [255, 255, 255], [213, 190, 157], [255, 255, 255], [255, 255, 255], [136, 168, 136], [74, 21, 38], [29, 24, 65], [251, 247, 175], [147, 123, 78], [255, 255, 255], [241, 17, 0], [54, 58, 122], [14, 66, 105], [130, 98, 76], [8, 22, 103], [231, 189, 102], [14, 17, 28], [18, 36, 87], [255, 255, 255], [255, 255, 255], [0, 86, 185], [255, 255, 255], [57, 79, 115], [8, 29, 93], [24, 72, 152], [255, 255, 255], [26, 36, 116], [121, 141, 200], [94, 115, 43], [205, 65, 77], [167, 32, 122], [10, 30, 99], [196, 105, 90], [126, 146, 179], [243, 229, 184], [74, 35, 40], [18, 48, 45], [7, 48, 39], [255, 106, 0], [233, 127, 80], [28, 43, 99], [218, 96, 79], [250, 247, 255], [138, 162, 208], [233, 203, 194], [9, 31, 92], [134, 109, 66], [203, 87, 68], [21, 30, 68], [222, 1, 74], [53, 115, 107], [255, 255, 255], [114, 125, 120], [26, 21, 27], [244, 158, 73], [193, 146, 98], [207, 153, 193], [150, 195, 139], [218, 80, 38], [0, 0, 0], [248, 245, 247], [232, 92, 32], [255, 255, 255], [21, 19, 14], [94, 27, 31], [255, 255, 255], [59, 51, 91], [255, 255, 255], [30, 41, 103], [236, 194, 168], [255, 255, 255], [147, 157, 167], [16, 25, 93], [40, 88, 135], [27, 45, 77], [2, 49, 103], [255, 255, 255], [157, 187, 212], [50, 44, 118], [255, 255, 255], [155, 164, 77], [255, 255, 255], [4, 25, 106], [10, 0, 0], [60, 74, 148], [255, 255, 255], [48, 85, 167], [202, 212, 237], [11, 22, 15], [11, 74, 127], [29, 64, 84], [255, 255, 255], [9, 30, 59], [255, 255, 255], [234, 97, 78], [255, 255, 255], [0, 0, 5], [249, 226, 164], [0, 0, 34], [255, 255, 0], [81, 122, 32], [214, 189, 166], [24, 29, 80], [19, 60, 140], [245, 116, 51], [141, 113, 65], [255, 17, 12], [169, 122, 83], [255, 255, 255], [1, 0, 5], [18, 20, 47], [207, 19, 52], [194, 166, 147], [0, 0, 0], [240, 226, 135], [111, 145, 189], [41, 151, 211], [29, 42, 102], [0, 0, 0], [34, 48, 95], [0, 0, 6], [235, 203, 100], [88, 24, 24], [228, 118, 124], [12, 33, 116], [29, 31, 116], [255, 255, 255], [36, 75, 187], [255, 255, 255], [36, 92, 255], [255, 247, 211], [144, 182, 169], [95, 168, 79], [49, 49, 79], [255, 255, 255], [255, 242, 225], [16, 26, 98], [10, 63, 68], [0, 1, 57], [109, 127, 151], [61, 92, 156], [18, 21, 192], [255, 255, 255], [255, 255, 255], [255, 255, 37], [144, 177, 154], [255, 255, 255], [48, 46, 40], [215, 194, 152], [255, 202, 24], [255, 255, 255], [9, 9, 14], [241, 237, 200], [255, 255, 255], [238, 201, 0], [8, 104, 168], [52, 107, 196], [240, 199, 144], [238, 160, 110], [30, 28, 0], [1, 0, 5], [27, 8, 27], [14, 14, 23], [123, 140, 218], [238, 49, 97], [204, 147, 129], [46, 61, 97], [235, 230, 174], [3, 23, 55], [12, 27, 48], [230, 209, 167], [245, 163, 87], [243, 158, 73], [224, 208, 184], [149, 201, 238], [12, 30, 107], [1, 2, 14], [255, 255, 255], [212, 40, 65], [255, 255, 255], [189, 25, 31], [210, 173, 39], [153, 49, 52], [1, 0, 255], [255, 202, 24], [12, 48, 71], [202, 80, 70], [210, 202, 183], [30, 27, 21], [255, 255, 255], [87, 99, 135], [57, 70, 127], [192, 47, 66], [93, 151, 58], [130, 157, 198], [34, 71, 146], [249, 246, 255], [255, 253, 249], [186, 84, 49], [76, 26, 36], [57, 93, 137], [255, 0, 5], [106, 152, 172], [24, 25, 37], [25, 192, 229], [244, 244, 255], [166, 62, 43], [113, 102, 165], [23, 34, 138], [45, 108, 117], [242, 240, 245], [255, 255, 255], [242, 35, 102], [39, 56, 100], [255, 255, 255], [43, 53, 124], [0, 124, 132], [20, 45, 83], [250, 250, 61], [52, 57, 50], [100, 146, 113], [0, 0, 5], [255, 255, 255], [24, 16, 17], [40, 48, 95], [255, 255, 255], [18, 132, 63], [43, 9, 13], [148, 34, 70], [9, 12, 17], [72, 164, 150], [255, 255, 255], [149, 155, 170], [254, 249, 250], [243, 235, 197], [193, 231, 253], [99, 86, 126], [29, 44, 72], [104, 74, 117], [186, 158, 255], [67, 113, 199], [185, 189, 198], [0, 254, 156], [0, 0, 0], [164, 143, 119], [251, 232, 137], [53, 46, 117], [231, 134, 80], [148, 106, 88], [40, 136, 70], [255, 255, 255], [255, 255, 255], [145, 118, 68], [22, 51, 52], [232, 25, 27], [38, 54, 106], [23, 26, 39], [255, 255, 255], [63, 12, 11], [72, 35, 15], [187, 209, 236], [27, 59, 139], [228, 43, 40], [190, 38, 69], [19, 21, 26], [224, 115, 84], [130, 136, 168], [255, 255, 255], [200, 75, 58], [255, 255, 59], [27, 23, 71], [200, 96, 91], [3, 31, 99], [255, 44, 73], [255, 11, 19], [28, 27, 255], [74, 23, 20], [129, 172, 213], [28, 56, 121], [255, 255, 255], [162, 165, 182], [255, 255, 255], [33, 30, 73], [117, 44, 51], [25, 42, 48], [232, 215, 192], [255, 255, 255], [136, 71, 65], [255, 255, 255], [31, 31, 46], [0, 0, 10], [232, 167, 65], [26, 104, 186], [0, 0, 0], [53, 75, 143], [32, 25, 76], [255, 253, 251], [255, 190, 0], [219, 97, 84], [29, 31, 44], [255, 255, 255], [45, 45, 121], [153, 160, 170], [255, 255, 255], [115, 164, 176], [148, 60, 60], [255, 250, 255], [225, 209, 194], [215, 19, 102], [43, 53, 101], [0, 0, 19], [255, 252, 197], [203, 70, 43], [255, 255, 255], [206, 189, 163], [255, 255, 255], [255, 255, 253], [145, 126, 117], [208, 110, 56], [41, 19, 23], [255, 112, 49], [194, 193, 115], [1, 1, 1], [43, 75, 88], [71, 52, 91], [232, 87, 58], [12, 12, 9], [16, 32, 36], [2, 5, 79], [255, 255, 255], [6, 6, 0], [255, 255, 255], [10, 40, 99], [29, 43, 94], [241, 201, 44], [57, 52, 111], [216, 143, 71], [195, 178, 159], [25, 30, 52], [56, 238, 255], [0, 27, 48], [255, 255, 255], [244, 158, 73], [40, 59, 145], [25, 60, 72], [242, 238, 65], [32, 0, 26], [17, 20, 28], [255, 255, 255], [23, 97, 104], [8, 104, 184], [113, 164, 176], [255, 255, 255], [255, 213, 114], [255, 255, 255], [21, 27, 69], [213, 0, 0], [116, 0, 138], [240, 0, 221], [14, 11, 84], [209, 190, 69], [255, 255, 255], [86, 53, 65], [0, 71, 51], [0, 0, 0], [246, 242, 244], [255, 255, 255], [255, 26, 41], [29, 31, 68], [202, 137, 86], [147, 55, 60], [38, 255, 255], [249, 239, 255], [72, 34, 40], [255, 255, 255], [89, 30, 36], [188, 70, 61], [59, 100, 65], [225, 215, 193], [18, 34, 84], [130, 119, 92], [149, 80, 48], [255, 147, 99], [35, 31, 32], [135, 81, 157], [28, 22, 65], [96, 146, 181], [251, 1, 2], [255, 159, 255], [21, 31, 119], [68, 120, 70], [255, 249, 245], [46, 40, 118], [140, 46, 47], [155, 124, 139], [238, 165, 0], [146, 76, 54], [255, 29, 86], [255, 255, 255], [0, 0, 255], [243, 235, 197], [26, 25, 30], [255, 230, 130], [27, 38, 91], [119, 109, 74], [255, 255, 255], [255, 255, 255], [104, 129, 255], [113, 0, 0], [95, 96, 54], [195, 211, 149], [255, 237, 69], [53, 71, 143], [227, 0, 255], [112, 115, 58], [141, 132, 114], [178, 169, 217], [242, 209, 153], [255, 255, 255], [40, 24, 24], [113, 57, 53], [0, 0, 0], [253, 200, 67], [237, 236, 242], [255, 255, 255], [126, 115, 54], [146, 116, 97], [0, 28, 24], [120, 102, 86], [187, 187, 150], [255, 255, 255], [99, 118, 201], [24, 27, 108], [255, 255, 255], [25, 25, 25], [1, 0, 5], [255, 255, 255], [0, 17, 172], [255, 255, 255], [209, 213, 240], [52, 69, 86], [145, 53, 39], [255, 255, 255], [41, 57, 107], [255, 255, 255], [0, 0, 0], [243, 136, 92], [255, 169, 132], [249, 247, 253], [61, 118, 210], [252, 234, 198], [255, 217, 162], [255, 240, 214], [255, 255, 255], [196, 193, 255], [229, 0, 60], [236, 236, 224], [131, 156, 223], [0, 136, 178], [1, 64, 131], [131, 39, 40], [17, 22, 77], [1, 9, 63], [49, 63, 106], [36, 50, 91], [62, 111, 184], [134, 202, 36], [48, 41, 114], [171, 177, 188], [255, 255, 255], [41, 47, 74], [76, 37, 23], [0, 0, 10], [13, 56, 39], [255, 255, 0], [34, 22, 100], [4, 8, 37], [44, 61, 113], [255, 245, 32], [255, 255, 255], [255, 255, 255], [26, 26, 41], [1, 0, 5], [255, 204, 25], [5, 9, 21], [65, 62, 77], [206, 86, 131], [160, 59, 17], [255, 202, 24], [118, 156, 56], [210, 179, 149], [208, 68, 49], [201, 180, 137], [51, 49, 132], [19, 28, 44], [252, 225, 145], [83, 27, 134], [0, 0, 13], [48, 100, 82], [255, 170, 21], [205, 83, 62], [189, 116, 40], [144, 0, 0], [243, 239, 235], [169, 174, 190], [29, 27, 38], [237, 237, 93], [92, 14, 13], [255, 223, 123], [60, 26, 70], [100, 114, 213], [194, 226, 205], [50, 41, 98], [205, 127, 84], [28, 82, 69], [255, 255, 255], [93, 109, 125], [2, 4, 19], [0, 0, 0], [82, 114, 161], [144, 40, 35], [255, 255, 255], [221, 4, 33], [225, 206, 191], [255, 255, 255], [179, 149, 115], [255, 255, 255], [185, 0, 5], [16, 12, 0], [29, 134, 23], [255, 255, 255], [255, 255, 255], [126, 114, 0], [20, 24, 52], [136, 8, 88], [34, 70, 154], [255, 137, 25], [134, 165, 227], [255, 255, 255], [19, 27, 64], [236, 32, 25], [201, 133, 96], [123, 52, 53], [153, 52, 60], [157, 160, 165], [0, 15, 67], [70, 102, 176], [124, 48, 71], [255, 164, 85], [31, 51, 137], [205, 31, 222], [255, 229, 198], [180, 66, 44], [22, 23, 46], [255, 234, 95], [216, 86, 55], [75, 68, 143], [3, 49, 57], [233, 163, 56], [0, 0, 0], [14, 27, 120], [0, 0, 2], [1, 0, 5], [235, 224, 160], [28, 104, 127], [92, 127, 181], [151, 50, 46], [170, 175, 190], [255, 255, 255], [255, 249, 83], [248, 218, 111], [255, 202, 24], [215, 181, 155], [255, 255, 255], [51, 70, 119], [177, 194, 210], [133, 46, 39], [70, 17, 34], [122, 54, 118], [244, 188, 50], [159, 134, 136], [255, 255, 255], [233, 90, 48], [54, 56, 69], [255, 255, 255], [24, 55, 56], [171, 183, 217], [23, 52, 90], [172, 45, 38], [26, 34, 68], [81, 102, 45], [0, 0, 138], [174, 255, 255], [50, 116, 117], [106, 132, 205], [255, 255, 255], [18, 73, 76], [28, 47, 152], [101, 123, 181], [252, 222, 156], [0, 25, 82], [105, 117, 176], [195, 226, 255], [255, 255, 255], [8, 12, 21], [156, 50, 48], [140, 141, 158], [255, 255, 255], [48, 84, 68], [255, 255, 255], [13, 17, 26], [152, 40, 72], [40, 113, 136], [244, 112, 89], [107, 39, 31], [178, 125, 53], [25, 30, 45], [225, 244, 249], [158, 165, 178], [145, 42, 43], [108, 53, 53], [0, 0, 255], [255, 255, 255], [155, 91, 81], [255, 255, 255], [255, 255, 255], [252, 252, 252], [200, 174, 0], [40, 61, 91], [0, 0, 11], [31, 53, 244], [38, 37, 103], [10, 10, 20], [14, 12, 53], [207, 117, 0], [154, 200, 181], [75, 182, 195], [0, 0, 17], [169, 172, 181], [156, 177, 114], [0, 0, 83], [238, 229, 202], [107, 113, 139], [143, 15, 0], [168, 39, 32], [0, 3, 121], [13, 30, 160], [14, 14, 255], [219, 174, 80], [230, 195, 157], [245, 241, 236], [139, 77, 68], [255, 255, 255], [255, 167, 152], [70, 82, 131], [255, 253, 251], [5, 0, 10], [0, 0, 44], [24, 25, 29], [203, 64, 45], [255, 255, 255], [81, 41, 49], [251, 248, 207], [140, 175, 185], [67, 231, 142], [235, 177, 107], [255, 228, 192], [138, 127, 166], [37, 104, 142], [43, 68, 143], [1, 89, 101], [22, 48, 61], [0, 0, 0], [255, 255, 255], [1, 0, 5], [34, 70, 95], [23, 62, 158], [255, 97, 50], [49, 80, 255], [17, 18, 50], [87, 107, 173], [57, 102, 116], [42, 46, 87], [13, 63, 77], [242, 239, 232], [200, 119, 37], [254, 238, 194], [41, 37, 104], [224, 110, 55], [1, 0, 5], [244, 41, 37], [79, 116, 124], [0, 3, 24], [0, 0, 0], [214, 197, 169], [219, 240, 97], [6, 4, 4], [16, 21, 59], [1, 2, 14], [0, 0, 10], [232, 132, 103], [111, 130, 191], [255, 255, 255], [155, 195, 168], [207, 0, 0], [34, 53, 140], [254, 248, 224], [255, 255, 255], [255, 255, 255], [255, 255, 255], [20, 37, 70], [175, 147, 128], [23, 66, 120], [241, 186, 172], [254, 254, 254], [246, 149, 66], [155, 47, 47], [73, 35, 44], [24, 72, 152], [22, 14, 100], [88, 65, 47], [191, 203, 184], [131, 38, 35], [255, 255, 255], [205, 63, 60], [255, 255, 255], [227, 80, 69], [251, 252, 255], [248, 59, 53], [223, 78, 123], [210, 61, 54], [254, 254, 254], [0, 0, 0], [255, 255, 255], [160, 159, 165], [0, 0, 2], [123, 34, 39], [170, 180, 218], [37, 49, 130], [242, 233, 0], [146, 84, 123], [23, 24, 37], [255, 255, 255], [0, 171, 232], [255, 202, 24], [35, 41, 122], [38, 44, 35], [115, 126, 159], [1, 0, 5], [178, 149, 118], [16, 15, 21], [246, 241, 238], [255, 0, 0], [57, 67, 120], [134, 130, 178], [151, 140, 183], [226, 243, 180], [249, 212, 70], [236, 120, 66], [29, 34, 37], [68, 158, 161], [0, 0, 0], [141, 131, 185], [35, 3, 8], [103, 128, 160], [152, 40, 72], [62, 71, 255], [194, 66, 67], [11, 7, 5], [255, 255, 255], [236, 205, 195], [76, 133, 207], [247, 188, 120], [39, 40, 121], [115, 131, 179], [241, 198, 136], [171, 180, 229], [6, 29, 108], [174, 159, 158], [38, 98, 93], [68, 35, 40], [202, 38, 141], [36, 93, 120], [241, 194, 113], [255, 255, 255], [0, 0, 0], [0, 0, 0], [55, 79, 144], [0, 0, 67], [255, 255, 255], [15, 13, 27], [0, 0, 46], [94, 139, 209], [231, 76, 41], [255, 255, 255], [9, 51, 122], [101, 24, 74], [62, 0, 0], [231, 195, 169], [247, 206, 255], [51, 86, 168], [2, 0, 6], [0, 0, 12], [73, 98, 128], [38, 35, 124], [124, 103, 0], [192, 79, 45], [172, 175, 190], [31, 22, 15], [255, 255, 255], [222, 201, 177], [247, 246, 244], [99, 127, 207], [166, 171, 189], [255, 126, 109], [228, 228, 243], [64, 63, 97], [209, 39, 41], [136, 8, 88], [144, 170, 219], [27, 58, 81], [11, 29, 43], [28, 23, 35], [201, 149, 37], [56, 70, 105], [18, 100, 148], [255, 255, 255], [172, 32, 35], [157, 161, 173], [153, 154, 156], [106, 125, 255], [8, 11, 20], [240, 226, 153], [50, 57, 143], [187, 59, 122], [36, 113, 157], [54, 92, 121], [103, 129, 162], [104, 150, 219], [255, 215, 58], [13, 24, 66], [213, 10, 237], [213, 137, 85], [0, 0, 0], [40, 64, 142], [0, 1, 5], [169, 173, 185], [13, 15, 18], [249, 234, 203], [30, 40, 115], [252, 251, 250], [129, 223, 205], [192, 193, 235], [12, 15, 24], [55, 14, 14], [102, 45, 30], [0, 0, 0], [255, 255, 255], [27, 70, 48], [4, 4, 4], [169, 73, 85], [141, 41, 41], [0, 0, 0], [157, 144, 106], [138, 134, 189], [21, 23, 18], [87, 132, 87], [4, 29, 103], [147, 36, 33], [254, 254, 254], [255, 255, 255], [255, 255, 255], [255, 255, 255], [247, 130, 35], [255, 255, 255], [19, 15, 12], [246, 159, 28], [10, 10, 0], [128, 62, 12], [255, 255, 255], [0, 160, 216], [255, 243, 24], [250, 254, 255], [59, 186, 218], [255, 244, 84], [244, 113, 35], [255, 255, 255], [40, 40, 88], [255, 255, 255], [247, 130, 35], [255, 0, 40], [0, 0, 0], [255, 0, 0], [255, 255, 255], [255, 255, 255], [147, 142, 87], [16, 16, 8], [255, 255, 255], [255, 255, 255], [255, 228, 225], [24, 20, 24], [16, 9, 15], [135, 205, 213], [255, 255, 255], [255, 255, 255], [247, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 5, 40], [49, 58, 57], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 85, 55], [255, 255, 255], [255, 230, 200], [242, 249, 255], [93, 85, 86], [253, 239, 46], [255, 255, 255], [255, 255, 255], [191, 0, 0], [198, 184, 171], [16, 15, 17], [15, 14, 12], [0, 0, 0], [12, 0, 0], [255, 255, 255], [255, 255, 255], [255, 253, 210], [255, 255, 255], [254, 255, 255], [255, 243, 213], [158, 144, 101], [255, 252, 0], [1, 1, 1], [240, 228, 236], [0, 0, 0], [255, 255, 255], [255, 255, 255], [251, 248, 243], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [160, 59, 17], [0, 173, 93], [255, 255, 255], [0, 0, 0], [8, 8, 8], [12, 72, 57], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [0, 0, 0], [0, 0, 0], [255, 255, 255], [1, 0, 255], [0, 137, 205], [254, 254, 7], [255, 255, 255], [255, 255, 255], [247, 21, 16], [255, 255, 255], [255, 255, 255], [255, 255, 255], [203, 207, 206], [31, 148, 188], [168, 152, 152], [255, 255, 255], [255, 255, 255], [255, 255, 233], [1, 0, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 1, 22], [206, 175, 123], [243, 251, 253], [255, 255, 255], [94, 134, 43], [0, 0, 0], [255, 255, 255], [252, 228, 194], [255, 255, 255], [255, 255, 255], [255, 229, 0], [255, 255, 255], [255, 255, 255], [255, 0, 0], [237, 217, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [166, 222, 204], [0, 3, 8], [255, 255, 255], [132, 17, 24], [239, 255, 255], [1, 85, 0], [60, 41, 120], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [0, 0, 0], [232, 152, 56], [0, 0, 0], [49, 73, 111], [0, 255, 255], [247, 243, 231], [24, 23, 0], [255, 255, 255], [255, 0, 16], [252, 243, 225], [255, 255, 255], [41, 111, 163], [0, 81, 122], [53, 53, 53], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [9, 8, 14], [255, 255, 255], [255, 0, 0], [255, 26, 25], [255, 255, 255], [255, 255, 255], [43, 163, 255], [0, 8, 0], [0, 0, 0], [255, 255, 255], [157, 0, 157], [28, 14, 11], [255, 255, 255], [10, 8, 9], [89, 86, 177], [77, 47, 37], [255, 255, 255], [255, 255, 255], [53, 112, 57], [17, 43, 100], [204, 219, 219], [61, 52, 129], [255, 77, 46], [255, 255, 255], [112, 101, 157], [226, 203, 132], [255, 245, 173], [252, 243, 247], [47, 62, 134], [208, 179, 130], [55, 52, 117], [244, 158, 73], [47, 74, 31], [88, 41, 85], [122, 61, 44], [164, 200, 215], [236, 105, 77], [255, 255, 255], [255, 255, 255], [0, 0, 147], [255, 255, 255], [255, 0, 249], [133, 102, 92], [0, 0, 6], [255, 255, 255], [26, 24, 94], [212, 196, 199], [78, 123, 162], [0, 0, 0], [254, 252, 255], [255, 255, 255], [255, 204, 25], [124, 144, 134], [130, 78, 141], [23, 30, 109], [251, 230, 88], [255, 255, 255], [136, 185, 206], [36, 83, 161], [0, 0, 2], [255, 255, 255], [59, 50, 41], [255, 255, 255], [255, 245, 164], [243, 225, 195], [255, 255, 247], [255, 255, 255], [0, 0, 19], [25, 40, 50], [255, 253, 202], [23, 39, 255], [181, 168, 152], [128, 40, 31], [140, 216, 232], [255, 220, 126], [255, 255, 255], [163, 64, 61], [77, 112, 118], [166, 163, 190], [255, 198, 75], [30, 26, 40], [60, 57, 76], [255, 255, 255], [138, 71, 54], [251, 249, 255], [87, 100, 119], [255, 255, 255], [0, 0, 0], [243, 208, 176], [255, 255, 255], [237, 221, 200], [0, 11, 21], [237, 0, 241], [243, 193, 82], [0, 0, 255], [240, 236, 74], [146, 145, 159], [255, 255, 255], [244, 217, 196], [164, 164, 175], [255, 255, 255], [161, 162, 192], [255, 37, 43], [11, 30, 133], [139, 47, 47], [255, 255, 255], [250, 247, 255], [132, 61, 55], [255, 244, 247], [241, 237, 26], [255, 255, 255], [244, 204, 147], [223, 131, 46], [0, 0, 2], [35, 128, 122], [45, 134, 224], [82, 52, 73], [30, 28, 127], [130, 73, 85], [255, 255, 255], [244, 158, 73], [13, 129, 68], [244, 158, 73], [170, 55, 42], [255, 255, 255], [0, 0, 0], [195, 228, 0], [218, 232, 88], [14, 50, 38], [199, 24, 55], [101, 96, 95], [119, 125, 123], [0, 0, 2], [0, 0, 129], [108, 108, 119], [31, 50, 129], [133, 44, 40], [255, 255, 255], [238, 0, 0], [1, 12, 44], [249, 89, 78], [54, 37, 41], [159, 5, 59], [187, 50, 38], [255, 255, 255], [221, 84, 47], [245, 227, 122], [237, 96, 96], [255, 255, 255], [0, 0, 0], [255, 246, 215], [244, 158, 73], [22, 31, 255], [243, 241, 247], [255, 255, 255], [24, 41, 163], [37, 63, 75], [255, 255, 255], [235, 114, 105], [255, 255, 255], [195, 99, 48], [68, 182, 174], [2, 0, 0], [101, 116, 137], [185, 45, 34], [255, 255, 255], [255, 255, 255], [0, 0, 0], [149, 44, 38], [255, 255, 255], [28, 35, 51], [255, 255, 255], [23, 39, 160], [186, 107, 36], [244, 158, 73], [150, 138, 92], [86, 77, 108], [255, 255, 255], [76, 111, 118], [212, 197, 179], [34, 255, 255], [255, 240, 201], [255, 255, 255], [255, 255, 255], [0, 0, 0], [127, 175, 180], [255, 255, 255], [46, 84, 74], [117, 51, 47], [0, 0, 11], [255, 255, 255], [54, 51, 122], [28, 16, 24], [255, 255, 255], [0, 0, 0], [247, 244, 255], [166, 155, 147], [56, 143, 162], [30, 28, 128], [83, 155, 181], [255, 255, 255], [255, 58, 63], [244, 158, 73], [252, 238, 195], [91, 119, 31], [239, 206, 152], [255, 255, 255], [250, 209, 69], [1, 1, 5], [0, 18, 51], [244, 158, 73], [245, 240, 206], [255, 255, 255], [243, 159, 73], [255, 255, 255], [0, 0, 2], [0, 2, 33], [255, 246, 99], [22, 59, 68], [12, 0, 0], [255, 216, 131], [15, 40, 122], [255, 255, 255], [231, 228, 238], [12, 58, 65], [238, 211, 184], [117, 184, 255], [255, 255, 255], [255, 255, 205], [139, 189, 237], [4, 5, 17], [140, 51, 45], [22, 27, 60], [244, 158, 73], [201, 160, 15], [255, 255, 255], [32, 54, 138], [242, 127, 73], [87, 102, 162], [232, 0, 209], [3, 1, 7], [255, 255, 255], [255, 255, 255], [255, 255, 255], [140, 33, 24], [255, 255, 255], [160, 59, 17], [238, 237, 251], [69, 16, 28], [243, 203, 51], [141, 52, 24], [27, 72, 71], [38, 39, 58], [244, 158, 73], [0, 0, 2], [95, 97, 77], [28, 32, 70], [17, 34, 49], [149, 168, 73], [123, 57, 33], [255, 255, 255], [186, 118, 255], [108, 101, 142], [12, 22, 120], [0, 0, 10], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 84, 170], [242, 227, 125], [194, 52, 41], [149, 138, 142], [57, 100, 143], [243, 159, 73], [0, 0, 0], [234, 246, 77], [6, 45, 78], [250, 31, 38], [0, 0, 10], [100, 95, 149], [172, 160, 139], [22, 57, 183], [255, 5, 15], [244, 158, 73], [13, 107, 89], [92, 34, 60], [10, 13, 24], [32, 26, 74], [114, 136, 181], [67, 29, 40], [39, 32, 87], [255, 255, 255], [255, 255, 255], [33, 51, 57], [234, 90, 60], [238, 142, 67], [142, 67, 42], [48, 38, 150], [139, 140, 175], [51, 82, 128], [0, 0, 2], [245, 238, 215], [1, 235, 206], [255, 255, 255], [150, 38, 35], [35, 40, 98], [244, 158, 73], [255, 255, 255], [44, 57, 58], [50, 24, 43], [170, 143, 125], [171, 136, 54], [204, 188, 177], [255, 255, 255], [39, 29, 84], [40, 30, 98], [30, 30, 61], [194, 82, 43], [20, 42, 83], [0, 0, 0], [222, 231, 95], [90, 55, 86], [44, 56, 127], [243, 207, 116], [10, 54, 79], [255, 255, 255], [253, 187, 92], [24, 39, 93], [255, 255, 255], [162, 72, 60], [182, 184, 255], [255, 255, 255], [239, 203, 150], [47, 117, 199], [255, 241, 153], [255, 204, 25], [233, 175, 0], [127, 104, 255], [67, 94, 163], [255, 255, 255], [0, 0, 0], [255, 255, 255], [163, 158, 30], [127, 148, 175], [0, 0, 13], [166, 154, 104], [255, 255, 255], [243, 158, 73], [245, 32, 39], [86, 30, 36], [18, 38, 152], [255, 255, 255], [10, 8, 9], [9, 11, 22], [255, 255, 255], [125, 138, 183], [64, 100, 181], [81, 30, 65], [0, 0, 5], [243, 158, 73], [57, 46, 95], [194, 80, 131], [151, 141, 120], [21, 35, 154], [94, 42, 43], [22, 43, 155], [240, 240, 107], [255, 255, 255], [75, 41, 40], [255, 255, 255], [136, 112, 70], [51, 118, 123], [26, 38, 15], [240, 210, 157], [255, 255, 255], [220, 98, 64], [30, 28, 127], [188, 177, 139], [12, 17, 20], [45, 27, 75], [255, 255, 255], [255, 255, 255], [85, 45, 115], [255, 255, 255], [120, 109, 165], [13, 129, 68], [29, 25, 67], [8, 36, 94], [0, 0, 204], [172, 166, 180], [51, 133, 175], [224, 86, 53], [255, 255, 255], [247, 207, 98], [69, 202, 229], [0, 0, 0], [255, 255, 255], [182, 202, 212], [255, 255, 255], [255, 238, 176], [52, 105, 192], [15, 29, 134], [3, 42, 60], [255, 255, 255], [255, 255, 255], [16, 19, 27], [255, 255, 255], [0, 0, 0], [244, 158, 73], [255, 255, 255], [0, 10, 20], [142, 116, 172], [0, 0, 0], [255, 7, 14], [8, 21, 61], [45, 49, 161], [0, 146, 110], [23, 52, 91], [75, 154, 166], [243, 159, 73], [255, 255, 255], [37, 99, 166], [0, 0, 2], [23, 63, 117], [255, 255, 255], [43, 118, 201], [0, 19, 21], [94, 30, 31], [213, 0, 0], [90, 114, 160], [8, 14, 26], [141, 157, 172], [137, 162, 235], [232, 90, 54], [42, 38, 45], [27, 27, 32], [255, 255, 255], [193, 110, 71], [81, 135, 112], [248, 245, 255], [255, 255, 255], [5, 1, 0], [255, 255, 255], [37, 0, 21], [255, 255, 255], [188, 160, 139], [255, 255, 255], [26, 32, 0], [255, 255, 255], [250, 223, 78], [22, 56, 86], [248, 233, 202], [255, 237, 221], [250, 249, 255], [76, 151, 161], [218, 197, 0], [225, 214, 68], [243, 231, 229], [41, 48, 112], [134, 39, 36], [22, 24, 23], [255, 255, 255], [0, 157, 255], [255, 255, 255], [195, 221, 243], [0, 0, 2], [243, 159, 73], [243, 158, 73], [255, 255, 255], [241, 242, 244], [255, 255, 255], [36, 47, 130], [12, 27, 54], [170, 0, 27], [244, 158, 73], [0, 0, 0], [255, 255, 255], [11, 13, 25], [19, 20, 58], [77, 111, 118], [105, 30, 33], [115, 89, 82], [255, 255, 255], [238, 222, 207], [255, 255, 255], [255, 255, 255], [243, 158, 73], [255, 255, 255], [121, 49, 47], [6, 7, 19], [104, 248, 152], [244, 158, 73], [128, 3, 16], [255, 255, 255], [3, 12, 41], [255, 255, 255], [235, 178, 120], [255, 255, 255], [255, 255, 255], [16, 63, 64], [244, 158, 73], [247, 245, 248], [108, 147, 220], [130, 104, 99], [243, 38, 35], [244, 158, 73], [255, 255, 255], [28, 27, 37], [76, 113, 180], [25, 26, 57], [1, 1, 11], [147, 53, 52], [255, 255, 255], [244, 158, 73], [255, 255, 255], [207, 152, 109], [246, 241, 255], [0, 1, 24], [1, 76, 144], [9, 55, 62], [235, 107, 56], [254, 254, 254], [255, 255, 255], [37, 33, 34], [248, 246, 251], [249, 247, 251], [12, 15, 21], [255, 255, 255], [225, 107, 70], [15, 12, 19], [234, 236, 236], [145, 70, 100], [57, 78, 147], [46, 51, 115], [203, 179, 193], [89, 63, 129], [69, 27, 25], [1, 72, 54], [255, 255, 255], [255, 255, 255], [248, 222, 45], [179, 152, 156], [255, 217, 157], [255, 255, 255], [180, 187, 207], [0, 33, 45], [248, 32, 25], [254, 251, 250], [175, 196, 187], [39, 49, 87], [104, 99, 80], [77, 109, 172], [233, 163, 0], [112, 40, 45], [223, 227, 226], [185, 238, 198], [11, 11, 24], [157, 190, 221], [255, 255, 255], [9, 41, 35], [107, 24, 22], [255, 255, 255], [255, 255, 255], [255, 244, 248], [222, 70, 46], [4, 10, 22], [115, 103, 212], [255, 255, 255], [36, 30, 36], [101, 25, 30], [208, 203, 210], [155, 196, 152], [255, 255, 255], [213, 105, 30], [0, 0, 23], [0, 0, 0], [223, 156, 87], [20, 18, 29], [55, 61, 142], [16, 17, 21], [13, 28, 24], [23, 31, 57], [186, 205, 253], [242, 243, 239], [94, 115, 180], [255, 126, 203], [112, 27, 30], [244, 209, 112], [25, 30, 106], [255, 204, 25], [255, 255, 255], [179, 51, 44], [18, 48, 167], [197, 197, 91], [205, 75, 46], [30, 26, 38], [1, 1, 13], [188, 107, 60], [0, 0, 2], [0, 0, 2], [27, 27, 33], [255, 255, 255], [119, 135, 160], [255, 255, 255], [125, 117, 104], [255, 255, 255], [255, 255, 255], [236, 170, 137], [244, 158, 73], [0, 0, 0], [173, 123, 70], [208, 73, 40], [0, 0, 0], [255, 255, 255], [39, 57, 82], [252, 175, 61], [38, 53, 70], [39, 48, 86], [7, 7, 0], [252, 252, 252], [234, 246, 79], [28, 55, 129], [243, 158, 73], [57, 58, 98], [255, 255, 255], [51, 159, 255], [255, 255, 255], [255, 255, 255], [8, 9, 19], [21, 33, 83], [255, 248, 221], [244, 158, 73], [255, 255, 255], [255, 255, 255], [17, 15, 37], [243, 159, 73], [27, 79, 188], [79, 184, 156], [255, 255, 255], [0, 0, 2], [255, 255, 255], [36, 40, 44], [14, 27, 106], [255, 238, 204], [0, 0, 0], [163, 162, 174], [247, 210, 147], [223, 66, 51], [1, 0, 5], [22, 56, 174], [255, 255, 255], [255, 255, 255], [193, 158, 85], [255, 255, 255], [244, 158, 73], [5, 8, 13], [9, 10, 14], [255, 202, 24], [32, 78, 158], [255, 251, 251], [0, 0, 206], [159, 52, 65], [162, 121, 131], [255, 255, 255], [255, 255, 255], [195, 0, 51], [255, 255, 255], [125, 47, 77], [202, 198, 183], [248, 160, 26], [0, 0, 32], [33, 30, 79], [0, 0, 0], [255, 255, 255], [254, 254, 254], [10, 13, 25], [39, 30, 82], [255, 255, 255], [255, 255, 255], [246, 196, 70], [95, 144, 210], [100, 131, 220], [191, 55, 39], [244, 158, 73], [255, 255, 255], [28, 20, 33], [214, 137, 79], [30, 29, 64], [173, 199, 222], [31, 71, 200], [251, 252, 255], [255, 216, 166], [192, 192, 213], [233, 127, 80], [247, 245, 250], [244, 158, 73], [241, 211, 0], [18, 85, 105], [255, 255, 255], [145, 49, 32], [30, 52, 130], [149, 133, 158], [8, 12, 25], [244, 158, 73], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 17, 12], [148, 46, 40], [126, 59, 50], [59, 74, 106], [255, 255, 255], [129, 46, 36], [255, 255, 255], [197, 19, 55], [255, 255, 255], [167, 200, 236], [71, 73, 138], [0, 1, 57], [255, 255, 255], [25, 27, 36], [255, 255, 255], [244, 158, 73], [255, 252, 255], [22, 13, 44], [244, 158, 73], [243, 158, 73], [153, 133, 172], [255, 250, 255], [218, 67, 40], [36, 46, 137], [203, 213, 178], [255, 248, 161], [255, 255, 24], [113, 102, 165], [255, 255, 255], [255, 255, 255], [255, 255, 255], [232, 8, 8], [255, 255, 255], [27, 89, 98], [209, 197, 99], [244, 158, 73], [221, 191, 118], [255, 255, 255], [34, 33, 82], [255, 255, 255], [244, 158, 73], [37, 28, 72], [6, 22, 38], [237, 236, 235], [255, 202, 24], [53, 75, 143], [13, 107, 89], [215, 19, 102], [192, 73, 51], [3, 42, 50], [0, 0, 70], [244, 158, 73], [105, 39, 37], [0, 0, 6], [10, 11, 16], [244, 235, 205], [200, 168, 129], [8, 6, 0], [255, 255, 255], [255, 255, 255], [249, 248, 255], [255, 255, 255], [143, 53, 60], [255, 255, 255], [255, 255, 255], [245, 231, 113], [255, 255, 255], [152, 171, 202], [180, 217, 226], [28, 27, 37], [255, 255, 255], [243, 237, 248], [242, 209, 153], [236, 178, 120], [255, 255, 255], [0, 44, 47], [37, 30, 39], [245, 248, 255], [8, 5, 255], [110, 62, 61], [80, 39, 51], [0, 0, 2], [255, 255, 255], [0, 1, 14], [0, 0, 255], [133, 153, 178], [251, 252, 255], [145, 60, 55], [160, 59, 17], [51, 39, 100], [104, 128, 53], [48, 58, 49], [126, 141, 122], [255, 255, 255], [128, 47, 34], [241, 28, 26], [173, 199, 92], [255, 255, 255], [150, 106, 62], [183, 64, 46], [25, 25, 30], [192, 200, 121], [241, 26, 18], [248, 243, 247], [176, 31, 38], [72, 180, 71], [255, 255, 255], [190, 54, 38], [17, 18, 25], [255, 255, 255], [244, 158, 73], [0, 0, 0], [255, 255, 255], [255, 255, 255], [51, 85, 61], [244, 158, 73], [112, 141, 142], [18, 53, 152], [255, 255, 255], [174, 140, 102], [73, 18, 28], [0, 84, 170], [132, 30, 15], [20, 24, 28], [118, 80, 68], [127, 131, 154], [38, 43, 64], [255, 255, 255], [255, 255, 255], [0, 111, 174], [126, 102, 84], [33, 79, 101], [255, 255, 255], [104, 106, 101], [0, 84, 170], [172, 0, 209], [0, 0, 5], [2, 5, 76], [36, 78, 158], [0, 0, 5], [177, 153, 174], [0, 0, 0], [11, 13, 26], [255, 255, 255], [1, 0, 7], [0, 0, 5], [147, 134, 125], [255, 255, 255], [241, 184, 114], [243, 159, 73], [222, 122, 153], [122, 29, 21], [249, 241, 177], [188, 189, 177], [255, 255, 255], [28, 39, 57], [255, 255, 255], [229, 214, 193], [172, 177, 154], [14, 26, 74], [248, 190, 116], [204, 147, 69], [106, 33, 26], [12, 7, 34], [35, 57, 170], [208, 173, 154], [247, 252, 116], [26, 0, 100], [255, 255, 255], [255, 255, 255], [255, 78, 0], [0, 19, 29], [255, 255, 255], [0, 1, 5], [0, 0, 0], [216, 214, 215], [202, 31, 26], [218, 195, 0], [0, 90, 0], [255, 255, 255], [0, 0, 0], [255, 255, 255], [251, 248, 0], [50, 52, 49], [167, 165, 140], [40, 40, 40], [35, 15, 14], [255, 255, 255], [234, 221, 200], [241, 203, 143], [255, 255, 255], [0, 12, 16], [251, 246, 242], [1, 2, 6], [0, 0, 0], [0, 28, 255], [255, 255, 255], [22, 21, 21], [255, 255, 255], [239, 239, 239], [255, 255, 255], [255, 255, 255], [255, 255, 255], [242, 246, 249], [255, 255, 255], [255, 255, 137], [255, 0, 0], [30, 123, 193], [0, 0, 0], [255, 229, 0], [16, 31, 24], [51, 127, 141], [26, 22, 11], [0, 0, 0], [255, 255, 255], [255, 0, 0], [255, 255, 255], [255, 255, 255], [15, 7, 8], [255, 255, 255], [6, 19, 24], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 7, 8], [0, 9, 8], [221, 229, 239], [255, 220, 224], [255, 255, 255], [241, 236, 230], [255, 255, 255], [241, 238, 233], [4, 7, 11], [255, 255, 255], [23, 32, 49], [255, 255, 255], [0, 0, 0], [255, 255, 255], [0, 0, 0], [5, 6, 8], [255, 251, 240], [249, 230, 198], [255, 255, 255], [255, 255, 255], [19, 65, 89], [255, 255, 255], [0, 0, 0], [25, 27, 255], [226, 211, 193], [213, 15, 64], [255, 255, 255], [7, 12, 8], [164, 32, 38], [137, 138, 129], [248, 248, 248], [255, 255, 255], [255, 255, 255], [255, 255, 214], [250, 235, 142], [255, 255, 255], [13, 13, 11], [0, 0, 0], [241, 31, 42], [232, 248, 232], [254, 243, 239], [248, 8, 8], [0, 0, 0], [255, 129, 116], [242, 91, 34], [252, 249, 170], [0, 0, 0], [247, 247, 247], [234, 167, 27], [255, 0, 255], [248, 200, 8], [248, 245, 228], [255, 255, 255], [85, 255, 214], [255, 255, 255], [239, 4, 123], [255, 255, 255], [255, 255, 255], [235, 246, 252], [255, 255, 0], [255, 0, 0], [255, 255, 255], [0, 9, 8], [255, 255, 255], [248, 112, 90], [183, 184, 169], [255, 255, 255], [0, 178, 56], [107, 211, 248], [0, 0, 0], [0, 0, 0], [255, 255, 255], [212, 0, 200], [3, 3, 3], [255, 255, 255], [210, 216, 180], [35, 31, 32], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [17, 37, 255], [136, 200, 72], [239, 234, 219], [254, 255, 250], [22, 24, 23], [252, 203, 5], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [246, 213, 48], [255, 255, 255], [52, 53, 53], [255, 255, 255], [255, 255, 255], [205, 73, 71], [255, 255, 255], [95, 61, 52], [255, 255, 255], [1, 0, 14], [255, 243, 0], [255, 255, 255], [255, 195, 49], [0, 77, 0], [255, 255, 255], [255, 175, 255], [255, 255, 255], [6, 24, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [207, 112, 94], [255, 255, 255], [229, 255, 168], [253, 237, 237], [0, 0, 0], [255, 255, 255], [255, 255, 255], [253, 253, 253], [23, 42, 56], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 254, 253], [120, 174, 63], [233, 255, 253], [255, 255, 255], [237, 243, 235], [254, 253, 251], [255, 255, 255], [48, 0, 0], [253, 252, 222], [242, 239, 255], [88, 42, 38], [255, 252, 217], [255, 255, 255], [199, 234, 253], [255, 30, 47], [21, 18, 47], [255, 255, 255], [254, 254, 254], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [243, 118, 152], [2, 78, 40], [255, 255, 255], [255, 255, 255], [44, 50, 131], [255, 229, 202], [255, 255, 255], [255, 255, 255], [255, 255, 255], [1, 1, 1], [0, 0, 2], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 252, 217], [255, 255, 255], [255, 255, 255], [254, 254, 252], [247, 209, 72], [255, 255, 255], [255, 255, 0], [255, 255, 255], [0, 255, 255], [170, 194, 8], [255, 255, 255], [28, 44, 77], [108, 118, 128], [26, 0, 0], [255, 255, 255], [255, 18, 12], [116, 33, 30], [19, 19, 255], [202, 213, 196], [253, 252, 222], [253, 253, 193], [255, 255, 255], [6, 9, 23], [251, 243, 204], [254, 255, 255], [255, 255, 255], [120, 104, 88], [255, 255, 255], [0, 160, 216], [0, 0, 0], [0, 0, 0], [255, 255, 255], [172, 93, 52], [40, 24, 40], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [231, 235, 247], [0, 0, 0], [253, 235, 220], [6, 24, 0], [255, 255, 255], [168, 154, 155], [255, 255, 255], [255, 255, 255], [240, 229, 167], [52, 25, 34], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [115, 165, 214], [255, 255, 255], [0, 122, 57], [0, 0, 0], [220, 212, 103], [255, 255, 255], [218, 124, 52], [255, 18, 12], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 0, 0], [255, 255, 255], [229, 228, 224], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [3, 0, 0], [36, 95, 175], [255, 255, 255], [255, 243, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [6, 24, 34], [209, 169, 99], [255, 255, 0], [240, 223, 200], [255, 0, 0], [255, 0, 0], [189, 189, 186], [244, 245, 247], [255, 255, 255], [255, 255, 255], [6, 0, 0], [0, 0, 0], [0, 0, 0], [6, 24, 34], [206, 207, 18], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 252, 217], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [32, 65, 100], [15, 19, 49], [255, 255, 255], [6, 24, 0], [0, 0, 0], [169, 110, 108], [222, 153, 104], [159, 104, 118], [237, 56, 0], [169, 173, 131], [255, 255, 255], [6, 24, 0], [240, 242, 241], [255, 253, 217], [255, 255, 255], [0, 0, 0], [45, 181, 140], [255, 255, 255], [0, 0, 0], [255, 0, 11], [210, 172, 153], [255, 255, 255], [166, 217, 62], [255, 255, 255], [245, 120, 36], [255, 255, 255], [255, 253, 0], [148, 180, 193], [255, 255, 255], [255, 255, 255], [232, 239, 247], [0, 0, 0], [255, 255, 255], [255, 255, 255], [210, 101, 55], [0, 0, 16], [0, 0, 0], [255, 255, 255], [0, 0, 26], [255, 255, 255], [231, 234, 212], [255, 255, 255], [152, 216, 88], [255, 255, 255], [196, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [78, 7, 103], [255, 255, 255], [250, 250, 250], [255, 255, 255], [255, 101, 1], [255, 255, 255], [0, 137, 205], [255, 255, 255], [255, 255, 255], [0, 0, 0], [20, 20, 18], [107, 61, 47], [255, 255, 255], [0, 0, 0], [255, 255, 255], [0, 9, 24], [255, 255, 255], [255, 255, 255], [0, 0, 0], [144, 42, 38], [254, 0, 0], [255, 255, 255], [255, 255, 255], [222, 25, 34], [72, 179, 70], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 38, 34], [255, 255, 255], [255, 255, 255], [10, 6, 7], [255, 255, 255], [255, 255, 255], [0, 23, 0], [255, 255, 255], [1, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [238, 77, 48], [21, 65, 44], [255, 255, 255], [0, 0, 0], [0, 0, 0], [0, 255, 0], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 70, 255], [1, 0, 0], [225, 233, 235], [255, 255, 40], [255, 203, 5], [73, 255, 255], [255, 255, 255], [0, 0, 0], [223, 227, 230], [12, 72, 57], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 255], [255, 255, 255], [255, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [237, 27, 0], [255, 255, 255], [255, 15, 13], [255, 255, 255], [255, 255, 255], [3, 7, 8], [0, 0, 0], [255, 255, 255], [3, 7, 8], [255, 233, 0], [237, 27, 36], [255, 255, 255], [0, 0, 0], [255, 255, 255], [0, 0, 0], [0, 0, 0], [255, 255, 255], [6, 7, 9], [255, 255, 255], [255, 255, 255], [255, 255, 255], [181, 178, 126], [212, 61, 40], [3, 0, 0], [174, 32, 72], [1, 1, 0], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 5, 40], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 75, 74], [255, 255, 255], [255, 255, 255], [255, 255, 255], [167, 226, 36], [0, 0, 0], [255, 255, 255], [255, 255, 255], [189, 37, 43], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [0, 0, 0], [190, 18, 22], [255, 255, 255], [155, 31, 41], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [10, 12, 15], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 247, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [55, 0, 255], [255, 255, 255], [0, 0, 0], [0, 0, 0], [149, 0, 0], [1, 1, 1], [255, 255, 255], [240, 226, 189], [255, 255, 255], [255, 255, 255], [126, 65, 34], [0, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [27, 237, 240], [52, 60, 60], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 151, 40], [54, 38, 39], [21, 16, 13], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [97, 143, 156], [0, 22, 0], [0, 195, 255], [149, 176, 125], [212, 91, 44], [1, 1, 1], [255, 40, 40], [6, 8, 5], [255, 255, 255], [255, 255, 255], [1, 1, 1], [255, 206, 43], [255, 255, 255], [19, 9, 9], [255, 255, 255], [255, 255, 255], [255, 30, 25], [22, 22, 22], [29, 55, 35], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 0, 0], [8, 13, 16], [255, 255, 255], [255, 255, 255], [255, 70, 0], [255, 243, 0], [255, 8, 7], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [49, 58, 88], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [1, 1, 1], [255, 255, 255], [10, 6, 7], [248, 168, 56], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [35, 31, 32], [250, 214, 135], [51, 79, 100], [255, 255, 255], [161, 189, 209], [0, 9, 8], [255, 255, 255], [100, 16, 18], [255, 255, 255], [111, 146, 161], [0, 0, 0], [223, 227, 230], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [0, 34, 255], [255, 248, 237], [255, 255, 255], [255, 255, 255], [0, 0, 0], [253, 255, 254], [255, 255, 255], [121, 73, 120], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 0], [1, 0, 255], [255, 246, 219], [255, 255, 255], [1, 1, 1], [255, 255, 255], [0, 0, 0], [238, 238, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [183, 184, 169], [255, 79, 173], [255, 1, 0], [255, 255, 255], [23, 117, 239], [11, 23, 52], [255, 33, 34], [255, 255, 255], [255, 255, 255], [1, 3, 0], [0, 0, 0], [59, 186, 218], [255, 255, 255], [234, 232, 233], [40, 40, 88], [206, 175, 123], [189, 189, 186], [216, 216, 232], [255, 255, 255], [187, 32, 36], [255, 255, 255], [255, 255, 255], [0, 0, 0], [34, 39, 42], [255, 255, 255], [255, 255, 82], [255, 255, 255], [238, 217, 0], [255, 255, 255], [255, 255, 36], [255, 40, 40], [255, 255, 255], [50, 52, 22], [5, 6, 8], [255, 255, 255], [255, 198, 0], [255, 255, 255], [1, 1, 0], [252, 228, 194], [90, 198, 208], [0, 0, 0], [255, 30, 25], [74, 77, 59], [206, 197, 142], [8, 0, 0], [255, 255, 255], [255, 255, 255], [254, 212, 74], [18, 12, 12], [255, 70, 0], [255, 255, 255], [255, 243, 0], [173, 171, 122], [216, 40, 40], [0, 173, 93], [238, 36, 144], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [251, 253, 253], [0, 0, 0], [255, 255, 255], [255, 255, 255], [14, 4, 5], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [23, 22, 18], [0, 0, 0], [255, 255, 255], [245, 228, 0], [255, 255, 255], [225, 28, 212], [255, 255, 255], [255, 255, 255], [179, 144, 181], [255, 253, 255], [255, 9, 0], [255, 255, 255], [255, 255, 255], [37, 31, 34], [42, 62, 86], [232, 168, 200], [216, 2, 2], [255, 255, 255], [255, 255, 255], [255, 255, 255], [252, 241, 209], [255, 252, 214], [6, 7, 6], [39, 66, 93], [255, 255, 255], [197, 32, 46], [0, 255, 0], [255, 255, 255], [0, 0, 0], [0, 0, 0], [0, 0, 0], [255, 25, 27], [255, 233, 255], [255, 255, 255], [255, 255, 255], [0, 22, 255], [255, 255, 255], [255, 72, 0], [10, 12, 11], [255, 255, 255], [255, 255, 255], [255, 0, 0], [255, 255, 255], [255, 255, 255], [255, 0, 0], [24, 22, 29], [228, 25, 55], [255, 255, 255], [255, 255, 255], [0, 255, 255], [255, 255, 255], [1, 3, 2], [195, 215, 226], [255, 255, 255], [0, 110, 110], [0, 0, 0], [24, 34, 44], [255, 255, 255], [255, 255, 255], [255, 255, 255], [80, 51, 46], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [208, 225, 232], [8, 10, 9], [255, 255, 255], [255, 255, 255], [255, 0, 64], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [8, 168, 232], [255, 152, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 0, 0], [255, 0, 0], [0, 0, 0], [25, 9, 10], [255, 255, 255], [1, 1, 1], [0, 38, 21], [3, 3, 0], [255, 255, 255], [210, 218, 218], [220, 8, 8], [253, 250, 245], [255, 252, 208], [14, 11, 4], [255, 255, 255], [36, 8, 0], [255, 255, 255], [255, 255, 54], [4, 16, 16], [255, 8, 11], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 107], [219, 18, 21], [0, 0, 0], [255, 255, 255], [255, 255, 255], [117, 135, 149], [58, 162, 217], [255, 255, 255], [255, 255, 255], [255, 214, 124], [255, 255, 255], [255, 255, 255], [1, 3, 2], [171, 30, 36], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [17, 17, 73], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [56, 56, 56], [255, 255, 255], [35, 58, 57], [255, 255, 255], [255, 255, 255], [2, 2, 2], [255, 0, 0], [255, 255, 255], [0, 0, 0], [216, 214, 219], [15, 18, 27], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 58, 37], [255, 255, 255], [255, 25, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 18, 15], [255, 255, 255], [255, 255, 255], [0, 4, 0], [255, 32, 30], [255, 255, 255], [0, 255, 14], [0, 0, 0], [213, 170, 226], [255, 255, 255], [255, 255, 255], [255, 255, 255], [8, 20, 36], [8, 184, 200], [0, 0, 0], [255, 255, 255], [12, 8, 7], [255, 255, 255], [255, 255, 255], [255, 140, 56], [254, 252, 237], [231, 203, 143], [4, 5, 7], [255, 255, 255], [232, 231, 255], [2, 0, 19], [68, 86, 96], [255, 81, 39], [0, 0, 0], [225, 226, 228], [255, 255, 255], [255, 255, 255], [17, 21, 0], [255, 255, 255], [242, 89, 32], [8, 24, 40], [135, 205, 213], [255, 255, 255], [17, 18, 20], [0, 0, 0], [255, 255, 255], [255, 51, 255], [255, 255, 255], [255, 255, 255], [238, 235, 215], [207, 208, 200], [255, 255, 255], [255, 255, 255], [248, 248, 8], [255, 255, 255], [207, 34, 40], [115, 115, 115], [0, 0, 0], [255, 255, 255], [10, 8, 0], [13, 0, 0], [255, 255, 255], [218, 230, 244], [255, 255, 255], [255, 255, 255], [255, 217, 41], [255, 255, 255], [0, 15, 8], [0, 34, 255], [255, 61, 0], [255, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [235, 247, 243], [255, 255, 255], [0, 0, 0], [239, 57, 44], [255, 255, 255], [255, 220, 213], [241, 239, 218], [253, 242, 136], [246, 48, 138], [92, 128, 40], [27, 19, 23], [255, 255, 255], [113, 255, 0], [228, 56, 44], [255, 255, 255], [36, 33, 62], [77, 34, 15], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 8, 73], [255, 255, 255], [0, 0, 0], [230, 231, 218], [255, 255, 255], [255, 255, 255], [0, 0, 0], [22, 11, 16], [0, 114, 255], [255, 255, 255], [253, 253, 253], [249, 247, 242], [255, 255, 255], [255, 255, 255], [255, 163, 155], [227, 237, 239], [255, 255, 255], [0, 4, 7], [6, 7, 9], [255, 244, 222], [23, 43, 28], [2, 2, 2], [10, 12, 0], [46, 22, 20], [255, 255, 255], [0, 255, 0], [255, 102, 35], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [247, 245, 240], [238, 239, 237], [255, 107, 73], [213, 0, 0], [250, 132, 197], [68, 86, 96], [240, 36, 125], [255, 255, 255], [20, 13, 17], [35, 15, 17], [255, 255, 255], [255, 53, 45], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 247, 238], [255, 255, 255], [51, 21, 11], [255, 47, 91], [246, 243, 236], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 0, 0], [255, 83, 38], [34, 24, 24], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [68, 86, 96], [255, 255, 255], [255, 255, 255], [255, 255, 255], [143, 29, 101], [173, 48, 42], [239, 241, 236], [43, 41, 31], [245, 245, 245], [0, 0, 0], [255, 255, 255], [14, 19, 27], [30, 0, 0], [10, 10, 8], [1, 1, 1], [255, 65, 24], [255, 255, 255], [0, 0, 0], [254, 247, 156], [255, 255, 255], [0, 0, 0], [255, 253, 228], [255, 255, 255], [255, 255, 255], [21, 101, 155], [255, 255, 255], [255, 255, 255], [1, 1, 1], [14, 19, 39], [247, 245, 224], [255, 255, 255], [153, 55, 46], [0, 0, 0], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [0, 140, 115], [28, 30, 31], [255, 30, 39], [255, 5, 40], [146, 213, 225], [255, 255, 255], [44, 53, 0], [245, 0, 197], [23, 13, 11], [255, 255, 255], [241, 82, 61], [255, 255, 255], [255, 255, 255], [1, 1, 1], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 55, 18], [255, 255, 255], [255, 15, 14], [111, 111, 109], [255, 255, 255], [255, 255, 255], [150, 110, 61], [255, 255, 255], [255, 240, 146], [246, 247, 253], [255, 255, 255], [255, 255, 255], [255, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [161, 0, 239], [255, 8, 8], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 0, 0], [255, 255, 255], [255, 255, 255], [255, 247, 237], [0, 0, 0], [255, 255, 255], [255, 178, 146], [255, 0, 0], [255, 255, 255], [255, 255, 255], [0, 0, 0], [101, 86, 0], [255, 255, 255], [255, 255, 255], [228, 25, 55], [255, 255, 255], [33, 29, 30], [0, 255, 255], [255, 229, 181], [67, 48, 33], [255, 255, 255], [255, 255, 255], [17, 18, 255], [0, 0, 0], [0, 1, 22], [237, 45, 0], [255, 255, 255], [255, 255, 255], [0, 244, 0], [8, 184, 184], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [3, 3, 16], [255, 255, 255], [4, 8, 0], [255, 255, 255], [245, 235, 224], [241, 43, 51], [47, 17, 15], [44, 129, 196], [164, 219, 216], [255, 255, 255], [255, 255, 255], [0, 0, 0], [235, 237, 224], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 82, 0], [7, 7, 9], [255, 255, 255], [255, 255, 255], [190, 138, 142], [170, 44, 40], [0, 0, 10], [244, 225, 0], [17, 16, 14], [255, 255, 255], [255, 255, 255], [140, 167, 70], [78, 67, 65], [142, 111, 171], [255, 255, 0], [5, 24, 30], [0, 72, 149], [255, 255, 255], [255, 255, 255], [235, 246, 248], [24, 24, 26], [255, 255, 255], [216, 104, 40], [255, 255, 255], [0, 0, 0], [13, 17, 21], [255, 255, 255], [255, 255, 255], [255, 255, 255], [185, 135, 72], [255, 38, 38], [132, 2, 4], [255, 245, 124], [255, 225, 200], [255, 255, 255], [255, 255, 38], [197, 43, 43], [56, 51, 46], [61, 0, 0], [79, 10, 7], [255, 255, 255], [1, 174, 217], [248, 248, 216], [255, 255, 255], [40, 40, 88], [255, 255, 255], [232, 208, 234], [0, 0, 0], [1, 182, 209], [195, 32, 37], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [36, 32, 33], [255, 238, 236], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 0, 0], [0, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 20, 255], [255, 40, 40], [0, 0, 0], [187, 32, 36], [255, 255, 255], [255, 255, 255], [255, 255, 255], [23, 22, 17], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 27, 34], [255, 15, 11], [0, 0, 0], [255, 255, 255], [255, 0, 0], [9, 10, 15], [25, 16, 87], [255, 255, 255], [117, 217, 243], [255, 255, 255], [255, 255, 255], [10, 10, 244], [255, 255, 255], [6, 0, 0], [255, 255, 255], [1, 1, 1], [255, 255, 255], [255, 255, 255], [255, 255, 255], [115, 105, 161], [0, 0, 0], [255, 255, 255], [239, 237, 236], [255, 255, 255], [0, 116, 74], [255, 255, 255], [0, 11, 11], [255, 255, 0], [255, 255, 255], [244, 245, 239], [255, 255, 255], [225, 0, 0], [255, 255, 255], [0, 88, 168], [255, 255, 255], [228, 25, 55], [255, 255, 255], [0, 4, 0], [1, 143, 209], [11, 22, 39], [255, 22, 17], [255, 255, 255], [120, 216, 232], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [31, 0, 0], [255, 255, 255], [120, 14, 14], [255, 255, 255], [255, 255, 255], [18, 21, 30], [17, 130, 196], [54, 85, 0], [255, 255, 15], [35, 32, 19], [255, 255, 255], [6, 5, 10], [255, 255, 36], [24, 19, 16], [255, 156, 0], [0, 255, 255], [255, 255, 255], [0, 0, 0], [200, 152, 40], [56, 61, 62], [161, 208, 238], [249, 251, 250], [255, 255, 255], [255, 255, 255], [255, 255, 255], [240, 242, 241], [255, 255, 255], [255, 255, 255], [241, 210, 181], [200, 237, 222], [16, 20, 19], [255, 255, 255], [255, 255, 255], [125, 162, 170], [255, 255, 255], [8, 72, 88], [255, 255, 255], [255, 255, 255], [255, 255, 255], [252, 228, 194], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [219, 220, 217], [255, 255, 255], [255, 255, 255], [2, 4, 3], [255, 255, 255], [3, 7, 8], [0, 0, 0], [255, 255, 255], [255, 255, 255], [228, 29, 36], [23, 23, 23], [255, 255, 255], [255, 255, 255], [16, 24, 23], [255, 203, 217], [0, 186, 12], [255, 255, 255], [255, 255, 255], [228, 25, 55], [17, 19, 255], [255, 255, 255], [246, 221, 7], [3, 4, 0], [250, 23, 21], [255, 255, 255], [185, 147, 196], [255, 240, 209], [255, 255, 255], [255, 255, 255], [0, 22, 35], [216, 18, 12], [255, 255, 255], [255, 255, 255], [7, 8, 10], [166, 30, 34], [255, 199, 255], [255, 255, 255], [255, 255, 255], [255, 255, 101], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 250, 153], [255, 255, 255], [5, 5, 0], [253, 239, 46], [232, 233, 228], [255, 255, 255], [255, 31, 255], [0, 0, 0], [255, 255, 255], [0, 200, 209], [59, 50, 35], [141, 141, 0], [107, 110, 115], [0, 141, 255], [241, 85, 11], [255, 255, 255], [172, 208, 192], [255, 255, 255], [255, 255, 255], [230, 233, 226], [255, 255, 255], [255, 255, 255], [0, 0, 0], [248, 235, 18], [0, 19, 34], [255, 255, 0], [254, 223, 45], [40, 31, 21], [209, 204, 200], [255, 18, 0], [80, 17, 255], [167, 169, 38], [43, 47, 50], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [133, 0, 65], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [0, 0, 0], [8, 9, 11], [255, 227, 255], [255, 255, 255], [53, 164, 220], [255, 255, 255], [42, 53, 57], [255, 255, 255], [255, 255, 255], [255, 255, 255], [251, 247, 244], [0, 0, 0], [237, 38, 45], [255, 255, 255], [238, 28, 39], [211, 0, 0], [255, 255, 255], [69, 12, 13], [35, 190, 77], [255, 26, 20], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 168, 0], [255, 255, 255], [255, 255, 255], [0, 64, 58], [235, 230, 210], [255, 255, 255], [195, 203, 30], [251, 253, 253], [255, 255, 255], [0, 0, 0], [0, 0, 0], [0, 35, 100], [26, 210, 222], [255, 255, 255], [255, 255, 255], [127, 163, 215], [133, 129, 117], [255, 255, 255], [252, 214, 213], [0, 114, 63], [112, 230, 255], [255, 247, 192], [255, 255, 255], [255, 255, 255], [255, 255, 0], [243, 240, 255], [45, 112, 191], [255, 254, 252], [255, 255, 255], [232, 8, 8], [255, 255, 255], [5, 6, 8], [255, 255, 255], [255, 255, 255], [255, 0, 255], [0, 173, 207], [255, 255, 255], [235, 246, 252], [216, 40, 56], [255, 255, 255], [61, 101, 163], [242, 219, 237], [33, 29, 24], [45, 43, 44], [255, 26, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 248, 232], [255, 250, 251], [225, 229, 232], [199, 227, 248], [51, 70, 63], [130, 194, 57], [255, 87, 38], [255, 255, 255], [245, 246, 228], [255, 255, 255], [184, 25, 128], [255, 0, 0], [255, 255, 255], [0, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [128, 214, 247], [255, 255, 255], [255, 255, 255], [32, 172, 231], [207, 235, 247], [228, 224, 222], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [246, 137, 32], [255, 255, 255], [13, 12, 10], [255, 255, 255], [0, 0, 0], [10, 14, 17], [251, 253, 252], [255, 251, 239], [255, 255, 255], [0, 27, 56], [0, 0, 0], [255, 255, 255], [255, 254, 249], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [254, 254, 254], [255, 255, 255], [0, 49, 74], [255, 255, 75], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [178, 138, 5], [242, 246, 249], [15, 14, 12], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 235, 197], [34, 4, 6], [232, 232, 216], [8, 40, 88], [255, 229, 0], [0, 42, 66], [208, 195, 153], [8, 40, 88], [255, 93, 48], [0, 255, 255], [255, 255, 255], [255, 255, 255], [255, 0, 0], [201, 77, 76], [254, 254, 254], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 240, 16], [0, 137, 205], [216, 216, 216], [0, 0, 0], [255, 175, 0], [254, 254, 254], [238, 65, 49], [250, 6, 8], [222, 218, 215], [232, 56, 40], [255, 255, 255], [216, 40, 40], [0, 0, 0], [255, 255, 255], [5, 6, 8], [16, 15, 13], [255, 255, 255], [255, 255, 255], [200, 8, 24], [255, 255, 255], [0, 0, 255], [19, 18, 16], [255, 255, 255], [0, 0, 10], [4, 8, 11], [255, 255, 255], [242, 225, 216], [255, 255, 255], [255, 255, 255], [248, 168, 120], [255, 255, 255], [255, 255, 255], [0, 0, 6], [9, 73, 53], [152, 152, 152], [255, 255, 255], [230, 204, 133], [86, 151, 193], [6, 24, 34], [255, 255, 255], [215, 211, 214], [255, 255, 255], [255, 255, 0], [255, 255, 8], [255, 255, 255], [255, 255, 255], [224, 232, 11], [248, 232, 232], [0, 85, 139], [166, 222, 204], [255, 227, 237], [255, 251, 222], [0, 0, 0], [255, 246, 65], [255, 255, 255], [6, 24, 0], [247, 247, 247], [255, 255, 255], [255, 255, 255], [185, 185, 185], [255, 255, 255], [255, 130, 255], [0, 0, 0], [248, 104, 184], [21, 26, 0], [255, 31, 49], [254, 242, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [253, 255, 252], [121, 130, 67], [255, 255, 255], [255, 253, 246], [255, 255, 255], [255, 255, 255], [0, 0, 0], [0, 255, 255], [246, 240, 180], [255, 0, 177], [255, 255, 255], [255, 255, 255], [255, 0, 0], [204, 187, 68], [1, 1, 1], [255, 255, 255], [120, 184, 232], [218, 221, 230], [0, 0, 0], [216, 232, 248], [97, 94, 32], [255, 255, 255], [234, 209, 205], [16, 15, 13], [234, 235, 239], [255, 255, 255], [255, 255, 255], [154, 1, 81], [249, 245, 235], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [241, 241, 241], [255, 238, 103], [255, 255, 255], [6, 24, 0], [255, 255, 255], [40, 24, 24], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [254, 23, 0], [254, 242, 0], [211, 60, 42], [248, 184, 24], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 162], [254, 251, 232], [255, 255, 255], [255, 6, 120], [255, 255, 255], [166, 197, 199], [255, 255, 255], [255, 255, 255], [255, 255, 0], [255, 255, 255], [219, 190, 147], [255, 255, 255], [250, 162, 28], [223, 166, 182], [56, 44, 18], [17, 43, 100], [255, 255, 255], [255, 255, 255], [55, 64, 131], [216, 185, 204], [246, 246, 246], [7, 3, 6], [0, 249, 248], [255, 255, 255], [0, 0, 0], [56, 255, 255], [255, 255, 255], [255, 29, 36], [255, 255, 255], [255, 252, 247], [255, 255, 255], [0, 0, 0], [195, 165, 17], [255, 255, 255], [255, 255, 255], [255, 23, 0], [255, 255, 255], [255, 255, 255], [250, 214, 135], [255, 255, 255], [255, 255, 255], [122, 144, 59], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 255, 255], [16, 9, 15], [255, 255, 255], [255, 255, 255], [248, 200, 8], [255, 255, 255], [1, 1, 1], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 0, 0], [49, 64, 0], [255, 255, 255], [237, 237, 235], [255, 255, 13], [0, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 174, 219], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 39, 20], [255, 255, 255], [255, 255, 255], [245, 242, 223], [210, 35, 42], [66, 108, 190], [255, 255, 255], [255, 255, 255], [255, 255, 255], [204, 179, 155], [255, 255, 255], [248, 248, 232], [255, 255, 255], [0, 255, 255], [112, 120, 68], [255, 255, 255], [255, 255, 255], [255, 255, 255], [8, 31, 98], [0, 0, 0], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [124, 77, 64], [23, 21, 14], [255, 255, 255], [121, 7, 7], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [109, 24, 63], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [232, 200, 136], [255, 255, 255], [255, 255, 255], [255, 255, 255], [16, 190, 15], [16, 15, 13], [251, 244, 226], [255, 255, 255], [243, 31, 34], [255, 255, 255], [0, 1, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 0, 0], [0, 0, 0], [240, 231, 174], [1, 1, 1], [255, 255, 255], [246, 115, 35], [255, 255, 255], [1, 1, 1], [255, 141, 64], [83, 0, 30], [164, 186, 173], [255, 250, 239], [40, 57, 160], [255, 255, 255], [40, 36, 15], [255, 255, 255], [255, 255, 255], [234, 167, 27], [16, 7, 2], [228, 182, 96], [166, 190, 80], [248, 241, 223], [0, 0, 0], [254, 212, 74], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [2, 0, 0], [206, 194, 194], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [50, 194, 220], [0, 9, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 231, 40], [38, 37, 32], [255, 255, 255], [255, 255, 255], [255, 255, 255], [232, 207, 127], [255, 194, 152], [10, 10, 10], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 0, 0], [255, 254, 0], [255, 255, 255], [255, 255, 255], [255, 66, 27], [255, 255, 255], [7, 6, 11], [255, 12, 107], [255, 255, 255], [255, 43, 0], [255, 255, 255], [255, 44, 34], [255, 255, 255], [255, 13, 39], [255, 255, 98], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 74, 87], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [18, 67, 225], [255, 0, 0], [255, 255, 255], [255, 0, 0], [255, 0, 0], [23, 18, 16], [255, 255, 255], [255, 255, 255], [255, 255, 255], [18, 156, 255], [255, 13, 16], [255, 255, 255], [255, 255, 255], [255, 255, 255], [4, 2, 3], [255, 255, 255], [255, 255, 255], [255, 255, 255], [29, 214, 255], [255, 255, 193], [255, 255, 0], [3, 7, 8], [255, 255, 255], [255, 255, 0], [255, 255, 255], [183, 17, 55], [255, 255, 255], [255, 255, 255], [255, 53, 68], [255, 255, 255], [255, 207, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [20, 18, 19], [32, 0, 0], [255, 13, 39], [0, 0, 0], [255, 255, 250], [255, 255, 255], [255, 255, 255], [255, 255, 255], [51, 35, 255], [48, 19, 16], [255, 255, 255], [0, 0, 0], [0, 0, 0], [183, 17, 55], [17, 21, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [18, 44, 255], [255, 0, 0], [29, 19, 18], [255, 47, 91], [255, 255, 255], [255, 255, 255], [18, 40, 53], [255, 255, 255], [0, 223, 171], [237, 22, 29], [255, 255, 255], [255, 255, 255], [255, 255, 255], [5, 9, 10], [255, 39, 0], [255, 255, 255], [255, 255, 255], [143, 27, 72], [183, 17, 55], [255, 255, 255], [19, 17, 20], [255, 255, 255], [255, 28, 0], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 17, 15], [255, 255, 255], [255, 7, 14], [255, 255, 255], [15, 37, 37], [255, 251, 239], [1, 1, 1], [1, 1, 1], [255, 29, 67], [255, 255, 255], [255, 255, 255], [255, 23, 39], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 22, 29], [255, 0, 0], [255, 255, 255], [42, 24, 23], [255, 255, 255], [248, 255, 255], [0, 0, 0], [0, 0, 0], [255, 79, 173], [0, 0, 0], [255, 236, 255], [255, 45, 39], [18, 20, 34], [255, 255, 255], [5, 6, 8], [255, 255, 13], [255, 250, 255], [255, 255, 255], [255, 255, 255], [255, 10, 10], [255, 16, 0], [255, 46, 49], [255, 255, 255], [44, 129, 196], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [55, 0, 147], [255, 255, 255], [168, 108, 78], [13, 15, 255], [0, 0, 0], [255, 0, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 16, 16], [255, 255, 255], [255, 255, 255], [248, 200, 216], [255, 255, 255], [57, 44, 0], [41, 45, 0], [255, 212, 59], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 133, 255], [0, 0, 0], [255, 255, 255], [33, 0, 255], [255, 255, 255], [255, 255, 255], [209, 153, 255], [18, 53, 9], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [129, 109, 51], [159, 137, 181], [255, 53, 96], [216, 216, 216], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 144, 255], [255, 255, 255], [255, 255, 255], [5, 6, 8], [255, 255, 255], [255, 255, 255], [5, 6, 8], [255, 255, 255], [255, 7, 0], [255, 255, 255], [255, 30, 0], [255, 255, 255], [255, 255, 255], [255, 16, 15], [255, 20, 20], [255, 255, 255], [255, 255, 255], [255, 255, 255], [69, 255, 255], [255, 255, 255], [0, 255, 0], [1, 149, 175], [255, 72, 69], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [243, 247, 255], [255, 255, 255], [18, 20, 255], [255, 255, 255], [255, 255, 255], [174, 136, 1], [255, 255, 255], [255, 255, 255], [255, 255, 255], [7, 6, 11], [183, 17, 55], [255, 30, 38], [255, 255, 255], [255, 189, 217], [255, 255, 255], [0, 161, 206], [255, 255, 255], [0, 218, 54], [0, 185, 181], [12, 33, 16], [255, 255, 255], [255, 255, 255], [0, 162, 228], [8, 8, 8], [199, 227, 248], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [3, 7, 8], [17, 19, 60], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [239, 229, 214], [255, 255, 255], [212, 212, 174], [166, 222, 204], [249, 249, 232], [255, 255, 255], [21, 101, 155], [255, 245, 227], [255, 0, 0], [0, 0, 0], [255, 255, 255], [255, 1, 0], [23, 117, 239], [0, 0, 0], [0, 47, 57], [5, 24, 30], [254, 255, 255], [255, 255, 255], [1, 1, 1], [255, 255, 255], [0, 195, 255], [168, 255, 152], [27, 17, 36], [7, 7, 7], [255, 255, 255], [246, 247, 249], [234, 203, 141], [0, 0, 0], [7, 9, 8], [7, 133, 156], [12, 13, 8], [255, 255, 255], [254, 242, 0], [205, 218, 224], [18, 20, 24], [0, 0, 0], [255, 255, 255], [0, 26, 38], [6, 24, 34], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [254, 254, 254], [255, 255, 255], [255, 255, 255], [27, 25, 0], [232, 232, 120], [255, 255, 255], [255, 255, 255], [8, 8, 24], [255, 255, 255], [49, 73, 111], [255, 255, 255], [16, 10, 22], [255, 255, 255], [255, 255, 255], [255, 255, 255], [92, 180, 226], [255, 255, 255], [242, 226, 200], [255, 229, 20], [58, 56, 59], [210, 210, 0], [255, 255, 255], [255, 255, 0], [6, 24, 0], [11, 11, 11], [0, 0, 0], [12, 13, 21], [255, 255, 42], [255, 255, 255], [21, 27, 43], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [0, 47, 57], [255, 255, 255], [255, 255, 255], [90, 198, 208], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 0], [8, 10, 9], [255, 255, 255], [227, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [203, 224, 167], [0, 0, 0], [255, 255, 255], [255, 255, 255], [1, 1, 1], [0, 0, 0], [255, 29, 17], [10, 6, 34], [255, 255, 255], [72, 73, 69], [255, 39, 255], [255, 255, 255], [13, 13, 13], [255, 255, 255], [16, 15, 13], [255, 255, 255], [0, 0, 0], [3, 7, 8], [1, 85, 0], [0, 29, 0], [255, 255, 255], [0, 0, 0], [3, 7, 8], [226, 244, 255], [102, 28, 33], [0, 0, 0], [47, 62, 67], [255, 255, 255], [65, 65, 65], [13, 10, 19], [34, 36, 35], [255, 255, 255], [255, 255, 255], [248, 113, 32], [0, 0, 0], [255, 255, 255], [0, 0, 0], [120, 20, 119], [0, 0, 0], [0, 0, 0], [255, 1, 0], [0, 113, 189], [255, 0, 16], [0, 0, 255], [255, 255, 255], [10, 12, 15], [255, 255, 255], [255, 255, 255], [32, 1, 0], [224, 210, 176], [0, 0, 0], [232, 23, 55], [252, 243, 225], [255, 255, 0], [255, 255, 0], [255, 255, 0], [255, 255, 255], [52, 16, 103], [0, 0, 0], [231, 99, 50], [0, 0, 0], [255, 255, 255], [255, 255, 255], [9, 8, 14], [0, 0, 0], [24, 21, 136], [255, 255, 255], [0, 0, 0], [255, 255, 255], [0, 0, 0], [23, 25, 63], [35, 29, 34], [0, 0, 0], [0, 255, 255], [255, 255, 255], [255, 252, 0], [14, 6, 0], [255, 255, 255], [3, 7, 8], [255, 255, 255], [16, 15, 13], [211, 32, 38], [255, 255, 255], [18, 20, 19], [0, 0, 0], [2, 0, 0], [255, 255, 255], [255, 255, 255], [136, 0, 0], [0, 8, 0], [0, 0, 0], [0, 0, 0], [3, 6, 8], [255, 170, 255], [255, 255, 0], [237, 242, 245], [38, 91, 169], [255, 255, 255], [66, 134, 199], [0, 9, 8], [255, 255, 255], [255, 255, 255], [255, 5, 25], [43, 46, 43], [251, 251, 251], [165, 207, 99], [255, 255, 255], [0, 0, 0], [228, 200, 152], [255, 255, 255], [0, 1, 0], [255, 255, 255], [255, 255, 255], [23, 146, 221], [255, 255, 255], [175, 147, 82], [27, 69, 143], [255, 255, 255], [0, 0, 0], [247, 247, 239], [24, 88, 168], [255, 255, 0], [240, 228, 212], [51, 42, 31], [238, 39, 34], [255, 255, 255], [255, 0, 0], [255, 255, 255], [17, 12, 9], [228, 216, 200], [231, 218, 208], [216, 152, 40], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [58, 162, 75], [255, 255, 255], [255, 255, 255], [255, 0, 0], [255, 255, 255], [163, 147, 98], [255, 255, 0], [24, 20, 24], [255, 255, 255], [255, 255, 255], [251, 247, 236], [255, 251, 239], [214, 233, 237], [24, 57, 74], [43, 38, 42], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 12], [255, 255, 255], [0, 0, 0], [0, 0, 0], [137, 251, 123], [10, 10, 0], [255, 255, 0], [239, 236, 224], [255, 255, 255], [255, 255, 255], [255, 69, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [235, 244, 239], [0, 255, 255], [255, 0, 255], [255, 255, 255], [255, 254, 252], [255, 255, 255], [20, 20, 18], [0, 44, 65], [255, 255, 255], [255, 0, 0], [219, 6, 35], [0, 160, 216], [255, 255, 255], [0, 0, 0], [252, 252, 252], [205, 0, 0], [255, 255, 255], [0, 0, 0], [242, 217, 0], [0, 105, 45], [255, 255, 255], [255, 255, 0], [23, 66, 119], [255, 0, 177], [65, 40, 23], [255, 255, 255], [255, 255, 255], [22, 22, 24], [255, 255, 255], [221, 226, 231], [177, 51, 36], [255, 255, 255], [255, 255, 255], [61, 51, 47], [0, 237, 242], [120, 143, 149], [255, 0, 255], [255, 255, 255], [51, 105, 162], [223, 224, 229], [255, 255, 255], [38, 91, 169], [0, 0, 0], [199, 227, 248], [0, 0, 0], [255, 255, 255], [21, 120, 0], [7, 6, 4], [255, 255, 255], [255, 230, 0], [13, 9, 10], [0, 0, 255], [233, 0, 0], [0, 255, 255], [242, 242, 242], [191, 49, 45], [0, 255, 255], [229, 224, 26], [255, 255, 255], [0, 65, 0], [237, 27, 36], [255, 255, 255], [255, 255, 255], [12, 192, 106], [143, 218, 250], [255, 255, 255], [255, 255, 255], [0, 0, 0], [196, 196, 196], [253, 249, 246], [255, 0, 0], [255, 255, 255], [254, 254, 252], [0, 0, 0], [255, 254, 255], [255, 232, 167], [3, 7, 8], [255, 255, 255], [255, 255, 0], [247, 247, 247], [255, 255, 255], [255, 255, 255], [242, 146, 50], [153, 76, 64], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [247, 247, 239], [255, 255, 255], [242, 244, 239], [255, 255, 255], [4, 4, 4], [255, 85, 55], [255, 255, 66], [27, 255, 255], [0, 0, 0], [45, 224, 53], [60, 19, 17], [255, 255, 255], [1, 1, 1], [255, 255, 255], [0, 0, 0], [38, 255, 0], [196, 34, 58], [255, 255, 255], [26, 26, 27], [6, 7, 9], [111, 191, 70], [242, 249, 255], [255, 255, 255], [247, 36, 51], [175, 211, 36], [29, 20, 15], [206, 108, 43], [184, 168, 152], [127, 100, 73], [255, 255, 255], [22, 22, 24], [255, 255, 255], [255, 255, 255], [173, 28, 33], [23, 19, 18], [252, 43, 80], [0, 14, 41], [255, 253, 251], [255, 255, 255], [247, 245, 232], [43, 65, 78], [255, 255, 255], [255, 255, 223], [0, 83, 255], [255, 255, 255], [255, 0, 0], [255, 255, 255], [212, 225, 242], [41, 37, 38], [255, 255, 0], [255, 255, 255], [255, 255, 255], [255, 221, 0], [194, 29, 45], [242, 249, 255], [255, 255, 255], [226, 230, 0], [255, 255, 255], [0, 3, 5], [255, 215, 189], [1, 1, 1], [255, 255, 255], [255, 80, 34], [0, 0, 0], [255, 255, 255], [255, 255, 255], [18, 18, 18], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [247, 247, 221], [255, 255, 255], [255, 255, 255], [255, 255, 255], [39, 85, 136], [0, 0, 0], [250, 251, 194], [248, 248, 232], [16, 18, 17], [21, 27, 43], [255, 255, 255], [83, 83, 119], [255, 248, 255], [255, 29, 36], [8, 8, 10], [0, 35, 100], [248, 232, 200], [255, 255, 255], [207, 121, 108], [0, 23, 0], [84, 105, 159], [23, 21, 18], [6, 24, 0], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [232, 248, 232], [255, 255, 255], [230, 31, 41], [252, 202, 69], [248, 246, 234], [255, 0, 0], [255, 0, 0], [255, 5, 0], [255, 119, 50], [239, 229, 214], [255, 0, 0], [0, 0, 0], [255, 255, 255], [0, 87, 23], [94, 159, 186], [143, 216, 249], [16, 0, 0], [14, 18, 27], [247, 245, 230], [17, 12, 16], [255, 255, 255], [255, 152, 0], [255, 255, 255], [255, 255, 255], [255, 30, 47], [255, 255, 255], [0, 255, 255], [50, 52, 49], [254, 255, 255], [73, 3, 8], [8, 20, 8], [212, 212, 174], [0, 0, 0], [255, 255, 255], [0, 0, 0], [255, 255, 255], [27, 27, 27], [255, 255, 255], [198, 191, 149], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [122, 144, 59], [255, 255, 255], [255, 255, 255], [251, 245, 223], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 28, 99], [0, 146, 43], [1, 0, 0], [255, 255, 255], [243, 118, 152], [255, 255, 255], [0, 9, 8], [254, 254, 242], [50, 42, 46], [223, 242, 212], [23, 28, 22], [19, 15, 12], [255, 255, 255], [252, 15, 9], [217, 87, 5], [0, 16, 18], [31, 148, 188], [28, 17, 20], [255, 255, 255], [69, 107, 123], [223, 227, 230], [243, 231, 215], [255, 255, 255], [108, 155, 137], [16, 16, 16], [255, 255, 255], [206, 19, 67], [255, 255, 255], [233, 245, 246], [255, 255, 255], [239, 242, 247], [198, 219, 213], [255, 255, 46], [187, 90, 73], [255, 14, 50], [255, 255, 255], [254, 255, 255], [168, 152, 152], [255, 255, 255], [76, 69, 70], [255, 255, 255], [255, 255, 255], [25, 27, 255], [255, 255, 255], [249, 247, 230], [248, 232, 184], [255, 255, 0], [0, 0, 0], [255, 255, 255], [255, 27, 26], [255, 255, 255], [214, 134, 83], [0, 255, 255], [3, 7, 8], [255, 219, 99], [255, 255, 255], [255, 255, 255], [12, 45, 109], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [47, 58, 105], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 0, 0], [25, 36, 255], [0, 0, 0], [255, 255, 255], [255, 239, 233], [0, 34, 255], [255, 255, 255], [110, 154, 137], [255, 255, 255], [237, 27, 0], [255, 255, 255], [211, 198, 240], [255, 255, 255], [7, 10, 21], [255, 255, 233], [255, 255, 255], [0, 255, 255], [1, 1, 1], [24, 40, 72], [0, 0, 0], [255, 255, 255], [255, 255, 255], [12, 11, 7], [2, 2, 2], [168, 136, 88], [228, 238, 255], [10, 10, 12], [255, 23, 22], [52, 39, 33], [5, 5, 5], [255, 255, 255], [153, 28, 31], [239, 239, 239], [255, 255, 255], [206, 206, 228], [255, 255, 255], [255, 246, 215], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [254, 255, 255], [254, 254, 252], [255, 40, 78], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 0], [248, 243, 247], [252, 223, 9], [166, 71, 101], [255, 255, 255], [35, 31, 32], [255, 255, 255], [226, 32, 43], [0, 0, 0], [253, 253, 251], [255, 255, 255], [253, 255, 216], [165, 70, 154], [255, 66, 19], [0, 4, 0], [38, 37, 32], [0, 0, 0], [0, 233, 0], [127, 27, 27], [49, 73, 111], [255, 0, 0], [227, 239, 217], [12, 25, 34], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [0, 121, 194], [255, 255, 255], [255, 255, 255], [152, 200, 72], [2, 2, 2], [255, 255, 255], [255, 255, 255], [242, 241, 228], [242, 242, 242], [255, 255, 255], [0, 0, 0], [255, 255, 255], [236, 235, 13], [255, 255, 255], [255, 255, 255], [207, 198, 181], [197, 219, 224], [255, 255, 255], [0, 139, 204], [255, 255, 255], [255, 255, 40], [255, 16, 255], [254, 255, 255], [24, 21, 16], [18, 13, 10], [255, 202, 255], [0, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 147, 255], [246, 245, 251], [255, 255, 255], [255, 248, 232], [255, 250, 251], [255, 255, 255], [255, 255, 255], [248, 247, 217], [255, 255, 255], [255, 255, 255], [234, 235, 254], [255, 254, 224], [22, 23, 27], [0, 0, 0], [51, 31, 30], [255, 228, 124], [0, 0, 0], [253, 252, 248], [255, 255, 255], [255, 255, 241], [8, 24, 8], [255, 1, 0], [255, 255, 255], [255, 255, 255], [128, 50, 64], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [0, 1, 22], [255, 255, 255], [241, 246, 0], [90, 95, 124], [255, 255, 255], [252, 243, 225], [27, 35, 97], [0, 0, 0], [229, 228, 224], [255, 255, 255], [255, 255, 0], [232, 201, 33], [143, 28, 19], [0, 0, 0], [255, 255, 255], [255, 255, 255], [176, 29, 45], [0, 193, 0], [255, 255, 255], [255, 255, 255], [31, 21, 21], [47, 17, 15], [255, 46, 49], [35, 64, 142], [193, 173, 187], [0, 1, 94], [40, 40, 40], [99, 187, 74], [52, 16, 103], [255, 255, 255], [255, 255, 255], [0, 6, 17], [255, 255, 255], [114, 36, 49], [0, 0, 0], [255, 255, 255], [96, 130, 132], [255, 255, 255], [255, 255, 255], [255, 255, 255], [240, 149, 192], [125, 166, 217], [238, 0, 255], [237, 204, 89], [255, 255, 255], [255, 255, 255], [243, 227, 227], [0, 22, 0], [255, 255, 255], [250, 254, 255], [0, 0, 0], [248, 215, 124], [255, 255, 255], [244, 241, 255], [255, 255, 255], [24, 24, 24], [255, 255, 255], [120, 56, 104], [14, 14, 14], [255, 255, 255], [40, 40, 88], [255, 255, 255], [161, 29, 139], [255, 255, 255], [0, 0, 0], [75, 77, 81], [248, 65, 67], [231, 67, 39], [247, 245, 0], [255, 255, 255], [255, 0, 0], [0, 0, 0], [255, 255, 255], [255, 255, 255], [245, 28, 213], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [216, 216, 216], [255, 255, 255], [255, 255, 221], [255, 255, 255], [255, 255, 255], [255, 255, 255], [254, 255, 255], [255, 212, 59], [156, 32, 34], [255, 255, 255], [33, 0, 255], [255, 255, 255], [255, 0, 0], [1, 3, 2], [48, 111, 67], [165, 212, 232], [0, 0, 0], [255, 255, 255], [0, 0, 0], [0, 0, 0], [255, 255, 255], [248, 88, 40], [133, 116, 72], [255, 255, 255], [127, 147, 158], [250, 228, 181], [108, 155, 137], [255, 255, 255], [105, 115, 196], [10, 10, 10], [23, 32, 49], [6, 8, 7], [28, 74, 59], [255, 14, 0], [255, 255, 82], [255, 255, 255], [255, 255, 255], [35, 37, 32], [99, 74, 159], [255, 255, 255], [244, 244, 246], [0, 0, 0], [18, 13, 8], [211, 31, 32], [0, 0, 0], [0, 0, 0], [164, 188, 255], [0, 0, 0], [255, 255, 255], [255, 255, 255], [255, 255, 255], [238, 217, 0], [205, 144, 55], [0, 209, 205], [0, 195, 255], [254, 255, 255], [255, 231, 225], [255, 255, 255], [255, 255, 255], [255, 255, 36], [250, 244, 255], [255, 255, 255], [255, 255, 255], [253, 179, 22], [5, 6, 8], [143, 19, 81], [255, 76, 60], [0, 0, 37], [255, 102, 255], [239, 246, 230], [248, 248, 216], [255, 230, 200], [255, 255, 255], [4, 5, 0], [1, 1, 0], [16, 18, 16], [255, 255, 255], [41, 31, 22], [106, 46, 44], [255, 255, 255], [255, 255, 255], [255, 30, 25], [255, 255, 255], [22, 22, 22], [198, 170, 255], [0, 141, 255], [222, 243, 246], [0, 9, 8], [33, 37, 24], [8, 0, 0], [255, 255, 255], [0, 0, 0], [10, 9, 23], [251, 244, 228], [234, 167, 27], [255, 255, 255], [255, 255, 255], [255, 255, 255], [255, 0, 0], [0, 0, 0], [255, 255, 255], [227, 231, 236], [255, 255, 255], [255, 255, 255], [254, 212, 74], [255, 255, 255], [11, 12, 14], [0, 2, 1], [166, 30, 34], [12, 31, 149], [48, 29, 15], [255, 70, 0], [255, 255, 255], [255, 255, 255], [251, 251, 243], [255, 255, 255], [255, 232, 236], [255, 37, 124], [255, 255, 255], [253, 239, 46], [255, 8, 7], [0, 0, 0], [246, 246, 245], [120, 1, 33], [255, 255, 255], [25, 24, 20], [255, 255, 255], [255, 41, 0], [200, 218, 247], [105, 162, 83], [0, 121, 194], [243, 162, 238], [255, 255, 255], [255, 29, 255], [255, 255, 255], [16, 16, 18], [255, 255, 255], [255, 251, 255], [255, 255, 255], [45, 75, 165], [0, 1, 1], [255, 255, 255], [12, 255, 255], [0, 0, 0], [4, 5, 9], [255, 255, 255], [255, 255, 255], [255, 255, 255], [246, 226, 153], [253, 255, 254], [0, 255, 255], [255, 255, 255], [255, 255, 255], [255, 255, 255], [190, 134, 183], [32, 30, 70], [255, 255, 255], [35, 31, 32], [79, 62, 140], [19, 15, 12], [22, 24, 23], [255, 234, 232], [255, 255, 255], [36, 54, 139], [0, 1, 6], [0, 0, 0], [255, 255, 255], [255, 255, 255], [211, 53, 44], [255, 255, 255], [241, 241, 240], [0, 1, 3], [255, 255, 255], [15, 14, 12], [242, 225, 216], [255, 255, 255], [197, 172, 155], [216, 40, 72], [255, 255, 255], [50, 68, 148], [247, 154, 160], [0, 0, 0], [255, 255, 255], [228, 25, 55], [250, 152, 29], [255, 0, 0], [252, 191, 23], [162, 204, 233], [252, 191, 23], [255, 255, 255], [245, 130, 32], [0, 0, 0], [255, 0, 0], [0, 195, 124], [252, 191, 23], [255, 242, 0], [248, 170, 166], [89, 97, 198], [117, 188, 234], [237, 25, 47], [228, 25, 55], [41, 42, 46], [41, 27, 160], [128, 202, 45], [236, 236, 236], [228, 25, 55], [244, 243, 239], [35, 31, 32], [255, 255, 255], [255, 154, 159], [0, 0, 121], [219, 232, 153], [0, 0, 0], [238, 23, 54], [255, 255, 255], [255, 248, 0], [254, 232, 1], [252, 191, 23], [255, 255, 255], [247, 19, 22], [255, 255, 255], [252, 191, 23], [0, 199, 239], [251, 229, 179], [255, 32, 41], [0, 123, 94], [0, 0, 0], [2, 122, 94], [255, 255, 255], [228, 25, 55], [255, 255, 255], [228, 25, 55], [255, 255, 255], [228, 25, 55], [250, 237, 0], [0, 0, 0], [89, 145, 48], [255, 0, 0], [35, 31, 32], [228, 24, 55], [251, 248, 237], [2, 122, 94], [0, 0, 0], [255, 251, 222], [252, 31, 32], [17, 12, 9], [251, 122, 94], [253, 220, 43], [159, 157, 133], [255, 255, 255], [118, 179, 207], [51, 52, 54], [255, 255, 255], [244, 219, 12], [35, 31, 32], [75, 124, 191], [194, 223, 165], [43, 44, 46], [228, 25, 55], [255, 255, 255], [246, 154, 0], [150, 0, 0], [255, 255, 0], [2, 122, 94], [0, 168, 142], [255, 0, 0], [35, 31, 32], [251, 191, 22], [20, 18, 17], [0, 0, 0], [118, 6, 116], [247, 154, 160], [252, 191, 23], [252, 191, 23], [34, 24, 23], [255, 22, 20], [16, 15, 13], [251, 191, 22], [252, 191, 23], [51, 123, 173], [250, 200, 53], [71, 1, 4], [48, 68, 159], [254, 242, 0], [35, 31, 32], [0, 108, 166], [2, 122, 94], [255, 255, 255], [175, 184, 29], [180, 127, 59], [255, 197, 38], [252, 191, 23], [255, 255, 255], [85, 255, 214], [35, 31, 32], [33, 57, 94], [20, 18, 23], [8, 56, 136], [68, 72, 78], [255, 255, 255], [255, 255, 255], [49, 53, 57], [255, 255, 255], [251, 191, 22], [245, 245, 233], [128, 100, 184], [0, 238, 231], [232, 235, 154], [255, 72, 0], [35, 31, 32], [0, 0, 0], [255, 255, 255], [19, 74, 105], [43, 39, 45], [220, 171, 76], [228, 25, 55], [42, 89, 174], [224, 61, 78], [255, 231, 255], [248, 243, 247], [228, 25, 55], [252, 31, 32], [187, 25, 49], [232, 152, 56], [39, 0, 0], [255, 255, 255], [251, 191, 22], [0, 185, 74], [252, 191, 23], [239, 23, 34], [255, 255, 255], [37, 26, 21], [0, 0, 0], [255, 255, 255], [0, 102, 156], [252, 191, 23], [35, 29, 29], [65, 106, 188], [251, 191, 22], [228, 25, 55], [255, 255, 255], [24, 23, 0], [255, 255, 255], [101, 140, 21], [255, 255, 255], [99, 155, 105], [252, 191, 23], [255, 255, 255], [2, 122, 94], [247, 154, 160], [255, 255, 255], [170, 86, 173], [255, 241, 228], [255, 255, 255], [255, 255, 255], [186, 21, 27], [17, 16, 14], [255, 255, 255], [228, 25, 55], [210, 210, 201], [254, 254, 254], [252, 191, 23], [255, 255, 255], [255, 255, 255], [255, 255, 255], [247, 203, 16], [8, 56, 136], [35, 31, 32], [16, 15, 13], [252, 191, 23], [132, 255, 80], [255, 255, 255], [255, 0, 0], [154, 28, 32], [2, 122, 94], [52, 55, 56], [4, 8, 11], [252, 191, 23], [252, 191, 23], [139, 3, 5], [2, 122, 94], [228, 25, 55], [0, 0, 0], [242, 242, 242], [61, 137, 163], [0, 25, 55], [255, 255, 255], [255, 255, 255], [219, 220, 185], [252, 191, 23], [255, 255, 255], [255, 0, 5], [0, 123, 94], [31, 35, 164], [243, 244, 246], [255, 255, 72], [170, 19, 26], [228, 25, 55], [8, 56, 136], [228, 25, 55], [251, 191, 22], [220, 213, 94], [184, 224, 229], [255, 255, 255], [8, 56, 136], [0, 122, 94], [120, 153, 108], [189, 219, 255], [255, 255, 255], [252, 191, 23], [255, 255, 255], [228, 25, 55], [217, 226, 201], [255, 255, 255], [0, 143, 76], [35, 31, 32], [228, 25, 55], [252, 191, 23], [0, 123, 94], [255, 255, 255], [252, 191, 23], [255, 255, 255], [255, 255, 0], [255, 255, 255], [0, 212, 190], [0, 122, 94], [0, 123, 94], [246, 154, 159], [255, 255, 255], [242, 226, 200], [0, 239, 248], [8, 56, 136], [0, 0, 0], [255, 255, 255], [16, 15, 13], [248, 232, 232], [35, 15, 14], [228, 25, 55], [255, 255, 255], [67, 178, 60], [255, 255, 0], [255, 255, 255], [255, 154, 160], [0, 0, 0], [228, 0, 0], [252, 191, 23], [255, 255, 255], [8, 56, 136], [0, 168, 142], [247, 215, 228], [0, 0, 0], [102, 103, 105], [255, 255, 255], [255, 255, 251], [0, 0, 0], [255, 255, 255], [255, 247, 255], [252, 31, 32], [39, 43, 44], [231, 30, 38], [224, 76, 25], [254, 254, 254], [255, 255, 255], [255, 255, 255], [255, 255, 255], [252, 191, 23], [0, 25, 27], [255, 255, 255], [104, 200, 232], [247, 154, 160], [21, 21, 23], [210, 16, 66], [228, 25, 55], [255, 154, 88], [0, 0, 0], [255, 255, 255], [255, 255, 255], [252, 191, 23], [252, 191, 23], [255, 255, 255], [252, 191, 23], [30, 68, 53], [0, 0, 0], [255, 255, 255], [189, 136, 52], [228, 25, 55], [2, 122, 94], [0, 0, 0], [126, 206, 81], [231, 216, 197], [43, 45, 44], [179, 202, 105], [255, 255, 255], [0, 0, 0], [228, 25, 55], [228, 25, 55], [241, 236, 53], [255, 82, 71], [255, 255, 255], [65, 174, 255], [0, 0, 0], [0, 248, 245], [252, 191, 23], [255, 255, 255], [252, 191, 23], [0, 0, 0], [255, 255, 191], [228, 25, 55], [2, 122, 94], [8, 56, 136], [0, 0, 0], [252, 191, 23], [255, 255, 255], [255, 255, 255], [161, 29, 42], [33, 31, 21], [252, 191, 23], [8, 56, 136], [36, 27, 10], [255, 255, 255], [0, 0, 0]]"});
define("text!dat/mahog/data/ids.json",function(){return'["-Ac81W-ZQDEC", "-sFkv-rGTJYC", "07LTDdpMZfYC", "0gLzGn-LYAQC", "1_BxUHJbK-8C", "1eVAVRRUnkAC", "1rW-QpIAs8UC", "2F1FheWJnhYC", "2T1NZUUM5JYC", "3_bJKlAOecEC", "3riJYW4TMeAC", "4e_QO0lA0FEC", "4lMynL91Mw4C", "53-gp__-Ni0C", "5sZdIZ0GBJ4C", "7-JfDlNcvhEC", "7VWZRVvoE0MC", "8QzD1qRZ3f0C", "9Oj3zPOMoiEC", "9z-9ufun9G4C", "a-apCPdumpsC", "ae89cJhLYJ4C", "afCxg5sogvAC", "AZ5J6B1-4BoC", "BATd_O0z-r0C", "btpIkZ6X6egC", "C-xXxfEAnzQC", "CYYnmQwmT2QC", "D79cOmmeQr8C", "dCq_E2MSODcC", "deaRm0KqhhsC", "dFlImpewmqUC", "dLo_GyEykjQC", "DpqPwAk8UvYC", "dxumVrUrpYcC", "dxXAi7rcRwEC", "ekJA6MZoH40C", "Eok8kGCq9rEC", "epDlSPRlP64C", "FEL8DlqjYEkC", "FN5wMOZKTYMC", "fnkCJBTdJekC", "FRx9Z-8oLKkC", "GKPktrYG7sUC", "Gqo5IlbVj2MC", "gszyGuchgQkC", "HpydZ7Xl1xwC", "IciSK2hKiQ4C", "injpY-EerZgC", "Iw_gHtk4ghYC", "JHxxM6mOAAQC", "KcOo6u5EKR8C", "kcsqGna7fBIC", "kEH1Js5RC_8C", "KosqNyzeyccC", "KPP6PhKAJgMC", "kSpQvfX1BSoC", "LBBhikJpLjwC", "lGS9Lbv0PdsC", "mAiJ8a_vk3QC", "Nhe2yvx6hP8C", "OfF0qpEoSrsC", "Ojqi8KbWuLwC", "PFYBPAS3LIEC", "qE2FPaaAa6wC", "RAUKBvP5OfgC", "rIj5x-C7D2cC", "rKq8bnUK3WoC", "rPoBYx7hRB4C", "rXeG6ivbdIcC", "sfC0p0Y9wY8C", "sTuE1RX6G7sC", "SWZ4FCf3LiQC", "T0u3mLgB7Q8C", "T5UpCOVOJboC", "tDi1X___kA8C", "TG5DXNXv2tAC", "Tu_2B0XdSW4C", "txhd-EAf4aoC", "ucpxOA3LDWcC", "uUenyaHxJfMC", "UvK1Slvkz3MC", "v2CrBj-MSg4C", "vRY8uYQUjDwC", "vzXz40IXEpIC", "W_5-RKxftbcC", "WcIJcNFzgqgC", "whdtOuA58e0C", "woDUFtbms-4C", "wQKyLoDT1RUC", "WrL9de30FDMC", "X4Z-6_UjUK8C", "yBDBEGBIUmgC", "Yz8Fnw0PlEQC", "z90HnZYAt20C", "ZfiREZrremoC", "ZfjzX7M8zt0C", "Ztp-cUw0jowC", "-3jZOkEF4hgC", "-Hw78nmNNhIC", "-o_a6Wh0hgEC", "0NP8hnGNjAsC", "0tQjH8yzrdcC", "0w2UpJzBamoC", "1amOE2BYvIYC", "1Mi8DZxNQEYC", "1MiZBNgHeawC", "1O3wuV4QBEAC", "1Qgt4oyMwJQC", "1qPnYFOtQC8C", "1T39-GfAWrUC", "1tqRGIihqw8C", "22p0JuQjciUC", "2CHxMUO08SAC", "2CU0N01MKq8C", "2jNwYjcIK6IC", "2JQW8SeseLQC", "2KERPNCkMC8C", "2KXCdI-p8xwC", "40eRknMj7W8C", "4kLJkLerSaAC", "4w0mcCMQfFoC", "58whfHOwXd4C", "5GjvwsQaJpsC", "5IH75VXZxU4C", "5NDU_8ntroUC", "5Oe6sjt3SWMC", "5rF_31RVTnMC", "5ta4u1iljDQC", "6-8joI_R2DsC", "60HJ7NklOGMC", "6BObU0ITL2MC", "6HDSdJtYpj0C", "6l2jAyf5IYsC", "6rfN-GeNlFgC", "74DRCVfzqkgC", "7A97laKeCecC", "7BUf0xhBN8EC", "7VWZRVvoE0MC", "86J0F9GsOAcC", "8fp1A2s6aQwC", "8jWTiB4UdQAC", "8QzD1qRZ3f0C", "8yD6wK7jE4gC", "94IMznRSTBcC", "9hvD2_TY0OUC", "9IQFh2qW9b0C", "9nFwTXKoS6gC", "9OgS6ILrV_8C", "9STXZ76dtkwC", "9WH1XR0NT0kC", "_am5au812vwC", "_M5RkbOs2EsC", "_MAXmVxrdasC", "_Q313x93xVIC", "_RWp0PuQ28wC", "_VXG8DuU830C", "_zr2nmsI0lUC", "a2iAh-KFdIgC", "Acvu5r1bmtIC", "afCxg5sogvAC", "auZXJuwLw8QC", "Aw4tOs-x85YC", "bFw4OjbdPdMC", "BNZ2-nzmQ_EC", "bQidDvWJsAUC", "BS6sAEtuuqYC", "BtNheyB7b_sC", "BvRtL2-qGC4C", "BZopNYe5-qcC", "c8WH6c7_RP4C", "CbJvlgHtDyMC", "CdvXLjqAcccC", "cfi0mLqWXGoC", "cl9kgQmqj54C", "cocVLbFkgyQC", "cQ0ciqF3F5gC", "CqjBCWV6Eu4C", "cr5TUCKGQ9YC", "cWWzQTVn6eoC", "CzEy6ernA3oC", "D4MTMYK4X6wC", "D5H6yvflq-wC", "D7_rJYZSi-sC", "DA3SRxogVOwC", "DDAg0LOkCjUC", "DduYXMlXgPgC", "deaRm0KqhhsC", "dELO9Pc3P50C", "Dga98586A0YC", "dKIo6D9yh3cC", "dOpZTJRfF04C", "DUcbyaGlYo4C", "dyNsQeKZ8hIC", "DZSFP5eMhDgC", "EaLYoCPqjrUC", "earytjxi6pEC", "EbquUB1D6B8C", "egD6t5_Hs_gC", "EQxgH5qLw3UC", "eTi6u-MS12kC", "eubyMCDFlu4C", "Ev4JvCyTfLkC", "evgsqlBVqr4C", "ezFPVu1MvaMC", "F5Y_QjkEu1UC", "F64IvLLwzM0C", "FCetHOb2j-MC", "Fdi-l1CsLSsC", "FIqEEO1Kc1EC", "fMtXDt1tS_EC", "fNl1sklg5RwC", "fs-cTvIegLgC", "fT8mMCUDlsMC", "FXPtglTFvKIC", "G0LZTx33-x0C", "g3x29UP5gnsC", "g44Fodu8NbAC", "G8GOS2_QwM8C", "g_1wN2RzTlcC", "GJG2O78xdbkC", "gLtfEvtrkCgC", "GoV9Aha9IhQC", "gsmalZyiNoYC", "gt7EQgH8-b4C", "gWu8_LXO6A8C", "GZWabG2SWj0C", "h6Yrv7Sixi4C", "hAWbMy0IvkkC", "HcDMKrh-_fEC", "HGnopNYgga4C", "hKzjNMFba5gC", "hR1beTwTgM8C", "hyeAO1KHjQoC", "i2Gfu-algOwC", "IDKNVdWVMlEC", "ifc8QVdWijMC", "iILGWUvHUpcC", "injpY-EerZgC", "IPJhaDPuGw8C", "itSPLM6udREC", "iUVuTbWUfQcC", "iWJsOlQvArIC", "ixaluvF7Mx8C", "j57S7Eo23kEC", "jhZ8R7lF_NcC", "jrOm0PEAQzMC", "JryN4EWam6gC", "jUW_qLMB9E0C", "jwjXltLIqRoC", "JwPsDrGz2oEC", "jYy2laAs_Q8C", "KD40sIOJ-SYC", "KF3fzxVYlpMC", "KosqNyzeyccC", "kV8Q3AiF14EC", "KvC7l-lo_JEC", "KVEq58n6iF8C", "KxLe4Y5_VqcC", "kXSKAfy5cQYC", "kyGTagqcyAcC", "l5WUWamxMGMC", "LBBhikJpLjwC", "lez8urgN7IsC", "LIoERdpnFUQC", "lj5woI0AjhsC", "lYgxhcsR8NYC", "MAyXHjLS7rEC", "MeO8b6S9lb4C", "mJ7-gzmDRo8C", "mJcOgKNGvzUC", "MKKPFqc3WqYC", "mNxe-SD0Qi0C", "mp6P88ff1YEC", "mpEBZLxaLJQC", "mRX160l72-UC", "n7eJZppCVjAC", "n856VkLmF34C", "n8jS9Wlgs24C", "n9IewwIPn-kC", "nej0pO6KHP4C", "nEjXAmEBAi8C", "nI3JXcSjvwsC", "NliRGM79z0sC", "NN5iI9oO3N0C", "O0WZTnDSDjMC", "oB4CDtS6N-8C", "oGseFpi7QG0C", "OmUJebLiytYC", "Oo-TBV4ezYMC", "OrJOvJljhNAC", "OyM3-IXdmJwC", "P7yZUMBcbxAC", "paSe7yZGUfEC", "pCP2VfWmEYwC", "PlnanYWr_lYC", "pUscmtndV7YC", "pWmV5Vx3cPwC", "Q9D80kbsKZ4C", "QKelKi8I-9YC", "qkubqKS3gagC", "qVmMyvApJHAC", "Qy7g-reIgaQC", "r3dgkm70ECEC", "R5Aczn9EZ4MC", "r7y3WIpuCD4C", "rA3Th92pTT0C", "RAw0oLs5os0C", "RC0iwqo53EgC", "Rhfi5GXwg60C", "RIPdMkiKipMC", "rjaedm_VqgAC", "RkiBDiK1b4IC", "rMrTE_JoI1QC", "rRQ-ln-SYnMC", "RtuUTyHr-5wC", "rUSEaBvq5sIC", "RW-mWK_XYZ4C", "s-IKDw_xNO4C", "s0YrhxJVw68C", "S1aY04SCeCcC", "SRFbLHcl808C", "sSLJnGMUw9wC", "sV2Zne7PFboC", "T-lmcZL_bXIC", "T53iIqrOcbIC", "t9QNVpO7X14C", "TNu0c8XiHc4C", "ToEsz_C6UsYC", "ts0EsIYrVc4C", "tU_CAUXWpCsC", "TXnD5iuM6DkC", "TYHPLULRAtAC", "u6_s98dIm30C", "uBJebCyhhmgC", "udN6caZEJesC", "UKdIMjjZDO0C", "uMq7puR-NrAC", "Up4x7U20ZVUC", "UPm7Nlxg-O8C", "uvr8XVTzrNcC", "vHx4ceDLapAC", "vyFFdl-1m-AC", "W8uJGI8se_QC", "wGgmGnc2TrEC", "WGqj5MIQ1KgC", "WhqeFP8kcOYC", "WjlMfoNKZoYC", "wlz-PwfSIdMC", "Wnc3V5m9kqgC", "wP22JQd-IjkC", "wQcMDdFC1QEC", "WrDB5XZbXZEC", "Wx00mzMRGH8C", "wYbOlD2Q_lwC", "WZEAkY1LdtAC", "XaozCbxSFbsC", "Xg-KfK7aFgcC", "xLx9wXQiHEwC", "xOi8USrW6M0C", "xv7381O0EskC", "YAv9Gv9ZIbcC", "YdtPYQHlJJIC", "Yf2UK6QUeAwC", "yHFQe17yggIC", "YLjHJNVZLnkC", "yoEZgkQxmsIC", "ySFeBcfG8AUC", "Yso319xUOF8C", "ytc1dnTiXUkC", "YuCyFqLYjyoC", "YUzwlDHiHPQC", "YV0IskcivVIC", "z-14BurnRNYC", "Z93OvsN2yq8C", "zbAJykg_ncAC", "zF6v7bX__SQC", "ZgVbSPYVs5sC", "ZI2qm9s7sZsC", "ZK8DGepq9DMC", "Zp_b7CdQnzwC", "-30E6Pjp4dwC", "-ydNYWGIussC", "0KIU3WhvK-gC", "1BnQaxG0YSUC", "1e_JFkI3DPMC", "1rW-QpIAs8UC", "26SwHFQblXwC", "2RB3j_YfEg0C", "2VEHl6rp1mAC", "2ZAptMWcCdwC", "3H2Xg5qxz-8C", "3NSImqqnxnkC", "3zWhu92ME1sC", "4-VCagWoBGAC", "4psb688KSskC", "4Z697q04X9wC", "5NfZvS8gCeQC", "66Dm4p1wxqUC", "7-uxOdOgbYwC", "7Ga0TEYaScIC", "7NeZeQ6qHq4C", "7NH5yNWMCFEC", "7X3JPMMPqYMC", "82-zKnPHa9YC", "8KFpjnioTW0C", "8Nc8FhxNF8IC", "8TyZAoyMiDsC", "92smAMgJiMUC", "9ne3r2XzbzEC", "_LhvHY7GACsC", "A3snVoXwD6oC", "ak5fLB24ircC", "akhuVP5NY-kC", "AmRxT9mHfkwC", "aWaehpOG8voC", "BmPPAjGaDuQC", "BVLBu5QR5YMC", "c-3MsLNC-vkC", "ceYlEs6gT3QC", "COJVopOZblIC", "cR2nhrCzyWwC", "d0tFXQur-q0C", "DCqFYOrGyegC", "dI66B5IY2X0C", "dIGizhIvCfcC", "dxumVrUrpYcC", "eoy-khRFxGUC", "eParwQ0YdrcC", "EZH-cSO-UkoC", "F21-T-BYprQC", "FFgY7hnWOWsC", "fH075AmvTVUC", "g0pn1ambbgkC", "G2AaD6PvdsMC", "G_GbZ6rDUrsC", "gHmb9E-w88kC", "gkaUu__vNDQC", "gKYeYvWpapQC", "GQIbnp4yQJEC", "Gqz3UF5FbI0C", "GVchqY1ZaB0C", "gZMTo93ZZtwC", "h2WTgw_Qs4kC", "h7NewH-XWgUC", "HGDhybuy45sC", "hsuhaO3oQ0kC", "i5lD4Y6Sbm0C", "Ia0W1gg3aqYC", "ib9Xzb5eFGQC", "iC-NUBtuGeQC", "ifocmqVPHUwC", "iLxklckK4tsC", "iM6sos2U554C", "in7BSJlU7z4C", "iykLVJAK49kC", "IzzooXGE6GgC", "jBFmkR5xy7UC", "JklJ0ZoJtmAC", "jNa10OYRlpsC", "JRzC5Z6wyLYC", "k-dTFB0B5CUC", "k0P11ZxGN3QC", "k7vW_dRCS3UC", "ka7VEMoenmMC", "kF26e_S6l_cC", "KF3fzxVYlpMC", "KZ227__Vyl8C", "l0qEwNqmRgcC", "L1j8ZO73fNgC", "lbOkUCVNSPoC", "lH4Mjm1YcakC", "LiC2foFeXQYC", "lNJ93YBrpzoC", "mfaoT7klxX0C", "mjasWuJANoYC", "mPfE_-GTAEsC", "Ms_VAVC4IJ0C", "n19OZlQi0NwC", "nEcVIiToC8kC", "np1RwDQfpjsC", "NuoltFFAIzUC", "oaQ9zYKu0qoC", "oFTYD9IHX5YC", "oILn8Im-GbsC", "oQoNLVqZzQYC", "oSsIfoDQHhgC", "oSXEwOdkpmAC", "p1hd3kN0odgC", "PG0ndz-nmywC", "PGMnEr9dLUoC", "PjeTO822t_4C", "poWks_q7X_oC", "q3XIFK4zQQcC", "qg61T_I1mwsC", "QgzBqhbdlvUC", "qJQ1BU83XQkC", "qR-d465uX3cC", "r23bFouhu1MC", "RiH9CEQZcOMC", "rJiV1q1SDHcC", "ro7X8HRyuEIC", "rPka_QG6Fp0C", "RRUkLhyGZVgC", "s6NB6m1nAK8C", "s9QEjj3Lx30C", "SfAgn7KXggIC", "SIexi_qgq2gC", "silrVTw9E2sC", "SvVb8TvuqEAC", "TyPO2Feqjf4C", "U77um_h_dgcC", "UglRu-CK0M0C", "UNxU-2s2sQYC", "UzRHdy2GTx0C", "vbGoBIu8UQAC", "vE5MERHPBU0C", "vmv3ZUg1UJUC", "VRFqzM3XB3oC", "wCnHmQnPNmwC", "wgCCzO5N4HkC", "x3IcNujwHxcC", "xCAD8ashi_UC", "xM7Yo1r1PhIC", "xmYBTQcF1TsC", "xQo7DTj-YnMC", "xqyj-xnch2AC", "xWjTZhw1MiUC", "yBDBEGBIUmgC", "YkHn8ogq9JMC", "yNFN1OpnkBkC", "YoVpW0zJIgYC", "YOVuQFXNcP4C", "yv5tR54Qs6sC", "Z1AJB-S8RK4C", "ZjYP5o18qQUC", "Zr6K7pxtc80C", "ZV-GPw5BYq0C", "-a6JfQ3qd0AC", "-aySX6b8FSoC", "-tRVlibWwrAC", "-ZacVHw7QhkC", "05capLEO2ygC", "07LTDdpMZfYC", "0JMqA3_JQ30C", "19vnyvh6Y8IC", "1HLKgQCccTsC", "370LF2kzw1UC", "5IaLGlxtqsAC", "6gfDfhmmHxMC", "6SF-8gmg_BcC", "7N_nmMFx98oC", "8H8WfZ_AyU8C", "8yG5UrYMQ-0C", "9wjlOC_WhHYC", "9yN1btNTj0IC", "_-xSfyrwxuYC", "_JDJ0H4BIzIC", "a2iAh-KFdIgC", "aaP4yQW2S9IC", "Bi4Z_-GmydcC", "BjOQVyNQLD0C", "c1wnePZ6wmcC", "c20ilAa3EMYC", "c3U-w4cqIMUC", "c5oks2yFukUC", "cFBUx1i73X8C", "ChLZ2Mdpdr8C", "CYYnmQwmT2QC", "DIxJQdDgS0QC", "dkYP9xtzUWQC", "E2TZw2z0MvUC", "Et9gd7otqj8C", "F5bpJ9vZhfwC", "fCunxPYp_OAC", "FN5wMOZKTYMC", "FWGsyxSc8ccC", "fzUyn3NCsZcC", "g63GBF-KPC4C", "GiFUTD1su7gC", "GxfgPMXA7SQC", "h7TLfHTGRMEC", "Hc_rTXEjeWsC", "Hjn8usbgSOwC", "hlJbtjEy7UYC", "iaHHHT4sa1MC", "IAuxsiYEdIUC", "IGRT4SQmq2AC", "iOpmCbDoyGgC", "Iu8XmX2xYXgC", "iUVuTbWUfQcC", "Iw_gHtk4ghYC", "j7YmVKxMJxQC", "jeCiIfB7da0C", "jHmjvIR9xZkC", "JjDVJGxtVqsC", "JrPYwt8yMokC", "JuG4iVilH3YC", "k9t-NCdfNH4C", "kAA7M72tFHcC", "kcsqGna7fBIC", "KIxo3jxM8b0C", "kSpQvfX1BSoC", "LaXY4ArFPgwC", "lw99Oii9R90C", "M-IRbSratpYC", "M1AUC4TY4u0C", "mBnlTKOVhi8C", "MmJeXfkFNKwC", "mRF4H71Bwd0C", "MRk0e0H27-oC", "MtNQKRG6jZ8C", "mTsznApVyEwC", "niZRM7N-1yUC", "NLGfv0jAgtgC", "NmF3c2A5k00C", "nu5L8RtxQ1kC", "NwwtNg5Xo4QC", "oI3sT-JddJQC", "orLvFmeh9JcC", "OtZGZNMHUA4C", "OYC_9Vlzcd4C", "P29bv8K6lXAC", "p8kbFmwUsdgC", "Q7Jk307w-XkC", "Q8g3Vx41ePwC", "QE364RkPna0C", "QmQiz87q0OkC", "Rdwosb3edv8C", "rKby_-We-AQC", "RsAz01zeAOgC", "rTyiMVQ105kC", "rY6NA51PBfYC", "s8rfmpJ0yYIC", "Sb8QwBX1rJsC", "sbiC0dSqrY0C", "sBPk89_MbRwC", "SxHnfLhyydoC", "t85ymw92is0C", "TfkaULToI2EC", "th8oeSCV6Q8C", "TkVqqMuZpwEC", "tmVAmITQrmIC", "tqL-dZ29ATcC", "UxpV536d5hEC", "uyHrEAEC_YMC", "VaPhkASeJ7IC", "VDin06S0V_8C", "veGXULZK6UAC", "VF588BtEzCcC", "VFPESwN4cwsC", "VSGv9ygG1poC", "vuVOwGOUVYEC", "VWwH9SboEQcC", "W2-1yYXtMF0C", "WGUNSP-LaNMC", "XZK2FzHiA8YC", "Y7cDOT_XaY4C", "YKGwdLQmVaQC", "ysEp2IhHrMUC", "YSMIxY6iEKMC", "Yz8Fnw0PlEQC", "ZfjzX7M8zt0C", "-lBr4WIvPz8C", "-Zc3V2oOqK0C", "0oXB7aFQ1FwC", "105JppJWUk4C", "1C3yNgqZnUkC", "2weL0iAfrEMC", "3NQhBTNKJB8C", "4msZ3cQHO8gC", "5f4Z1Cv2X84C", "75UTwaSKHiAC", "7XUSn0IKQEgC", "8IN3usGqzPYC", "9-8jnjgYrgYC", "9i1WgopfVToC", "_-xnEDNPxwYC", "_XzEs6TulJIC", "a_tWDLdD6B0C", "ANqnTECyE9oC", "b7WKUva_gjMC", "BkDxC_O1WisC", "crBzYLSu34gC", "CXhEJGQsJ34C", "dtSdrjjVXrwC", "EFqYStz7lV0C", "EUcGc6jEqvcC", "fCZB0yBckTgC", "fhhLFcOZGBEC", "Fp59VWEIzFgC", "g3M-uf5pruMC", "G78tE7JjgDcC", "GuA2REeoBiUC", "H4GTzba5m1kC", "h4LRlPf5q1kC", "heIAUbZj-s8C", "Hxtp87Gg-dgC", "I7-IP5P-gdMC", "ihYA7R1ZFWcC", "IQ3PJY7zs6EC", "j6CkhZ862q4C", "JHEM7lZOm1MC", "JM59G2oSN3EC", "jt7-35zypq8C", "JT_F4bJYStMC", "JypQSHAXNi0C", "ktm885vGIXEC", "kW0s1IrlbnIC", "LzgNHuKKGJIC", "lZRHFamrPTYC", "M3ha_ErsG8YC", "mShXzzKtpmEC", "MY2dCU2KPeEC", "nbiRSagoci8C", "nNj3pK2gna8C", "nTQNo45R158C", "NxykJ3b-zqwC", "p3pCgbJp_F0C", "P5ttR3SgsRQC", "P9e_9ks8I-0C", "p9vqjmOCdUoC", "PQzYdC3BtQkC", "pvZVbw84SH8C", "PYQivWd-i8gC", "r4s1QTHpQosC", "rNRlR4RGkecC", "RzDjk8u7rfAC", "S2-4gQKDKUUC", "sJl-nUYdZjgC", "sXZiavO78M4C", "TKh6fdlKwfMC", "trowcj1wZ44C", "tU63RcoRCZcC", "Uo9LDF_ZC-YC", "uxvYqDtwx2sC", "V1kKb0RKhlIC", "VENrFSQFco8C", "vV9TxTSGA3wC", "xa2-b3bsRMcC", "XcOqBdzZCsEC", "XDSERMVMLTAC", "XLvQZxX1GtUC", "yFn_v3LT934C", "YOVuQFXNcP4C", "ys_V0MftVWQC", "YWzdzzjOahIC", "ZM7ltPetQg0C", "zMRUsLNt8eAC", "-BGKavU8jB0C", "-Gw6kWP89dgC", "-l6PDMS0jQIC", "-LeUV2wr2BoC", "-XwouDKyJ2gC", "0aFx3bpLoN0C", "0FpnqTGxykIC", "0RmKcoqS8P4C", "0XVcWB-FHCYC", "10WaaHcY06IC", "13zK4DhnCH4C", "1_H1PmGEUHkC", "1C-luCqJVhEC", "1N2ccRmpdaAC", "1VesjYo46BIC", "2uChr44meR8C", "3-ZMNssUxDAC", "3fkAazdFhL8C", "3KzJr5_U4egC", "3OzdC24R7p0C", "3y88ESO9Og0C", "43gGM7InIYcC", "4EcBLlS-_7oC", "4JblsQKKp5UC", "4t4uujcNcJsC", "5b8QUomZemcC", "5BNqwkATVFQC", "5ek0v2_F5j4C", "5FFNoSioPmcC", "5IFW0O9roEMC", "5P2dgP6IIkMC", "5ujdLj5Qvq0C", "6GA3srKNFRUC", "6KZN7xPj1McC", "6Xv2D77awK4C", "7BUf0xhBN8EC", "7difwFYeDegC", "7eHHDm3IbQIC", "7GmtwLcqjRIC", "7j7pbvkhm0sC", "8ihq0DCczi4C", "8sZxihzL06EC", "8tSYa32W5iUC", "8yJfpmKv_OMC", "90M5Tw0530gC", "91myiffbyewC", "9IHZI00LUc0C", "9OEmdcwYhfEC", "9R-aGrYdyzgC", "_ClUwFV0Q_8C", "_DrJ1w-4rZEC", "aCESCcbcSV8C", "acZ8Y4SaGuoC", "ADCJDNtWqfUC", "AedT3DFLkzIC", "aeM8liycEVMC", "af1vAKzcNHgC", "ajuGcS1hnFAC", "bKVCtH4AjwgC", "bLbG-5tWKlEC", "BMdjgQUXPu8C", "bosadAZI2y4C", "BSb0GJ3ZNIwC", "bT7PO16NEz0C", "BTAqqy5HM9gC", "c4QF4q-BBXEC", "c_zntP2OimkC", "CEfOj7nPGwkC", "chWFFmyeXoYC", "ci8ZlvnjfEkC", "cirqwlWIdjUC", "CkoZ0LZNyH8C", "cm2uPFGXJKcC", "cocVLbFkgyQC", "cqeKBaTQgLEC", "cS5LIySXISkC", "csUCOBuW61cC", "CUFJ6Jw2WQ0C", "D5nXAbSifIgC", "D5rP9U6DKPsC", "d5VPrzefkeIC", "D6pn6mX0w5kC", "DBw__rjJe4IC", "Dga98586A0YC", "dgW10li4jkAC", "dHlP3pvh__QC", "DjlBsZyhaQcC", "dKyPYyWNVMsC", "dNSOkGbW_EkC", "DqgcpdVuRgcC", "dSarPnb4i6QC", "dWB3v1XBsK0C", "DWokDfcc8jcC", "DWzqgi6lcroC", "dyr8nTjVnc0C", "E32Rk9Hp-AYC", "e3DZmcYvLpMC", "E8-kZZ7PrAsC", "erLFYbSqVvQC", "eSs337bclSgC", "eTqHAtbAzg0C", "F-S2Y1UZoosC", "FJVDXIJtGZEC", "g5g_FVB5vEsC", "GCJzF4slNHgC", "gd9doP1MgecC", "gg0AYyb659cC", "gYHUqzqdzE0C", "GYnZqBjBDHoC", "gZxH7AAkzIUC", "h0hAXS9btasC", "H405zLofpJYC", "h_p6vykYQQ4C", "Ha7Z5Ccio34C", "hc0ULBqlgVgC", "he6PtCsPI0wC", "HhhT1gNKaQ8C", "hM7l02o63xQC", "hPWiQZt5aRcC", "HT6D2fD4qIwC", "hVHYgJ5JccMC", "HZDipGVmK8YC", "i04gvDRlG3IC", "I8KVxbDmAfkC", "iLy66hcmkJMC", "ImiebrbUA98C", "IQ3PJY7zs6EC", "iqLlcSlvflwC", "je2RIdOsqOwC", "jK7EyaxrqjcC", "jNA25QH8SXoC", "jo0QDroYDGkC", "jOw31xuUlkAC", "JpZwVmnzUngC", "jQtsA9RjiWMC", "JsdJh5twEzwC", "jYSY_XuKVBsC", "KqTFXw9g1zEC", "KTbGqfHdlX0C", "L0qppDj5PowC", "lBhgrgRZDQ4C", "LCBLklGJH6sC", "LRAIyOKxmxgC", "Lrtuyrh8h2gC", "LXUeNVWZyZ4C", "LYmgxcx_AW8C", "lyNwEPs-bKwC", "M04TpCjQiDwC", "M3HVRDMmID8C", "m51VTRVtPNIC", "m9BQIig6kekC", "MdG5lTFeHVwC", "megcGzrJb1YC", "Mj1pmBvYbFsC", "MKeKWwpCToMC", "MlOWsTGRARIC", "MNHHJtWRB34C", "mtWfTJo93kcC", "n1-FFBWOC9UC", "n5-6VmSLEVIC", "NA4w9AMKSfYC", "nADfM6NuoecC", "nb3ziIO-GEQC", "nOY0ZCY9itoC", "NsF40Xh9KHoC", "NxL_Z5FAVzwC", "o-NDKn-lbFYC", "o7aaimpuALYC", "O9EI6Kja3CUC", "oGbyGKMBfR0C", "OHnbtpjmY_AC", "OQ2nTaHMm1IC", "p6Es8-7f_X8C", "pAxH-S93nh4C", "PdRWRBi41S0C", "PHON1TlFtoAC", "pIrCoCG0jj0C", "PLNkIxzQ-0cC", "PV5UO1ELsSUC", "Q0VWgW9COOEC", "q2ZMsxvdeCQC", "qAo3q623slUC", "qd0SPoOqKfIC", "Qdd_BMDWW5oC", "QKb0KIOWwZYC", "qMWh5T02XGQC", "qOoqLMLp51kC", "QTjtaM_XjdAC", "qUfmLRZaSQcC", "Qwufwl4w3NMC", "rCQQ2ZSijUkC", "rfSZReWcp78C", "RIr285y9nRQC", "RndTqOYSseQC", "row2qL1qCoEC", "RRJvRT17EQIC", "RypoUoZjNkEC", "RYrsI5wMroIC", "spkEKSsfgSQC", "STmAPBqf5wMC", "sXq7k0XKJSQC", "T5KxjCQhc-8C", "T7raezEZ1bEC", "TCiRo20x3Q4C", "TCQQ6f-MrpgC", "TeCJplpETVoC", "TeilmkSRH_AC", "tf-MGA32GSIC", "ThOlFtXaq0cC", "tKLvPAScbiAC", "tqH-RUSTH40C", "TuoFvFXf3NYC", "U2pksdgrZUwC", "U8FQLBxjI2wC", "Uea0fuqZgqIC", "uNr6MXlefT4C", "UsMPRKldMzYC", "UTdSrpGonvYC", "uV_iy5VuVOEC", "UztZxSRJlV4C", "v-9Dqz6xYlkC", "V00KDCcEbfcC", "v5Wrowmc8csC", "v9FitTPWAk0C", "vErkAGvxVHYC", "vfU3Y7mKudwC", "VIBrGVtNqb8C", "VInqwHnDSd0C", "Vj7NTmylUlsC", "vM7j_cCzLPQC", "VQ8pGE3QYSMC", "VttvrPyt-EAC", "vxN6_lU84IoC", "wLg6sj_gF0kC", "wwikOB0tGKoC", "x1f94LvsI-UC", "xCA2GudEI6QC", "xh1zqeohaXAC", "Y-PzV7ZO7Y8C", "Y0xqbKSMB2UC", "YNnjSYuBGL4C", "YQLGVTN1SvYC", "YQzEvuNSAj4C", "Ys6KcOuCG24C", "YV0IskcivVIC", "YVWmKC8f_KwC", "z8j8Qrk4Ls8C", "ZbnLAfbazQ4C", "ZBpmk-NbkKQC", "zGaRpi4YdIQC", "zjgCC1ymlGQC", "Zt18aFbo91QC", "ZVvK7yp1FzkC", "ZY6bC2BPcIAC", "-GZj4J8xCJgC", "-L6Mta5ndNAC", "-PvkRdMbuy0C", "-qMYJX4_8aQC", "1FjUdrA-VFAC", "1Tny60vKmUUC", "1Y1BQkVqjtgC", "2eSpL8ZL5BIC", "2KRbyYAKQ6cC", "34L752pBlhsC", "4Debu8jRvrgC", "4PKQ8Pa0Ul0C", "4tURrenGW2kC", "4Uwrw19KVOoC", "4WqmTRin4ZMC", "5AJmojcmFE0C", "5o1ZHCjHkFkC", "6AWJpoorWoQC", "6pmBjSl35egC", "6tqHrOu-4cUC", "6VcdA01PPMcC", "6wh6ml1Pt6UC", "7mtBRAEfXvIC", "7xQpBzI4l58C", "8H91S2sw9QgC", "8IDEiNTtV7cC", "8UOzg674kdkC", "_6GePgDGGK0C", "_f6j6anyQ2MC", "_Qjfxl6_QgYC", "_sn-o-LMeskC", "A9KGpN073P0C", "abyFoVaEKYUC", "aDM4SKZCatcC", "aRDYXYZfvDkC", "B1zhqUEcPkgC", "BiAd4Q6aSEUC", "btpIkZ6X6egC", "BuxJD61uYOYC", "bzCJkaTSeHMC", "CCJhjoq9nBEC", "ccWmlymJEq0C", "CdTJvxJ77XsC", "ce89NOKPkL4C", "CP4yE9IHgLYC", "CrHWOtkHCwsC", "CWgf1t96jAkC", "dfInNTbJsk8C", "dFlImpewmqUC", "dH1sAxadZTcC", "DOLsxgRAqhQC", "dRkH_H-EFKMC", "DWqmN5NAiP4C", "e4_FQv-rmQgC", "eAyJAiQHkMIC", "egyCSa5tJTEC", "ep117AqTGW4C", "EqgV2wJhi1cC", "evvA09RzZ0oC", "Ff2HadKdyh4C", "FMU2sVYK10gC", "Fn8ysAJWUnIC", "Fp4S3oEXQAEC", "FrslsCdrL_oC", "fshvh3jWzOsC", "fSvZepCCABUC", "g63GBF-KPC4C", "gbIG-epQgyYC", "gBKtKIT-GvoC", "gqPNokxPgMcC", "Gz67bo-EgxkC", "h_hGQNs9GHwC", "hE0FKGDTurYC", "hFSx37SaQRoC", "Hl2xvndpcR0C", "HWMD4dsbRnMC", "I6BQ9yxgSaoC", "iDlrydEEJHgC", "If3o_UU9s24C", "Ifz6j6_T-s4C", "IHtQFK_sBqcC", "INyUQOZZl58C", "IUV--lkfN7kC", "J1FmPbrDgwIC", "JEj7x8eZC_oC", "jrnLxhfW7gMC", "JXm_CP3T5JcC", "K1-LL9vlxZcC", "k6mPvBQEm8QC", "k88UDDDvrS0C", "kBQNNPxuu70C", "kcsqGna7fBIC", "KfJmaUFwkMcC", "kMzH8iHyyrMC", "kO5794qbOe8C", "Ku8NG5OgmlEC", "kw2whCi_CgQC", "l_5NkzG68RUC", "L_u07lSB0bcC", "LHWE7tFmMT8C", "LP3pux703ukC", "lSybHLQbZ_kC", "lV44_bf5YnoC", "lw99Oii9R90C", "lzsQS5FeJkkC", "lZu2S7MMfT8C", "Mb9sHZJDpO8C", "MbW3_eSDGl4C", "Mg5jM9Bpz2YC", "mUEOJuwUAOkC", "nbITlF0ZiSMC", "nJ09OZlYngcC", "njWQqggGmRQC", "NuMx6tmf5iIC", "O1H7BVBsK9oC", "o2yNzFVc59cC", "Oe21i1ChvFwC", "OHclhBVv-X4C", "ot-0G0Q7lEYC", "oXz1ZblCUIUC", "ozol-RP_SK0C", "p76ueH9PWJAC", "P7Gio2slQFUC", "Ph5fp30QR9AC", "pK43Jn0RmTcC", "PllWy31yfN0C", "pt660yLyXqkC", "PvUsMAChACAC", "Q7Jk307w-XkC", "qL0GQnyPDw0C", "Qt70g8C3fXoC", "QUNoPBsxf7AC", "qZiRVmzf6I8C", "r0vgbVwxNsUC", "RA8s7kh-dSsC", "refaXw3PHeMC", "RFWfrsUueekC", "rIj5x-C7D2cC", "sCqTLoPnXp8C", "Sf2hhOWKUjwC", "sfdSGwRYwhIC", "sgYB8r45FHcC", "SNCdbj8pJg8C", "SOJtFIjyBWMC", "sosiolVa7uEC", "sxh_DW4s50wC", "sy6mx4xyvRQC", "T1I5uvZGzM0C", "t1kIollr8fQC", "tj4jpCbifaIC", "TOXraAXIqCUC", "tuspQELrwhIC", "tzItGpE83FUC", "u_ly5iCCR5kC", "uBQQmyyK6mAC", "ukRplJvGSD4C", "uNKImaUpW24C", "UNTaN-NqhpMC", "UvgGzh-6t8cC", "ux2wduAY-JcC", "UXn2vd-jsv0C", "V-HeFwF7UakC", "vaiHc4-caXYC", "vAMDDsz43RUC", "vkozsZ3-OwkC", "vV5TcbVYPfoC", "W-Zb18DC8d0C", "W9d41JPUobkC", "wtj4uu2Esr0C", "X4Z-6_UjUK8C", "xcOhW-8ceN4C", "xEKIryULO6wC", "xEYBhKlG-H0C", "xHWgnMsz8UIC", "xlXkiXE8cX8C", "y9LkuD5JLdgC", "y9S6PuuVJG0C", "Y9uJUlGwJIUC", "y_j7eSwRuVIC", "YCBFxU5rGzAC", "YJDL7vhpJvIC", "YoryriygeZgC", "YPWuR6Spo1MC", "YrET8yQqIM4C", "YX57ZkCEJNgC", "zBU58c4KpREC", "ZCyqpCqeIiEC", "ZEyWIM5tDCAC", "zezJOW8XFc0C", "ZfiREZrremoC", "ZfjzX7M8zt0C", "zIqZEjsSyIcC", "-4JaSBhEmmgC", "-76GjNpR9VUC", "-ejuRdu1o0sC", "-F7oqyLU8yEC", "-L6Mta5ndNAC", "-nwAWTMtiVMC", "-P3klEJmyYoC", "-PvkRdMbuy0C", "-RzDku2uRXIC", "-sapXk7dWcAC", "-swgfIGSElYC", "-TnVeCjM2BUC", "-VqbhDPE6RwC", "-vWT6E7gwRYC", "-xJpukMoY2kC", "02Xig2qmvr8C", "03ugn0KpZVkC", "07LTDdpMZfYC", "0E8JpmcAWgIC", "0J4QzTKvMWgC", "0mGCIWM1pOoC", "0pLN4o3jnX4C", "0qYJ1G5DCkYC", "0uRTfS1Tgn4C", "0yF95v_cIi0C", "0ZOQM0b3CIEC", "1bV993QDiRAC", "1CCCWMqPtzEC", "1CZjrwiEqWQC", "1eVAVRRUnkAC", "1h48H2_RlusC", "1KdwvK9lLVUC", "1nN5hXqGUpQC", "1nU7NLCQGQgC", "1PgKPuFIz1kC", "1QAHs3JSVnEC", "1Tny60vKmUUC", "1wA_9CKPlsYC", "1XfzbmbLnwMC", "1XtD9HhZbOQC", "1zUMv3Kv6b0C", "2-SeHlvtIXkC", "26GWYL2CpN4C", "28ZTgahpo5MC", "2hLRAkzKHjIC", "2X59P60QHnYC", "32yoIgkRJOcC", "34L752pBlhsC", "3E_xUWylr-UC", "3h9hkTsLvBsC", "3jVps2Z9LQcC", "3pu3QWtuQyEC", "3QPCicPagmkC", "3u6N2cT0bOAC", "3uni7ltr-EgC", "3Y3Koy1GyxwC", "3YJoqg9olpYC", "49Uk1oEf6JYC", "4CLIORno1rAC", "4coo9ddRaooC", "4F_TQ00gjfsC", "4GIvo8QVTLMC", "4gOtkoiJIjEC", "4GXEmkTTUpoC", "4hg0KpqgjcYC", "4IuaEfruDEwC", "4mOrEoLlJQMC", "4ny3c9qR8X8C", "4NynkhaQ8W8C", "4qonczmsK7EC", "4tvdBDk8JX4C", "4Uwrw19KVOoC", "586WOqyl34gC", "5B0VAeZsoVIC", "5ckoF81np3sC", "5d-kBuaNG9UC", "5gdqw3ax1KsC", "5H7RXIuvSE0C", "5n2e3UaU4PsC", "5ohxQyl4-O8C", "5uD_-xh13V4C", "5v08C5_ZZTAC", "5X7VZIx48PEC", "5XdIgMWhmcoC", "608lEnyfObkC", "6AWJpoorWoQC", "6AXV76B7GTIC", "6gMmbJoCPyEC", "6jfyVfKCmUoC", "6MtRNh_cgSMC", "6u_VRZHH4GIC", "6ue1tbd-dTQC", "6VJ7KzN1x_wC", "6wh6ml1Pt6UC", "7334_AEUgVgC", "74JpqIiLifEC", "7ER4mPFI9osC", "7EsxsEtV9sMC", "7gXh4VqSVUcC", "7ksTou2ZkUoC", "7mtBRAEfXvIC", "7slan0QnyRsC", "7SooukPjhjwC", "7Xf-oGYr5V8C", "7xQpBzI4l58C", "7ZbCilZXmmAC", "8fjvEUIapQIC", "8Fy9NHweW9QC", "8gelKH734-oC", "8H91S2sw9QgC", "8HdUyL1l1ksC", "8IDEiNTtV7cC", "8OXdc4vlzs8C", "8PBJOdv2H7EC", "8Pmi9jxgQxgC", "8rBdtCkit9AC", "8RDs6-P8UPAC", "8rOvpN2d9TsC", "8wfGMsWWZ-gC", "9gaTqmfdPQoC", "9JmKpUr-EFsC", "9P7h5rB2vQ0C", "9Q0_5ogipFsC", "9VYuMmcxSYcC", "9vZ64MLmVS8C", "_1CxStiRr08C", "_ALvS8AzgTAC", "_B4Bef8FTFwC", "_bPIMadGwewC", "_ceeVvxULncC", "_Cfi6UiyNlkC", "_eohr5XMnBAC", "_f5KcJAyhvoC", "_GGSLrAQYIsC", "_h4Jf64pDyAC", "_J18TXGiojQC", "_jeprgK5J6sC", "_jueZ7Tz8ywC", "_mur2PUOp8wC", "_NaVar4pJ6cC", "_oWNWR2vwysC", "_sn-o-LMeskC", "_u-czkvqm4sC", "_U9YvW-NfvIC", "_VH9YGAUbtAC", "_z7RaEmKC6cC", "_zhwTYftf-sC", "A-nGXqb5JSYC", "A8KuchLCcYkC", "abyFoVaEKYUC", "AD1Wke2hrG0C", "AfD1s_2f1FEC", "AHpEoxYiK9AC", "aJVuN5nq2qUC", "AKA7nDO9j48C", "AkeKKRbJcsMC", "akHTeRj4JOUC", "AkQjSsjvkTUC", "AlKRFqsOeZEC", "AoufDxH8x74C", "aov2z6vYpzMC", "aRDYXYZfvDkC", "asRKDggVx54C", "AUbEMUpDHjMC", "avi_Z6Gh8qwC", "AW747fOkrj0C", "aWmi9nbSr04C", "aWRCZ8rGnhkC", "AY1iHnq-xcQC", "AYi7qf0jsOAC", "AZ5J6B1-4BoC", "b0Hvl7Q_BuIC", "B1woUWB0zoEC", "B1zhqUEcPkgC", "B4dliT2lOZgC", "b592OcmrEiIC", "BBKEcM6M_BUC", "bBYG-E9nRykC", "BcCNJNcixZUC", "bCosFPTNyRwC", "BD5vHd29Ks0C", "BedB7RwA4ykC", "BeJOKgCPho4C", "BEKXF2zGG-sC", "bEWHe7swieAC", "BiAd4Q6aSEUC", "BJcgLVibkrEC", "bL0V6oCroGYC", "BNaURsY-nTAC", "bNO3yU4E1FsC", "BnqbHc7qE0UC", "bojZGsgacvsC", "bR0CXxMF2oQC", "brQZSNtn0KYC", "bX1nS36naX4C", "bZHl-c4Np9UC", "C7VKDEeOItoC", "C_-mi2hqGXQC", "C_bL0PRTQl4C", "CA6h2G_mJlIC", "cAAI89nNZEMC", "CaBAy2oYiNwC", "cAmLFWdaK-AC", "CArnmV7IE5UC", "cCo_JW12cPYC", "Cdg_NkdhoToC", "ce89NOKPkL4C", "CII4iT8yUVQC", "Cjfq3Sq4C5EC", "ClbxfqL67cwC", "COjPOyLC1NYC", "CQWlJiK5If8C", "CS6n6YeCWbkC", "cu1La-UW1uUC", "CUx9NFuHJMQC", "cW3PW9PbqPUC", "cWHKIyvyEksC", "cWQJJIgJNtUC", "CX1OBa0NxKMC", "CXFWZuxyUFQC", "CxSlyJOi1FgC", "Cyly4t2jHMsC", "CYYnmQwmT2QC", "cZ_F_J1308wC", "czC0Y_Va8BQC", "Czq_QLLkwK4C", "D-ctsVAeN-kC", "D1g9NcEBcEYC", "D58GqvTxupUC", "D8phz0hAtfIC", "DaDP_S-bMlgC", "DEussc1kYYYC", "dfInNTbJsk8C", "dkS7CMsi0CYC", "dla773aZfTIC", "DMA63zMS7lAC", "DNYRA70fpVsC", "DOLsxgRAqhQC", "dqi0a2CyavkC", "DqicTjD83CUC", "Dt67NJYFYL4C", "dX8tSRf1xuQC", "DXl5d3PpY04C", "dYMS5W6_Lb0C", "e2q53WFE7hEC", "E7Xw3-GDz4MC", "E8-kZZ7PrAsC", "e_meE2o7GMoC", "e_sTGVh4SRwC", "ECTrdkcRRZ8C", "eDl00TgFDCUC", "ego1raoSBfMC", "egyCSa5tJTEC", "eHAK8fdo0_cC", "EJFT88h-q0sC", "eK0SnBnpkA8C", "em3obwwfGUAC", "EMcjOKjbdNMC", "eN1eVGDOQ5YC", "ePwhbo8BwE0C", "eQajBqGgHkQC", "Esr4fKWU27AC", "ESr_AtJMl0AC", "ESyuaATJOd4C", "ETg4kBLS6psC", "EU9sFmi1U68C", "EuzmhRySiUMC", "evF6kdfndvYC", "EvFiS2rAlosC", "eXgmkezrzYcC", "ExTe994L0BQC", "EZSih0sBzi0C", "EzxwuTqqBhkC", "f-lv0GeeF8EC", "f0nW3qJ3tJIC", "F0v4zCQg10gC", "F2Z6uxeA0IsC", "Ffl0HCe_YV4C", "fFS2asmj4AUC", "fG49kbqrsgoC", "FIyaG5BdttAC", "fJelZ9wO11kC", "FJGUYgk2cvMC", "FjkctseJSHkC", "Fn8ysAJWUnIC", "fnSegQKAttUC", "FodGfz5li5wC", "fQ0GfacznJsC", "FshiVC33NhMC", "fTEk6vLjK-gC", "fu-kpQVvUNkC", "fVgPWLQWA4sC", "fvGy7lnl5e0C", "FykRZunc0NEC", "fyvF_1MmEMkC", "FzVlzvwrbY4C", "g-xFICaT2KgC", "g1-LVOkDfDcC", "G3-3WCuBIeMC", "G6OCU8VRYTUC", "gaWaX3c3xcUC", "gbIG-epQgyYC", "gBKtKIT-GvoC", "GCyjMr7CudIC", "gdB6wQBga2EC", "Get-rAnKUpUC", "GfZodTCFYrEC", "GgFI5pZBUu4C", "Ginqs7wJ1XAC", "GiUW7V-gdfMC", "GKfXoyCfh7EC", "GKPktrYG7sUC", "GmSGPMXp41MC", "gnEGziO0ASQC", "gQ-RkCsWFTYC", "gqPNokxPgMcC", "gRSux4SdN-IC", "gT60QdAov_MC", "GUCo0saVa8gC", "gV4SCyVYuYQC", "gVhJ1_WvDBsC", "GVHocBMsJa0C", "gVmCUL3kz8EC", "gWSU_QI39okC", "h017Dhvt9qIC", "h0oAFNvncUUC", "h3KoqdZ2jpYC", "H4pOe9pQtYIC", "H7HpQrVYspkC", "h8bNYcNwWgMC", "hb2mddOnmcgC", "Hbvw2UCKoZ4C", "Hc_rTXEjeWsC", "HcYjKlcm-pMC", "Hd3M2lQvCZQC", "hEUQWxM0nHsC", "HFotoS0lwvQC", "HnGJsP8JI8MC", "houLObK_Rh8C", "HPBrFPvlSbwC", "HPYLoLgJVKwC", "hTyf61os6q4C", "hx4zw8cp__UC", "hz_e_Ou2nIQC", "i-dzdN0xPvkC", "I1HMmRJtL2wC", "I6BQ9yxgSaoC", "IcBj0RlABDgC", "iDeDm27OnSwC", "IEQRxisj-nkC", "IHtQFK_sBqcC", "INvN7NgVFCIC", "invwNFgV7ooC", "INyUQOZZl58C", "iqVVCMpztugC", "iuc9opwJ7awC", "IUV--lkfN7kC", "iUyrNlDbzsIC", "IWvJms37_owC", "IwywDY4P6gsC", "iX5t60yJp4IC", "iXS0g4iuYzEC", "J1FmPbrDgwIC", "j1k-ALNh_AkC", "J21DrnAqy9YC", "j2l3OK6h8osC", "J2lPGw1Rtw4C", "J6DxZsLy38sC", "j7XsGbC7QKsC", "jaHqDitMkcwC", "jdsMvUHwV5YC", "JHxxM6mOAAQC", "JI6RrXDzH9UC", "JiDYXW7kIFsC", "JigkhryKpx4C", "jIqTj8wO9TAC", "JktSxVsXDZYC", "JNuRxUXjmWAC", "jOMGyirP81IC", "jVL9t0pASC0C", "jw7Ax9CcwjQC", "JxFIS87S148C", "k88UDDDvrS0C", "K8VvOPLwg-EC", "kaEecwxX7WEC", "KBFcMJ82jXIC", "kcsqGna7fBIC", "KDeCgbRa5jcC", "kflefDbfDOUC", "KgSgVDI8c2UC", "Kj5w6sZTJsoC", "kO5794qbOe8C", "KOJ6JcKqIbQC", "KqyijSJv8lwC", "kSpQvfX1BSoC", "Ku8NG5OgmlEC", "KXfziip0cCsC", "KyYHVPJfJsEC", "l_5NkzG68RUC", "la_e6cgLl-sC", "lCGyHH-9ThMC", "LecPI-LRELIC", "LEHGfCUDYfAC", "LgYDKal5OAcC", "LHtNad2Dr2MC", "liXVkOxFDqsC", "lLWuYEx1eQcC", "LMkii04pC1gC", "LMTMTcWUNWcC", "LOnmn5bytY8C", "Lsz51VJ7IVQC", "luHp2EJtQaEC", "LurjwBaxF8MC", "lV44_bf5YnoC", "LvtESY7aPcAC", "Lw86RxlWQnYC", "lw99Oii9R90C", "lXrnTDSacVMC", "lZqrZGDIFAIC", "lZu2S7MMfT8C", "m1axmPZi11YC", "m1Or0ficxlsC", "M4d-MQlEG2kC", "m8JVt054DKwC", "m_hkEz6T-x4C", "M_PLP_Kohd4C", "MblDTjG7ylUC", "mC7gkAtRC6sC", "MCP9XkskjIEC", "md6oFs29tVwC", "mDF-nk2IEg4C", "Mg5jM9Bpz2YC", "mim-M3zIAWUC", "mK6MS891avEC", "mKBy-_WBiugC", "MkTwWUbyx6UC", "mLqL7ulqj-oC", "MqMv2oNmNHcC", "MSXVXP_3cFMC", "Mt9NFfWXW7wC", "mtP0gwO7MEYC", "mU8uV6laLRAC", "mUsT853PvLcC", "MUvbLFS8Av8C", "muw8IPWgGUAC", "Mw1ky2bqh04C", "mZws9JrkC60C", "N-Kfa0UZcGUC", "n8osYvxSYh8C", "N8rTg0X-QIsC", "ncC8EF67bWAC", "NdFeQuMDINsC", "NesI-uoZwYQC", "ngZuhGcX_2wC", "nIuDdBIsS-MC", "nJIn7DinnV8C", "nJv2mifE1o4C", "njWQqggGmRQC", "nk-zDSq_6nQC", "NLwvH_ZRUh8C", "nLYzditxyIQC", "nm-BUiZMc3EC", "nO13fbQfeIUC", "nPDKveEbebMC", "nQ68hmToee0C", "nTw0jsvjg7AC", "NukmAj--nXgC", "NuMx6tmf5iIC", "NUX8dD_xxMoC", "Nwr-wjeRSmoC", "nxMbOcwxOj0C", "O7-V90OQVQsC", "o8FTqpgFivIC", "OB2HH37-I84C", "oB4OC53QYYkC", "OD7Ck6xrOoMC", "oGY9hNTcOSoC", "OHclhBVv-X4C", "OlI8KJzxBwAC", "OmUJebLiytYC", "Oo4lb9M-O5oC", "OO7VLVPMt_UC", "opqdY91BMrIC", "orWw5hZ8BsgC", "ot-0G0Q7lEYC", "oT7Ov516accC", "ou6rclxkFu8C", "owdvLQqC-dsC", "oXg0wOgdKDcC", "ozol-RP_SK0C", "p37VqBkJvL0C", "p3YW4rJ5ob8C", "p76ueH9PWJAC", "P7Gio2slQFUC", "PaGLM2GozFoC", "PbmmLSnghrEC", "PczyUV_YL2MC", "PE53nJcigosC", "pEKjhF_EUIwC", "pep9YQmYgJUC", "PGoBkEb5yf0C", "Ph5fp30QR9AC", "Ph9tE9_G7aoC", "phzzlIWxr3kC", "PiwPN3j2JXAC", "pKmJ0B8e7zUC", "pMo2v1U_VNcC", "PNjrRKR3sKoC", "PNW7TiM1BJ8C", "pOUhr4JDZbUC", "ppLI3zTIhQ4C", "PPNZYEL7pwgC", "pV8oTgZ6B3AC", "PvUsMAChACAC", "Pw-rcBpV-80C", "pwsF6n2rU-QC", "PxVsN849Cz4C", "Pybzv6lHV8IC", "q1EPx-ceN78C", "q2E_qQwNi84C", "Q3Rfm2JBti0C", "Q5QRRluMxecC", "q6zIspzVcPoC", "Q7Jk307w-XkC", "Q8k6Z7jH8a0C", "qa10pJ0PaMQC", "Qa8IoiT_3kAC", "QdiTkdgSoaYC", "QhWVUH9tNw4C", "QiO4D10VggwC", "QiTL547ISwIC", "QJqyBQlzZh0C", "qL0GQnyPDw0C", "qLfZf7f5_pkC", "QlLMwIkHVu8C", "Qms9PNSDEFoC", "Qn6XPK6_9PwC", "qPfokXOc4LwC", "QpXLNs8v_WEC", "qsijdHADx8IC", "Qt70g8C3fXoC", "QTlyR32YgJ4C", "QTQhoeH9gOAC", "QtTNYdNpJRkC", "qUgPnJLN4lEC", "qwGgE6LbWuoC", "QwptKz0-wL8C", "QXmmegPcncUC", "qZsoQyr70zkC", "r0hw66pmL8wC", "r0SqH14yQBIC", "r0vgbVwxNsUC", "R1cIsQiFoCwC", "R5-edU1taWAC", "RB0X01C7pg8C", "rBYgS_sNEh0C", "rC8VSWUV828C", "rFn1T6E0UJEC", "RFWfrsUueekC", "RgdA-8B8Jo8C", "rGEEFkQlnYkC", "rjTH9c476t0C", "rKq8bnUK3WoC", "RkZeR4-1O9EC", "RLpxnrnXXhYC", "RMd3GpIFxcUC", "RmvQfoKiPCQC", "RNmeL_6s3OsC", "rpWP3KPA5kIC", "rRYjYKrShPwC", "Rt70xjfLrfsC", "RV-fNYzEZlwC", "rVYbIigCAIMC", "rwrHxpn-ydMC", "rxlhF88yrg0C", "RZ_J2zSCsBMC", "RZavt1b_0BAC", "RZll-GR0Oi4C", "S5njq1FhUUgC", "s6ZPTdkgHlkC", "S7IcZd5UYmcC", "s87JIfNWSKgC", "s8zIH7dnYCsC", "sCqTLoPnXp8C", "Sds79NgjU7oC", "SEQr7Y2ESicC", "seXnMV9-vmkC", "sfdSGwRYwhIC", "sgYB8r45FHcC", "SIBukbtIZ6AC", "SIGIlqKAaW8C", "SIGkFwAmFKwC", "sN_FF1GBPosC", "SNdZ96QZ768C", "SOeYus07mmEC", "SOJtFIjyBWMC", "sosiolVa7uEC", "SoxnKRQyj10C", "suVX7iZ3Z2sC", "sW5w27ZLekoC", "SxQuvJbN0dsC", "T5UpCOVOJboC", "T97vHe-Q8OMC", "TBr8IVfeakoC", "TEp_QVl5lVEC", "TGfGcACdMmEC", "tHK2RxUm3xUC", "Ti7CSFe9WfQC", "tjnjQkoBnBMC", "Tmq3nTH_uu0C", "tMrWdiJa5kIC", "tNKtrgmE1fUC", "TqwIc4C2GSQC", "trfXmiUm5PgC", "TRYAQyzJGNkC", "tS7gOpmrcy0C", "TtJ0VT4AnMkC", "tu16MecA8cEC", "tuoHq4clR3sC", "tuSGXALbaLIC", "tuspQELrwhIC", "Tv77pfIsaVYC", "tW2dzj1LJQsC", "TX3-BA_UOo4C", "tzItGpE83FUC", "u1HkFE75cAYC", "u5CQpfaElJYC", "u7Pvlu1-1ngC", "U8r6PaETKA4C", "ubodMGnHnx0C", "UcAyzspqfycC", "uDg6E3p80tEC", "UDuEFOTuCFIC", "uevG9aAp1IwC", "ufNTEMTqAhYC", "uH_AITzNp1UC", "Ujyr6whVn20C", "ukRplJvGSD4C", "UlhGedGC668C", "uLXTjolpB_EC", "uNKImaUpW24C", "uODhydH-iWIC", "uQBf9FmAu-oC", "uQFpOTMEt9sC", "uqyMMARDscUC", "URoDbjKxx3oC", "US5aoykpdoAC", "USgMx6uKq7cC", "UTgWS01SxfkC", "UUODSqSSrZcC", "UvgGzh-6t8cC", "UvK1Slvkz3MC", "uVziYDsRDNsC", "uXAECz8bOlQC", "UxD9YbsMVhsC", "Uxwq3DdghtwC", "uYCcXSIMM8gC", "Uz3nMnT4hGsC", "Uzh4qLngklQC", "V-HeFwF7UakC", "v2RPoiRHX7EC", "V4-H6JHFEtQC", "v6fI550HlOsC", "V9UkDlzc1iwC", "v9W5x1mTOEgC", "vaiHc4-caXYC", "vAMDDsz43RUC", "veGXULZK6UAC", "vG8vLdk4EJYC", "vgX9GrngkIoC", "VgYTZXucs98C", "vjwfFOOm4ysC", "vkHCx--93jIC", "vkozsZ3-OwkC", "VlOXC3Pr2KkC", "vmTcK2ujm_IC", "vnEhQB8-uoEC", "VPE6Orsz1nIC", "vPm2kLSDeloC", "vqyMvavWsiAC", "VuaA_9dvD_EC", "vV5TcbVYPfoC", "VzamFijBMFwC", "vZc3cqjbzTMC", "W-Zb18DC8d0C", "w15KrP0xNPQC", "w25sx0G6nRsC", "w3b-1oa7NLQC", "w80iglnfDBgC", "W9d41JPUobkC", "W_8mE3eTSDkC", "WCG_-qi-DDEC", "We9pyCWAGOYC", "WeKvtiwft_MC", "whdtOuA58e0C", "WI0nPy7U0XIC", "wIEr8jXYBt8C", "wJ6vYEm1-AcC", "wk0YzGyyXzwC", "wlwCUad_Sw8C", "WNBFbIUssgAC", "wou23_QQyHgC", "wQKyLoDT1RUC", "WrL9de30FDMC", "WRlgDYVfP2kC", "WSCEgZsug1oC", "wtj4uu2Esr0C", "wvgF2t4wb2MC", "WwkTwI4f_XMC", "wxh2mBW9JP8C", "wZi7DZwwYJ0C", "wzPlQGKox1EC", "x2AEzRpvmywC", "X3rvKJrmYVwC", "X4Z-6_UjUK8C", "XaKz2uqbMzUC", "xbA4gFJBZ_UC", "XBWuaZBL8rcC", "Xc-DJNXsuacC", "xCnvVZMYajwC", "xcOhW-8ceN4C", "xcXnkKEOHIgC", "xd3X5x_-MOoC", "xEKIryULO6wC", "XelCxTJbKt4C", "Xh8GddJI8CEC", "xHWgnMsz8UIC", "xJ1j7mkgvlwC", "XJK18Kn5f7gC", "XjmvQlH55lIC", "xkkHhFuhPkMC", "XKQBdncI-RUC", "XLDFokaUJyoC", "XLFMJx8ekPkC", "XlxEL2OAq1MC", "XmEN-qK0bsMC", "xnUb0ToUgSwC", "XNvkUR5mKoAC", "Xozq7SGvyMoC", "xpKEExbb8DQC", "xrcH_BibabsC", "XRkDaOf0-uIC", "xsuY9Zhz28cC", "xTzN4tAcbWUC", "xVeVkhSLOFgC", "XVwOEeHTU4QC", "xWhaJJ0lZ-UC", "XzVLIY5L2swC", "y-YtcOzwf6MC", "Y3yDkC9IIukC", "y5OK4NA9_aoC", "y9LkuD5JLdgC", "Y9uJUlGwJIUC", "y_j7eSwRuVIC", "yDymY0juFzAC", "YEhxvTBNLhMC", "Ygw3cnsXV0gC", "yKKMZ0YNLR4C", "ykNznFLmV6wC", "YlRW1GtVrY8C", "YNboIkLuJzEC", "YNXPoQiZQDIC", "YoryriygeZgC", "ypuqwrePKJ0C", "YqJ-FqupAeQC", "YRUh6EtxyOYC", "YS80oPE7OpoC", "ys_e1Jaxh4UC", "yscEw6qeOE8C", "YSVeIm0jLy8C", "yUq1AXoC88kC", "YUsiaYPFcgsC", "Yw64dgRvc7EC", "YWwy374ei6IC", "Z2HZ7kIVskUC", "Z5VRwewA4rkC", "z6iODYzWf54C", "ZBkdrgIqguoC", "zCo8lr9bN8AC", "zezJOW8XFc0C", "ZfjzX7M8zt0C", "zgf3TFxEUUMC", "ZHwey8h5Kj4C", "ZiH-0QMl4EsC", "ZJO6ZuRE3-IC", "zMxUsres-coC", "ZX4JoRmrwyMC", "Zx94D5BWzbwC", "-hUUAAAAYAAJ", "-ThaAAAAMAAJ", "00kCAAAAYAAJ", "07QlAAAAMAAJ", "0_80AAAAMAAJ", "0bM7AAAAcAAJ", "0doNAAAAYAAJ", "0osEAAAAYAAJ", "0PAWAAAAYAAJ", "0qsRAAAAYAAJ", "139bAAAAQAAJ", "16fPAAAAMAAJ", "1G0jAAAAMAAJ", "1H4kAAAAMAAJ", "1qgTAAAAYAAJ", "1QoRAAAAYAAJ", "1V8CAAAAQAAJ", "27I0AAAAMAAJ", "2CNAAAAAYAAJ", "2GQ1AAAAMAAJ", "2vsEAAAAYAAJ", "2Zc3AAAAYAAJ", "3dwNAAAAQAAJ", "3e8OAAAAYAAJ", "3gUSAAAAYAAJ", "3H46AAAAMAAJ", "3LwYAAAAYAAJ", "3OAQAAAAYAAJ", "3OHOUzhs6qQC", "3PcYAAAAYAAJ", "3QMiAAAAMAAJ", "3tcOAAAAIAAJ", "3VEPAAAAQAAJ", "3wkOAAAAYAAJ", "3zsVAAAAYAAJ", "48MXAAAAYAAJ", "4cwNAAAAYAAJ", "4FkVAAAAYAAJ", "4HIWAAAAYAAJ", "4KgOkpSJeuwC", "4us0AAAAMAAJ", "4vEdAAAAMAAJ", "4wkOAAAAYAAJ", "50oCAAAAYAAJ", "54wEAAAAYAAJ", "5EIPAAAAQAAJ", "5gUXAAAAYAAJ", "5IoEAAAAYAAJ", "5IURAAAAYAAJ", "5KEAAAAAYAAJ", "5PRPaqgJu6oC", "5ujXAAAAMAAJ", "6gaRAAAAIAAJ", "6PE0AAAAMAAJ", "6uU_AAAAYAAJ", "6WESAAAAYAAJ", "7bU4AAAAMAAJ", "7CgDAAAAYAAJ", "7DcoAAAAYAAJ", "7dkNAAAAYAAJ", "7Ed1Guv4ZgkC", "7g4nAAAAMAAJ", "7ghLAAAAMAAJ", "7GM4AAAAMAAJ", "7jgdAAAAMAAJ", "7JhBAAAAYAAJ", "7jtaAAAAMAAJ", "7n8EAAAAYAAJ", "7p8NAAAAQAAJ", "7Tyq1m9078EC", "7UoHAAAAQAAJ", "7UxUkGUnd1YC", "828AAAAAYAAJ", "8AkXAAAAYAAJ", "8dkXAAAAYAAJ", "8GsCAAAAYAAJ", "8gU_AAAAYAAJ", "8LcOAAAAIAAJ", "8lcOMIkeNCYC", "8mo-AAAAYAAJ", "8nIqAAAAYAAJ", "8NZNAAAAYAAJ", "8WwUAAAAYAAJ", "99gDAAAAYAAJ", "9AI9AAAAYAAJ", "9bo2AAAAMAAJ", "9RUaAAAAYAAJ", "9SovAAAAYAAJ", "9wQWAAAAYAAJ", "9ywUAAAAYAAJ", "_0sqAAAAYAAJ", "_74XAAAAYAAJ", "__AYAAAAYAAJ", "_bkqAAAAYAAJ", "_JMKAAAAYAAJ", "_kEDAAAAYAAJ", "_NcDAAAAQAAJ", "_sIwAAAAYAAJ", "a1wHAAAAQAAJ", "A2YVAAAAQAAJ", "aBEXAAAAYAAJ", "Ae4WAAAAYAAJ", "AfQWAAAAYAAJ", "agcEAAAAYAAJ", "AgYnAAAAMAAJ", "ahNbAAAAMAAJ", "ak8-AAAAYAAJ", "aPdLAAAAMAAJ", "AWxEAAAAMAAJ", "awYRAAAAYAAJ", "aYYSAAAAYAAJ", "b74_AAAAYAAJ", "b7MXAAAAYAAJ", "bA-j9fLGI_wC", "bF81AAAAMAAJ", "bfBaAAAAMAAJ", "bFw1AAAAMAAJ", "BGEtAAAAMAAJ", "bH4EAAAAYAAJ", "bHwHAAAAQAAJ", "Bj8zAAAAYAAJ", "bo4EAAAAYAAJ", "bowEAAAAYAAJ", "bPRDAAAAYAAJ", "bQlHAAAAYAAJ", "btjVAAAAMAAJ", "buAQAAAAYAAJ", "buc0AAAAMAAJ", "BWoRAAAAYAAJ", "bXtaAAAAMAAJ", "c0U_AAAAcAAJ", "c1jYAAAAMAAJ", "c2c-AAAAYAAJ", "c_BJcZV_jj0C", "c_MEAAAAYAAJ", "CBAMAQAAIAAJ", "cbMSAAAAYAAJ", "cdkNAAAAYAAJ", "cFtbAAAAMAAJ", "Cg8XAAAAYAAJ", "CGpbAAAAQAAJ", "cjImAAAAMAAJ", "CmISAAAAYAAJ", "crMnAAAAMAAJ", "cRVEAAAAYAAJ", "cYHJHFS37m8C", "CyUQAAAAYAAJ", "d6r6mO0DWh0C", "d7NEAAAAYAAJ", "D8I8AAAAYAAJ", "dcxGAAAAYAAJ", "DeJgAAAAMAAJ", "DEUUAAAAQAAJ", "dgkoAAAAMAAJ", "Dj4XAAAAYAAJ", "DowhJYZmlW4C", "DPIVAAAAYAAJ", "dQ81AAAAMAAJ", "dtgDAAAAYAAJ", "dWlKAAAAYAAJ", "E18Bom4aEnIC", "e84OAAAAYAAJ", "eAGXOXy-MWwC", "EblDAAAAYAAJ", "EEMeAAAAMAAJ", "Eh0QAAAAYAAJ", "eJUKAAAAYAAJ", "EKJHAAAAYAAJ", "eKUwAAAAYAAJ", "emUtAAAAYAAJ", "eoxOAAAAMAAJ", "ePsgAAAAMAAJ", "EW89AAAAcAAJ", "exgRAAAAYAAJ", "EY0EAAAAYAAJ", "ey8EAAAAQAAJ", "EZ8Rd5IsjawC", "F4sEAAAAYAAJ", "F8ZEAAAAYAAJ", "FaoSAAAAYAAJ", "FfcYAAAAYAAJ", "fhUXAAAAYAAJ", "FIwEAAAAYAAJ", "FM-AAAAAMAAJ", "FtgDAAAAYAAJ", "FWQAAAAAMAAJ", "fz_91Zn161gC", "g1ugAAAAMAAJ", "g5IPAAAAQAAJ", "G7xfuc7lWvMC", "g9LiAAAAMAAJ", "GbUlAAAAMAAJ", "GEZaAAAAMAAJ", "GG8qAAAAYAAJ", "GkAZAAAAYAAJ", "gLCaAAAAIAAJ", "go0ZAAAAYAAJ", "gQsXAAAAYAAJ", "gSIZAAAAYAAJ", "GtAYVckH2FkC", "guFIqjynpO4C", "H0BKAAAAIAAJ", "h5UPAAAAQAAJ", "h8VCAAAAYAAJ", "H_XkAAAAMAAJ", "hBuind5qZakC", "hjoFAAAAYAAJ", "hlAHAAAAQAAJ", "hNoNAAAAYAAJ", "hoAEAAAAYAAJ", "HoJMAAAAYAAJ", "HvJaAAAAMAAJ", "hxwEAAAAYAAJ", "I2AtAAAAMAAJ", "i6tEAAAAYAAJ", "I7JiAAAAMAAJ", "i7wXAAAAYAAJ", "iAVPjpphQ90C", "ikk7AAAAcAAJ", "iywXAAAAYAAJ", "j0oYi3O_tvgC", "j5UgAAAAMAAJ", "j6auAAAAIAAJ", "j_sOAAAAIAAJ", "jaUCAAAAYAAJ", "JBM9AAAAYAAJ", "Jch56YUSRiQC", "JDotAAAAYAAJ", "jfUMub-wbrYC", "Jho_AAAAYAAJ", "JlEMAAAAYAAJ", "jq0TAAAAYAAJ", "JqYGAAAAQAAJ", "jR8-AAAAYAAJ", "JxI9AAAAYAAJ", "K1FbAAAAMAAJ", "k6g-AAAAYAAJ", "kDcDAAAAQAAJ", "kgd_kVh9-BgC", "KhMYAAAAYAAJ", "kJ5aAAAAMAAJ", "kLg8AAAAYAAJ", "KlsJAAAAQAAJ", "ko0NAAAAYAAJ", "kQ0mAAAAMAAJ", "KqtEAAAAYAAJ", "kRg_AAAAYAAJ", "KS9HAAAAYAAJ", "ksE6AAAAMAAJ", "kT8ZAAAAYAAJ", "Kt_TAAAAMAAJ", "kvAtAAAAYAAJ", "kvU_AAAAYAAJ", "KW0YAAAAYAAJ", "kWBAAAAAYAAJ", "kXUAAAAAYAAJ", "L_MEAAAAYAAJ", "La4aAAAAYAAJ", "lAYGAAAAQAAJ", "Lc0NAAAAQAAJ", "LcQXAAAAYAAJ", "LDhFAAAAYAAJ", "lDTuAAAAMAAJ", "lg4YAAAAYAAJ", "lgsXAAAAYAAJ", "ljIDAAAAYAAJ", "LnUTAAAAQAAJ", "losEAAAAYAAJ", "LtOmCdYVvh8C", "lwNbAAAAMAAJ", "lYkBhX6y39wC", "m54LAAAAYAAJ", "m9jVAAAAMAAJ", "M9oNAAAAYAAJ", "meQYAAAAYAAJ", "MH8EAAAAYAAJ", "Mjs1AAAAMAAJ", "Ml8Z1rQ74lIC", "mLs8AAAAYAAJ", "Mm8RAAAAYAAJ", "MQIwAAAAYAAJ", "mQVEAAAAYAAJ", "MRgXAAAAYAAJ", "mwswAAAAYAAJ", "MXQ6AAAAcAAJ", "mZ4TAAAAYAAJ", "mZURES_1HGcC", "N-sJAAAAIAAJ", "NBMCAAAAYAAJ", "neEIAAAAQAAJ", "Ni0dAAAAMAAJ", "Nk1OAAAAYAAJ", "NLoxfUPHoukC", "nPJaAAAAMAAJ", "NQ1AAAAAYAAJ", "OA8nAAAAMAAJ", "OAUnAAAAMAAJ", "OBlKAAAAYAAJ", "OBM3AAAAIAAJ", "OdUNAAAAYAAJ", "OEU_AAAAcAAJ", "OhstAAAAYAAJ", "OK8NAAAAQAAJ", "oLk8AAAAYAAJ", "oNEQAAAAYAAJ", "Oo83AAAAMAAJ", "OQ49AAAAYAAJ", "OrcnAAAAMAAJ", "oSFAAAAAYAAJ", "oUtOAAAAYAAJ", "p441AAAAMAAJ", "P6JGAAAAMAAJ", "p6o-AAAAYAAJ", "p9gDAAAAYAAJ", "p9gNAAAAYAAJ", "PA5YWOtJEq4C", "pGEvAAAAYAAJ", "PHI6AAAAcAAJ", "pJMrAAAAMAAJ", "pmAtAAAAMAAJ", "pn4EAAAAYAAJ", "PosEAAAAYAAJ", "PZP6WZKTl58C", "q7xEAAAAYAAJ", "q85EAAAAYAAJ", "Q8NEAAAAYAAJ", "q_08AAAAYAAJ", "QAHe1wTctRgC", "qaHRAAAAMAAJ", "qbV65PabTEYC", "QH4TAAAAQAAJ", "qHgKEqjdy-wC", "QKgVAAAAYAAJ", "qkZgAAAAMAAJ", "Ql0OAAAAQAAJ", "qL4qAAAAYAAJ", "QNpEAAAAYAAJ", "QPGBAAAAMAAJ", "qrwqAAAAYAAJ", "QSUZAAAAYAAJ", "QyQpAQAAIAAJ", "r-oJAAAAIAAJ", "R88TAAAAYAAJ", "RC8OAAAAYAAJ", "RDg1AAAAMAAJ", "RekoAAAAYAAJ", "rnEAAAAAYAAJ", "rog6AAAAMAAJ", "RqlEAAAAYAAJ", "Rrc-AAAAYAAJ", "rRwuAAAAYAAJ", "RUxQAAAAMAAJ", "RVQpAAAAYAAJ", "RwBbAAAAMAAJ", "Rx4DwJkT5l0C", "RxQ1AAAAMAAJ", "RYwEAAAAYAAJ", "s1gVAAAAYAAJ", "S1vRAAAAMAAJ", "s34EAAAAYAAJ", "S3JHAAAAYAAJ", "s6kLAAAAYAAJ", "sAvwDF6qvnIC", "SCVEAAAAYAAJ", "SdYQAAAAYAAJ", "SItpAAAAMAAJ", "SIYZAAAAYAAJ", "SmoVAAAAYAAJ", "sn8EAAAAYAAJ", "sOAQAAAAYAAJ", "sooVAAAAYAAJ", "sOPa9iabXr4C", "SYAEAAAAYAAJ", "SYIvAAAAMAAJ", "sZAZAAAAYAAJ", "T14ZAAAAYAAJ", "TAsOAAAAYAAJ", "tbCaAAAAIAAJ", "tBEqAAAAYAAJ", "tCgVAAAAYAAJ", "TFBOAAAAYAAJ", "tKf-ovCArycC", "tKoEAAAAYAAJ", "tlwpAAAAYAAJ", "TnMOAQAAIAAJ", "tQEwAAAAYAAJ", "trM8AAAAYAAJ", "troXAAAAIAAJ", "TucYAAAAYAAJ", "tyk6AAAAcAAJ", "U3gPAAAAQAAJ", "u4paAAAAMAAJ", "ua1ZAAAAMAAJ", "Uckq9uW7r7EC", "uK07AAAAcAAJ", "uNgDAAAAYAAJ", "utseAAAAMAAJ", "utvWAAAAMAAJ", "Uv8_AAAAYAAJ", "v1EHAAAAQAAJ", "V2EtAAAAMAAJ", "v2laAAAAMAAJ", "v6YWAAAAYAAJ", "V8k6AAAAMAAJ", "V9wqAQAAIAAJ", "vdAOAAAAIAAJ", "vjYIAAAAQAAJ", "vl4AAAAAYAAJ", "vPs6AAAAcAAJ", "vr0qAAAAYAAJ", "vT-JhEQSvx4C", "VwUXAAAAYAAJ", "W8ESAAAAYAAJ", "w9A98UIGNMAC", "wfIWAAAAYAAJ", "wKM6AAAAMAAJ", "wosDAAAAYAAJ", "wqU6AAAAMAAJ", "Wr1EAAAAYAAJ", "ws18cmj5ic0C", "wThMAAAAMAAJ", "wucgGgVliT0C", "WVseAAAAMAAJ", "wZAEAQAAIAAJ", "X3sbAQAAIAAJ", "x4oEAAAAYAAJ", "X4UtAAAAMAAJ", "XAICAAAAQAAJ", "xgnTteuZ694C", "xN45ZsUMgKEC", "XNgNAAAAYAAJ", "xO8WAAAAYAAJ", "xowEAAAAYAAJ", "Xqc6AAAAMAAJ", "XqsTAAAAYAAJ", "xSXEswj4D78C", "XV8XAAAAYAAJ", "Xw8WAAAAYAAJ", "XYRaAAAAMAAJ", "y40EAAAAYAAJ", "Y7sOAAAAIAAJ", "yas8AAAAYAAJ", "YDIDAAAAYAAJ", "YdjPAAAAMAAJ", "yGlKAAAAYAAJ", "YgMXAAAAYAAJ", "YiEEAAAAQAAJ", "yiQ3AAAAIAAJ", "yLESAAAAYAAJ", "yOQSvnydSzAC", "yrDRAAAAMAAJ", "YrMcAAAAMAAJ", "YuUyAAAAMAAJ", "YwYGAAAAQAAJ", "YXZbAAAAMAAJ", "YY4EAAAAYAAJ", "yY8GAAAAQAAJ", "YzbhAAAAMAAJ", "zEIqAAAAYAAJ", "ZF86AAAAcAAJ", "zgkwAAAAYAAJ", "ZMbWAAAAMAAJ", "zpwXAAAAYAAJ", "ZUzQAAAAMAAJ", "ZVZFAAAAYAAJ", "zX5BAAAAYAAJ", "ZZQpAAAAYAAJ", "-KtaAAAAMAAJ", "-MdHAAAAYAAJ", "4NpKAAAAMAAJ", "7wXy0iWQhmUC", "804IAQAAIAAJ", "85AqAAAAMAAJ", "adYISimWWB8C", "afgNAAAAYAAJ", "b5gXAAAAIAAJ", "bhEqAAAAYAAJ", "c_GqrxRZXO0C", "D2UJAAAAQAAJ", "GlQeAAAAYAAJ", "H5QYAAAAYAAJ", "hYsXAAAAIAAJ", "IkkZAAAAYAAJ", "k39vHp-5VeMC", "K3ERAAAAYAAJ", "K6U4AAAAYAAJ", "KKSeMHR3EFwC", "KYh-Oko3K8QC", "lAkOAAAAYAAJ", "ljEJAAAAIAAJ", "mNweaGcPNlQC", "mrc8AAAAYAAJ", "mSQpAQAAIAAJ", "N5H73sYXDxYC", "NmYJAAAAQAAJ", "oDQ_AAAAYAAJ", "OTcmIoJPZ8cC", "P2YJAAAAQAAJ", "P9AXAAAAIAAJ", "RMyA4SdL6e0C", "Ux0uD9EpS6AC", "v0kqtbR2RdAC", "Vm4iAAAAMAAJ", "VqgsAAAAIAAJ", "Y2AtAAAAMAAJ", "Y5tXt7aoLNoC", "yp4ZAAAAYAAJ", "Yvg3m1N3bWMC", "-GcEAQAAIAAJ", "dDUCAAAAQAAJ", "HR9AAAAAYAAJ", "-76GjNpR9VUC", "0tQjH8yzrdcC", "2KERPNCkMC8C", "4cAsr_eptg0C", "4yXOdjxolVAC", "5rF_31RVTnMC", "6P5RNn0NehsC", "9vZ64MLmVS8C", "_UNNPyZHBHoC", "cWQJJIgJNtUC", "eParwQ0YdrcC", "fs-cTvIegLgC", "g3x29UP5gnsC", "hKzjNMFba5gC", "IKSHVdYUzGEC", "injpY-EerZgC", "JHxxM6mOAAQC", "kOGSGjGmL0YC", "LBBhikJpLjwC", "lMQaeZb3_e4C", "RDTQs2y_h5QC", "RtuUTyHr-5wC", "RZll-GR0Oi4C", "TQ5rlfwgWyUC", "uf5x7GtHpjkC", "Wnc3V5m9kqgC", "Xqa9U42GP2cC", "yyaL8KoFHKIC", "-63xyvVTNwIC", "-A-wrak3BkAC", "-L2Z652rLYQC", "-MfC2j5hDFEC", "-vEXEPUJK4EC", "0ba36JZTUswC", "0dD9rHI5H5sC", "0HMvmNpuDf4C", "0iVqE9vAqloC", "0LUM-NINvEsC", "0NP8hnGNjAsC", "0Q6cMEkz8xkC", "0QmRFur9m7QC", "0Sb9rQ5Ewd4C", "0soTkTor_HMC", "1CCCWMqPtzEC", "1iaaMtRmIZMC", "1IjS2r3poyEC", "1s0fNs75eU0C", "1s_E7T5tdlEC", "2pxcG08a90UC", "2UyNR8wpDt8C", "2VqEXOH-b2YC", "2X59P60QHnYC", "2ZAptMWcCdwC", "3HDyoJBoLBQC", "3SB8yE4ndioC", "3zLSRa5lIyUC", "4_QEsBJLmy8C", "4GXEmkTTUpoC", "4In9TJ5L0VYC", "5_zAi06GKNwC", "5f1twMCxoqoC", "5gdqw3ax1KsC", "5L4An9lC3hwC", "5VhMcTIIoRoC", "5VMcW1f4fmMC", "6-EXBGEdjMIC", "61rslRcPoZ0C", "6c7jcmg3dEgC", "6pmBjSl35egC", "6S2GdoIPkKQC", "7EsxsEtV9sMC", "7VWZRVvoE0MC", "7Yhkld-Fr5wC", "7Ypg28yZ6aIC", "8aEwylFfsjIC", "8HDEs3wNLd8C", "8yG5UrYMQ-0C", "9AINECqE2lsC", "9b2VoLf4MzkC", "9jiJd8_5KnoC", "9L8MwyFsFvsC", "9mZvmEMwTKsC", "9ne3r2XzbzEC", "9nFwTXKoS6gC", "9P7h5rB2vQ0C", "9QCpUYKTwKwC", "9VYuMmcxSYcC", "_c95aA8dOLkC", "_Cfi6UiyNlkC", "_eohr5XMnBAC", "_mtzX3Gs9nUC", "_mur2PUOp8wC", "_rewTS4v-EsC", "_UKmhTR0ITkC", "_wKvp9btIvYC", "A9K5PSr_e4gC", "AfD1s_2f1FEC", "akHTeRj4JOUC", "AlGuOeb7pl0C", "axxlIDSbKg0C", "b6djRPYUZ8gC", "BBKEcM6M_BUC", "bJlyjzUWKCsC", "blQIWhUioFsC", "BNZ2-nzmQ_EC", "boA1HQSnefYC", "BQ5wbmtHFIcC", "bUba45txcJ8C", "Bulx3bJpc1QC", "BZopNYe5-qcC", "c2zhJMEYccQC", "C4Rqx1_fKLYC", "c8q-sGQ5GOEC", "C_bL0PRTQl4C", "cFhGyEREh4kC", "cJDfL_DR9GMC", "CkmPSW0uA38C", "cLec-hyjLJgC", "cMjSV6CDnOgC", "CpttRf7NQIkC", "cpW22SnQBXgC", "Crjx6NF9QAEC", "csc0gSSxSMIC", "cU-4O9xZmzMC", "CwYTKoE33jgC", "CxYXaAUJytUC", "D8UzeKZKKvgC", "d8WB2wJKKAgC", "DbuVW34eOEkC", "dELO9Pc3P50C", "DEussc1kYYYC", "DFzy1wgWL6IC", "dhr32lY_rt4C", "DNmjHtlFJUcC", "dyet0NcJMXEC", "DzlaPT_Bpz4C", "e2q53WFE7hEC", "e8aDEGSDCToC", "edFHvonqKX0C", "Ejp6LgTnSe4C", "eL6xymiJX04C", "em3obwwfGUAC", "ESr_AtJMl0AC", "eu-lSNjgkSIC", "eXgmkezrzYcC", "exPEZT-_rJUC", "f2D-5VU4K_0C", "fBazruOey4UC", "fCunxPYp_OAC", "fDjfkQYRwTcC", "fDzKNDKJPu0C", "Ffl0HCe_YV4C", "Fg5MjfVSQOkC", "fNl1sklg5RwC", "FOj7XJQuZGEC", "FPWSLAVs8jMC", "FS2DSJIHg9MC", "FVRqrE1V3fEC", "FZH5yr1VCfUC", "G4UH8cPE_VkC", "GCyjMr7CudIC", "GghRg6VmYPMC", "GifAXXyoO84C", "GIvkGVgSGokC", "gkaUu__vNDQC", "GoV9Aha9IhQC", "GVchqY1ZaB0C", "gxizgOuEebsC", "gZaqADTgdtcC", "h5ruQyEzfD0C", "h7283-AC8bQC", "H83nwxNyJMgC", "H_5zYEhiT3IC", "hE0FKGDTurYC", "HGnopNYgga4C", "HT7LP-hRhQ4C", "HwQD7Q7rhkwC", "hx4zw8cp__UC", "HxtpSewA1lAC", "I-RTiw0Z30MC", "ifc8QVdWijMC", "ifocmqVPHUwC", "IIgOBSIHmdsC", "IjJNEdgb7DwC", "IJOfUUtzn30C", "iRXHNkorlIUC", "itSPLM6udREC", "iUyrNlDbzsIC", "j1hzezxjN4QC", "J3gQzNyTyKIC", "JI6RrXDzH9UC", "JNgAP8k5KroC", "jNYDVy1Xt40C", "jOMGyirP81IC", "jPGAp_8TMZcC", "kaBCeLUbJtIC", "KAZvQcXJ0vEC", "KFWbc2tiav8C", "Kg-sqN8bu_IC", "KgSgVDI8c2UC", "Kq6EQGda_30C", "kqbwwzLe9_MC", "KRaNlo6MwskC", "KY7pygt5ImgC", "l4CEWzs7a88C", "lCMWQJPYQ8QC", "LdxfLieU0aEC", "LEXRtoAxEM8C", "lizAK72dCUMC", "lKq3n2S7I8kC", "LmCCGgBTqFAC", "lOREAqN6F48C", "LQUCLdA5sLQC", "LTNdsgWXzbQC", "lx7mQQ0mm0IC", "LxpcTkKOiJMC", "mDmcW9KR6r0C", "MF9KWcidqhcC", "Mh9n_9hsNmIC", "mJ7-gzmDRo8C", "MmJeXfkFNKwC", "mRX160l72-UC", "Mt9NFfWXW7wC", "mUEOJuwUAOkC", "mUYVmd01fuoC", "MwpER1ZbELcC", "MYII8Qi1-eoC", "N0GExYJKt0cC", "NHd1sxVg4XwC", "NPZYBrWZPVAC", "nRC9zn3nHIQC", "NWiG1MtLMioC", "Ny5I1aaSlSIC", "NzRpoHvMkS0C", "NzzLC__TwZkC", "o-W2-ayVm8IC", "of5TqT4nz4QC", "ofSWPafmlpAC", "OGU13cmmRUIC", "Ogzq_u_hOQQC", "OHqefo2QlCQC", "oiJW1KvR2MkC", "OKV8Nd7hKhkC", "On3XvILFah0C", "OP2Tp97s6AsC", "opqdY91BMrIC", "ORdZF5kVumIC", "oSXEwOdkpmAC", "p0dUyABx9SQC", "P7yZUMBcbxAC", "PbmmLSnghrEC", "Pc_nndglfn0C", "peudW5Nk940C", "poWks_q7X_oC", "PQh8kNVjYyQC", "PT96NDa3rOYC", "pV8oTgZ6B3AC", "Pyg-gr37IkwC", "Q1CEQ0AZh1kC", "q1JPyB4n7LgC", "Q2yO_wNMX74C", "Q5BuEKEe4pYC", "q6-Pgq6Bd0cC", "Q7Jk307w-XkC", "Q8g3Vx41ePwC", "qgJ4lh1zynwC", "QLSEY_GSuWIC", "QSzoTO6uw-sC", "QUNoPBsxf7AC", "R19P0tZxivIC", "rkRu9OJ6gWQC", "rMQkQxoUWXwC", "ROHwG0JvP-sC", "RoT8nuzZY6MC", "RqpYSuMLkacC", "rRQ-ln-SYnMC", "ryUDQKQHvRQC", "RZ_J2zSCsBMC", "s-IKDw_xNO4C", "S1aY04SCeCcC", "s63i21E9dr8C", "sAtrYgbkH5gC", "sbiC0dSqrY0C", "sbNgTt34a7AC", "SBT6pAV2oDAC", "sDh2VKlu28UC", "SEQr7Y2ESicC", "Si9Dgsb5BHAC", "SimBCSprSRUC", "sImIx4Fl_C0C", "SJe2yL_R6JQC", "SLwk6C7rVhgC", "SoxnKRQyj10C", "sQXNbuyxLb8C", "SUAwvChYnlwC", "Sv5OO0cJgSEC", "SW3Lmc_OJV4C", "sYzLfQ5In9AC", "SzOU6g8evBAC", "T0u3mLgB7Q8C", "T2Mp9EEd3ncC", "T53iIqrOcbIC", "t9XWY5VKJSkC", "tDi1X___kA8C", "tJtBDEjyGqwC", "tRHgqZAB8C0C", "U-fc5X0cUjwC", "U_XsG9AG6fsC", "UEqy0TZuT4IC", "uevG9aAp1IwC", "UFJC7ZobicUC", "UGHHAfRjnH0C", "Ugih6Tuam_sC", "ulWbH-4xtd8C", "URoDbjKxx3oC", "UUODSqSSrZcC", "uVr4HChPENYC", "vnFySPulSJcC", "VSGv9ygG1poC", "VWwH9SboEQcC", "VWyI9EAqpYsC", "vX0W3_MvZbMC", "W2JbNJSOA6oC", "W6AjlOPmznUC", "w8soxuejcaEC", "wFlu01q-wC0C", "whdtOuA58e0C", "wIEr8jXYBt8C", "WIXV1dms-8MC", "wk0YzGyyXzwC", "WpCOFC9f6H0C", "WsjanO7xW58C", "WULCfFrGFcwC", "WUuBNF1eSqwC", "WUyzf2cJzu8C", "wzPlQGKox1EC", "xc2N4ZOxtCYC", "xIcCXbnaKtgC", "xIp209jwYQ0C", "XRkDaOf0-uIC", "xsv8s0uId1oC", "xu-4HeilOhAC", "xuRUA92_Dc4C", "xxBV-d20EWQC", "y11kvNfIDh4C", "Y7du4IGkNagC", "YAC7D2qEu4kC", "YAv9Gv9ZIbcC", "ybOLU8HOjA4C", "yKKMZ0YNLR4C", "YkVmgI7YvxkC", "Yrehcfj2IVsC", "Yso319xUOF8C", "YSVeIm0jLy8C", "yUq1AXoC88kC", "yv5tR54Qs6sC", "z_7igwZUWX0C", "ZCAOHdptArYC", "ZDmAWWNzsZEC", "zejLZgD7VDsC", "ZHwey8h5Kj4C", "zmq2Wj1c8HEC", "ZOB2ex9u1tMC", "Zp_b7CdQnzwC", "ZrnT-eIoVp4C", "Zw9g-dT8eoMC", "Zwrx6vQxbJsC", "zzlNJFc4vngC", "2AcIZCyQSJ4C", "2paepcVm5OQC", "4YveGexFFDMC", "8jWTiB4UdQAC", "_uxrn_B6nQIC", "A8VCSfVYPXUC", "AikWxorjwGQC", "BtmfGBNcYEkC", "dVcZCGfVIe4C", "h2xxgNZCriwC", "haumLq0jxWcC", "HlzdO2mJQCUC", "il-v_WiwlWAC", "JdIRcVfYnz4C", "k6zNhshVrcoC", "KBNBgBEerZAC", "Obp2ZR6DlakC", "OFcR4TvqVoYC", "Pbau0vKNAbkC", "Q44VAAAAYAAJ", "Qe79lVUM-_QC", "qGYlK0eIz1wC", "rM7WpdtOBVUC", "rvCzitUx8T0C", "SxWznUkU1Q8C", "U8zhW9KiI8kC", "Yfn_BXJSu3QC", "1OHRziUwLsEC", "5-vJJ05fpH4C", "8Fy9NHweW9QC", "8RDs6-P8UPAC", "AmESXDfiId4C", "CUMCimMYu_oC", "D2YXySdvGBUC", "dDue614KRskC", "Fl2TlTNtPQQC", "LSup9PQoUyQC", "M04TpCjQiDwC", "QJqyBQlzZh0C", "QlLMwIkHVu8C", "QMpe1tnNw_MC", "ubodMGnHnx0C", "wFVpT3msHPQC", "xNeAB0U42wIC", "Y-CAUPszuWkC", "zagXen2NMCQC", "aOc0AAAAMAAJ", "AZ5J6B1-4BoC", "i1aG-J07IQoC", "jIoVAAAAYAAJ", "kdEWAAAAYAAJ", "MJbBqn3XWqAC", "pDsVAAAAYAAJ", "TF8XAAAAYAAJ", "tI9POJ_lt0cC", "vmTcK2ujm_IC", "ys_e1Jaxh4UC", "zF6v7bX__SQC", "ZT1ISWyvOIsC", "--ibAR9NbugC", "-1Y9ym5upKoC", "-3NrCV6J2KsC", "-4Pgj7M8hXgC", "-4SddBE1Jf0C", "-4WePVJ1wIYC", "-5fImMZMqNIC", "-5psJnxMC-AC", "-6UMvdimc98C", "-9aHZEHwiFkC", "-_9N_G37WtMC", "-_w_YYplL7YC", "-a9KHxkBTRYC", "-aRbCZD5meUC", "-ceFU75KyYQC", "-cGu6MzXGdMC", "-cjQ_VFIKFYC", "-dzQjAj3Qo8C", "-egio-BOBmwC", "-h6g9YQtqOEC", "-HYHXdQ3r20C", "-JK7pvrqVkIC", "-jn5U4kMP70C", "-k8vEgAN9jQC", "-LM59cdVOoIC", "-mNgBjHm6J8C", "-oiqw5U0jtwC", "-ooprFiVHV8C", "-Pc-cly_MM8C", "-pL56OcVubgC", "-PS1vVwZlsgC", "-pwMzSoZXfIC", "-qTi684jOfMC", "-RHh4GUmTbkC", "-rqyelbWrv8C", "-ru4OLlK_mYC", "-rWvh21kIiEC", "-S9N1h_RS-IC", "-SJ34Bo7JkMC", "-UcT6EIFG6wC", "-XcTWNLWmfoC", "-XGKFJq4eccC", "-xY35wmSePwC", "-xZfsQaaEfkC", "-yojHGlT30QC", "-zNdL180tAUC", "-ZSnoryMMEcC", "01FH6rqhAdoC", "02EylVe0DFgC", "05S8Ghpb2lYC", "06VR1JzzLNsC", "09eSEcXZfMgC", "0AtcI8aX9oUC", "0bMi22WDcvoC", "0C9tmV5ZkpoC", "0CbXmT94JagC", "0cOisn_j7mYC", "0COycjY-X18C", "0EfBgf9yr9IC", "0esmlyerDSkC", "0fbzCqQxbAMC", "0g97pJMu5_0C", "0hE74zyWyZ4C", "0HGaPH7KHH0C", "0hggJhQQQboC", "0IISbOC1hL4C", "0j-GAuXtcJ8C", "0J_dwCmQThgC", "0Je6or83PLIC", "0JEHHEq8VXoC", "0jmSmmjNosQC", "0KkogWPA6yEC", "0L_SH1ZcyDsC", "0ldowI6VgeMC", "0ljZSb-vhn8C", "0MfBUbPXnhUC", "0nAX4b41wigC", "0nBkuP48QjAC", "0NDxIWsNL4EC", "0npm-wVKye4C", "0NsMRapT6wYC", "0NSUmao2y_oC", "0o18v9h3pzkC", "0oaXBqUgLyQC", "0p0C7Y8lkH8C", "0pFGZM1Rpu4C", "0QEvzycAuzQC", "0rfvLAfHgf8C", "0RifYwKgPSkC", "0S4QxobZ-zkC", "0SCGVmOUh1kC", "0SP5CQnZCqcC", "0tyYN4G2UdYC", "0ulkXLmBB6MC", "0VV2a9fqsogC", "0WhvTFmRDCQC", "0WwkVUVl1wcC", "0x02wzd0vSEC", "0xG8XcpSsM4C", "0YNh9MEwvjMC", "0zKAg9_ZOs0C", "14j1SFs8W2YC", "160nucimkPcC", "18OA-2EH7i0C", "18TiYN9V_NwC", "19CaOeVNCEMC", "1A0Ek7Lh4x8C", "1A6owBxgNWEC", "1AudF25g9gUC", "1bFTj5SdZj4C", "1c7qn8yW7Y0C", "1CSFPgFIjQQC", "1cVjTTew6YcC", "1d7VM0OYgxYC", "1D9VuhtsX3sC", "1Dvix3Vp6IwC", "1Dw9122O0fcC", "1EnnWsMI7AAC", "1FLA-TN8Z8UC", "1GD9EJuZ-lAC", "1gDElomlm3kC", "1GKdgtGDMaUC", "1GYH63-fARUC", "1hssUnKAd0oC", "1iEHPtB7z0YC", "1ihWzPEfnHwC", "1j_bjwvCNy8C", "1jHpt9hdreoC", "1K9iHdLz0BQC", "1Kg9CvvTbWwC", "1l_AG7QjxbQC", "1LbmPEiFrd0C", "1LfvKSPY7p8C", "1MfnAhBwnLQC", "1MP0aRSQfpkC", "1nryStNrSIIC", "1OTbzCGIT2YC", "1q7teTeLoowC", "1qmVEYZVpqMC", "1QvQvXQurCYC", "1qwIfOyNkokC", "1ros72xtlOkC", "1rPknQQBGtUC", "1RrNMm-5zeIC", "1rVOwNDT6q8C", "1S_x40iLuXkC", "1SA4DTXdz-oC", "1SLjrKYIc58C", "1t_4SP8nLEcC", "1tfvtsCwTIsC", "1UMToaDBpX8C", "1v5o2uw0GJAC", "1vbW_2dDc9YC", "1VTpqPB699wC", "1wYMuHxDK8oC", "1WYZ51Ljh1wC", "1XQpFu7FGAQC", "1xwxFTU2jXYC", "1zFrYtQm0QwC", "1ZLRGbvpEWIC", "1zmhHT7lIc0C", "2-FJDJ_nAFwC", "20NWSX5PD0kC", "20v7lhXAkQcC", "219sHUkWF3oC", "24f2fyhIP-MC", "24qMnDsXwsgC", "24YDkYK3aqYC", "2553gQ8wUjkC", "26h4gMPmPtcC", "28llA7U-z78C", "29eHuTCVt5IC", "29mgL3HjD6MC", "2aLasS4OXXUC", "2Bt2rkbCArcC", "2Bt3uIUm59wC", "2BV5E85l8gwC", "2cGPtTQ_eJMC", "2dBA9kEx47MC", "2dqayoAkHiYC", "2Dus5Y3WuXMC", "2eAieKhtAgYC", "2eKRXgXfzDcC", "2fLp5OLd-xoC", "2fqYeA2vysoC", "2fzpu5w7uOIC", "2gB7w9XlNJAC", "2goK4HJO2VkC", "2h3jwRbgh80C", "2HS02CSh4nYC", "2IG1mdeOEQ0C", "2IlrLUp90BQC", "2iWvaQyc9WMC", "2Ix6kR6iN-UC", "2jJemY_31AYC", "2LXIPoESG9kC", "2LzRkWABC6sC", "2MDgpHemzl8C", "2MeFvILg4jYC", "2mVQBbt2IhoC", "2ndvJm_ZheMC", "2oNiyXm2EjoC", "2p1MDAUcSu0C", "2pfB84aGUnMC", "2Q5CVMfRwZkC", "2QduA19d_X8C", "2RZZkv6xN1sC", "2swMQcqFcRoC", "2TZB0WV2ZcIC", "2upIJbQvmVsC", "2USxB4t3L9IC", "2v6K1Ny71QEC", "2vE-LvK0CuUC", "2vPISwlI86MC", "2Vtz2U0YwfYC", "2w21xW6Vde4C", "2zCQwpUiBQ4C", "2ZlyuvWbEzgC", "2ZrrIjNxnzYC", "3-miZHcdkrsC", "32WbDlmSvpsC", "34TzVbxCItMC", "36j09FX4Ho0C", "386tCTzeb28C", "38KxG4A8M6oC", "39-p0VTOdc8C", "3_374h5dBk8C", "3_9fQ3P2AvIC", "3_PuMHrMo2EC", "3aIhHQYywI4C", "3ArOAow91GoC", "3c3y-7X-64sC", "3D8OYIZRwsAC", "3egTJ6Z7D4wC", "3F24Bn6VhuUC", "3Fp_29EN7KcC", "3fqYGB4mxLgC", "3fxJth8ZwqgC", "3guiSGdgTVgC", "3h_aBCo6i7AC", "3HiqvIUWgf4C", "3hnQHPbFJJwC", "3hONWeZgkNIC", "3jK9ZlXeYdAC", "3jN22xIA_bQC", "3kNEq6fWHtkC", "3lEMxqeDI5MC", "3MIZKq1ranYC", "3nJMjtyGp1YC", "3nM1F7y2P4sC", "3nsjbUfUGVcC", "3phhwh6iKH0C", "3q2Eq8zgmgEC", "3QyrAf9ZG9cC", "3r-vREFcj7cC", "3rZw-_EPVf4C", "3uaYUrb3Nh0C", "3vstCdOrqbUC", "3WOUyq5v1vMC", "3xklog5kVGMC", "3yBfin-sKnAC", "3Yik-OVE_HEC", "3YlSMGY1TdsC", "3ZbIPm4dIg0C", "4-bTU49pdzYC", "42D8PCCBJzkC", "42Wb1DeDZjcC", "430eDScz92cC", "43NxnhZ6FsoC", "43Od3MQLYlgC", "44r9DSS8KLkC", "46ymyCa1wxUC", "471OUKKACq8C", "47nrSBRxGCIC", "486z9lE-jdsC", "4_AgRbcIr6QC", "4_iJAoLSq3cC", "4_z4WYiQkWIC", "4Akl8rzi8bYC", "4aNoFpNfYeMC", "4ASrUa2wyaUC", "4AUbNnnOzSAC", "4aUsKOTquxsC", "4bxhMCnmH9AC", "4dZ2XSr8Q2cC", "4E2lRue5TDEC", "4EKH5xb_9noC", "4elkHwVS0eUC", "4fiy0MYLs7YC", "4g13OnwNmGkC", "4GHIciD_CuAC", "4GpPGl-79HgC", "4gTg6RtCcwQC", "4GTKnxS0B-YC", "4H5adAo97PYC", "4hAc96cz3GUC", "4hTRWStFhVgC", "4I6Xt87fcIEC", "4jqKPqwvtuYC", "4JqxfgmYR5cC", "4NoL4waMF5MC", "4nzKiXyBbpwC", "4Ob94oaPjLAC", "4OTWxs3Xde4C", "4Pc4HWtsNx0C", "4PCa-OIL34QC", "4PDdk1K_AWYC", "4pmUjowqAzoC", "4Q5KuGoCDnYC", "4qtSF3BUbjAC", "4R5XBB5OKMYC", "4ReQ21nFIugC", "4ru6F85wGK4C", "4srHsnlrlAwC", "4ur4EOhMKxgC", "4uwZ_1DB8l4C", "4UyjzqBHRjMC", "4Vo0HxFivFoC", "4Wzg6wFJ5xwC", "4xqVZn47PIEC", "4Yog2csUCFwC", "4YqLWN2wjyMC", "4zd2rtmcqT0C", "51hqhyw5yLoC", "527fvY25QWIC", "52NGYwngkEAC", "535UHUWJUckC", "54hwWFwzvioC", "56R_N48VhnkC", "57wpL-kZkMIC", "58mx6oVGhR4C", "5AO87IbZ9CMC", "5Aq2JES6y60C", "5AWb-FEssXMC", "5BcjJrvW_k4C", "5bjgMS_VZP0C", "5c_gqEyozHwC", "5cMpxa9oLMAC", "5d6sV9NBYssC", "5dGBCJpdiMcC", "5DtSTKa7bO4C", "5DTSzxqYJOYC", "5FwFRu-KpoIC", "5FX4p9_1WdcC", "5g3YDlPvbeMC", "5GppqmU13pIC", "5H5Xwb0TuBoC", "5HtUn_dUmSYC", "5InIv4DbrwYC", "5jgs0k-XgZkC", "5jmer_whYZYC", "5jUzOCHaYAcC", "5k1D1TO3iQEC", "5KD4r_CYSjoC", "5kKktfcO7MIC", "5KLXsi4Hh78C", "5l4LUWI4__AC", "5LlddZgi6iYC", "5M_3ELtQQIAC", "5madOAUfKZUC", "5mBLFoDjM4UC", "5MLnr1BvaIEC", "5NBEubMrYCMC", "5oqluDvU9KoC", "5pFr6qrQb-IC", "5Q8HJIFhYG4C", "5Qo7FyPk7NMC", "5rapCfxxAuwC", "5rPbbFDSf5UC", "5rpdrfA2T9YC", "5s4263Q-xGgC", "5sBfwX6MqLAC", "5ScMu8WQjdkC", "5SvMghMF9MMC", "5Tf1QlnRbSIC", "5trx1JKxflwC", "5vcRmfvu3IgC", "5XFBBCvU6GoC", "5ZE_KUbOduYC", "5ZmNcrZuAtQC", "5ZVQYNczX8cC", "60k0Q9tpmKYC", "60RXI4Ql0isC", "60Z7Nmd05FYC", "61XoxwU8-7kC", "62498N4bQBIC", "62lgnny7vBcC", "636vJjnZIIEC", "65oYmARUPfsC", "65r1hSAq-dQC", "65X8cs_dD2kC", "665bZ8pwh-QC", "66ObtMtso50C", "6_bKL2anJpIC", "6AQh8rnlh3kC", "6aWcWDC3TLIC", "6B1KbSMzyD0C", "6bkgqiot7Q0C", "6cilOe8HrQEC", "6d_CXeCtmiEC", "6DHvMpwEzMIC", "6eEa5vcPW04C", "6fsDrED0iX8C", "6guLi7s0cpQC", "6H7ulUGEEooC", "6h_rIembAowC", "6HxQEzZcULEC", "6I6DaTsb7o4C", "6I_XgRJaBL0C", "6ik1kifDF_oC", "6iLhjabWnl8C", "6jhV6vRcbnEC", "6L4oue__6GgC", "6MazKMAhAPYC", "6mZJ3084ouAC", "6nGNXGARG1IC", "6NUSbK-8bpQC", "6omp1WoHuxMC", "6p4usBy65FAC", "6P_kU72NBJUC", "6PMJl92rdnsC", "6PZjdLGhui4C", "6qLYEzQdEQ4C", "6QOxw11Ay7sC", "6SB17J_nFI4C", "6SbuTgPmLLcC", "6SUMel5m5Z4C", "6TZ357AOYYkC", "6UmIXBfhCGAC", "6VdyB4rKOicC", "6VXkHAfQ3wIC", "6wFHth05xkoC", "6wRUX7MkwoMC", "6wS_ijD6DSgC", "6Xg_4XutcF8C", "6yJgat3DGpQC", "6yoK7Vc4It0C", "6ZnrAf_6qnsC", "71BIq6WlZHIC", "74fnsRmeeZcC", "74IxULN0gMIC", "75lu6O9COfkC", "75MFGEDPaEkC", "75VcWvFHayoC", "75XbPC-KNrYC", "78FYunWVxRMC", "7_kOF_M1-KUC", "7AFwtCfB7acC", "7an9QXLFAjUC", "7AVkLNqAXNgC", "7bdvut8WP7cC", "7bTaHr0aRLQC", "7d1sPO13R1EC", "7eepHa_auJYC", "7ejh1RnNDt4C", "7G_PDrC4i44C", "7GIZt27ghV4C", "7GKlsIIKIFwC", "7glfIaLXXl0C", "7HBjQKtkJfEC", "7Hm_x32WxHIC", "7JleDMZzqAkC", "7K7btCVXqEcC", "7Ka1tCuCSe8C", "7kmTeOjHIqkC", "7KoHDheyeLwC", "7koU8I73-ZAC", "7l73MSV5egEC", "7lVwqywir4cC", "7nApdqEwVUgC", "7nVx9drTk10C", "7oROVAHE4a0C", "7OVLn9anvUUC", "7Pn5L3ughJkC", "7Q9Aa2V0lAIC", "7qDcC963BiUC", "7QthwQXdgrcC", "7spIVm2l22EC", "7T_pCvdDUaUC", "7tsLoy-EqqcC", "7ubpShS_NNoC", "7uKs4fKOotUC", "7vC8lb2LmXEC", "7WrCSCqMk5gC", "7wZDnZ_SiO4C", "7X8bKjnsHO8C", "7xLbhRJ16k0C", "7XoCr6MnKBwC", "7yNyE-KnjlQC", "7ZlBLYPr5QwC", "8-jO2cfz-VwC", "8159Iuor26YC", "81eLz91JljEC", "823-9jxPCpAC", "84uZ3ZHG6T8C", "85UFLsRW8roC", "8_9uh4yBAl4C", "8atLfmOFeuQC", "8bmry5hlWh4C", "8CugkWQbJysC", "8DOn30Qyw30C", "8ewCpaBQyUQC", "8fdJR9HWZqMC", "8fZ8-kK0hw4C", "8HDKuioUCpYC", "8i65CApWCnUC", "8JG5zJYz7CUC", "8jYwuP_CjhgC", "8Kf1No-4hQgC", "8L8KKh5wi5YC", "8Mj32gB7y3IC", "8mUAIXRsBLoC", "8nelbdOwdq4C", "8noJOaaVU6kC", "8O5x8sSAx4MC", "8oS85GWI8OoC", "8oWTPPpsUMQC", "8P4SGL5aoW4C", "8pODWye3Ob8C", "8POir4-AgKEC", "8pQROr5O0_0C", "8qg3Oetnx0AC", "8qHS392kglMC", "8qjgCKbYltcC", "8rtOsFjVFz0C", "8SBem707Yt4C", "8SkFHEBeEqkC", "8tUVMSsC9wAC", "8usCJVZY1vkC", "8uYCrSyHP5sC", "8v2CpAHixHcC", "8vUDE1eb62QC", "8W9Tfg8FKskC", "8yiDXnF7Ov4C", "8yW-cyScA3QC", "94JNerM50YQC", "959sKkDoLhoC", "95Kog5v4ZxkC", "96I7DN6USWQC", "98eI044RjlwC", "98neg1g3TVwC", "9aIS36Ls1BUC", "9AYE6k0JlNoC", "9BsQnk11wU4C", "9byEjVLRTo0C", "9cCm0OfLJNoC", "9Cgg_vy7564C", "9CHY2Gozh1MC", "9D17GGcyTSAC", "9DK7ks9IWXEC", "9dwxo6JrZucC", "9E-Nnf6Fwg4C", "9FcHJ2mMNDMC", "9gtbYzuaEEYC", "9GZxaRT8xxwC", "9HfzJ7pC5hIC", "9hMP5ZMu6bIC", "9HwlumbzHh8C", "9Ih79U3L6XkC", "9ins05KVIIUC", "9JL12VkSsCEC", "9jV2bzHyu9MC", "9kjJTZCFsTEC", "9LwpJ6vDsdMC", "9M7dSx9LZe4C", "9nzblUF0eAUC", "9OMcWS5K-JMC", "9onchuJ-bFkC", "9Ovgjh1n6j0C", "9qSiBeZ9g9YC", "9sVoO8hU54UC", "9ULQh89IINgC", "9Uqbhvte5XsC", "9Vd-omTdYlAC", "9vDpbW34qqIC", "9VGdzQAgkCYC", "9VjP5GOScxwC", "9Vq50oaOocgC", "9VujMtI10RwC", "9vXYz7yEG9YC", "9W_VB5TjxxoC", "9Wpi2Hlm4MwC", "9wQEaXEixGEC", "9xLVEPR-ax8C", "9xUzU2cj1dwC", "9y7YwwpBoaUC", "9YlO33BHSHYC", "9zAb6Y6pX0sC", "9ZzWRz9x8mwC", "_-9MFr6cPVoC", "_-bp1p3HgPgC", "_63ta-thTJMC", "_7GjfLUd1WwC", "_7RD2jwMU2wC", "_98d1xdtxC8C", "__3JqZOEp5EC", "__gCuLAZ8uMC", "_BACCuQFqRIC", "_bgzRnh4uvMC", "_CK8U_bzgKQC", "_eddVnC3paoC", "_EHHasGKCGsC", "_ExE6OQPiGgC", "_f9zqlrcyO8C", "_FCJWkq9KrQC", "_GnJbq2iFUkC", "_hPWVrQRMf4C", "_iAlLypvvfoC", "_ibuYRplNHQC", "_Jk8MqimEX8C", "_JpZrM94YR4C", "_ku7YLTev3kC", "_lRFOjkbwZQC", "_LTiSkrUhBEC", "_mle6G_iil0C", "_n7CFCn4Bp8C", "_n_epREv668C", "_nyan_kWIAgC", "_nz0jK0MJlkC", "_o7aIHckJyUC", "_OG54CMBjAIC", "_oL0dCJFmisC", "_P5W5ErBQRYC", "_pK_qTbfTboC", "_RWMbWAFgKkC", "_thyQHEuT4EC", "_UhVaWHDKOoC", "_Uwy3JDboDwC", "_VfWsBMSLi0C", "_VR8JnUErcsC", "_VUf45FZR7cC", "_WT-4kawqfwC", "_WZJrC81yFQC", "_Ybt_zNozBQC", "_zn3mGYYu-QC", "_ZVFWAQUossC", "A-xmIRhRqTwC", "a1s71u3ecbkC", "a1xVJU0TTUsC", "a2YtdM1kNOcC", "A37cr4HAPPUC", "a3BwzpHgqxEC", "a3CzoaCAFuUC", "A3KRKpQmDTQC", "a3vpnWCjI9gC", "a4EHi8i8vKcC", "A4FlatJCro4C", "A4KSlbYtIe0C", "A6TPi6fp-uoC", "a70HDMVS3goC", "A7fvvz9Puf8C", "A7ZC50U1oRAC", "a94RqsnuXKwC", "a99LnCcGJ5cC", "A9IxOrv-R4QC", "a9JI4DQz1EcC", "aA8SOiFWxZgC", "Aa_Y8uZAhBMC", "AAbqWAMDbIYC", "ABbCI7z4UwMC", "ABp6Tv-fI-sC", "AbpcegyuZXEC", "ACbAE5UBipkC", "aCZqlP1sQ1sC", "aDdiSKR9FM0C", "aDHKcmoCTPEC", "aDubQFDT-RkC", "aeJHQL1pcXQC", "AFBraBMN6_AC", "AfBzWL5bIIQC", "aFkVv3pStR4C", "aFSCzaM9udYC", "aGAEWDI3SR4C", "aGfLOwZpiVoC", "AGLf_DHdLnwC", "aHGkzwyTamYC", "ahrnGNSpsqwC", "AHVDtveqlpMC", "Aih1JWFo-V4C", "AIKDH1Cj2ywC", "ainFnR-j40oC", "AIOAx6dQvDsC", "aIWeYVc0oF8C", "AJDI7v4LQ8YC", "AjGP0FxZPjIC", "aJpvNKQuIhgC", "akCti9PoMtEC", "AkdV09wlYrEC", "akSN21Lmk08C", "AKVCLBIHI-MC", "aL0Hac3Vkt0C", "AlSJt1fr4gcC", "ALX9A1_RphsC", "aLyWOYcC3zAC", "AmG4eysFl-QC", "aMnfXh7vR5wC", "AmVYKzTrAwAC", "ANqfqIU-CcsC", "aOcP4_I5BY0C", "aoqB4n95pSoC", "AqvCtK1kMooC", "ar4-mvqsDpgC", "arsC3XaMc8AC", "aRXw5s8dIa0C", "ASADBUVAiDUC", "asfMR1SHK3MC", "aSlsTWM5vKkC", "aSVMepyMsgkC", "at_a1W2T-cMC", "aTHN_UCm-j4C", "AtJFLz50tKwC", "ATTwQVlUWq8C", "aUg2zQ9JpHQC", "aUp2tCXJXvAC", "AUpDiXOndHUC", "aUpXCkefjzYC", "aUSi3pnKFBoC", "Av3TOpuoAnYC", "AvNcbH1YJPsC", "Aw4AbukNCzwC", "AwB4KfFK8sYC", "AWBwHDU24agC", "AWT5lQojEAcC", "AX9nvlKGHk8C", "AyNAatS5qqwC", "Ays4piyTwq4C", "AzF2gSsVKwAC", "AzPA1HkjlngC", "b-jYDn0W4jgC", "B0wtpZfwHN0C", "B0wUhmZ-NTYC", "b1a83Kk4DesC", "B1BFDofS5SoC", "B3JKLQKkStwC", "b3lBRbqekB0C", "b4v3Y26PCXEC", "B5wmGGlP1EIC", "B6JtLrtLaCIC", "B6R4wOfCIp0C", "b70POfydeDAC", "b7t1qbZ_QFcC", "B8d9iJ8apgkC", "B8I5SP69e4kC", "b9zjAJfAFa8C", "B_nl_2GbkJ4C", "ba_b6tQkhv4C", "bAnMckqrfeoC", "BAoRdCd8TmUC", "bBefvXbMFBYC", "BbFxn48V63YC", "bbumz_zoKV4C", "bBVDgM-P9FoC", "bcefaXa6Q1kC", "BCfA2O2fTwoC", "BcFbVTfg_W0C", "Bcl8jLxcXboC", "BdeTbmRuc00C", "bdhRK0tS48AC", "BDt96S0N65AC", "bE0GRAGGUrMC", "beFcfAQa99kC", "bEHuIhK7J7MC", "bf2HhCbOAHIC", "bfaha7FaYhwC", "bFEOaD-mxC8C", "bgd-Xz5ZT38C", "bGFplIW399wC", "bghSgDwrzToC", "bgnHHqPg6R8C", "BgyurV3ICEMC", "bH3B2P9XcRQC", "bh6QDsR5tpUC", "BhWn8Iz8LR0C", "bIdjWgGc_2IC", "bIfMKp_mfesC", "biT8dZq4PuYC", "BjOJBR54jkIC", "bjPId1bPwo0C", "BjT9KvXEfywC", "BK-LtH8d0esC", "BKIY52Z8pgMC", "BKRO6PnCH88C", "bKVCtH4AjwgC", "bL4TmnauSkAC", "bl8trXhzTS0C", "BLACCNPoWdcC", "BLkGyV8RhaYC", "blLlgCHPB0sC", "bm3VNPlOTQoC", "Bnfbypa3BswC", "BNg8tdL2IdQC", "bNO2fqChNnQC", "BnsPcZW4G7YC", "BNXcn77NIhgC", "BOrep3yRZ_QC", "bOU08nfl1IoC", "Bpe0K_52NisC", "bPIcDjVeFGsC", "BpSGbZ1FlMsC", "bPT9BEcB9yMC", "bqjywa-XgVUC", "bqk8lFZbwuMC", "Bqm1_Xe9ry0C", "bQs3aed0XpAC", "bQTvg2fenkYC", "BR_zWeWMyvkC", "bRelf6_a_vgC", "bRHIrE_15IQC", "brHZvvgElL4C", "BrztZcFdZiAC", "BSTNdiLXE24C", "bt7t6ns2KKUC", "BtDz3DX-wrAC", "Bteluw-7IuEC", "btiYGZoxIqgC", "Buh064bRpcIC", "buhJIDwSfvAC", "BUJFpYcaUnQC", "BvIi0x57o1IC", "BvOjlSpjHlIC", "BvR5XGRoUp0C", "bw9TzuCg-XYC", "bWam1RUmr3oC", "bWjUf040CJ0C", "BXjz9OQ9244C", "BXrHqqUYu0QC", "BXUFSlTjS0MC", "bXWadNV-6u8C", "bXwlMj4U7DMC", "BXxL19gkswcC", "By4_hzAoz2kC", "ByGCiNwH134C", "bYP72LvvVwkC", "bYVEgXbiunkC", "BYWO2bedmg8C", "bzmmbxAm71wC", "BzNdfTTR05sC", "BZzefDlot_UC", "c-3traD-fqwC", "c-uDXSRWKtYC", "c-umCCjv3SYC", "c11HBwElG-4C", "c2b6jQ8g3sAC", "c35YVifvGekC", "C39nU_byNRcC", "C3jKDBqihB8C", "c4HfcwdQOx4C", "c4Uo4t786NsC", "c4YgBy8UPcsC", "C5WIK1vtjtMC", "c6pIcEenHasC", "C9HN6kAsf7wC", "c9P0pzEobeIC", "c9pTsKXcDawC", "c9qVVZnC7zUC", "c9xHWQFTL6oC", "c_A_wfFe-CoC", "C_E4lDNIR1QC", "c_lN_q15ZiEC", "CabxBb9clOIC", "caEQOhtS3hAC", "CaERQZBhilYC", "CaP6lLd0dwAC", "CAvUH3oP2eoC", "CB0dA-ZFWAcC", "cb2xefiR0D0C", "Cb6qWgecAW4C", "cBnMKPwfW10C", "CBTrm7jkzpsC", "CBvLF7bfQD4C", "ccjm9l0QB7gC", "cCQTcs4l1JsC", "cCuFrbe6vmkC", "cd4Z3HcEO0QC", "Cd5-_TCGx4YC", "CDkv3NDfwVoC", "Cds_cZtYcScC", "ceHgmfCMoasC", "ceKTSaO_9X8C", "CEnAWRgbntsC", "CfdJBs11wvsC", "cfHQCqaLYN0C", "CfnHttupr28C", "CfNq5z1tAEEC", "CFp8EVv7if8C", "CFPrzcHtzSsC", "CFTr0KgoL8EC", "cGJPWgPMCNQC", "cgMCSrDxKGAC", "ch_1YF1-KBcC", "cHAkoOH2DMUC", "chi2uKo8ZxMC", "cHoIAP6CTkoC", "cIcKnR6xSrEC", "cIFiNRH3oWsC", "cIjjp65FSXYC", "cIyvVjQb_pcC", "CJ-0e0aOVWsC", "cj8od4sef7wC", "CjCwAFaDRHwC", "cJif5Dq9CyQC", "cL7u1-hoh_sC", "cldKKwvF284C", "ClLma1ICDlMC", "ClNVt6WTbb8C", "ClWhWKmi0TUC", "Clyj7FsJ-o4C", "cM1bbraEf-wC", "cM_nIqO2C6cC", "CmFIQ7IxOSwC", "CMLtWJG2rLEC", "CmT_hQsgbmUC", "CmUAxTtJ9zkC", "CN2J7TYQbX0C", "Cnok6Lc7iSkC", "cNRpm1CDonkC", "Cntm93auIewC", "cOEJR5fIGEYC", "cOgcKVnLYfkC", "CorzOY37E0wC", "cOsjF0LQ4WwC", "COT8nZsi6zYC", "Cpn5r4pZl-oC", "Cpo_2d7tixUC", "CQ0EbEkT5R0C", "CQN5a45npM0C", "cQqB_hiupPgC", "cQUnrIAaETIC", "cqYYnh2MVr0C", "cr7dpSLxZy0C", "cRCPp2i9OvsC", "CrIcAjAOsE8C", "cRlHpXV8AbIC", "CRnR87UQbMwC", "cS2P6PlrSgwC", "csMB1KOk-gcC", "CsULPe9EgpkC", "CsUSjmbYMTYC", "cTcDy6hSxakC", "ctgEoKKPpZoC", "cTIDvEUe5M8C", "ctjsg8adGaYC", "CtuGKiTX0W4C", "cTz3Jefso-EC", "cUDLrfCvQiAC", "CUIyI8S26BQC", "CuLIcpvh0E4C", "CUPytpxAQy8C", "Cvgt-6bCw1sC", "Cvm8DVwnPYgC", "cVOLHzwR4oAC", "cVPwYwrr6iIC", "CvWN_1APPXEC", "cw9wjb7egFYC", "cx01PMJfsv8C", "cX18oqSNkjwC", "Cx2vq7VlIXkC", "CxkAwssQTXcC", "CxQtw38sy1oC", "CZ69KrLXC30C", "cz6HU8c_08AC", "CZfPnHEerUEC", "cZNeFYLdxRUC", "D-bqdwkPGfMC", "D-sEvbguNukC", "d0iR5mS_zckC", "D1tkJQHg8g0C", "D1vnFannII4C", "D1ydYIWVoGEC", "d3bH0MfA-s8C", "d3bVUgvRfuUC", "d6pegMjbh_MC", "D8c1-Fv7h4UC", "d9bEk7ikuf8C", "d9VWRpdQHa4C", "d_3DSXAfBjgC", "d_Kua_fO8WoC", "d_LpdqXksIEC", "Da7QsXAp2KAC", "Da86QO7OFmMC", "dAeNUVbKYZMC", "dB5Ze26QulcC", "dbhDwMRcf3gC", "DBKEpJmhfIQC", "DBmmIBF7QVUC", "DBQufQNi1NQC", "DbraAOMCglwC", "Dc_6-SREBYEC", "dcaoPhSdJwwC", "DcELPMMgF54C", "dCyscToVVJkC", "dD3IDjLA1PAC", "DD8rqgXH_IMC", "DDas282zyFoC", "degnTau2SCYC", "DejCbO1mvCYC", "DepEk9KiKHsC", "dFlv3zn_2-gC", "dftQW8wGYMAC", "dFWN0snaFrkC", "dG0I00OuLIYC", "dgJP6B7WqHsC", "DgLsKo7b80kC", "DGmPXx0nWwQC", "dH5YF-Taks0C", "dHLL9X8XCZkC", "dHojfMulawgC", "DhpA9dhtQZYC", "DhpKxQT8n74C", "DI5YIApq2vQC", "DiGNzXnAjigC", "djG2jb-B7wUC", "djQDeb2wd7EC", "Djr-9RvWNtgC", "DjSLzk3CX24C", "DK_DLjGY80IC", "Dk_moRw2Q7cC", "DKah0Hn3XwYC", "dKHiwNqBUdoC", "DKwK76kPQt8C", "dlpWT0J7s94C", "DmcHmv_3bRIC", "dmI4eW8qvOYC", "DMJ_O5RaymkC", "DmQBgx20PP8C", "Dn1cbtf1EGkC", "dN2h8uLDfHMC", "DN6kyW8Ca44C", "Dn8kGUQdQuoC", "DnCWgeoalKQC", "DNzYBE-otp0C", "DohJGXw-I2sC", "DoHq1DrnfzQC", "DOJxZvrWwI0C", "DOLD2wgkb3wC", "domPQ29OEacC", "dOTparP8u64C", "Dp9CZHPlkwcC", "DpAuk5SvwlsC", "dPijFCaOncoC", "dPT9-WijqI8C", "DQEm1m-yEGkC", "dQFBTKi4aYsC", "dqRhjQVSm7MC", "dQUzctUAMDYC", "dQWOY1QeuFsC", "DQwSI4mEcqEC", "DRzA4j9SvMEC", "DS1CXLcOFDUC", "dSAHJCmGqbsC", "dsMzPEBfpjgC", "Dt_XdDY-VbMC", "DtLgoas9kAwC", "DTTF3ufqLjkC", "DTWZLMGFFgkC", "dUgzGsEMhoUC", "DujYWG8TPMMC", "duUJEp4WbQ8C", "DUwMDknxu-kC", "DuWRmiB3QRMC", "dVBoRh77mwAC", "dvCpl1mBef0C", "dvPX1ljtXnwC", "dvQbGVVYfRsC", "dW3MS88NZR0C", "DwfmIaoLWLgC", "DWmtB9szhFsC", "DwWpvfGhDJ4C", "dWx8yejRSncC", "DX0zfCzuuxgC", "DX1JcMNgz7AC", "dXnlwi2M5ysC", "Dxo1Qm2SJPIC", "dy33QZD4XU0C", "DyF5zrlztJgC", "dyTox6KgOeAC", "dYZyzp-I9hQC", "dZ2wQGn69BkC", "dziWBc9bbesC", "dzTY5Nf-IvMC", "E0-t9ZaBm_kC", "e0KEphnVexsC", "e0rixLVIlVUC", "e0WEjH2EDmYC", "e1_oKxr5eJ4C", "e1MKMiwPJkcC", "E1nPKuOF5KUC", "E1UQ9VEX7qAC", "e31CwftjgdkC", "e3TV6jdCc64C", "E4Aj3o80jRUC", "e4qyRM4WA60C", "e5-b0sEOz-oC", "e58nW0zCKKUC", "e5_yHiOT4QMC", "E8-Tv_oreLMC", "E8l48-DZln0C", "e8vVyX2ikzsC", "e9hmN8prjWcC", "E_5TjwpQuSYC", "e_fNo1nVkhUC", "E_HCwwxMbfMC", "E_hncSqZ7goC", "E_KHeqwctTQC", "E_TZvz6qRqEC", "e_ZxZaahQt8C", "Ean4raPg4loC", "eB2ACRDcxlAC", "ECDSra1prI0C", "ecLQy_-7BiAC", "EcwSRllC_okC", "ECZBTmAEG5cC", "eE48-YnJfwkC", "EE6BmZJN4-gC", "EeD7Y5RBHgQC", "efF7PRNFoTQC", "effyPdL2NggC", "eFIZYpxKuFEC", "eFK1EFIPqI8C", "EFqxt01Nwg8C", "EFR46h9YDCoC", "EfTQANaCeXsC", "EfUlyxSlBYMC", "EFwE6RwAuoEC", "EgclZLFSTUkC", "eGHoO5tG_nsC", "Eh-xe5o-6K8C", "Ehb1MTESpuMC", "EhfdKJLrGLAC", "eHgwsL-vZiUC", "eHIMLGwiTvQC", "eHN7J-6aNOgC", "EHsRgwWtk14C", "EI9S88rMxDEC", "EIbxfCGfzgcC", "EjCncRsUgHgC", "eJkALfK8M_IC", "eK1N_aPZ0ogC", "Ek623DbKy4IC", "EkBtyXWfoxsC", "EKUyRL6x6uoC", "EkyTTvjNRZAC", "ELgd2EnTZbwC", "elNtT39MEXEC", "eLTIJ3AE5K8C", "eM1vHNOSSLgC", "eMK29sYgRkEC", "EMUiAgplnKMC", "ENbwTd9dVRgC", "enZcYyGQIKEC", "Eo0xcLkycIwC", "EoDh3KdviUMC", "eOGwcJ4NYncC", "EojH3awYyHMC", "EoZ6ZhT9lBwC", "Ep4qonrFOQEC", "EPBl0u9SVLEC", "Ept9BBfz2tUC", "ePz5Jw4M1G4C", "Eq5STLb0fO4C", "EQJgKCbP-v8C", "eqKPCxpqQOUC", "eQOtX07lJcsC", "EQpanEMpfYEC", "eRCRwf0SRR4C", "eRievpkUWQkC", "ERoAm13YF8IC", "eRuTokPwUa4C", "ErYz2d6gY6kC", "esRQjcWyrTwC", "etrlevyLof0C", "eukfBSKh8s4C", "EvkY9m79rlIC", "eVQPSr8nWekC", "evTo5YGZO0MC", "eW0Zrxp07HAC", "EW1Kkhb6n3AC", "Ewc2cyySU84C", "eWcNS4HPvpAC", "ewiGTwfA8ssC", "ewLMKATa0gwC", "eWwDEkWUxMgC", "ExGgBlCFbkkC", "exXk4Fm_pOoC", "Ey6BJlwygssC", "EyQosEtLlOMC", "EySzx3TuNdAC", "EZC1Ye-Oo5IC", "f-HQhhMFUkwC", "f-rkLLtY6H0C", "f-RuzV0i8TgC", "F-rwIWBVyYcC", "F-RY0fDsun0C", "F0aqlEBEWkwC", "F0mUte90ATUC", "F10tYokQD9kC", "F157RUqNSXYC", "F1IOWavdlooC", "f1iQwHzJeh8C", "f1UlXrOFgLgC", "f2hyf0QoB_0C", "F4hRy1F1M6QC", "F5_kVFwCazQC", "f5a5-Ib4hHcC", "f5tFDQMnLHwC", "F6aJtNcwyw8C", "F6gFtTTQktYC", "F6nx06oYabUC", "F6tJl6mVOmsC", "F75UStxhkkgC", "f7a5KxIcznAC", "F7CRxEsVDPgC", "F7IqEFlwXkkC", "F_4zWthNQjMC", "f_bTDVhQGgIC", "f_ViRN4litIC", "fapATeBaFuMC", "fB09Jo4niQUC", "fBCqF_bIaq0C", "fC0ZfSFwlGwC", "fCcP6lFS4l8C", "fco4osDhkKoC", "FCriMwwYPV4C", "fD56E-G_xtgC", "Fd8F9dBdcesC", "FdPFkAsDJVgC", "fE2quB852jcC", "Fe35NUMG7PoC", "feaP99EP7qMC", "FeVe--XHelEC", "ff30hEbK72AC", "FfAWQh9ybFYC", "ffdtbrNuaMQC", "FFSNOAzSRRoC", "FFV9NEUIewkC", "FgbDyllfOvYC", "FGkQODpSS8cC", "fGmk3NEFuO4C", "Fgo-tF4Ko90C", "fgxiezARYdQC", "fh2jW0S7w-cC", "fH7bDuYLQuwC", "FhpnSb-IuOQC", "FHWCqMcirnIC", "Fi8mroRSCSIC", "fIo_5qn2o9kC", "Fiolx9qMANMC", "fiOMox-7gTAC", "fIqGGfeRBuYC", "fj-ryrSBuxAC", "FK7ribUaJpIC", "FKb8wL3gUKIC", "fKXaYqo3bx8C", "flaI_VVftE0C", "FllyRnur8loC", "Flp9WXMHl7MC", "FLuHOd0yA7UC", "fmc0r2y-22YC", "FMLUGVui7ZMC", "fMULJZsTTWkC", "FNEcGO3CE3wC", "FNOtkFTYV4wC", "FNQd9jEmBfAC", "fNZUj6md9ZUC", "FoF7ChJwwxwC", "foFiHPRRc8YC", "fOSGJMirZ-QC", "FOzQLFvO-TYC", "fQ7UcdtVp9UC", "FqADDkunVNAC", "FQlgRiO4anwC", "fR4N__Pb408C", "FrLXpwIZ76IC", "frTY9Rp3TdYC", "FSjxitCb7zkC", "FSM7SCIiwjQC", "FspJxw0-ETUC", "fSs-Lnk-FdEC", "fsTBXJPVmzgC", "Fsua44ixWTUC", "Ft6qGWDysl8C", "FtjZ6hzP56wC", "fUol0UXx4rQC", "fuq94a8C0ioC", "fURd0Tspwt8C", "fv1P6kkUCJIC", "fvo2oenGUfYC", "FvpO3khvlX4C", "FVSNqmjpE64C", "fw3XxD0BHfgC", "FWLRXbPTC6oC", "Fwlt7N5UZwYC", "fwPtaCpO84UC", "fXKNHh6Fj-EC", "fxkWKWW29sgC", "fXT7sPDDjRMC", "FxWYa9-6KFgC", "FY1QFdG_hWMC", "fyDwxO_VuVEC", "fYlIEPXSi34C", "FYMVNMlz130C", "fYRbsK9_tIsC", "fZebM83rGrAC", "fZPcGedgSqwC", "fZr_tlFtVlMC", "FzxZ2YgfD_0C", "g-IoEnhfOYEC", "G-pnMUtTsuYC", "G0kMXkW6S64C", "g0r4WgTIhoEC", "G1i8tzrJ1nMC", "g1QHBOBzo9kC", "G24-ZSfNr34C", "g33mIXKIykIC", "G3bGAAhRcTIC", "G3lHg_uBcLYC", "G3W-hsO0Se8C", "g42RGQFvFKQC", "g4A4yTP-TZ4C", "g5-rg_wWoTUC", "G52EfFF4uQYC", "G5F1tbJcEcQC", "G62P2UNKancC", "G67WBcKiyfsC", "G6bPsjIoQRgC", "g71HD_LypocC", "G7Z4RdEAbB0C", "g8ugKhOSyuwC", "G9sZf7D24a8C", "G9WBMa1Rz_kC", "G_8DeR6vSREC", "g_dfEmUIjGMC", "g_JJG_kSCkMC", "g_K0HqWU538C", "g_Kp2jOkDj4C", "g_S1HnZ_DwQC", "gAasB1B_2RwC", "gAgA6Uoe8rEC", "gaP66nrOT6QC", "GaWtd5zJfB8C", "gBcCK8XX0HsC", "gBVThe2w7O4C", "GcfWbkEzwmgC", "Gcsz0c39QzgC", "gDkl_VliBRsC", "GDpsUbHGfxEC", "GdRDldOlrawC", "ge63yWT1Jh8C", "gEeKsYhnB3gC", "geGQYwp-tC8C", "GEYIRkKv3N0C", "gF3Orr5FW2MC", "GfagN_c7kHoC", "gfosqprkt84C", "Gfrd-On5iFwC", "GG2osAta-gIC", "GG7ihqiDfEgC", "GHbKVdz0US4C", "GHgWuuohd_0C", "GHocqremTkAC", "Gi29tN6MgswC", "Gi2nNkMLlB0C", "GiXy0_5y0iMC", "Gj_s6K3rGnAC", "gjHbpWCWObYC", "gjmRMSVmOM8C", "GK6aU0VUgXcC", "gLINZTfo4q0C", "GlmSvzw4yO8C", "GlsRJG0Wv44C", "Gm0rtSQhsqMC", "Gm6rlJaoUyUC", "GMELuWd6eowC", "gMgWtKBHly0C", "gmgxWRokQkYC", "gMNE7Egw-0oC", "gMV_uHkuuhQC", "gMyoix4eabsC", "gN1fWNxFOpkC", "gN7t338bmDwC", "gNBeDixTabkC", "gnshgsLyFckC", "GNsue2JEQigC", "GOf8H53N2S8C", "goiKKGuC4w8C", "gOlJgcpAuF4C", "GOPQn8x7CWQC", "gOreWZwKWrYC", "gow3DxwxgEcC", "gp7EquTzSBcC", "GPdMResNFOkC", "gPHjjrNWaQwC", "GphNKJvn7aMC", "gPKEXnUTF48C", "gptMDMPRG_kC", "GpvBc61vwqsC", "GQ77yT_qt0EC", "GQGJ3Ow1N-gC", "GRaZnzm6avoC", "GrHMph5SUrsC", "GSSNC1P4BlYC", "gtd3lAtcz28C", "GtEwY53Nx7wC", "GViLsAsZMeAC", "gvkh_emQHkgC", "gvSz7ipNnTMC", "GWgdn-U_kRcC", "gWhf3WFS-FsC", "GwJO1p7nsg0C", "gwSzTVp4K-YC", "gWuT5dW_-n8C", "GxC3w77TCYYC", "gXez_eYk59cC", "Gxi21X4yFckC", "GYNs63lQGUwC", "GYSxKPQ9db4C", "Gz5Jhh-BkO4C", "Gzjj9mSPAGEC", "h-H5Ss75T-MC", "h-v-y9SzGQMC", "H0LnK7ELmwwC", "H1E-EV19VREC", "h1xzw-srDvIC", "H28iGCH19IEC", "h2cV8_ebXhIC", "H2t1O8vkIJIC", "h2UR_DQnsG0C", "h3P1koY9OtkC", "h4g1ZN13EBQC", "H5h5PxnwNyEC", "H5JDad0NO3kC", "h6XG5Dg7dUUC", "h7A74b_8x8cC", "H8RcOH7aZnwC", "ha2jMwKX0DwC", "HaBHzd-VzYEC", "hAEHNznGeXoC", "haJh0MARCywC", "HaNL-mjos94C", "HAxIoUSLLMMC", "HbHaf10rZb4C", "hblx8fw5GoIC", "hbNOan-tY3wC", "hbz7X90tZtkC", "HD0CT7WqwWQC", "HDBdFBkFC6QC", "HDHAt-fviPkC", "hdoEpslpoi8C", "HdQZbAIXlycC", "HeAXLBJeUO4C", "hEIVV2REz_wC", "heMeM6Ca13oC", "hEqF8WFVYO4C", "HestSXO362YC", "hEZN_ll8vTEC", "Hf29RRC82H8C", "HF37vLFfYGgC", "hG2JWfNr0hQC", "hGeLsgsEhm4C", "hgscfLr5dCsC", "hgucJFj4adYC", "HgWWWv62BLMC", "hgXbebNQ918C", "hgZOV9vxvyQC", "HHJtGY5skf0C", "HhwifKDS9ZkC", "HIcfQr37mIMC", "Hiclc2KYaUcC", "hIJsvrXcswkC", "HIuRezqOUNwC", "hiY-wWTOdFwC", "HiYK_b6uu0oC", "HjDPRIC6QhwC", "HJexhW3C0TIC", "hJNp0GHQvPoC", "hK-_lL2c6roC", "hKCorSddfYIC", "HKfPdJDAyfEC", "HKphymCGhlsC", "hlbSrcGnhRIC", "HlhvoI2T_YYC", "Hm0FthKQuDAC", "Hm4b2XIZwMcC", "hMFecLAIM8QC", "HmFNOLfs-KoC", "hMv_9ZjMRrEC", "Hn_Vorrsv-oC", "hNpWUTs1QkQC", "hNvRVcLCgc8C", "HO60dGlf-lMC", "hoAYu1WxtrQC", "hoya5L_WctQC", "hpCQzNmvvHAC", "hPsfiopl08UC", "hq7DvqIwmbAC", "hqSCkysc7hIC", "hsenzAimpCgC", "HtUHrHlvcKYC", "HTy5GsUWgO0C", "hu2XWXmlZDUC", "huBRQ5Z6020C", "HUCFqFU-xBwC", "HUgP3InN37cC", "HUGsq_23hC8C", "hupeuMVYj2sC", "hUqzwC6RWRAC", "HurESoDQljcC", "hv4S5PPzggEC", "HV8NIZ-NbCIC", "hVupJKgpmzcC", "HW7zAmsuvQoC", "HwC8gF6F-7gC", "hwJQOwg-MGYC", "hXCi_DViuqwC", "hxf4h-HJU9AC", "HXUNz8hnnNwC", "HYShm6Q-lkEC", "HyyYMH-0I_sC", "Hz1jfmQ47tMC", "HZ3XCz-LrngC", "hzBJHOw9MmoC", "hZSi8EN4zgkC", "hZYGqOZbWcoC", "i-A1_UzfaYIC", "i03DqaR5kngC", "i0as8wwA51EC", "i10GqpzQvd8C", "i17KR1dhTTAC", "I1jxgTFq4JEC", "I1oOcpvsmOkC", "I1pE68kvpXcC", "I1RDqTYimL0C", "I2A0X4ZAVs8C", "I2jCJnMD96IC", "I2x_hrAV-toC", "I37XTdpG9voC", "i3mP7paNg68C", "i3vDCXkXRGkC", "I3YPskM9ygEC", "i4nmYgQDx1AC", "i4uuzh0r-9MC", "I57EF0rALpcC", "i5fKpFIR95IC", "i5GAf0Tit_MC", "i5MP574eUB0C", "I5OlMVqGBKAC", "i5sVopbSUigC", "i5xPLt4TBhUC", "i6-rsPcw7nwC", "I93wHcKkkxsC", "I9gXed3hj_0C", "I9p_m7oXQ00C", "i9RevNyPg20C", "I9yZKs30ChMC", "IA-C9T4ekAQC", "ia3RRTlLkXgC", "Ia3XMdZ2bOkC", "iahDFfxz65UC", "iaUAJo2Rjj0C", "IB0NsrW2KVMC", "IbHfDN-E0KoC", "ibM2xIvpQvIC", "iBpOzwAOfHYC", "IBPsQFc0TrMC", "iBS7a-HZVmUC", "IcdPGTpcQ6UC", "ice0iBehDTQC", "icraAr_CUacC", "Ict1i48rcaQC", "Icxfcg43NswC", "IcxFeiSD8xMC", "ICYTHtzte0UC", "ICZ1TFX9kiYC", "IdNz020y6RoC", "ieBUz8TwIYEC", "IeWxeVx7MFMC", "iEY-2kLVjkYC", "If2xFIsLAxoC", "IFGrnP1OGI0C", "IFM4VrHJlPoC", "ih89HAkmZ8YC", "ihDdAWPakwgC", "ihqYRudK3nYC", "iHS5AiZMJ-IC", "Ii4oNrOSvuoC", "iI9xFYwnTt0C", "iirHge-GkdkC", "IIVa4C8WZ1sC", "IivhUAX7nUoC", "IJBNvCsXfnIC", "IKAb-bSQ3bgC", "iKIFlxm-6eUC", "ikJfKaz0lEEC", "Iks2Zj6NFNYC", "ikv9cLfBsNMC", "iLiNY2ujuKoC", "iLmnzTUcYicC", "iLO-HYqgp8kC", "ilTEo-xrfXAC", "IM2rnd-Hw14C", "IMc94shnupsC", "ImDwjP5XNjMC", "iMsAfs6UJB4C", "imT9VsCi1d8C", "IMZYtRKxsdMC", "iN-VrQp4n8MC", "inbRbkubLJ8C", "inE-47w6bwcC", "inHnAqSCz2oC", "iOJYfBwzrnQC", "iolgETGRgScC", "ioPIqdVSRfkC", "IOrrnHK5lQsC", "ioyvuitdXHcC", "Ip8oWMRlSncC", "IpcT3uYlUFwC", "IPi-mn4-rrIC", "IPNXfV2-DhcC", "iPVjCpHtGSYC", "IpYQJCmoRmEC", "IQ7se2TyYboC", "iQCaKLhr6sIC", "Iqh1gPKVVisC", "iqjGZUxK5tkC", "IQJNU72KQykC", "IQK8z3xn7kUC", "IQy_4-ClC_oC", "IR-YmujBeaMC", "ir0g_PW5lAYC", "IsX5wxrcSRMC", "itdBdt8OvMwC", "ITHmTXzq1ooC", "itO3t_YeG60C", "itYPTUVhI_AC", "IU_8JDjxL34C", "iUHIE5ee52cC", "iUIe8LVs11sC", "IUNxvi0kbd8C", "Iv5Lg8P5l4oC", "iVRA5mPDyRcC", "ivVx2Db9aVAC", "iVyeJy3h5SEC", "IWk2-9ElTSoC", "iwMdXfkinrIC", "iX5BUALnh1oC", "IX5mo9ylOF0C", "iXtjiaaJnisC", "IYQmn4Vh8vkC", "IYs875dv5yAC", "iyXjE3ff3TIC", "Iz9kUx2khRwC", "iZHL-HOTvowC", "iZWBuG8M_N0C", "IzWhVs9zTHoC", "J-hSMdljW0cC", "J-qC1ajmTI4C", "j0moeTJXy3EC", "j1jq0wpxGWMC", "J1mZL49w1ywC", "j1uEon9_2aoC", "J1xc0cRKLhcC", "J1YSmHfP_U0C", "j38pCZhXKQ8C", "j5-UoSnKj-QC", "j5ReTLmAf8cC", "J65nNxyoKVQC", "J6h59KLeyGkC", "J6k4-N5lPX8C", "j7M8eF3eUzUC", "J87b_-vDhqsC", "j8bdlF8-2sIC", "J8pmzeUZ5ZcC", "J93scO5FyBgC", "J_a0AxvnKlcC", "j_tM-g68VOMC", "jA0KwEkrthYC", "JAz4lv4QLZMC", "JbByInfcxLAC", "jbeNYxZipBoC", "JBEQiZB2wPQC", "jbfEnb5eLhYC", "jbn_6jI9_JQC", "JBrXmLW4VDMC", "JBVQzRpi8SkC", "jCIIGTXQSogC", "JcMCmBnpHGsC", "JdPcnVD2J0gC", "jDuFeO9tlbkC", "JDY4CRR1uKsC", "JEBFQEiIuwEC", "JeTwQB5doD4C", "JFbTRDPlBNAC", "JFmbHaQUBPEC", "JFTVGT5IR5cC", "jFyzF3PJEZIC", "Jgsu-aIm3ncC", "jh4wn4X92UwC", "jHA_uXY299AC", "JhbDnT74kWEC", "jhFlES6Q218C", "JIgSXZ-HvyEC", "JIoY7PagAOAC", "jjlx8b2p3sMC", "jjTIpsqChmQC", "JK1lVtA_PGUC", "jK_AZCTX7toC", "Jl4ud7djPwMC", "JlFAbFifpGwC", "jlLHipHyxAAC", "JlQxM5V_pJcC", "jm7PeIvsrIoC", "jMkBN8SNLsMC", "JmS8Gb-SS1wC", "jn-mpa5yX8YC", "JN3U6cBoS3QC", "jN5uWgPvmDUC", "jn8hQqLNwPwC", "jNfgb4yYdoQC", "JnTSGlEnRWAC", "jnvKUOa_iMAC", "Jo3K5-IeRWAC", "JOdMnMK-2hMC", "JogLxVrWcoQC", "JONPZKNltBAC", "JP4P2Jl0GpEC", "jplzD3-L4pIC", "jQ45aH5LwKkC", "Jqo4bK5JLFgC", "jQw6Khkvc9oC", "jr4rCPLDip4C", "JRdGj7H4zy0C", "jRt8EQYNjmMC", "Js4hlR3b3EoC", "jsR1vbobV68C", "JStjWz_4d6wC", "Jsv1cKrM3NAC", "jSVd-uYjgHoC", "Jtj8_7WxpUkC", "Jtl4io4ruJUC", "jtlSDmiSV7cC", "jtp216JpYZgC", "jtRC6wAGeGoC", "Ju4iAEEFIYoC", "juX1nCMWkPkC", "jVESdBSMasMC", "JW-E4s398vQC", "JW6kHqxt2DgC", "Jw7tkk8xgCcC", "JWhodvqODe0C", "JWy0WEUCnWcC", "JXaElDfCQwsC", "jXe5XQJWqmkC", "jxhKtuDgLyoC", "jXKTSQrTLO8C", "jxV-jRfSz74C", "JXVwa-WOk9wC", "JyB9mIB6B_AC", "jyIhGgBGatYC", "jYIUu6cmYcUC", "JYsqDEprk7YC", "jyU_oLjkAvkC", "Jz0Yy053WS4C", "jzEqRY71zv0C", "k-6iK3uhbrsC", "k-vTiKL3GcsC", "K1bCtwc8XsMC", "K1D4SMM9LfsC", "k1Smynbdy_IC", "K29Bmkzqb-YC", "k38jM8SnUUwC", "k3mIFeG3gvkC", "k45F1fFu68sC", "k4_TCFU5L0cC", "k4KPnqH9WoYC", "K52_YvD1YNwC", "k6_R9jr1DLMC", "K7Nk3uDppF4C", "K7S2Y_DjsiAC", "K8RFMTng47kC", "K8XUetN4mJoC", "K9Hg3Rpf054C", "K_BuQw1SV_8C", "K_EYPw4RjRIC", "k_FzHdZwIA4C", "kaBuyXHFTfgC", "Kal3FT7SkbEC", "KaOW-jF_fXEC", "kaQFxHnmI-EC", "kAwvotBDTp8C", "kB5A-peO5mUC", "KBc3sv6Fo5gC", "Kc28ocJWCSMC", "kcXggMBRpYAC", "kCxV_vK6wncC", "KCz7N-GYKRcC", "Kd38N3odqJMC", "kD5qi3MyEHYC", "kdnkOJCHVvYC", "Kdplby1KebAC", "Ke7_cl6tQ1EC", "KeCx5rnVLKcC", "KEjMEwY_2pkC", "KfddjxF9No0C", "KFgCx_40DIUC", "KFlpxcQftwoC", "kFO12ZB_mpIC", "KFSt4jWFGwEC", "KFYO5sISo1oC", "kgESTBANJLIC", "KgHe3aSjEcwC", "KGv8e8gdb2IC", "KGXsBYRUqzgC", "khYVsKMvQZIC", "KiGRzqMgVC4C", "kin6TnKBZu0C", "kJbVO2G6VicC", "kjwVASsTUm0C", "kk-99kM1cbMC", "kKMynY5oDkgC", "kkuWM3tFA3UC", "kKVdwsscK0IC", "kLT7OIBKf_YC", "klx0xib6jFUC", "kMuc9Lb-3mkC", "kn5Ryzk_804C", "knaD9dttHJQC", "KNCH0KSlbv0C", "KngKYpdjwhYC", "KnvA8lal8hQC", "kNvyj-B59G0C", "knYfPoZjv1AC", "knzNIfmU2F0C", "KO0tMOWl5AEC", "kOjy3FQqXPQC", "kp9RTYomf6EC", "KpZwmRvbDXEC", "kQ18q7wtP6gC", "KqOst6a4bfUC", "kQq6wVOadbAC", "KqrukTiOoEMC", "KqZ51wR3uR4C", "kriZx5ucLZsC", "kSchquQcPwwC", "kShqtsGF24oC", "kt2uGKE8ck4C", "KtdiNYJJGyIC", "kTKo3TshDQ4C", "kto37M4olh4C", "KtPviLCuTuQC", "ku86wsnoDU0C", "kUAOn7mzr30C", "kUy8RIr2MMAC", "kuYFuUqzNBMC", "kvBhFm6SvUcC", "KVG8xj9eTyAC", "kw-Qi9kZwFgC", "kw_pn3OgVhkC", "KweDHm1QDmIC", "kX-uGcqfwEYC", "KX2EdmIr3EMC", "kxWz41WGZpQC", "kYb8P4cq_wcC", "KZFM0k8qgYMC", "kZJtiNrah-EC", "KZOJnieBC6cC", "kZRj36dHqYgC", "L-J80UHCYQwC", "l-R1g21wQmQC", "L-vqegJp9uIC", "L197GSrjYtIC", "L1N2Kq4Z5kMC", "L2RoHnh9WNgC", "l3biFpfZ6IYC", "l3mnXqi9MWwC", "l58QIv-wk_sC", "L5j0jl7GeGYC", "l5SOyJFFih4C", "l79kzRCL-64C", "L7V53j6oTE0C", "L8hfLzs0ryoC", "L8pRWa8msOYC", "l9qQKuBX1z0C", "L9sYq3XSLmIC", "l_xdnKxeYIkC", "LaNm1-VpDysC", "lB7yJWfdAlMC", "lBg47Qr7fX4C", "lbm2ahVO7JsC", "LCcoKnYJFi4C", "Lceu5SUx6iQC", "lCnIv3nz_gwC", "lcQnVWof86UC", "lCTRxp5h3cEC", "lcvGBooqMuIC", "LD62S7iA-6sC", "Ld6XYa6OV0EC", "LDbgAIq0rwAC", "LDcMr4avqQAC", "LdLKhHv1j7AC", "Le7KpGpgARoC", "LebT9J_W-JsC", "lEHIudUSWGsC", "LF9lcajLNncC", "LfyjwoRbGEQC", "LG3FQBlcuK0C", "lg8vy0i-4AMC", "lg9ziwYFWYgC", "Lgc8PkmB7kYC", "lgKz1Znda54C", "lGmrFlbK6ScC", "lgnvT8PFeQ0C", "lGnw2Lr2ye4C", "LH1jO4vBdL4C", "lh5Bq5-qF20C", "lh6piycs8loC", "lH6Sy-O13e4C", "lhffXhoB9v8C", "lHyYDF1gkcEC", "lI4hPO8u3ecC", "LIKJxwW1NPAC", "Lj1Qc8d2TFEC", "ljV5N2JDcdkC", "lKfbWTS_R20C", "lKfRTntxOSoC", "LkqcpRLrQmMC", "LLAmiykEu18C", "LlUTCGOyrLEC", "LlVPRiFaZYsC", "Lm50mS8oSv8C", "lM7bzrLCFxwC", "Lmcz0uwHj_8C", "Lmd5DJdGoPcC", "lmh-U0QOZpQC", "ln0sKggjlrIC", "LNCv7A05JWoC", "LnmPuPokrB0C", "lNuglcm8NocC", "LNvsdBdQ8HsC", "Lnx_1kPlpWYC", "loMc5HzF-usC", "LoStMjYjce8C", "LOX7iN7Q874C", "lpD5anvUaRUC", "lPGd_VV1tL0C", "lpShSdi7LUQC", "lpxDz2CAn50C", "lQiQma87RSsC", "Lr1uX7tFPoMC", "LrfdAXb2C9oC", "lrMnF60qYA0C", "lrwpUNex3WkC", "LtQsfa2WI6IC", "LtWDVZxiK6EC", "lu4JDcJtuk0C", "LUatB5OLh2QC", "lUdzKl-iG6QC", "LUI2fLpxIRwC", "luZug_PZn-kC", "lV3eeUs3LaMC", "Lv4kQT_AaT8C", "LV5cJRRPFF0C", "lvpbVPlChVEC", "lvqoRgaFTqAC", "LVS6bNvtqjAC", "lvSwwhtCwEoC", "LvU89BnfBfwC", "lvVnqd1tU88C", "lvxwS2c7FSsC", "lw86IpC5eZAC", "lWeAPI5g-WQC", "lwhhrGEkt_AC", "Lx-iIBVAX9wC", "LX7d801yKO8C", "LXWVVH_O5eYC", "LY7yjuEUqFcC", "LYavsnnx0jEC", "lydhPqDc0msC", "lYYtBxmaqn8C", "lZFhc7FCOnwC", "lzODsbstIJ8C", "LZZz6Gelw3oC", "M-B8XedeL9sC", "M-X_jS-Qeu0C", "m0GY_gNBqJkC", "M16vady03FwC", "M17DnRMSvMQC", "m1d5dkEp6qwC", "M1uKv97BQVgC", "M2GfO8IOq8cC", "m3gIdLgiEiIC", "M3S8TS_impUC", "m3ua0VRh74kC", "M4EO-Zotb4AC", "M5Apnd4a90YC", "M6_uZrk7lyIC", "M6AE8xih0fYC", "M8FjmaH-0V4C", "m8p4SxNNk1YC", "m91WYFCk5hoC", "m9I3UtyjnEMC", "m9RmPYnRSJoC", "m__Q6kmVoGAC", "mbBn8u1bNesC", "mbOLybqcWBkC", "mbwl-fgW71QC", "MCcAiE2RtwgC", "MCE7Pr1i3QwC", "MCNTv8mckdMC", "McO7ExAvcGkC", "Mdg6J1rzc3gC", "mdlEPkDNnTcC", "MDNUCJqwKZ0C", "MDRm_3niAL0C", "mERZP4q_dtwC", "Mev4LxWr-KIC", "MF8WnvUtyZ4C", "MFbm2SRUUNsC", "MFGj_PT_clIC", "MFUW8xkxTwAC", "MFUXSJjOTv8C", "MFxxpv1t1wgC", "mG-VRWgfpuYC", "mG_b5im7yEcC", "MgIytsae7OoC", "mh7Q58oo05MC", "Mh9ZKiE4S7gC", "mhYfL6Dn5g8C", "mIJu6Q1MxxUC", "mIpG7ZgQAwAC", "MiU4l3QO4dsC", "mIuDg1IBMj8C", "mJa0kAVqn5cC", "MJbE5ma65bgC", "MJcz9QFkMfwC", "mjs33MDiZ18C", "mK2QhS11JtsC", "mKFc0zsz_sUC", "mKIYLIm5yvgC", "mKMrtZyDSZkC", "ML3jtMUzRZgC", "MmapyLSVIgcC", "MMC2-KIY4UIC", "MmGkqaROdZ4C", "Mn9lrAQ_nxUC", "MNh8tx8W9_cC", "mnLO4l5Kk64C", "mO-hFM-NSNkC", "mO0KpMMUjNIC", "MOb9thbs-IcC", "MpDur-nHqa4C", "mpRgiga3tAkC", "mPXuTKlYVR0C", "mQmreUfiEJ4C", "MREAPapn82QC", "MrHaC5HAva8C", "MrS7NW0zzPMC", "MrT8xBCG3jAC", "MsjMXc0y9GgC", "mSLhDt_XIUQC", "msR0SGcs0sUC", "Mt4RB5JO4qYC", "MTNaD4rT5VgC", "mtPwaQbaXk4C", "mtyPMWgtKLMC", "MU9TN2h17C0C", "MujUlI7X9IUC", "mulgp5hb0XkC", "muwB6-puoWcC", "mVCfkE38VhAC", "mVF4mKK45gIC", "MvKnU4gHFvYC", "MVrYj9uQOUkC", "MvX7y3Rb4osC", "mw13wpsdZEcC", "MW200xjK49cC", "MWkv47DIFw8C", "MwkYUxyipDwC", "mWoSs0GgomgC", "MWRuvcsE43MC", "MWsCvdQi16UC", "mx5CfeeEkm0C", "mx8kL7iCR-AC", "mXdagZIBcXIC", "Mxge8wUpd7EC", "my1E7YMLa7QC", "MY5laQPdyqUC", "mYeFaO3Z92kC", "mYlSEszWRbQC", "mYO6uQLfMwwC", "Mzh6KxczlxgC", "MzQXH5NneSMC", "N-2kR2I6dMIC", "n-NWU0HayegC", "N0esKvW8vyoC", "n0J2v9y4ANMC", "n1oIK_VG6FsC", "N3uj_afjTyQC", "N3x1PyJmbz4C", "n3YC435gKFIC", "N4O5BpmVOR4C", "n4PRP3xLUzcC", "N5o7qYSSkKIC", "N8u-XDDX3ckC", "n8znlyDQMzQC", "n9tTHnRGZn4C", "n9zYjuvb7ykC", "N_c9iWm8DRMC", "NA9NybGyQE4C", "naa9VVsldpYC", "nASZmG3lM-MC", "nAv1gIZTgogC", "NB-ab2V1frAC", "Nb0tNFc5Y90C", "Nb5MWsRQ5fsC", "nBgNFx8P6B4C", "NblvDRP3eCYC", "NbmL9ftadNoC", "nBWIJiVv1_8C", "nbX5DfBNkXsC", "nCu8oe2i5y0C", "NDDz4WIxDvYC", "nDTc9NRAkNMC", "nE0bz0HYOogC", "NEX_8ydGrYMC", "Nf4qm1thuzYC", "nF5keLQPaSwC", "nfb690TbBRwC", "NFKwTvQjVHEC", "Ngqtp8ORGuUC", "nGyIxBpVbHIC", "NHNhj4dE1rwC", "NHOepipqw5MC", "ni05jo2PfQEC", "NilW70Yol74C", "nj9aaD4RrgsC", "NJHMuVxjF64C", "NjiG3mI5eg0C", "njTri1942n4C", "nJyWqsH3qUwC", "nk45JPhubdQC", "NkgV7ZM2HJMC", "nkisnllbM7YC", "NKpitRCwolgC", "NkubXK90GtwC", "nKZduhuEPCgC", "NkZQP-XUlwoC", "NL-7y-hjodYC", "NLRI6hzr01AC", "NLTA_L_nKf4C", "nLvjQkBajocC", "nMr_gZQQYlsC", "nn004oTBKLAC", "NNM1-tB1dfoC", "NNMf3_4WlX8C", "no8fn7hjg8MC", "nOC8XE6uE40C", "NOq2brjH2UcC", "nOvhwcESksMC", "NOXxlusWLtgC", "NP-QlBzYETwC", "nphkjxI5lScC", "nPOOVH6SHD8C", "NPpbY3vMrK4C", "NPxwcIKd1kQC", "NQ8EkEiYf_sC", "nQcNPnXaotsC", "nqJ5umM9C7QC", "NQu2oSdsA5gC", "nRCGMfqp9acC", "nrlceeqlj3EC", "NrpGnrVET_MC", "nrQCRrdku24C", "ns2k0z-4FPEC", "nslURExrg1sC", "nsPX7hErWWYC", "NtHhpIjIFMEC", "Ntn27W4nT7wC", "NtyI0b1CiDkC", "Nu3s4NA7gOoC", "nUgLVyPlO7EC", "nuh9ozVsxZMC", "nVn2yaeZm_wC", "nWHJMJoP1gQC", "nX3MXt0hiv0C", "nxd_45ba6Z4C", "nXDMAfrcyjUC", "nXuXVJqQrfIC", "ny0rmFLTKuwC", "NyHVgeaCrlMC", "nYkrTWDj5twC", "nyNPWOj-dsEC", "o1lW82-iMVgC", "O2U65rfH1NQC", "o4-BACWBJWYC", "o417BiZhN_0C", "O4bRW1VjD4gC", "o4Ju-uaw49UC", "O59l36u3Ji0C", "o5c0OysdfaEC", "O5fjMLG47WgC", "o5mtVZ53LqkC", "o5UNCmS0W4oC", "o74HqDeVAeoC", "o7FkYz8ay5AC", "o7hlmXxZtXwC", "O7mlylpFtVYC", "O8UdHCAPoqIC", "OB75l5upMJQC", "oBeL__RZP38C", "ObnB2K0Pm-gC", "oBoadQqqY6cC", "oBrM4fMi6B4C", "oBY9qYnYTgoC", "obYhbzN-dY0C", "oByKSad59WAC", "OC2kpcgpvikC", "oC7cyJ4CYVAC", "OC9RIohfJrUC", "OCEweX1U3MEC", "ODMOAai7YlIC", "ODTL3SUB46kC", "oe9S6SgfeSsC", "OESLT2EXllwC", "oF9XRMu7IUUC", "ofNvqyY50fQC", "OFp8ipPu5g0C", "OGHIo78EX5YC", "OgJwtLxVOj0C", "ogLg_TL7OygC", "OgXJ1JGsPpgC", "ohIY00toUIkC", "Oi9vfDvIuBUC", "oicpUw1BgE0C", "oiWZ5EgQ79QC", "OixOjFAE2UEC", "oj3sFUtE5T4C", "oJ7qCzCI1NIC", "oK7EQtgW7mkC", "okYh0Z3GsTsC", "OLDMJhksIKkC", "OLHXNOpxklsC", "oLKj_i7I0YsC", "oLR898PUrOcC", "OlUsahLKzBEC", "On3PnFHC9J8C", "on8LkQpHPTEC", "ONojNh1lqW8C", "OO-67enEAxUC", "oOcJq-c0_u4C", "OoI89q6qJi8C", "oOMXh9TsiRwC", "OOPVMKFveVEC", "oPa2r3UrjI8C", "OPE20Pj5yqoC", "OpqDQCu4-BIC", "OQ4i9z1_JEkC", "OQfA4OqoFtIC", "oQGrgpcyMhoC", "oqkC3PTplRsC", "OQngDQK-7lQC", "OQSpUZUN6hgC", "Or9jdsdChNoC", "OrAJCAIZ-2QC", "orjvjrj77_wC", "OroCOEqkVg4C", "oRwio-c6lfAC", "OrYmMwlbdrwC", "oS4bMeaUxzAC", "OSIc5_l8RmEC", "OskAy9XOnIsC", "OspnCGC6KY8C", "OT8bN8OmUpwC", "OTqu7UOxGsIC", "oU_-6ikmidoC", "OuE0x5z2RPoC", "Ouh5eCWqs5wC", "oUL6i_pYfNsC", "oULb1kQ2TwAC", "oUm1vvjselQC", "OuP7i2DhADwC", "OvNp8Df5XukC", "OW-jfra0aAwC", "owp3UkZCojgC", "owtSfDkt_cQC", "oX8nJShwb5wC", "ox91llFB5j4C", "oxfoF_gasvsC", "oXip2MZZrrkC", "OxSYUYpb1B0C", "OXyB0QkBg-kC", "oYBYq7CCH2gC", "OYIt6Zb0kzoC", "OYNgWRQuWLMC", "OypfoLO_6WgC", "OzoCM4221KoC", "oZPVXSW9l1gC", "oZS5zFNW5yUC", "P-48zO2V-jEC", "P-f3K3jxvckC", "P-mMbsaKdJ4C", "P0N_3rRZNe4C", "P0sP87s4f-IC", "P0xs_9NSIy8C", "P1jauDDocM0C", "p1WjYOltEOoC", "P1zI5itcG7wC", "p2Hxcbxl0OoC", "P32krFgmdzgC", "P3Z6wfs5pnQC", "P4cXo_cMIDAC", "p4G9UHazucsC", "p5E1LVJ2C-0C", "P6Qv0MdH40MC", "p6WIqdRdxe8C", "P73DrhE9F0QC", "p7e_mYbJIdgC", "P7Piq3OsQ1MC", "P7TCSLpJ7AYC", "P8xpTj3Dm-kC", "p9gXGWJfMyUC", "p_JsCMUQK04C", "PafpN9Q0_VAC", "paIrc_5Ok_sC", "pajrkLcM6d0C", "PawYMB9KYS8C", "Pb8qTzqOKbAC", "pBU9nTKzW-cC", "pcO1LSjcXd0C", "PdbfGALpRF4C", "PdjBFEEz0o0C", "pDOqZfQ5tqUC", "pDUXtSVArzkC", "pDy8yULq2CAC", "PEjhtik7W8IC", "pePU3MRBaNwC", "PEtwS6Wzi30C", "pghpw1e91e0C", "pI1j1wKgEYQC", "PIrRsZeTE_cC", "PIrZKlCeTM8C", "piuLmFNoHeQC", "PjvV6z2p-PEC", "PK5BOWbRiTsC", "PKBwjrXavKEC", "PkD2ElfiUj4C", "PKnlhkJjaOoC", "PL7vc_L7zRMC", "PlkYkdwAas8C", "pLx66Ql8wyQC", "pMbmbQsE6hEC", "PMKc8Ed8qoIC", "pmkhm0NHK9YC", "pMM5mFUvS10C", "pmZDPkJNc-QC", "PnvFYd-zUlcC", "PO5L2EA8f4QC", "po6tX53X3zQC", "PpGBuOOQyPgC", "pPNsEPSMb68C", "PpQOI-_72LkC", "ppS7-RcigG0C", "PQH8BklvQVIC", "pQMAsT7HlEsC", "pqRcT7sFYYYC", "Pr0lKluK4qwC", "pRiVTCTW6_cC", "prIX-LvPysYC", "PrOKEcZXJ58C", "PRW7HzOj4L0C", "Ps7JHG_PzvwC", "pSKvaLV6zkcC", "PsQ7zEi9AGsC", "pSUI1mAkepIC", "PuKKbUuGlQ4C", "PupnPhJkMF0C", "PUUpOUJlZogC", "pVBgdC_NWBIC", "pVvmrDZftNYC", "PVx4khyYhmIC", "pW1gin3ibSIC", "PW3r-DzcJA0C", "pwJQ-HgHnb8C", "pWlzUhdHpnEC", "PWp0mkyFuYsC", "pWrM-VeH4XsC", "PXJhH0WwBowC", "PXKOHbczKo4C", "PxtAKv81HbkC", "pXYRK0789mcC", "Pyjt9xhNKJ4C", "PYUws7DjE8UC", "pZFsVmB3sWkC", "pZJizvcWJOgC", "Q04oaR0abbgC", "Q15FWAcrf-QC", "Q1JMZxYPNcYC", "q1RJDFYWHgMC", "q24lR-f9sZ0C", "q2jOf2a3-5EC", "Q2rs9Bt83KQC", "Q3mSVp_MG5AC", "Q4QQAjtLP80C", "q5kQVxb9QVgC", "Q8BtyHu3DjMC", "q8De-srS5FEC", "q8JBo23nTxwC", "Q9R6Tjwd1_4C", "q_Pv_2bdL-8C", "QAaJo4q0JyQC", "qaifkrtG1YQC", "qAIpjYAzwxIC", "qAIy2I-DdkkC", "qArUQHMdg9YC", "QayKpFqlUwgC", "QbC7tDGlecEC", "qbdnVEd5nukC", "QbT7zBaX0pUC", "QC18oeN_txsC", "QcYl_ylrHmcC", "QDdPkSM50DkC", "QDmJ4OIdAF0C", "QdT2iJFvvgsC", "qdwDV8khUrcC", "qEBYKPN2KCEC", "qf0qyxvObVkC", "qf5rCsR_UZYC", "qFE13saB5KMC", "qfG5xgE6aScC", "QFHB2D4XH8UC", "QfuSKd7Ga_UC", "qfX5J84X4bsC", "QglOxmN4afEC", "Qgtab_u5XIIC", "qhDFuWbLlgQC", "qhhXHNKgvU8C", "qhkmf5oGVhsC", "qHqKJz1J6ZwC", "qHR4w0mYE14C", "QHr6DN2BWRUC", "QhtkLnl6PJ4C", "qi3VYphlGwYC", "qInweiKq68UC", "qiq2M4k7U6oC", "QIQXbqdKUtkC", "qixxVyYBVVAC", "qjVaD1OQbxEC", "QjYtNJZmWLEC", "QJzLeR562BsC", "qKGtuqvUhN8C", "QKjhgCNu1D4C", "QKuiIqgSfjoC", "qLl9ityyFaYC", "qLNfpb1hBWwC", "qLRf__fvjWQC", "qlwvoG_2LI4C", "QLxmwtlCKNIC", "qLZKdz7z8j0C", "QM-gzY4ATMEC", "qm9Sg7WWeFUC", "QmDLXgyH2A4C", "QmGk50yV2eMC", "qMivHGPGxqkC", "qmq-iCFviEYC", "qMRLwuhEvYQC", "qNdUuj8CQ_sC", "QnlvkNsQYIIC", "QNM4japF5g4C", "QO4V75fio5IC", "qO4zMwjqcgwC", "QO5ijIGPH0kC", "qOAlpGp1qXcC", "QOhPfuPo2ZQC", "QOsZ6WTKmXcC", "qOtFI1aylisC", "QOVvzsPnJRQC", "QOxF33PYoxQC", "Qprp911qk4oC", "QPTqaKLu-soC", "QPTzkU6u8moC", "QQH8as7ZaasC", "QqhubYvGmowC", "qQMewsDjq1cC", "qr_QTbMh4UYC", "qRFmgHgIJaAC", "QRryyAYOYYkC", "QruIGhiAVpkC", "QrWoRDvQVBoC", "Qs2bpmiNsN4C", "QSGOsmZ5srUC", "QsgZ_CitOCAC", "qShdefxAAjUC", "qt_9Q4K5Bz8C", "QtfndLdZhnAC", "qThSUMiDXr8C", "qTlunjb8t3wC", "quPX3vBkk58C", "qUrsy4blU2AC", "qv5D6shGGFQC", "qvAWw3g1TZAC", "Qvhru7bg5-8C", "qVmHL2M5I9oC", "qvo8Q74rPA4C", "QvvCpFvg6HIC", "qWCDCrim38YC", "QWmPBVImnd0C", "QWsJDMvIV7sC", "QxaITfanaUcC", "qXmjRsQYG2oC", "qXMwCbPE5mkC", "QXtFK0OT2XMC", "qy96yDeMgP8C", "QYCzHR80dmwC", "QYJzYQumaQkC", "qywzPsRB07UC", "Qz9VOE6vO0kC", "Qz9vxAeQZBMC", "QZEcG2VDUNYC", "qZNcOygYKL0C", "qzNvw-PgRJMC", "QZRAeYQR-VcC", "qZW2GgDXbIUC", "QzX8THIgRjUC", "r-2XRCAihmEC", "R-EQzoT34W4C", "R-K1rkqmEaQC", "R-QkDxkqbJoC", "r0_is9ZWV4QC", "R0d76m-Be10C", "R0dVznNGP4AC", "r0F1U5paODcC", "R1C-ninfheEC", "R1fZcc7fF_wC", "r2IsVOmNqGkC", "R3996-ouQX0C", "R3a_1OGpqO8C", "R3BIOfKssQ4C", "R3YtlswCJscC", "r4GIU2wJCAEC", "R5Z8uU9hREEC", "r69Z4urx_VAC", "r6pwHeHIq2wC", "R7Fb8Cz0sBUC", "r9dsrSJ5xXAC", "R_3rEJCX7CwC", "R_e6YP7ijeQC", "R_ZetzxFHVwC", "ra5rRLh-RkcC", "raaCI-J4COoC", "raHLd5-V2sAC", "RAJUz6k_QIEC", "ral_pGRWutsC", "RaQh5A4yv4QC", "RAuMY88cbW0C", "Rb1wrlmXojEC", "RB3gn9LNgUgC", "rB8eMRkjqN8C", "rBJd5vKWLDAC", "rBraWo3i2BcC", "Rc1rBhBiixcC", "rcD0_Dvs7ngC", "RcR5vQwxOkQC", "rD5AnQWPEGsC", "RdBFUqvReBIC", "Rdik4zbN6aAC", "RDwWK0ARwSwC", "rE7e3lG1KYwC", "rEo78qB7RAsC", "reT27U7wl9MC", "rETcT8tlEroC", "revtcXHZbjkC", "Rf5wnXgT46oC", "RFfmHNZ_SQIC", "RfW8huqkCIMC", "RGmHAVPhmRwC", "rhE-0gXNbN8C", "rhVOVKp0-5wC", "riAM_mNkE-4C", "RIR0uMgooPoC", "RITAHjToj5wC", "riwVQHtihE4C", "rJe4-_qtl7wC", "rJFBka6kGZwC", "RJSSmdgguOgC", "RkMFf4mnEVwC", "RkpAjLSjI9wC", "RlhZc4HAS5oC", "rlIvpU-Qp38C", "rLrJ-_78SB0C", "RlRzBsraB7EC", "rlVLx87ZDmwC", "rmdgHuGg3wUC", "rmhJrD0HcmMC", "RmPQGSawe7MC", "rmsUs_KDgHAC", "rNAaZbheYa0C", "rnmvt4dCYC8C", "RNNTon-z4p4C", "rPD8iteD_hoC", "RPgFnXPnfD8C", "rQ9xJe_hNLUC", "RqGcY4499DMC", "RqMp5TsWCqkC", "rqQxHHD8_V4C", "RQv_wAM_UkkC", "RQXjQyIqVjcC", "RraibLZPj8sC", "rrrWd4MsVIAC", "RRxqU3A0GrUC", "RsafPfUjC6EC", "rsBdQfPx83oC", "RSH2f0kqAXoC", "RtAu3fji7ewC", "ru-Qep42Zj0C", "rU4AuxUochEC", "rUFJsks11vIC", "rUfXM1bdw9sC", "ruKyUjnt84sC", "ruR6ds7RIpEC", "rUV-Za6EbCoC", "RvR6I6VzpzMC", "rvuhHvq0QkAC", "rW56njaMNlwC", "RWfXBObw_-cC", "RwGtZCyX6BEC", "rwHtreArk_YC", "RwhYP9n_0h4C", "RWPrAFvARUQC", "RwZOApBh9-cC", "rXiTv6JhZc4C", "Rz3SQBiOBHIC", "RzAW_XaV5sYC", "rzWqrQzSN10C", "s-lRvCbKN9oC", "s0ZhQfrW0gwC", "s1L2mh1xX6AC", "S246o6LpxOQC", "s2Bu-k4GvscC", "s2YlBHk21pIC", "S36-Rb4D2DEC", "s3SJ_1sVGeIC", "s4a1jAstmLoC", "S4a835HkJpoC", "s4D3ZQeVOzYC", "S57-VvGDLNkC", "S65k1nHzjBEC", "s6YFm0pgW94C", "S7e3XNHSMxgC", "S80tNVmTCZsC", "sa_cnttyB3wC", "Sakj3vPu9TEC", "SAyPFNMrvlgC", "sbAo3RkWIUsC", "sbDxkzAn6KMC", "SbGdnS5QyU4C", "sBsU14_crsUC", "SBuAXRPCZzYC", "SBWymtSXoT4C", "SChbFApNDc8C", "SCjBWElj0pQC", "ScRuEWv344gC", "ScVA18ol9isC", "SCzETlXk39YC", "sDLVKZlOGfMC", "SDnCJn-99_8C", "sDUEiJuHaW0C", "sEe_6MRg5xQC", "sFc5eUkookMC", "sfD1teRZUIQC", "SFlEcdkCVqQC", "SfzscM8izq0C", "Sgc4rRfAJWMC", "sgQQDC_inA8C", "SH1J_jFnpCgC", "shnh1HnwyKoC", "sI_UG8lLey0C", "SIexi_qgq2gC", "sIstJfeO2PAC", "sjH3emOkC1MC", "sjlWRAygGoYC", "sJQm214GM4UC", "sK5CJFpb2DAC", "SK5opOtSfpMC", "sKcVfinygvsC", "skf3LSyV_kEC", "skGjjKeIZ1QC", "SKnDnyQe-KgC", "sksDN84VxvAC", "sLrONAxBAgAC", "SM5hR32GSScC", "SMD-bjQppX8C", "SMfrLWPyWYkC", "sNkgg-3dF30C", "sNOWKhznU8kC", "sNpznNsnaZsC", "sNye5hpqJ5AC", "sOCvpTNDhiUC", "sOKZKESWys0C", "SoQ4ymzN-EwC", "SOsKxQ3rRVAC", "sp5WbjwKXsgC", "spGyXLNREukC", "spjgeb-TvukC", "SqM46zulAGwC", "SQQpUldtMKwC", "sQQrjCIkDE0C", "SR8p7v8vjEgC", "srEHyeOFw1QC", "SrJ920Iab0AC", "srlF0JUIBZEC", "srS13ScitwsC", "sSb2HrG0mdoC", "ssMbhqrP_hcC", "SsMUCl5j8X4C", "STAM4cTZ9JkC", "stplInkzoXwC", "STxlycWlVS0C", "Suc98NDaPMQC", "suGmGoDCWEkC", "SUUGxP5lF_QC", "suxeIoWNkGIC", "svEHBagPG_AC", "sVv2Tnf4czUC", "SvyhDobp8rYC", "sW0cJ0e9yrEC", "Sw2LE0OatnoC", "SWuWFcmRUM8C", "swxxuGuhQ5wC", "SYAQjOwA6lIC", "SYf8ytGrkqgC", "SYV-79W3oZsC", "sywjT24pBb8C", "SYZmxOI-sPEC", "sZ-Llo2emYwC", "sZ2KMp2z4vIC", "sZbKiwpLwR8C", "T-05AqadLgMC", "t-6YPniKgVkC", "t1_hnB01TKkC", "T304Ttec_9kC", "t3JbuFVWg8kC", "t4-YKz4p-UwC", "T4dZFR6Nf7wC", "T4vQw1RNkQ8C", "T5-f-dJQUKEC", "t5HbRxAEsDMC", "t5otQOxwTE8C", "t6hGd9yD1EIC", "T6mzmh4-gpcC", "t6PV6XUf6OMC", "T7CKj8bqVlwC", "T7Yn7JGorsoC", "T88qX5DHAn4C", "T8cJSr5V55sC", "T8n6NPUUVMgC", "t8PP_-KPEGAC", "T_CEYYJDtkUC", "t_F21VosYjIC", "t_i5CZKbhyIC", "Tbd0chRC7mEC", "TBHj8ZkXNG8C", "tBnjnSrsN2cC", "TcLqxN_GIHsC", "TCLWhJPI7FoC", "tCrccf0xttgC", "TCsbd7G-EFkC", "TDB8Aba5zSkC", "TDea9oyayNYC", "tDSIplwvSk8C", "tEEhsawqlM0C", "teHWSd0m5-kC", "TFlVe4ySsKQC", "tfOQ4dzVxUEC", "TFQrki145qwC", "TFz2WpwXspAC", "TGmDJz6mQ80C", "tGpIslO17UAC", "Tgwb_Y8ogvMC", "THnJrNvETr0C", "thortsX3HVoC", "tIhdDxTBwHMC", "tIkfrx4_hQwC", "TIzgnSAaj6MC", "TJDGTP9Sa5UC", "tk6cdwQRAWUC", "tK7-l0GhlJIC", "Tk954r7MojYC", "TkQ68EbRP4wC", "TkULPY-xMNsC", "Tl-O1prFDRwC", "tl7Iyvd38NwC", "tLGUxAapcL4C", "TLLBZhvO_MUC", "tLWQ4T8FmIkC", "tm-OYOeGdk4C", "TMgBNRU5JfAC", "tMhB-WKYp3AC", "TMrqtlz6zbQC", "tMYmiHg8gXMC", "TnBZi6PC9_AC", "tnOxBZL4yJUC", "tO-_dys5t0cC", "TOjmK9C9hNsC", "tojSqawVI70C", "ToOj6GxJw_sC", "tosbUp8kF9oC", "tOse262foFAC", "ToXws9n6TW8C", "tPGu98BABRIC", "TpRbGJKrw9AC", "tpUyKIEQXqsC", "tqbtgVk2DOwC", "tQFGe8VEmYkC", "tQFYJjDEwhIC", "tRg3Kpg92V8C", "TRXrMWY_i2IC", "tSegrigeLXwC", "tSL2mAl4dU8C", "tSNkXVpB1SkC", "TStnYlfQpJcC", "tsZPJ6k-2v8C", "TT_6siOxmjcC", "tTn7hDPhLCUC", "TTNPxMigCK4C", "TtYex8ky_MEC", "TU_YnC-fEZ4C", "tuHKpihaIw4C", "tUqG4yDPMaMC", "TVcaPfZ2ovIC", "tVJCs7kV5YUC", "tVo8itBJzwQC", "tVoGmBBXoB4C", "tvVRO2ar-lAC", "TVWasr-C3UcC", "tw-YGBovG8kC", "TW_G-pfyZb4C", "tWZkzAIRwOAC", "txE355KzgNkC", "tXhS4axKY7YC", "txIGOpjLaW4C", "TXj3AklQkmUC", "txz0YTg8N0QC", "TyKLxN9KUYkC", "TYYp48ytAK0C", "tZDwTDHQoMAC", "TzEXzR_3DIIC", "TzHbh5yCVPMC", "TZi4PnwV1vYC", "Tzix2jithpQC", "tZWnNPKg1K8C", "tZxaDhb71gcC", "U-2azvBELrIC", "u-BaZR9pXuIC", "U-dZalMj4MAC", "u-m9gKxRAc0C", "u0qOoHAWFmoC", "u0yHE5npw6EC", "U1RQksZ3OIoC", "U2M_rxC-yasC", "U3oeSJVTm1YC", "U4EcY2ax3BgC", "U58Wh30Smi8C", "U5hXpnwUmW4C", "u7ktCK5kqmEC", "u8Pksn_0bwMC", "u8pxT1gWEroC", "U8To1emV5ckC", "u8YQW0EBfh8C", "u91fA8PDRF0C", "u9Gf9e0wpsgC", "U9mcooAQF6oC", "u_I614Pw3C8C", "UAMGGFlcNBoC", "UAPferUlb4UC", "UArOY5U5pj0C", "UASe7zvIkYgC", "ub2nh7fU8zcC", "UbAipP9ATlUC", "uBaQK8nGY3YC", "uBbfizzKTDoC", "ubdfzyM0mvYC", "ubEptMpxCl8C", "ubH00CZv_YYC", "uBhYtCAKZ8IC", "Ud2goDsqfBIC", "ud3bOWYoug8C", "udeqm_uHGcEC", "Udl9U-0OY9gC", "uDN-qvOrCikC", "UdQBSffyTTwC", "udTfyoUKl_4C", "ue_JYo-k0_wC", "UelxdTWV4YQC", "uFBreFpwPzgC", "uFLwcEZMrOcC", "uFRchGZDu5cC", "UFzSXj2LlVYC", "UG9uh94xJGIC", "UGe4js2AvNAC", "uHCbYqZUDQ0C", "uhg_js2x6EAC", "uIQL0ClhP78C", "UiRYFVuAx-4C", "Uisvt8dbF9EC", "uISwNVKQlOIC", "UiY-F2E2lHgC", "UJaPCc5NR6kC", "UJfYIdr7qfUC", "uJOCncLLnLsC", "UJYVS2GxGMsC", "Uk9QIJmBVE8C", "UKaXYLcwoVoC", "UKix4jTGLEMC", "Uknk8sIZrbwC", "UKwN_B4HzisC", "ulappz4IaLsC", "ulAYKWVjDm0C", "ULF5r0lziKUC", "uLHa0KWZBYkC", "ulHlbvxfO7EC", "uLHlJ6sjohwC", "UlJQ7hp4HzEC", "uLuevcUMEUAC", "ULZlBvE5OOYC", "um_yWo4ZZR4C", "uMdMY55qzCoC", "ume1sxlKekcC", "UmfW-jF7pkIC", "UMI5PqvqzksC", "umk5P3OKU8cC", "UmLTsumqfskC", "umNBfh-NoN0C", "UmoiWWYNdD8C", "UMy-1YdP7jQC", "UnPP_G13_uAC", "uOB2fMgynp8C", "uolzqanj75kC", "uoOIJOibx2EC", "UpC4QJP66HUC", "UQHIYZMXzp0C", "UQPwOavv8e8C", "uqQwIHpqpfgC", "UQWZSGa6ptwC", "UratcuTxJJcC", "URkMY_t6RQQC", "UrKtMKiVIEwC", "urWWO7AXLNsC", "us670m1NV6AC", "USKxwYjlEjQC", "uSM7MK18EjwC", "UsomGft5YhUC", "UuCmOj7iKo4C", "UUnbb9tXDtAC", "uUV3JgWK5dsC", "UV9O88l1jsYC", "UvfbcAxCdrUC", "uVH-cmqx1BcC", "uVSiv0Yh2KYC", "UW8ptGgmKBYC", "UwcFKj6f9tEC", "UWCV0A6Sm64C", "ux2inxSrMjYC", "uX8zO_eCzxkC", "UX9gVZmGCJgC", "UxF2p5R_-soC", "UXHTnXuNjWoC", "UxHuPMtHGBIC", "uxJlAgRemHgC", "UXkCqO7U14oC", "UXypLB7duOgC", "uy74QJnLK7UC", "Uy9PbkDwisYC", "Uyab3vXJNCgC", "UYbmXGtHcAEC", "uYd4Q1vQluAC", "uYdmnMArdZUC", "UyJaWLcdZgMC", "UYNnCXZmi2IC", "UYx-L-uz778C", "uzdsDdbr-YYC", "UZfWWjyXmsAC", "uznwumfbBJEC", "uZRJFb2JqCcC", "uZWmAAQiLNoC", "UzZA6-L9jC4C", "v-iDn44wlr0C", "v-PR2oOTjJoC", "v0YQv_CGq9wC", "v1GQZtYOZy0C", "v39x_fKR-ykC", "V3a6-Ny0MfIC", "v3LzmLUVwgAC", "v3vCw1T7yq4C", "v41wD2jEzQkC", "V54naZlLOi4C", "v5aU82lCwccC", "v6Nv22zpEMsC", "v6vIrPFCJoMC", "V76H9NQUbp8C", "V7SsFqkHaC4C", "V8BQNWkvddkC", "v8fnNHXeEb8C", "v_7BR5kU7QAC", "V_IMCohto0YC", "V_ZjKmO24ooC", "va83wz5u7ZAC", "vaj33IYnl0YC", "VAoSXvUROnwC", "vAzmPrsjrpwC", "vazz9jFGhc4C", "vb2N_BEc7rcC", "vBB54ABhmuEC", "VBhUV9DP5LUC", "vBISE7equQ4C", "vbOCF_qzX1QC", "VceR7vhczmcC", "vcnEIw3HYUwC", "vD8S2kkzEgIC", "vDQf8U2Tcb4C", "vDRezS6n5e0C", "vDYk0hyuEWUC", "VEof-jTO6z8C", "VfdbVKeF00EC", "vfn8iIujiqkC", "vgGJo3wR6sQC", "vGJJHsJASekC", "VH_YLJZHMlYC", "VHu3wL-lkjgC", "VI-Z3_0l1zIC", "vIobJo2oDA8C", "vitoIs2Cr7oC", "vj7ybCmMe5UC", "VjaK5lke2BUC", "vJbWK3ZOz6YC", "VJK0Ffr7LL4C", "VjRw6SLS6BwC", "VkAIRAwtXbMC", "VKB0vasDiMMC", "vkC7vC78f4AC", "vkZruQoCA7YC", "VL2YyP7qN8sC", "vL6GBI5JFKIC", "VlbQb4fDNaIC", "vLcdDmLQbNIC", "VlFWzpsWNHMC", "VM4GFlzHg34C", "vm_KCE4XXPMC", "VMaPd86rSiQC", "VMtYQ2yEIb0C", "Vn4n9fJYivkC", "VnJ29GOasfMC", "vNQ3K5HfiHAC", "vO0OArqchzcC", "VOA_B_72BssC", "voiup-mz2CkC", "Vp-lB-r2jcAC", "vP6QdtNb3NoC", "VPdWbqXkRwwC", "VpkbchYdHzQC", "VpMxQAe_R1UC", "VpynYE28wDAC", "vq7eeFukzNEC", "VQ8Dji_otuMC", "VQrC1zTh6WwC", "VQYKRZo5fj4C", "vrAja1wLa5AC", "VRQF0ws5Ps8C", "VRrm_CQd7PYC", "VS26zQZ81nYC", "VskxkGOz-5AC", "vssg7oBsX6MC", "VssJ5c7KsNwC", "Vt5QfVZLCWQC", "Vtjr4N7ZIb0C", "VTN5v_8IY8kC", "VtP9wYK2ws4C", "vTR5TfkMo8sC", "vuBXrI4_hAsC", "VugJuXuobUQC", "VuiQGIl0GVwC", "VuYDPDHttQkC", "vvi0pa3X8REC", "VvtLdQ_JWI0C", "VVZ9995LHdMC", "vWIVyXC2rK8C", "VXp3l0ZXZscC", "VXT04BGUPU8C", "vya66ZMsKhAC", "vyytRY0STBAC", "vzdbUH74-z4C", "vZdMfbamUbQC", "vzKx12aNFZEC", "VzvlkNQnz2UC", "w-4UAn9A5IQC", "w-rb62wiFAwC", "W-T3-55PL_UC", "w0AQbV1Yv2gC", "W0Ha1AYQ9PQC", "w0HzM7RzzkAC", "W0ucw4WwLCgC", "W1KFNeoVo-UC", "W1oLHR1zRWgC", "W39p_m_eK2wC", "w3nuf3FThEsC", "w57G3DshfU4C", "w6NLi9nyWJoC", "W7XRfHzoUt8C", "W8bxvyiMWjUC", "w8DFaxItUf8C", "W8oYW15gH18C", "W9UlXT9_srgC", "w_KLe1AylhEC", "wAa9qq9kbncC", "WADDM36d3TAC", "wAdUjtKxyQYC", "waQTwXPvrKgC", "wbJsCd9mBKcC", "Wc9zUQin1HIC", "WcBG3YOei4gC", "WcbvthlLe3kC", "wCIDSZ5SX7gC", "WcIsm-pa81YC", "wcrnOmttT6oC", "Wd0UuFoJHMAC", "WdD4GRa0WokC", "wdGdQAVN8b8C", "WDyRGAfLeycC", "WE56DE4iZ1sC", "WEhp2bcpeL4C", "WeWE_TA1xf4C", "wF93D3RESCMC", "Wffn8Q_nUucC", "Wg66gWttf-cC", "WGGGLt9ne7EC", "wGhwAajnbUcC", "wgmtlfkwMdoC", "WGudVA5jz3cC", "Wh38a8gCR1YC", "wH6mVwu-o80C", "Whh6Gqep5JYC", "WHmMhb8usnsC", "wIaOzaH2xhAC", "WIcUq43zKzQC", "wiELCaS5A6cC", "wIFW20Vb6yoC", "wIHvn-CZyDIC", "wip9RnTSQkQC", "wIRoUV4zomYC", "Wj3_t3JQi74C", "wjEkgQZhqQ4C", "WJF9OSx57G0C", "wjPnFzWFHioC", "wjxrloC2gyMC", "wJzaC53nfjAC", "wk7OS2RM6yEC", "Wk_rW5ls5ZMC", "WkaDXMQwjgUC", "WKSgYUH1ZrAC", "WLc1uaZ3uQYC", "wLiz-YM2xhgC", "WLky5avnUWYC", "wLoKfdx7-3QC", "wm0JI4OwwewC", "wM5jDrPpDN0C", "WMA5OJCTCH4C", "wMaa_8Xb8IAC", "Wmq4IoyD7YkC", "wmTuJF6FbKQC", "WmUSPSLxlPQC", "WmUw83YShgAC", "WNDpC8SR784C", "WnGFo9t_IOUC", "WO98q-vYCYEC", "wosmqf485hUC", "WOuuYHLvYjcC", "Wp1XC3mN_2IC", "wPkSa-HN_MYC", "wpqvUuohLcYC", "wq0ilxW2vqUC", "WqAlWYtemkIC", "Wr8kC-w7JAAC", "wsINE_FYvboC", "wt35LTE782MC", "wtcUDTuDvcwC", "wtFtcD-u6YoC", "WTkreYxHt7kC", "wugATspM3_kC", "wUgQibrOaRMC", "WUPkrIURLK8C", "WVlWFpXP6pAC", "wVz695SACj8C", "ww1McrTprWIC", "Wwr_6d-81JQC", "wWvmlkiMdccC", "wxu_2Jmu1SUC", "wXW9mCfmeCkC", "wYc5_9x-vYMC", "wYeYMW2VJOcC", "wYjr2x5aBhoC", "wyMh187NfMQC", "Wyxj7Y3Fh7AC", "wZA6KEKKL48C", "WZizrtIcd58C", "wzU8hMXumDsC", "wzVeU1tbS9kC", "wzvgJAT0hFkC", "X-K-6gLqjfMC", "X-yja2PWbOsC", "X0qyLfOh1wwC", "X29egdUI4WUC", "X2IGPFRi3VcC", "x2OnhrVLMX0C", "x3FYLq_E6aYC", "X3zpP3adixsC", "x5GZe2b1T5kC", "X724dVctLwMC", "x8Cxy9E9ctYC", "x9dq3UEW2S8C", "x9Ph_EeUGlsC", "X_4Z6_ze6QEC", "x_FVF_Z44VkC", "X_g3l2bLmfMC", "xa0jilK-wBEC", "XA2CIjIqxPkC", "Xa4ZPBvQ7wwC", "xa6pUrdsRJYC", "XaZ_EXZxcgAC", "XB6ckxWOq9kC", "XC_QGlNr6UEC", "xcL6uJBrEP4C", "xcYBiLQM8D4C", "xDCfd-wJ1nYC", "xDptolIJzuMC", "xdunEwG0ekEC", "XEbyTBf7EiQC", "XeFUnQ5T4ZsC", "XF6jHaJL7-kC", "Xf6PZclfvyEC", "xfKLCGCY-IwC", "xG3vyS2XmiwC", "Xg8V-Q7Slh4C", "xgVgTyZEcEIC", "xhLJvNa3hw0C", "xHpBz44fTkMC", "Xhzjutx6xXcC", "xiEXEWPb0u4C", "xjhrj3Au1YAC", "XJkbu5qnYw8C", "XJkW6G12GnoC", "XJLX3A9wDwQC", "xjPHxJNx620C", "XJSdT_4NWTMC", "XJYsQAhR0woC", "Xk0NR2m7SmcC", "xKAfOh_De1kC", "xLozeea_y28C", "xMptYMB2jgAC", "XN0YxwnmW8kC", "Xn4TW9WsGcsC", "XncmdPu_yykC", "xnd6J2H_Hi4C", "XnKrkTozrGQC", "xOs4YQg0z_oC", "Xp6vEAtv5JgC", "XpDNvGEAe7UC", "xPF9Hb7DPLgC", "XPfQIK59tucC", "XppZdaDs7e0C", "xpXfiGyGbYEC", "Xq_QETrozC0C", "XQDjUGNtapwC", "XQgd7Bzf-SwC", "XQiwtnVqsvwC", "xQUkutYqkz4C", "xR2GawWTausC", "XrDPPG0e1XkC", "XRudk_NcA7cC", "XSPNUs8flVIC", "xTFw4h2p9m0C", "XTldGQSpnSgC", "xtlipDsvjbMC", "XtS0pZ4iiaYC", "XtU5TuLc3LQC", "XTv8wmnkif4C", "XuB3bzU2jYIC", "XUcWWiRp8EkC", "xULD1fHFdnwC", "xUzaWGocMdMC", "xv1OQIhdYiEC", "XvncO5yhtRIC", "XvWq5fQbUXAC", "Xw720FqZ4tgC", "XW_Wvjwt5nIC", "XwaR3Efr5xkC", "Xwtf8xn5oosC", "xX_rOjavnGgC", "XxoVcV6L1WUC", "xXZySrxyCR8C", "XYN8GF8Tg6QC", "XYno9yAbYvsC", "xYoPWwqWlZcC", "xZ1dKyGlFpEC", "XZ_L7qpBphgC", "XZkmY8pBCzUC", "XzZsuib2o-IC", "Y-BoqcxnjHMC", "y-dYbFcEtRkC", "Y-rDB1iuKD4C", "Y-zAdmcmpr0C", "y01CkeGoQBsC", "y0NEkHDng8kC", "Y2Mwck8Q9A4C", "y457SKdxBjgC", "Y6opRGhAvtsC", "Y6Q9DyIsEv8C", "y6TlC075m68C", "y77n2ySMJHUC", "y82VKVtQyF0C", "Y9RC-KWX7NEC", "y_8DsXWLV1YC", "yAGyi110qQkC", "yAZo2iCsCnwC", "YBJyS4ONR2AC", "Ybsjrj4Cj_oC", "YBTzuxRVppUC", "yBvwlp82czgC", "YCz0J-8HIIMC", "YD3DmobOQ1UC", "yd8ymZJI3PUC", "yEE5Byt3Yn8C", "YEnl6AXNgjMC", "yEvCzH8lTZsC", "Yfs9Vcgc-IgC", "YG3PX9nKxcwC", "yG7dKaS25OkC", "YgGzvE5QfUcC", "yGWzMkuQuAoC", "yGzGUapBwtcC", "Yh7SFWaXGmQC", "YhgcwJ1L-s0C", "YHMOopeGRLUC", "YHPmmt9VvF8C", "yHuMzHT1ymMC", "yhVvGG2wk6sC", "yi4rHT-XFREC", "YIhZQkLdV5gC", "yJ5eW6WbkZkC", "yJ9txWojyRQC", "YJGDWnNxZgUC", "YjR5Ve-zTcYC", "yjW4Qo8aVa0C", "YkfCt1ci-gYC", "yKIy-iHLaiEC", "YLf-ZgX-UbwC", "YLG0VQhpBREC", "YlGSROC8f24C", "yLnfnsSjs7kC", "ylOpe_XWA20C", "yMAK06tbIQEC", "YmWF6E452ygC", "yMwiTTpwasgC", "yNbybmjraNoC", "YNf0HXz7DzkC", "YNkNV-0dqoMC", "yNMBdJjMDAMC", "ynr1IgaajCAC", "YNr8R3Pz4BEC", "yO2yG0nxTtsC", "yo4D8ch_qOgC", "yoP8GwogNwoC", "YoWHawdOEasC", "yPBDST7yCzkC", "YPI00cDVcuIC", "yPPeKkqCX3IC", "YPYmS6tzg3IC", "Yq80VBOTOO0C", "YQJtrDm2m8YC", "yqM4zGmsYioC", "YQpUF06YzgIC", "YQqzosYoyKEC", "YqSsNCkr4P8C", "YqUrwg2oKMYC", "YruT5IEUQ40C", "ysiSyAiBL3EC", "ysLtzvYykasC", "YsrVKLkmOYoC", "YTEB8cwULEoC", "YTkZPwz-IisC", "yTqN9YLy15QC", "YtTAKHTADK4C", "Yu2oPyz_cusC", "yU5ezbYpJcEC", "yv3eVLIKUbkC", "Yv8qGDyMCcAC", "YVteNzkhHYoC", "ywr0CcGDNHwC", "YwSKMQIymxsC", "ywUiQD0ExS8C", "YwvRsvYofqoC", "YXi4TxShj7MC", "YXjEJmEuSw4C", "yxrwrGNFe8EC", "yXSFWak3ExMC", "yXUjLwz-LbcC", "yY0UFm0rwyUC", "yYE1mOtXiakC", "YyOij4PJX3UC", "yySSPhUSBDAC", "Yyxuxa-4z38C", "YZ0CYplKus0C", "yzewmitzYgEC", "z-mixu2SLyoC", "z-WsBum6UckC", "z-XHduBD-fgC", "z03CQmKJuC8C", "z0Vxqx9UBxUC", "Z20jwWZr9rAC", "Z5jDzJD_8jkC", "z5m6Iq-d0fkC", "z5PCXXkpVRkC", "Z67UVjeaYU0C", "Z6IREjoKKSMC", "z6nLTGxdAIQC", "z7FxeM_bLL8C", "z7GVCC0hlBsC", "Z7XSIdAGjY8C", "Z89d21_IaX4C", "Z8nOkDyOwnUC", "z9xMfXGoWd0C", "z_LZp0HLrzEC", "zAEtQO1y7qMC", "zAirHadN5cwC", "zaZ8mAysMeUC", "zaZJTCOL2zwC", "Zb8giChIpp0C", "zBcGaNyjIakC", "Zc11bf7iopcC", "ZcGvAzjPSboC", "zCiuBsoCiAwC", "zciYiyHBb_EC", "Zcr7qa3b1xEC", "Zd1l0Ivij8wC", "ZdAaM8LdiMEC", "ZdcWjMktgz0C", "ZdlHoksfOuAC", "zdn7ZhQb13oC", "zDUNcRJHPPoC", "zEA5ve49rGcC", "zEb7PjUzZqsC", "ZEcqBsj4nzgC", "zehMDN6VEH8C", "ZeNbiH_7W80C", "zf0XkweGmlsC", "ZfuiGIlEhE4C", "Zg9zkoeC8ikC", "ZGCaf4HbUMsC", "ZGqcDmY1V_EC", "zGwctkli91sC", "ZH5OHnoFkdoC", "ZHEYK-O-CyYC", "zHSKn-li060C", "zHSO2GUV9ucC", "zI9VMiSN2b4C", "ZiEbz0B92nAC", "zIfWQF4BmggC", "ZigB9tzZ6nUC", "ziPDbUsmdwMC", "ZiVRnurrtzoC", "zj9NFQ-R0O4C", "zJCkBsVE4e0C", "zJExf_8IszwC", "ZK_fL6GQQ3MC", "ZkOEFzU5KfQC", "zkteuesBwpQC", "zKVjWGmUMsQC", "zlEriTpFmKUC", "zLjdSAeUHNUC", "ZLk-uuTII9EC", "ZLRaCF3rPwoC", "zLyrsEvkaZUC", "zMb-ettxv2EC", "ZmG_FiqqyqgC", "ZmH2rNbYVUAC", "ZmIcSTz5I-MC", "ZmRXTGKNUacC", "ZnahFZulWTcC", "znBbzQ_xb44C", "ZnC93TifTzsC", "ZNFbrV028y8C", "ZnFzSgYtgSAC", "ZnOutTTiMrAC", "znXDfnRWpqsC", "Zo0LzmyjP-4C", "zo4C658vKIAC", "zOBmXKh-OicC", "ZofDHNpTlrgC", "zOsz3T_YX38C", "ZP5fR-FfEvIC", "ZP9Rg_dx_JUC", "zpdvLYZX2kIC", "zPJrA-irbp8C", "zPxCryQcBwAC", "zQDMySj1ytEC", "zqHiiXjk6xQC", "zQlpLeSVg4gC", "ZqM1fdyT-HEC", "ZQRFFeUnLUIC", "ZqXo8b-P8DUC", "ZRI1DvA4R1MC", "ZrJB-MsbWvoC", "zsDExU_Oji0C", "ZSfix9YX33UC", "zsRtUi8r-fwC", "zSv6dBWneMEC", "zSV6gfQSMeIC", "ZSvSfCmzo2wC", "zSYm8sBkECQC", "ZT8pJZnkAysC", "zTa37YkeYwUC", "zTB98B5wOC0C", "zTd05X5fINgC", "ZTL1LP6SitAC", "ztnY1wbBubIC", "ZTtvaxiqdpUC", "ZTYG01M4xLQC", "ZULgTHal9iIC", "ZV3afTMMSHsC", "zvyBq6k6tWUC", "ZwcbYU9lI8cC", "ZwjiMn4-_T8C", "zwPKJGpFJmUC", "zwYTsxFqZ1MC", "zX0mefUtuHMC", "zx574VhlOOoC", "zXWXyM0CqHsC", "zY3HGzU4WSsC", "ZyAt3T1V4EcC", "ZYC9J99h_KoC", "zYgKMgNoO5kC", "zYk5y-t1950C", "zyTPMwa4iVAC", "zyzNGXvy-6QC", "zZdMFSI4wGgC", "ZzDwREJdaC0C", "zZUcvgn33YAC", "ZZueYtIK1OAC", "8KSd2u8LD2MC", "bLOKdFhvUZcC", "BPpCOYH2RCgC", "C4_7_rbKy-QC", "ceYlEs6gT3QC", "d_lVB6HZJ4YC", "DpqPwAk8UvYC", "dxumVrUrpYcC", "EhmN7RRA_ugC", "eoy-khRFxGUC", "fT6U0Ee7_kQC", "GU1cifth7UAC", "i04gvDRlG3IC", "iykLVJAK49kC", "nI3JXcSjvwsC", "nSvBa7hvG1EC", "NTWZOS6Ew_QC", "PaGLM2GozFoC", "PFYBPAS3LIEC", "qB9vnlTv6Z4C", "ROZpwAolfS0C", "TuoFvFXf3NYC", "U77um_h_dgcC", "VF3fYPWhRZ0C", "yA8CJ_xxNLwC", "-Ac81W-ZQDEC", "-g93J_EADYgC", "9sHHczJ__74C", "aN6SxmXodLkC", "AOKXOA9jxYoC", "AYUZIqbH2F4C", "b2ov6zAspKsC", "bEdfDabRIs4C", "CYQZUeo0mcMC", "dTmVGc4SoRwC", "ECWbSMvY_yoC", "g3dIAAAAYAAJ", "garJ9BwysNEC", "H4cbM4mroF4C", "HZc3FzaajnMC", "j4PpSFWmNQUC", "jWgXAAAAYAAJ", "KqUVJLLDJbQC", "kyWrpT3TMTAC", "nsW03V-aBDAC", "qE2FPaaAa6wC", "RAUKBvP5OfgC", "rUbjngR5YqIC", "SQhknRXlyvkC", "u9udoFdoMooC", "uaAMQY5-4nMC", "WMZ959gYm0IC", "WwmkMDW1GxIC", "xEKrdRy6Yn0C", "-3xLKI5mpTsC", "4HIWAAAAYAAJ", "4mOrEoLlJQMC", "5Wa1OGIrpfsC", "6a8HvlJBqu4C", "AcFukkjcG6EC", "aDzteIlBZ-gC", "B73wDUgCSk0C", "C-7CUEbWSHkC", "CfPWhC7NKlcC", "e8F70MxEViAC", "fUIZtMHfyisC", "GX5PtCqGnsIC", "hG4-QGmD_84C", "hsgseqd6jW0C", "ikniJkskaZIC", "jIEhvjDHdwQC", "jy83rMzyVKcC", "K3uKk_QBg4YC", "KJfZw8djFIoC", "nRz4SETLpucC", "ob9NMdgEs-EC", "Qbln_WYE65cC", "qUelIDH7unkC", "VqU5HA3h3SIC", "XeAVAAAAYAAJ", "xllOU8qyH5QC", "yO3lSt5C3OEC", "ZMV0OxvLseIC", "0ZOQM0b3CIEC", "bfXZpcLNv7UC", "c7K9joiXqgYC", "cJ1kUY-wUVwC", "cZ_F_J1308wC", "GITDL2ZCedkC", "ixaluvF7Mx8C", "lez8urgN7IsC", "MlOWsTGRARIC", "OIk7WeItvpQC", "q2eNLtaZ7osC", "QwptKz0-wL8C", "R82YRMlkujYC", "xdbrbcBssP8C", "ZbnLAfbazQ4C", "1F2N9Q6NISQC", "1xlR5HF9ZhgC", "6VJ7KzN1x_wC", "_U0oAK46KZ0C", "aWmi9nbSr04C", "CcJjP5T0fwQC", "dfysT8sctZAC", "dYMS5W6_Lb0C", "eK0SnBnpkA8C", "HQwZYSf8x-8C", "jy1wYy1s2cAC", "k63dDkZnAoIC", "lb96g-R0yFcC", "lCNdMetFtm4C", "LnkpdauAHvEC", "PNjrRKR3sKoC", "q2E_qQwNi84C", "Qa8IoiT_3kAC", "rKNgpIpk00sC", "rYyxqSi4vJEC", "tMrWdiJa5kIC", "uey347n5FmMC", "wXVwWWBl0S8C", "ZswFrYyJ6dMC", "0JMqA3_JQ30C", "1rW-QpIAs8UC", "2weL0iAfrEMC", "3bKJ-DZZpWIC", "5HCaqYbD5t0C", "5NfZvS8gCeQC", "6vIfS9fiMu0C", "7BUf0xhBN8EC", "9m9tNj2w2bcC", "alR-oZEbPFUC", "AUqkcy2G-N8C", "BersqPj7I8sC", "BIOMtGClRbcC", "BJcgLVibkrEC", "bS70a4o-wsEC", "ccnkgkRSIMcC", "CdvXLjqAcccC", "cMWIkZzNgxUC", "d8lp4Wth67IC", "DCqFYOrGyegC", "dZqcuS2SfDgC", "fJelZ9wO11kC", "gKSp69qW17cC", "HjRPMPdVlYUC", "HRCHJp-V0QUC", "i95ShDMoWl8C", "IhFHHJ4hTnoC", "IwywDY4P6gsC", "J4cTSAXOC6sC", "jUX8N9kiCiQC", "JXKlVTGYOq8C", "k0P11ZxGN3QC", "KYs2iT4brBQC", "m_MwlF3VmKgC", "MJgN0BWagZcC", "Ms_VAVC4IJ0C", "nXYsBeGHHWsC", "Ojqi8KbWuLwC", "p1hd3kN0odgC", "P29bv8K6lXAC", "pMnySBrsQ70C", "ppLI3zTIhQ4C", "PWuh21HK5DsC", "QgzBqhbdlvUC", "qLfZf7f5_pkC", "RMd3GpIFxcUC", "RRUkLhyGZVgC", "S4v4JCNH7KgC", "tcjBGGcB8QMC", "th8NdVD8E0gC", "TlYexn8n8gQC", "Ts4PoJismWYC", "VhKiOWjjB5AC", "WSCEgZsug1oC", "Xgaf0bkDcyIC", "xWjTZhw1MiUC", "ykz7uzPEMjEC", "yOrLifj9vzIC", "ZXRxl3Bl2xMC", "-A1mSoCEOm0C", "-aAwQO_-rXwC", "-ak5icwgpRcC", "-goleb9Ov3oC", "-iBS6-2OO3wC", "-Kzb2LPyE0oC", "-L99RHLc3WoC", "-nGQ0N7P-EYC", "-pB1UoFnjZcC", "-PS1vVwZlsgC", "-sFpPTDMyrMC", "-T7z7wffbVgC", "-T9Ba5NZ_jYC", "-vhCqN2twGQC", "-ZVoVtwCMz0C", "04CSCh06t0MC", "05qJUAYfFycC", "07TScp8-0tcC", "0btZWYVwXkoC", "0gCmKrNJd8wC", "0IUC0Mxdl-0C", "0P2nLQWsG3QC", "0PCwIecU6PoC", "0UmvRJkREtYC", "10I6OfI_MOsC", "11BnFWuym8AC", "12Pk5zZFirEC", "1_eNSlA-2WIC", "1exhZf_kk_UC", "1gudrZd7CQsC", "1GWERGJlwOIC", "1J4pZFaAwnMC", "1K_wEFkeFmYC", "1ml95FLM5koC", "1PSwP25DkcoC", "1q0ae-XNmWwC", "1R75c1UxVE0C", "1TiOka9bx3sC", "1ToTgls77wUC", "1trnFmoGajYC", "1ttGagcQQi4C", "1ZF625C3My0C", "2-7DDxR-3KQC", "240uVq1tL0gC", "2aFQoNOCUCwC", "2CSkYN2KGjQC", "2d-RLuD_MX8C", "2eiErUtb-p8C", "2Gfol9An-wEC", "2hptMOgYHSEC", "2iKL7zr3kl0C", "2kL9sbknSc8C", "2ndITi80AcsC", "2vD8gLn4otkC", "2WG7cwrN2r8C", "2X-PWN_f0xwC", "2xaB9PksH1UC", "2YbevnCXAhgC", "32-r0N8l9BgC", "3A0SF9sk3EIC", "3BJdlkZ6kDkC", "3C05cv30rkcC", "3cn2R0KenN0C", "3GWqOS-52IsC", "3j5tyWkEZSYC", "3ksWYtJflsQC", "3LwmTxRRMiQC", "3LX7nh7hRcwC", "3M1RSHUqkNEC", "3o57NbjApJkC", "3REGuousjN4C", "3rtX9t-nnvwC", "3wasr5JWeicC", "3yMZOhzLhSIC", "3zmVaLrGIDEC", "45ADMg9AA7YC", "48LKoLGCyJoC", "4ikgmM2vLJ0C", "4Ll-PPvmduUC", "4LVeJT7gghMC", "4mmoZFtCpuoC", "4nd6alor2goC", "4t-sybVuoqoC", "4TjL9Ox1ntoC", "4xg6oUobMz4C", "4xlZeu8O3lcC", "4xz9OqthGW0C", "4Z5x82ImmF0C", "4ZjfJ8cPe1UC", "50lo5A_1jDIC", "50qHcSNVVEMC", "5dO2lAMQqhIC", "5GppqmU13pIC", "5HkS5BEBKLsC", "5jNPsVIcHt4C", "5k1D1TO3iQEC", "5KHXPeiSYBgC", "5l3CTPeF4D8C", "5MF4TPsIZj0C", "5OYP9Rt0NdoC", "5PorGvw6SjkC", "5sWxHTayN0wC", "5wsK1OP7UFgC", "5x1lzLq2Ft0C", "5XEMuJwnBmUC", "62l_suJtyz0C", "64zO-_FNDrsC", "66h1xWOV8c0C", "66TgFp2YqrAC", "6hkR_ixby08C", "6LpfzaGv1aYC", "6lVEKlrTq8EC", "6PY_emBeGjUC", "6TasRmIFOxQC", "6TfTS9ITW7UC", "6y_SmPc9fh4C", "6ZVkqm-J9GkC", "7-Fe-PRzbEwC", "7AFwtCfB7acC", "7C7oIV48RQQC", "7Sc4p5-ghJcC", "7TKf8BQFoF4C", "7wvrD78mUEcC", "7ZNiOo89Er4C", "834s9cWP4rgC", "8_KTbTmM3M0C", "8b-2gaCHPC4C", "8c9a9jarbMwC", "8HLqaeTFg7sC", "8i65CApWCnUC", "8jkBcSDQPXcC", "8kj3dlshk88C", "8md43ihiJ_cC", "8vZBfWypDhUC", "8wRu5InF79gC", "8xNAMDp9NasC", "8YugVtom1y4C", "95As2OF67f0C", "95ZyM7vujG0C", "9a_SyUG-A24C", "9aHawVmF_lgC", "9dqQY3Ujsx4C", "9gUrbzov9x0C", "9IH-7kSW4aIC", "9nOljWrLzAAC", "9oCHolP7FD0C", "9S9__jWLI9AC", "9uheAs3jS0sC", "9ukKq4MTYosC", "9XwBSmv5gQkC", "_0H8gwj4a1MC", "_0W5ByvEPEgC", "_2BuAVaMM5YC", "__sIfvwqVWwC", "_blECNR-6_4C", "_EyFjj8RjOoC", "_fehXFJYw0IC", "_kWzkDcAGDwC", "_phRPWsSpAgC", "_uBqNByaO0AC", "_vLmG9qEROgC", "_W-HKRVsfoQC", "a1oW4XozmDkC", "a5EoTv1OyTUC", "A_LL2LQASdoC", "abo7EABChYAC", "aDUcWY2ewlwC", "af3tmwYlgBEC", "aFcsnUEewLkC", "AfL0t-YzOrEC", "aGJPbks3necC", "AhEBg26pUNUC", "ahvvPmDtF-YC", "AJ_eBJtHxmsC", "ajd1V305PgQC", "ajqdpRHpO-oC", "al-R4JKev9EC", "ALeXRMGU1CsC", "amcdGPg5Q7gC", "amXicbM6BCkC", "An0-v7dEJjAC", "aP9K8wyxm-oC", "Aqidsw3SkDUC", "arXrC7N2IyYC", "AS3uSFlVv2AC", "ATNy_Zg3PSsC", "aUJNgHWl_koC", "AW7ekICdHAIC", "aYLi55kim1gC", "aYNCTZ16yAYC", "aZCAXVMDh6EC", "b6BT-AYpUNEC", "b7GZr5Btp30C", "B8_1UBmqVUoC", "B_1HgSfFnnIC", "BCvtssom1CMC", "BEwIQs5xY_8C", "beXegQJwqTQC", "BgVuXsW_gO0C", "BIJZTGjTxBgC", "Bj2HHI0c2RIC", "BJGCuje64FcC", "BjVsa4uDdAcC", "Bk_q7dal8XAC", "bkz7stcdbKgC", "bL7QZHtWvaUC", "Bm21Fz4TD-4C", "bn5GNkLfnsAC", "Bosc5JVxNpkC", "bowcw__fhuUC", "BPm4izC3prUC", "bPoVokUhRC0C", "bPP8Zk78a70C", "BQ2L4J6Xy4wC", "BQYR6js0CC8C", "BraohBA1avIC", "BRXXrVQEjHcC", "btxslX4AXTUC", "BTYXkirY88QC", "bv8IAqVh8EAC", "BZ1BmKEHti0C", "C0sUyTpAAQYC", "C636G0btdUIC", "C7M0tiUKMccC", "c8ALAAAAIAAJ", "CAFR6IBF4xYC", "CAm2DpIqRUIC", "CAVIOrW3vYAC", "Cayp_Um4O9gC", "CcjUGVlekQQC", "cdBPOJUP4VsC", "cigGNKrQzz8C", "CjAnY99LwTgC", "cjdNRUsOhgwC", "CKM5MUMtlcoC", "cmTZ3RMv_OwC", "cOhb6JXKOrQC", "cp5XkRVbixAC", "crzkrzMji6MC", "CTrT6wh172AC", "cu5IY6ygv9UC", "cV8xnSIa0-IC", "CY3b0mcDF9QC", "CywS3hbvth8C", "cZa3DlaSTqIC", "D-3KYbfqI2UC", "d1VgIgCq18sC", "D3uGQFvx8DEC", "d5JwYbI5P3cC", "D7TseoWoSbMC", "D8GqhULfKfAC", "daHa8NMqnwQC", "DB7nanStgAgC", "DcoqRQ47bBIC", "DdlNuvGMPisC", "Dg6SArOSCmQC", "DiWBGOP-YnoC", "DjV5hgTWNGEC", "dOg7Q9_JWAMC", "DOGQDHo8ihIC", "DOkj9TTvvN0C", "Dqz-2gf6E6UC", "DtRpdVi0Wk8C", "DujYWG8TPMMC", "DUKA1_lFigcC", "dvn3uent7VcC", "dYY3FF9jZbMC", "dyzDnCLWJugC", "DzpLddaKog8C", "DZvXOwntNZ4C", "E-Rugdp6qhcC", "e-xsrjsL7WkC", "e4a5-ItuU1oC", "e4igHzyfO78C", "e5dkxDhDjCoC", "e62RhdqIdMkC", "e799caakIWoC", "E_9NtwNY7UcC", "EAKnwRtpLcoC", "Eb42B-GQzV8C", "ebmErco-iKMC", "ebnitl7SNLQC", "EE6BmZJN4-gC", "EE_RN4aVs6gC", "egBeCRxm5yoC", "eHANhZwVouYC", "Eiji-EnuhXUC", "EkMVZUxZrgIC", "ElF3FHwouuIC", "eMBG_soDdNoC", "eoh8e52wo_oC", "eoZbYsAa4x0C", "EP6-ogoEBlEC", "eRFL_367VoUC", "eTve6XEUbYIC", "eX2ZaT-4_wsC", "EXxAswWsfKwC", "F-xrdbnQ6HQC", "F40VFo10z_MC", "f8EOBjMJMZcC", "FDjtQsXv_JUC", "Fge-BwqhqIYC", "FGVwp_WrWNwC", "FjgxVAzS5UQC", "fk7SawIjG3IC", "fKfSAu6v5LYC", "FkhBUABBe6YC", "fleOoPdOHuUC", "FlUj0Rk_rF4C", "fnO3XYYpU54C", "fPEKgIA1Hs4C", "fPzgHneNFDAC", "fQPaHzqyUxoC", "fSUZa2YTDcAC", "fTQhA56xtM0C", "fuL-_BhZFyEC", "fuq94a8C0ioC", "FVC9eqGkMr8C", "fx3wIM1_DSoC", "FXs-uRSDBFYC", "FYMVNMlz130C", "fyVtp3EMxasC", "FzPaB_6Pw4MC", "g-NdglUBHSUC", "G3ig-0M4wSIC", "G_yomLlpp4EC", "gBJbpHyFf7MC", "Gc8edC9wPEgC", "GDDhso7XjngC", "gdTIB8pfyREC", "geN6MUthHdkC", "GhCHtcyf9AcC", "GkWRVHPpQ0gC", "glIu5tT3abgC", "gM_IMlsbTqUC", "GMuSEzGL5XcC", "gnh2Rb1rcMIC", "GOblIwn-0AkC", "GPE6ZAqGrnoC", "gPHjjrNWaQwC", "gPvk-eE7t0IC", "gRNDLAK4kPUC", "Gs5PRR9-8BcC", "gUsX8yzMHaMC", "GvK7m9Bm6UsC", "gxFGJu_N8l0C", "Gy_T3abN6AEC", "H1VPa_mPaakC", "h2VxxlEKTokC", "h3g3GicFWGoC", "H3nCwyx8bf8C", "H_yEm6z1u84C", "hAi3CdjXlQsC", "HAjfSA3ir3kC", "HAPhBsmxtaYC", "hbOtcP4F7zIC", "hC3cgIKwXkkC", "hD0PNMu8CfQC", "hdvsn-N4nY8C", "He7Ge-Dz1HUC", "heBZpgYUKdAC", "hhdVr9F-JfAC", "HhwifKDS9ZkC", "hLjVKucYOtsC", "hmfbjsogFAoC", "HOLITuv6UvkC", "HpH7qJNt7MkC", "HPkTKm_bUbgC", "hqucruPBheQC", "htZzDGlCnQYC", "HwYh_FHh2VgC", "hXGr-9l1DXcC", "hXGXc2iPKlUC", "hxml9KC0GBUC", "HZzpv5Q5fBMC", "i-Mt27qe598C", "I33IwXtJwbIC", "I3aNPR1FursC", "I5GcpyPx3RwC", "i9iPG7C3EP4C", "Ibcy57Hz4tcC", "iCDr6AsHO-UC", "ihzLdVtdZQ8C", "Iisrp6FPHaYC", "IjxMRgYhQPYC", "ILPNO5j2sOkC", "IQvFpyBhGHEC", "IrLXImwvDiEC", "iTpXLrPR2TQC", "Iur4CMs_EtYC", "ivEfPj-mpqcC", "ixHcs9C-NCUC", "izPo3KwVucIC", "J4DVFmMLjOIC", "J65nNxyoKVQC", "J93o05MH3v8C", "JbhLhvJ22gMC", "jbOHb2BAwzQC", "jboIUDsekmIC", "JCXZJSfCVHUC", "Je0qlv3ZQQ8C", "jEKGKWorNlwC", "JEZzcN8G67AC", "Jh59S6WIS98C", "JHMdZC08HhcC", "JhmWHw3qfDIC", "JHNPbt7pEeQC", "jIj-qAflWxQC", "jInV9Bd_Z88C", "JL1VM5wMbrQC", "JmTIWYs3yhwC", "jpxkQ-1elyAC", "jQA6wVLCINUC", "jQJ1J_Vw1N8C", "JrNoQNpSM4cC", "JuLko8USApwC", "JWAjm234VJcC", "JXFhzfy9SZAC", "JXWOqakIlREC", "Jy_rBRz9u-MC", "K-Y4mWxqh8YC", "K0mrPqWzMB8C", "K3GS2HFqOYgC", "K7VPVr0gtg0C", "K82mOsYwq_MC", "k9n8v_7foQkC", "kAa8wzlx9G4C", "KByAsGhYJAcC", "Kc6tnRHBwLcC", "kdDRJLxBhl4C", "kfMew5cFAJsC", "kFpd86J8PLsC", "KgfHxvGFHAoC", "kgvhQ-oSZiUC", "KHuYOF29QyUC", "KI4TH6s01esC", "kKLbyWycRwcC", "kmCI6l0o-6AC", "Kn_OAuktbq4C", "KNvxPSAYzbQC", "knzNIfmU2F0C", "KO0HSzikNoUC", "KO0tMOWl5AEC", "kP5qDIDDzFwC", "kQ9yVsm3mFgC", "kqn2-JywK5kC", "kQN2jMWUrSUC", "kRekNRGo3NYC", "ktma1QNK0MAC", "kuEjSb9teJwC", "kuFhjNZuHTAC", "kYYkfkHZGksC", "l1Sqtmj1LkYC", "l5tycCzdgNAC", "L9sYq3XSLmIC", "l_1xed01BsQC", "LA15eDlOPgoC", "lBg47Qr7fX4C", "LbVCdCE-NQAC", "lbxIFujfyIwC", "LE66AM36fHgC", "LeNwsQ-5Sw8C", "LFk3pHpFiG4C", "LG3-9h0ZtiMC", "lH6Sy-O13e4C", "LjcOPtNNcZ4C", "ljcOSMK7t0EC", "Lo2uCECV__8C", "lOnWsyu-u0cC", "LOODynIU69wC", "LQyUKopZcSkC", "lsQx0-3BPV4C", "luIVsjEYeWUC", "luUj8miPuIIC", "LvgD47sRQaUC", "lwaKAqUMG10C", "lYi58Tv9XpIC", "lYlMNqYwBUIC", "lYxfy6eJ_x8C", "Lz7LNak21AQC", "lZJD2zYGbNwC", "M3S8TS_impUC", "M5ebQh1lg8oC", "M6_uZrk7lyIC", "m6cQfXCETnIC", "Ma77jxOOmBcC", "mbKKzi5FniYC", "Mbo_p4-46-cC", "mc01rIPvkfYC", "mCE-VlYSRlIC", "mCGvUhYJBGQC", "MdPIAGigJigC", "MEbKsiomE2QC", "MF8yfy5cq5wC", "Mfjv6snK0-EC", "MgAqE2DCDfYC", "mGOpScSIwU4C", "MJcrTG6tJsAC", "MJPLCqIniGsC", "mLdLHhqxUb4C", "mlOa7wPX6OYC", "mmi_hBrCMMAC", "MMQDgUxu910C", "mp-IUPLINmwC", "mpAhhjPPZMYC", "MS2f3p0j55oC", "MuaMgeJ4FF8C", "muFCYYdoG4cC", "mz5lxQxgegQC", "N1hm_nUeIToC", "n2FA-nwz7GYC", "n5BlBsFbGOQC", "n6eiH3iPVKYC", "N7BvXVUCQk8C", "naJdU5fxuNoC", "ND0pmtL28TsC", "NGIIGZmarOAC", "NhAg6qFMThYC", "nIJWmnfzNGIC", "nJ35cT-IGAMC", "NJz6xRVdOgcC", "Nk0jHTnCg8MC", "NKbAEGF4N9wC", "Nl-vaAdJD3MC", "nLdLoB7zZ9gC", "NLngYyWFl_YC", "nrQ_3YxoE_QC", "Ns7psv2IJ7MC", "nSzoG72E93MC", "nT2kbcDtMl8C", "Ntn27W4nT7wC", "nTOFkmnCQuIC", "nVbRKyVBDGMC", "NynQQGQbglYC", "o12obKDqiZQC", "o1YpDokP-8oC", "O32VXB9e5P4C", "O7Rbx4ptxqsC", "O7vMyhYJtKQC", "OcbAOkX1uRYC", "OdbUxdAghF4C", "oFnWbTqgNPYC", "ogUR3V9wbbIC", "OID48u6zY4EC", "OIWNFaJvJokC", "OKEZgru9cnUC", "okSjKZ7An5AC", "OMRWM0-gSnMC", "oN4xZy_2DKUC", "oNklVtBSda4C", "orHgII9AODoC", "oU_-6ikmidoC", "oxfoF_gasvsC", "oy-P5D7hTVAC", "oY_x7dE15_AC", "OZVeoomxxhYC", "P10p-iR2zcAC", "P2PkZfwL630C", "P3sywFksmrcC", "P5GsREMbUmAC", "p7-Enmqb604C", "p8i33BpBn0oC", "P9YjNjzr9OIC", "PB733uKl-coC", "pBiPKtOYWpkC", "Pd8-s6rOt_cC", "Phtqa_3tNykC", "PI1s90jUcHgC", "pJX8yAaMtKEC", "PK_BGGCU_dsC", "pkW1ckw93vcC", "pLhb4dAWIAgC", "PmwfH7X-IKAC", "pnH2Sz5rY0IC", "PnVKu0Yp2bcC", "PnXSXb6866EC", "POG-LSUgYckC", "pPcQ1RIn9AQC", "PqcPCgsr2u0C", "PQo7zbsvwl4C", "pSdaNuIaUUEC", "PStOS3H5LxgC", "PTAiHWK2BYIC", "PtGdSELRYuMC", "pTyCHGmAgf0C", "pX4yxOHnWg8C", "Q-R13b1QdjkC", "q2HObxRtdcwC", "q3HwhfjRmswC", "Q5P2lFaM8GgC", "q6_56x5tB7gC", "Q7yPw1ODvBUC", "qa29r1Ze1coC", "QagG_KI7Ll8C", "QBebLwsuiSUC", "QcPRc-WAI5UC", "qDhd138pPBAC", "qhOMLscX-ZYC", "qIh6FkKdQP0C", "QiJRvuXA_VcC", "qjjEsQv1spQC", "qk8ps8dtZgIC", "QKoOBXQZAMoC", "qmY3JmLtz60C", "qop8k5f85LgC", "qpVATEIQeEYC", "QQdBlDBUFywC", "qqeX8MJurLkC", "QqNpbTQwKXMC", "Qrw6vrtkDp0C", "qRza88jRTx4C", "QSBlbbkXDwAC", "QSljY8xP2psC", "QUA-ZtqMZqIC", "QUDMaGlCuEQC", "R0UdWQ5thf8C", "r1ulmNr6YWoC", "R5P2GlJvigQC", "r6t8AmFSZ80C", "R7Frpn3g9AEC", "RbOYBr0M_wgC", "rcEEeFWBx_sC", "rfJNoXk8UIEC", "RfKMOwRb1-kC", "RJcBeywz9uMC", "rJiKbrZcijAC", "RkguTdoH3VQC", "Rla7OihRvUgC", "RNkFavRF4ncC", "rtpgMCVSopIC", "rTuCTr1pdc4C", "rubP60KftfYC", "RuX1cSRsL_0C", "RVrOhyTWpJ0C", "Rw4u68fxYQMC", "rxC8j3j8MQUC", "rxrJ1RWBXK0C", "RYCMx6o47pMC", "RYT4ylLK-D4C", "Rz3XpyQv5gEC", "s-8jZaXpoBAC", "s-9zCT2bTr8C", "s0khq62YOaIC", "S0lDWprGB5cC", "S1_hPAL8obUC", "S2lqgDTm6a4C", "S2S9xPNlGoAC", "S4BJKqVYjrEC", "S57m5gW0L-MC", "S6U6qp4xJMQC", "S855YcZlshgC", "s8gX0VAyexcC", "S9Y2JxSVJcgC", "sC81wohqV8sC", "sDUEiJuHaW0C", "sfduJhZsoT0C", "sfvnNdVY3KIC", "sI2bAxgLMXYC", "si3R3Pfa98QC", "sInqr5ILPE8C", "SJXr9w_lVLUC", "sKbCtww7hacC", "skEwuRfPmx0C", "SkswFyhqRIMC", "sna9BaxVbj8C", "so0gddc0w3UC", "soZMXyEm0aAC", "Sp7z9sK7RNkC", "sPpaZnZMDG0C", "SRfKde-5LI4C", "ssEbmvfcJT8C", "STxlycWlVS0C", "sVH3YlIZK5QC", "sw6FvZ1pTX0C", "sWu2bfKcyb0C", "sYgTwHQbNAAC", "SzKVdMrU7i4C", "T0Av5fU9BTcC", "t1RCSP8YKt8C", "t4xRL9aEebsC", "T70Ahd88jSMC", "t96gl1TfRBgC", "taa1oB24qmgC", "tfOQ4dzVxUEC", "TIlDhmuZ3QwC", "tiwxzqYq2o8C", "TJDGTP9Sa5UC", "tKoGFBA-nIEC", "Tl0N2lRAO9oC", "tl9q9DbnkuUC", "tLbt4eCcltcC", "tLWve-VvBLoC", "TnVICuub4UAC", "TNYhnkXQSjAC", "toNN2yNKRBIC", "TpEfdRUQdKUC", "TqRn1lAypsgC", "TRXrMWY_i2IC", "TRzS5F92QYQC", "TV2O8YYqz1AC", "tV4Kh6qMU24C", "tVtKEWjIrnMC", "Txr71zy_pRkC", "Ty8aEmWc_ekC", "TyoOzgIlH4QC", "tZWnNPKg1K8C", "u0ksbFqagU8C", "u1RmDoJqkF4C", "u26ijgx0v_EC", "U3rMsphfCLAC", "U7G38s4y0VoC", "UAgtStKY2ycC", "ucNMDAWWyLsC", "Ud2goDsqfBIC", "uDgXoRkyWqQC", "ue_JYo-k0_wC", "uhIk3OddN9MC", "Uhm87WZBnxEC", "UhRSsLkjxDgC", "Uip3_g7zlAUC", "UIqUmzUf9sMC", "uJpXCZGxbZYC", "UJwfDYDJ-v0C", "UPeqxCF1adMC", "UPFHb7vEgjoC", "URkMY_t6RQQC", "Uui9coi6DZoC", "UujKmek0_9YC", "UUl7Zyj841QC", "Uxw6_S0NNhUC", "uXwyf1bWtFIC", "Uy9PbkDwisYC", "uybFyRcJQdQC", "v-iDn44wlr0C", "v-walRnRxWQC", "V3me7QWAZR0C", "v3XWH2PDLewC", "V5_0Tgm5ZUQC", "v8du6cp0vUAC", "V_FUpOrlnqUC", "vaNlzzIqXe0C", "VAzHhu4oFfYC", "VBI6JppgQBAC", "vbu2gis26C0C", "vcfj4xsrlg0C", "vdsK7BPGya4C", "VeoKtu_22q0C", "VfHuIq1s1pkC", "VfOmTJsotWAC", "vg1qPwCc-V8C", "VGkkjkLPZkoC", "vlhLAobsK68C", "VNetYrB8EBoC", "VocWKgK9SxQC", "VTHTUY5rUEMC", "VTko4TvTOgsC", "vTYHNyrBDfIC", "vx72IzkGD98C", "w-rb62wiFAwC", "W37zSNcybaEC", "w45BbvlRh1kC", "W4SqcNr8PLYC", "WB3wKoZRE3EC", "wcFGH-zIyGgC", "WCO0Sb1KLAoC", "wdqStSm-iY0C", "wfFiU4nPB0wC", "WFPgBUSv4PoC", "wGxmfLq4b_4C", "wItnFpuHr60C", "WIyz0mYxAwkC", "WkHO9HI7koEC", "wKJu6g5ovhcC", "wmDQ_3qzvmIC", "WmnpTpW8NOwC", "wMZIv4IxWI0C", "wNfB3AQSx1IC", "WqMMAAAAIAAJ", "WqQMESs4msoC", "WqVq6SDhtjQC", "WrSpNfsBcocC", "WVofz29Hx9UC", "WWBccP5LebcC", "Wy_kuQZzfdIC", "X39-syX449AC", "x46qiaccZLYC", "X6RtpboH478C", "x7Mdt86YwcAC", "x7YtLD4uLogC", "Xb9O5yNS5GEC", "XbWEsxy-2PwC", "Xc9xDgHgvaYC", "XCHXGyItdFIC", "xDSBaet2uSsC", "XG1CKclG-m8C", "xHy8oKa4RikC", "Xj95W0fz21IC", "XLaAIkKiydcC", "xLpndPXF3xwC", "xoM0DgW5FU0C", "xOnhG9tidGsC", "xpSSfrWCyfAC", "xQ8-prtJK_gC", "XQvkEb6_AHkC", "xR837PDL2tMC", "Xsf9OUuxtXcC", "XTcjm0flPdYC", "xukJAAAAIAAJ", "XVuRuM96pI0C", "XwC0xZU5z7kC", "Xwp8PCPA3-gC", "xYvLraxYTZoC", "XzJdpd8DbYEC", "y16ww5ZsJ0AC", "Y3uctGmr1XQC", "Y7vSVW3ebSwC", "YESB90FOStQC", "YFDGjgxc2CYC", "Yi0QySjju4UC", "yJwNrABugDEC", "yK4JAAAAIAAJ", "YlbvjEgeDlwC", "ymJ9o-w_6WEC", "yQxzIgfbG6cC", "ys_jtGM5WjYC", "YSkgXOledRgC", "YSvUvc0IzL8C", "Yt9tXLgiV40C", "YvxjJ0F0byQC", "Yxoe-sEcHNgC", "yyL40aHSTQkC", "Yzcf8RFQPmUC", "z160FGJyrikC", "z1DfFnoxQ-cC", "Z2p_Um2rCV4C", "Z6nJYDZOMWAC", "Z6yTi6HNUWwC", "z7VPlZZSZXEC", "zbDszWGvA0wC", "zcvgXWIpaiMC", "zDPLJqiMPsUC", "ZEbSSqwIhDsC", "ZhXjJeiefZsC", "ZID9VvvWiaIC", "zIYCfy0NnGgC", "ZLpcgAQvr_gC", "znkqSl7cimIC", "zpcP4AV_jPAC", "zqOfU_Ckag8C", "zr509w02h08C", "zUXuJTJ5sKcC", "ZvwEDOhLbpEC", "zWccvj_kr6YC", "zxAN9KvG-REC", "zYxRFAYcAZsC", "0DQaTU7Opq0C", "0ROwDrcmHssC", "1MsHm6me4XQC", "1n_qawoy41MC", "1Qgt4oyMwJQC", "2cLeRqOi0zYC", "2gg7P7GCBH4C", "2xsjEwJptn8C", "5jk0aWSzIPwC", "6AO31B6yUVUC", "6CyOE9PdJxgC", "6X745rS5Ci8C", "78QSbIswtQAC", "7VjyaoCFbIgC", "8dCnb4uR63EC", "8MXGNxVINkAC", "A8amtX_z1WkC", "aJyGy_eOeQ0C", "aLe4HgLkgr0C", "AmaLNTaGYxsC", "ARI1y0bu8UMC", "aw4MbnSCfnMC", "c8WH6c7_RP4C", "C9CVARo5snsC", "DA3SRxogVOwC", "dKIo6D9yh3cC", "DUcbyaGlYo4C", "earytjxi6pEC", "eBkmbFDT0PEC", "eubyMCDFlu4C", "fnVy4v5pZPMC", "frpHqlVH-O4C", "g0N8hOgFz3QC", "G87TWxGRMscC", "gDgXbx8hEjAC", "GsN2SVvNZZYC", "HcDMKrh-_fEC", "HjmIMdOx6-cC", "hW-wnqbfrdkC", "injpY-EerZgC", "JIr_egKfnDUC", "JP7D17zIEowC", "JQGHqScEFtoC", "kJp22rZDOZQC", "L1ZJT0XrFZYC", "LjHYjEZy9zMC", "LqdNEHd4Mg8C", "MAKtC4g83WsC", "MAyXHjLS7rEC", "MbGpxRxguagC", "MeBFzDmECGoC", "MeO8b6S9lb4C", "MhR5a-2nrhoC", "MJbBqn3XWqAC", "MKKPFqc3WqYC", "mp6P88ff1YEC", "mpEBZLxaLJQC", "mPTi-oZ3x-cC", "nWNI5NeeYEgC", "OnuW0ebjkaoC", "p063Z0CSLa4C", "p15Pwk-192wC", "PWnWRFEGoeUC", "rJSXMIxpcngC", "roXy5kT34j4C", "rRQ-ln-SYnMC", "s-IKDw_xNO4C", "S4ek45Si2AcC", "TjOfAy2tnb4C", "u2rIbGeX4r0C", "Unws1YIys8cC", "v9mR1wFHtq8C", "wCnHmQnPNmwC", "wlSmtlw6-bwC", "WptXk482oEUC", "wxJ9j6s_wRwC", "WZEAkY1LdtAC", "x33cjhYYoKQC", "xfsr4C_BvYwC", "XLJB3gh7LgkC", "y13y4Y5k1pwC", "y1GjTaSmauYC", "y7RoHrgX7yAC", "yu9H0Hv4Ot4C", "zd_xk4vIXsUC", "ZgVbSPYVs5sC", "ZoZZm1TYsUwC", "-jb3fATxhIkC", "1cuf2UOiRT4C", "1Mjd2GCRPmAC", "1Yt77zSb6LsC", "20DKxA4xziQC", "2znEBgYpeBIC", "3CqwLGSH1goC", "3iKRM06GXdwC", "4mcT7A371xQC", "5ge0enUNb78C", "5TMsK3VRLeUC", "7tyEWZr5iFYC", "8ELEochuwQkC", "8MCjH9CygmAC", "aqb3OYAzq1kC", "b2H01Xb9Ma4C", "bi0-4WDPGrEC", "bNO3yU4E1FsC", "cEcUmWap-CUC", "COrG7hjNlzAC", "cxHK_QB8XKwC", "dNVtHXmiDsQC", "Egiv9G3sUUQC", "ep5gtKMz8EMC", "exEgXSQhK8cC", "eyALF5NigoYC", "F_-1q6fZd7MC", "FPzap8_I4SgC", "FREOMhfr83sC", "gLrXMmu9mRUC", "gPb8y2rfjp8C", "iydRKCdhKwQC", "jZjO1mQYWd4C", "kll6h_lodrwC", "KosqNyzeyccC", "KVEq58n6iF8C", "lLtq-tWVp-AC", "lWipWdrHsMwC", "n7eJZppCVjAC", "NqBNe1RIDHsC", "nSh5F2_xXBwC", "nTlbdMveXwEC", "nWmxMXOnZcMC", "O57Cwf7Sz5IC", "OPp9I41o8XUC", "OZVrxulVBtoC", "pCP2VfWmEYwC", "poxr4hi57aUC", "PoYKChoswe8C", "PwUF_UMTZHgC", "q0nXhXclx_UC", "Qd-7TwoF7acC", "QnDvIsNKNIwC", "rCZVxulC2WkC", "RHpWjc4FaegC", "rugwMFpIA8AC", "ryIHc_dFg9QC", "s8arC-pIXY4C", "shIupOtoVfMC", "th8NdVD8E0gC", "uVcMr-ke0sEC", "uvr8XVTzrNcC", "v_AhjnYqvwAC", "Vx6CHHo8pz8C", "WVKiq9stTNgC", "XAH5bMCkKOMC", "XaoYP7uYIaIC", "xo77Lp9wHHAC", "XxRpPZ_rvD4C", "xxXRcfoL824C", "yZwjL-7IRTwC", "-2yQLxykXdoC", "-63xyvVTNwIC", "-e9rPAsnJ_sC", "-Joj2MhFqfoC", "-sC56mcAocsC", "084O32ukZIUC", "0DPypk1BLE0C", "0hA2qfGXhngC", "0xMxokVu8gsC", "1W-9MGOa_GkC", "21An6w_jf2wC", "2_rnWxsz-vUC", "2P3667UaaiQC", "34uu189sV_oC", "39hsjKwsqo0C", "3w0uK79cj_oC", "4cAsr_eptg0C", "4Hes-lClFOYC", "4j8n8hIBEa0C", "4jUjPh64X9UC", "4PmYFVJqM5cC", "5I5w_BSa0t4C", "5N78fogAH9QC", "5Q4wTKEAcT0C", "6-gRK9HMQKoC", "6huHRNMyNHIC", "6LQFtclkwvoC", "6oPfuGceReUC", "6ToRJrRHIg8C", "6uxXorE4r-UC", "6VcFyV09_aQC", "6XC3WJCTitkC", "7_UDV5Qtak8C", "7eP3jOihyjgC", "7KjggICeBJcC", "7lw7lR80rZMC", "7Yhkld-Fr5wC", "89Ncr5FRfSUC", "8h53hG89aOAC", "8KSd2u8LD2MC", "8wZbEcJsi94C", "9DpbNlLT934C", "9INFeLkvCXcC", "9Vinatxm4nUC", "_Eeh1L3IZxgC", "_rewTS4v-EsC", "_sbGtJRO5ewC", "_XIBgBYFL3MC", "_ZjCNO3mv1UC", "ae_pD7pHuI8C", "AkKj4l2F3kcC", "alluQPeRBGMC", "ancSAJsaedoC", "ApiIleI7naEC", "AWcV-S0y5TkC", "azEBqa0MXt4C", "b2St6X76bs0C", "Ba_8Ulu01o4C", "bcVMkcCoomQC", "beTVIkCGUfsC", "bw7SVDqiXN8C", "bwRPfOCzpcAC", "C5SIEprnWoUC", "CbjT2wba0LkC", "ccwXeaPkuoUC", "CUxLphJ34_cC", "Cxs3wKnB9SQC", "CxYXaAUJytUC", "d2bXnMAEJnQC", "DFhKLhM96vYC", "dHlP3pvh__QC", "dJJLK7Pp44AC", "dyT0IvLPFgQC", "e-qkVO01Gu4C", "EBKfl5RSwiEC", "eG47cVekPg0C", "eHAK8fdo0_cC", "eiP2wOi3KYwC", "ej1kzdwRbl8C", "etZroNcGKbcC", "Ev8E12hG8kkC", "f9sAf8jPkwoC", "FkcyIXUg-o4C", "FsdsMdM29hsC", "G0LZTx33-x0C", "gqAM-eIG2ykC", "GSr_S-qHI4EC", "GU1cifth7UAC", "gXf91p7v0SgC", "H4SmRvJ5shoC", "hARsDKA-f3QC", "hBwJqBsSLqMC", "hcGD7oT41e4C", "HktLkMtT1TUC", "HmZMBoTuKUEC", "Hopo4xCUcO4C", "hrSvSVdsU2oC", "hX7yGLd7ghEC", "HY3QRixFRWgC", "I9Trz48CCN4C", "IFlpcI0GS0UC", "ihIbEYpA_RcC", "ioy3vqVglTkC", "iqDmeypmglMC", "IyTKqDwkecMC", "J1oe7HvFoyMC", "jBcboa6zxMEC", "Ji5bZMlHakgC", "JnMEcVuQtcAC", "JpuMcmrhlTUC", "jVVZdthQs3gC", "JXjE1ODVPYIC", "k94DhcD19SkC", "KCIQVzXg-lgC", "KgxJ912PD38C", "KiVkPTWJCsAC", "KOvFJOOVMLsC", "KQnU1ftyUCEC", "kxFKNqDXd3EC", "KZhh4_4gq2gC", "L6YLdYgyO94C", "lQMtArj7klYC", "LSfIVk6DSekC", "LUwmBJ6YeAMC", "lXvXAGo4PxUC", "mDmcW9KR6r0C", "MQhZlYc8JHYC", "MQnawiTMcDQC", "mUGSaiTsBAIC", "myEezv0t178C", "MZsXsF1Ud7wC", "N15Bxyj-DM4C", "NPZYBrWZPVAC", "NYtR9fIlXnEC", "O-r-wnVA4mEC", "o47MZTN6c9sC", "o5FSTZx-100C", "ocsTmllg7nQC", "OKs_Q4orV6gC", "P8aq9mlY994C", "Pi_UoFpZmxUC", "PJSBn8GOSbsC", "PKoiPvi_5eUC", "pN2PxCR_-agC", "pPNIei42SgwC", "pqJRCIXAFSgC", "PQP6e9H1tzAC", "qgKMMROhGCEC", "qgwv-CpcWykC", "QIc__kliKwAC", "qiTF90Oo5KUC", "qlO8hMCAsEUC", "qPlNAKakhiIC", "Qr3LshsVPJQC", "R1-A3Ad2_8QC", "rGtHSwTF7soC", "RI-jGHJ82oUC", "RUW-hYKZBS0C", "rX73rwDuFw0C", "SJe2yL_R6JQC", "SP5BF1gA02YC", "Sp8XJxAfu4QC", "sxTKXYdFbF4C", "sxzxivjTs9IC", "T-1tiE_D6ggC", "TbL8h1SJ4PQC", "TH03T-vmAoQC", "tHbd0sXwIp0C", "ThM-8xccpOoC", "tnfIZlWC6HsC", "tOLFrSSbFD8C", "tp4ncMbnOEMC", "tRX8HYsd9s4C", "tSk1mvtq_iYC", "tT_D6rYb9IYC", "tTNMgO5_CHQC", "TU3k6MuE2BAC", "U3MN8AAaD5YC", "u9bP7QbozNcC", "uD6UZjMTjg8C", "uf3aCkUbz3oC", "UGb18NmjOTkC", "uKp-VsaCNMQC", "UmBZOMbtZZIC", "uQ1rsATfO34C", "UqIvGf3jRHoC", "UQwjcdyVWPIC", "Vg-jISv-naoC", "vMcpRqad5-gC", "vWWaPvxsTfgC", "vWXzNR4adfwC", "w1KP1fpepAcC", "W6TImqN5HpwC", "W_L_2yTfOEEC", "wCvZ9ksz-zgC", "We5JWvX01HkC", "WfK9oTHKNqQC", "wSW30jYW7qEC", "WTunFBRfhWUC", "XD9Kbzjja38C", "xg_XzghnjRYC", "Xpid-HEEpRUC", "y-A5skJWwlIC", "YB4ADAMeqIAC", "YCWHcGaIhksC", "YGvfcDwewVoC", "ZFn5mActQoIC", "ZjmqkYh6uGYC", "zN-ZBSv2UuIC", "zUOwyWMDCMkC", "ZvnYdfPW-i8C", "Zwlpxvn9MrcC", "1d3XWXXxnEsC", "2ANRSQIyYqYC", "2JYJicwT84cC", "aaf6k3DWcSAC", "AgXcLEG_-SIC", "aSAXAAAAYAAJ", "c_BRQDmCqcoC", "cXdKAAAAYAAJ", "eGGYWL0962AC", "ey7Oa4CWqp8C", "FeOinIzH49kC", "fkRwjQz0O7cC", "FoWo8VitsoAC", "GKc2mPfcZ8AC", "hFSx37SaQRoC", "HQu0fXQ1oXwC", "jeVS4jRjSlQC", "MfkNV2DW_3oC", "Ms_VAVC4IJ0C", "QJ93ffsVAHMC", "Rf6rp_UfnBEC", "S6BJ94y1jnwC", "TXnD5iuM6DkC", "v3yqHR7keCcC", "xEooBgVLQY0C", "XlsVAQAAIAAJ", "XOkiRiqhCMIC", "xz2LhK79I3gC", "YV0IskcivVIC", "-4JaSBhEmmgC", "-F7oqyLU8yEC", "-vWT6E7gwRYC", "-xJpukMoY2kC", "0Sb9rQ5Ewd4C", "184dpojuVVYC", "1CCCWMqPtzEC", "1cx5KF8bz9QC", "1KdwvK9lLVUC", "1ltSREk9A94C", "1NrVATQ_Z5EC", "2UyX_6Sf0koC", "2X59P60QHnYC", "3-0St2ZXAxkC", "3HDyoJBoLBQC", "3u6N2cT0bOAC", "3yJtseH08loC", "4coo9ddRaooC", "4F1SDVZb2NgC", "4ny3c9qR8X8C", "4qonczmsK7EC", "5Dg9D0fMB-AC", "6ue1tbd-dTQC", "7334_AEUgVgC", "7g0AnM3HoA4C", "7gXh4VqSVUcC", "7sn58GhCxdgC", "8GQCE0Xd2f4C", "8rOvpN2d9TsC", "96i1EXvEucgC", "_3eu9hxU9NQC", "_B4Bef8FTFwC", "_ceeVvxULncC", "_h4Jf64pDyAC", "_mur2PUOp8wC", "_NaVar4pJ6cC", "_VH9YGAUbtAC", "akHTeRj4JOUC", "AMLHe2Co4X0C", "ANOU4FnPuCgC", "Arnvw-uD3msC", "AZ5J6B1-4BoC", "bfXZpcLNv7UC", "brQZSNtn0KYC", "bUmGusx0JwEC", "C-xXxfEAnzQC", "C4MAjfTb2t0C", "CA6h2G_mJlIC", "Cdg_NkdhoToC", "cJ1kUY-wUVwC", "COjPOyLC1NYC", "cW3PW9PbqPUC", "CXFWZuxyUFQC", "cxlwwocKMcoC", "Cyly4t2jHMsC", "D-ctsVAeN-kC", "db-C5NSSIAkC", "DeEME8MFhakC", "e2q53WFE7hEC", "EdoPqnSc6g4C", "ego1raoSBfMC", "ekJA6MZoH40C", "em3obwwfGUAC", "epEsCd50PV4C", "ePwhbo8BwE0C", "eQajBqGgHkQC", "EvFiS2rAlosC", "eXgmkezrzYcC", "F0v4zCQg10gC", "F2Z6uxeA0IsC", "FbTQFXdYCMMC", "FEizu4ZRuRYC", "FshiVC33NhMC", "FtulaDr2j-AC", "fvGy7lnl5e0C", "GBoeXA2d7dUC", "GCyjMr7CudIC", "gKSeZ_VIb9AC", "GlHfBPW8nsMC", "gMHYj6T-DCkC", "gnEGziO0ASQC", "gw6yAuC6wSQC", "HFotoS0lwvQC", "HlYbfBRhINIC", "HnGJsP8JI8MC", "hv0m2jtuXDYC", "I9PuYGBUEW0C", "IgHMY_Xa43MC", "iiepH07oVM0C", "InUl-Q41sOwC", "j4PpSFWmNQUC", "j7XsGbC7QKsC", "JHxxM6mOAAQC", "JiDYXW7kIFsC", "JNuRxUXjmWAC", "jqCjWhYNecMC", "jVL9t0pASC0C", "JxFIS87S148C", "K8VvOPLwg-EC", "kaEecwxX7WEC", "KcOo6u5EKR8C", "KDeCgbRa5jcC", "kflefDbfDOUC", "Kj5w6sZTJsoC", "KyYHVPJfJsEC", "latQHavSMfsC", "LC6iZsMxUpoC", "LgYDKal5OAcC", "LMTMTcWUNWcC", "Lp2G5aLhFZYC", "LPNS_W0lVGIC", "LY1LT83Skp4C", "m_3NPZVcsg4C", "MCP9XkskjIEC", "md6oFs29tVwC", "mD8bF6pFasIC", "MDM7ZFecFV0C", "mim-M3zIAWUC", "mK6MS891avEC", "mLqL7ulqj-oC", "mmbreDPQxlEC", "MnS1IHKV_hoC", "MSXVXP_3cFMC", "mtP0gwO7MEYC", "mUsT853PvLcC", "muw8IPWgGUAC", "N8jwsqqPjIoC", "ngZuhGcX_2wC", "nIuDdBIsS-MC", "nLYzditxyIQC", "NSK9cDNJX8AC", "O9Tp5tX0RRQC", "O_Ve1esIKS8C", "OGUZOmPbDiYC", "ohii9rGckGwC", "OHqefo2QlCQC", "oLjRxbE1SwkC", "oXg0wOgdKDcC", "OxYEcy6azbUC", "p37VqBkJvL0C", "p_f2oSYQam8C", "pEKjhF_EUIwC", "pMo2v1U_VNcC", "PNW7TiM1BJ8C", "Q8k6Z7jH8a0C", "qAAtIknyj_gC", "Qms9PNSDEFoC", "QpXLNs8v_WEC", "qZsoQyr70zkC", "R5-edU1taWAC", "RB0X01C7pg8C", "rFn1T6E0UJEC", "RJQ-tXO2i9oC", "rjTH9c476t0C", "rkRu9OJ6gWQC", "RLpxnrnXXhYC", "RmvQfoKiPCQC", "Rt70xjfLrfsC", "rXOX6BISgrwC", "Sds79NgjU7oC", "seXnMV9-vmkC", "Si1YdYq9hXcC", "SNdZ96QZ768C", "suVX7iZ3Z2sC", "T0u3mLgB7Q8C", "t5c9qWOoXsAC", "T7bAqUjbq84C", "tjnjQkoBnBMC", "tKf9RKS8zx0C", "tNKtrgmE1fUC", "TwgKlwgXZPIC", "uDoVm8-uXfQC", "uH_AITzNp1UC", "Ujyr6whVn20C", "unZllMnur4MC", "UoJqoeANmZgC", "uQBf9FmAu-oC", "UTgWS01SxfkC", "UvK1Slvkz3MC", "UwH5IwTWH3EC", "Uxwq3DdghtwC", "v2RPoiRHX7EC", "vD23gqpkAaYC", "VFeSGRmAYXsC", "VJufAYSsmZ4C", "vlRL88hU1bsC", "VyAIKyqpLFAC", "W3kGJYwFKDEC", "WeKvtiwft_MC", "whdtOuA58e0C", "WrL9de30FDMC", "wzPlQGKox1EC", "wzpQ1ITeIt8C", "XADVtLpi0k8C", "xdbrbcBssP8C", "Xh8GddJI8CEC", "xkkHhFuhPkMC", "xpKEExbb8DQC", "xsv8s0uId1oC", "xurCDqruAkoC", "YbTa79buEaoC", "YDCEorbLCFMC", "YNXPoQiZQDIC", "Yonh5x309J0C", "ys_e1Jaxh4UC", "YSVeIm0jLy8C", "YUsiaYPFcgsC", "z4arig0oCm0C", "ZBkdrgIqguoC", "zmLlHLWm96QC", "-Ac81W-ZQDEC", "-sFkv-rGTJYC", "1xlR5HF9ZhgC", "2UyX_6Sf0koC", "32yoIgkRJOcC", "3e1IKgAVDi0C", "4IFSVDIWAFkC", "4lMynL91Mw4C", "66Dm4p1wxqUC", "7VWZRVvoE0MC", "7xJKxbP5pL0C", "8QzD1qRZ3f0C", "8t0enPgsm44C", "97bydx8gf7cC", "9z-9ufun9G4C", "_UNNPyZHBHoC", "a2iAh-KFdIgC", "ae89cJhLYJ4C", "auZXJuwLw8QC", "aWcGepCckEMC", "AxwO8nc74hgC", "AZ5J6B1-4BoC", "B6YCffPQR-cC", "BHEWSQd1a3cC", "bKKyBRMnI3QC", "btpIkZ6X6egC", "CzEy6ernA3oC", "D96Kjfbn6RgC", "d_-I7aOYbckC", "DCILcKYEg-gC", "dKIo6D9yh3cC", "DMA63zMS7lAC", "dpxajQE4VG0C", "DVMsjPtMfqMC", "dyieVB2i5wAC", "EbquUB1D6B8C", "ekJA6MZoH40C", "eParwQ0YdrcC", "Esr4fKWU27AC", "fa8Ilo7DVW4C", "FEL8DlqjYEkC", "FJGUYgk2cvMC", "fnkCJBTdJekC", "gdqzOgL7-f0C", "Gqo5IlbVj2MC", "HQwZYSf8x-8C", "I-SAcg7Ves0C", "Ia0W1gg3aqYC", "IciSK2hKiQ4C", "iCpj07vEEIcC", "injpY-EerZgC", "JIccGs-Gzz8C", "JuDQleqK5PYC", "KcOo6u5EKR8C", "KE-2ixsSCpMC", "KosqNyzeyccC", "kx6eAjugaA0C", "LBBhikJpLjwC", "LGbZmjzCHvAC", "lGS9Lbv0PdsC", "LVuUjIq_P9oC", "M-IRbSratpYC", "m7EUB-P4noMC", "mAiJ8a_vk3QC", "Mw1ky2bqh04C", "n7eJZppCVjAC", "nI3JXcSjvwsC", "NpHmCupwB5cC", "PdCLMpSY5qkC", "PFYBPAS3LIEC", "PNjrRKR3sKoC", "pqJRCIXAFSgC", "Q5QRRluMxecC", "qE2FPaaAa6wC", "QI6aci84OfgC", "QRPXBXsU7UIC", "RAUKBvP5OfgC", "rKq8bnUK3WoC", "rPoBYx7hRB4C", "RtuUTyHr-5wC", "s8zIH7dnYCsC", "sdoeg4UWckkC", "SRFbLHcl808C", "T5UpCOVOJboC", "Tk2tDV5PIjwC", "tKf9RKS8zx0C", "tSceY_DydLoC", "tSTJQof39GEC", "TtJ0VT4AnMkC", "TVudYcZo5dMC", "u5CQpfaElJYC", "Ua-wEYZS6eoC", "ucpxOA3LDWcC", "uey347n5FmMC", "uf5x7GtHpjkC", "uUenyaHxJfMC", "UvK1Slvkz3MC", "vBz89NFgzqIC", "VDin06S0V_8C", "veGXULZK6UAC", "VKGbb1hg8JAC", "vzXz40IXEpIC", "W_5-RKxftbcC", "WcIJcNFzgqgC", "whdtOuA58e0C", "wQW4fnPUwBkC", "WrL9de30FDMC", "WVKEsWCgh3sC", "x3IcNujwHxcC", "xllOU8qyH5QC", "XngKxt-zCNkC", "YA7gLtcwMMcC", "yBDBEGBIUmgC", "Ztp-cUw0jowC", "zY6re8jbHWUC", "zzv-uEc6v3oC", "-3wmOo_IsmsC", "-Ac81W-ZQDEC", "-ChM6a5u6M8C", "-CLgHZOadckC", "-GiwEX6RMeUC", "-JQgOaES2VsC", "-rZv_sVuoXEC", "-u2YftwNR10C", "-X52qeiGteQC", "-XP7DTeuuZQC", "-zIdXgGm_mMC", "0BGLbBzVliYC", "0ebRxGSCUYwC", "0gmHw-vHr40C", "0haAje37kvMC", "0KPRrkBISAoC", "0pDWXUyrXwsC", "0SnZ26KqgEIC", "0ywyhKnti_gC", "0z1_U277JzgC", "13sniV1eNVsC", "1au3mbl9OhUC", "1c-m_QnbDvYC", "1d2n3Q5Jn8wC", "1GnFOBVjE_UC", "1mUi6nzik1wC", "1N8katBAbJoC", "1p5-4eMRdKEC", "1Q-s9CbuCQgC", "1QHr1YYD66oC", "1xlR5HF9ZhgC", "1YSxPAP8XhMC", "1Z0skArBkdkC", "1ZZn7DLTskkC", "237PaZVtDjMC", "26VWKV5V9kkC", "28-8vpddlVkC", "281ZO5O2HWQC", "2BxlZpK1_yYC", "2c5vBU1eU0EC", "2f_dIRVjUXMC", "2OacwRaPMXcC", "2OkozfAgTYQC", "2TkuqbekiL8C", "2VFCTmQPM7AC", "2WwAfFlIrTEC", "3AxDv2bsfNEC", "3BrulA0PTmQC", "3bwkR2NgVW8C", "3EYAYUOEchsC", "3meeBRX67sgC", "3riJYW4TMeAC", "3rjD8nL92AwC", "3S8r-FluryEC", "3V_6YwEqHzcC", "3XAIxbTa8k4C", "42HnEenlw_EC", "43yVaZoByecC", "492iizG4Jx4C", "4dsETTyOBxsC", "4hRwjNQclhgC", "4jv1DfsvqpEC", "4PatqekyGkIC", "4tQldK5E07UC", "4UhBvm3LbWIC", "4wr9zohow94C", "50cYOYZuPEEC", "53-gp__-Ni0C", "55PsW9Jt8DEC", "59a2_pfKi4IC", "5DCHpJrnEXwC", "5g5RBYEo5fAC", "5gAANhPh6LcC", "5GEwe5PIzK4C", "5kATSNyEMmkC", "5oRR4qzG6zIC", "5qtal-QaXwsC", "5R2Q5kKDia0C", "5rTzCFJ-UtYC", "5sZdIZ0GBJ4C", "5ws4KytmfEwC", "61MPIWD2nFQC", "67wx-rCPKzsC", "68XRZyuYbcMC", "6fNjbZVaig0C", "6gqGJ-BVDlEC", "6sq6qEBhonsC", "6stlUN-MjXIC", "6VVHgoCt9KQC", "6W1Bh5R3O7wC", "70vb78KIR1AC", "72_PrSu57SoC", "73XvU2tCUi8C", "77VSf06vQEkC", "781jTOT4n1AC", "7HhKjSs6q5cC", "7pB2Xjw6U4sC", "7qUvezISnjEC", "7VWZRVvoE0MC", "7yPXLxnf46YC", "848QRUKZkSoC", "84NTN0_Z7PwC", "84rJ77ALstEC", "8_9DRzv7CdQC", "8_hvDp3sCkMC", "8iYU-kAiBxAC", "8nRllaLoFBcC", "8seX71u_LHMC", "8Xztp3e0TfAC", "8yzQ6zRibasC", "92LGqm5F4ywC", "9i7yZUpmdiMC", "9OhpLVADPQwC", "9plU4x0dP1oC", "_3eu9hxU9NQC", "_ATB4nYqguQC", "_eJiYywsoOQC", "_hNbGkhxlysC", "_lAViWbDXYQC", "_MDWi7AOJl8C", "_SsA-3vGopQC", "_uHAsgQZKv8C", "_wIcpxMOjD4C", "A-agLi2ldB4C", "A-crywke5jEC", "a0IDhqcZsFAC", "A3D3IwNiOkUC", "A4d0W94Ae-0C", "a5Q_FCG0t0MC", "A6FQywvBORoC", "a6Q2S2JZz2AC", "A9MVPDPN1vkC", "a9yLyHtIgEIC", "aBaAQ9ZPM4UC", "AE4mW-um7tUC", "AEVQIco1rkIC", "AfPTfDbxLE8C", "AGwk6qG9rIIC", "ahFs9THomokC", "aHg46bCHoIMC", "aHNeW3rAdYUC", "ai3GHUTVfDQC", "aiLpfyPqmiYC", "aJ5zDM1KfewC", "AL_paj7-NcYC", "AMl7b-gZSKEC", "aoaYrL-ZBnMC", "aOfD2uon4wcC", "AprADuUfsNcC", "AsFLaG69M-wC", "AsY1vTm4xWQC", "AU1MAA9I58cC", "AuaFFAI3xocC", "aVTTHRlL-csC", "AvvgFOAbURQC", "AXcT1FuCIIUC", "AxwO8nc74hgC", "AzWmYqgAj8wC", "baKATJNpCikC", "BATd_O0z-r0C", "BbKlsN69PmUC", "bDDUuqRITs4C", "bdVzZ59FoO4C", "beAh43E_wcsC", "bEe6T9f7zAgC", "BEWGP8PbTpkC", "BGt-ZgFtBhkC", "BHEWSQd1a3cC", "Bik1zikOjYEC", "bKKyBRMnI3QC", "BonRzVxisykC", "Boqh8dNWxTEC", "bPCmwNZEEr4C", "bPKI_3mAi2kC", "bQ-d_JK0zmUC", "BSL6s5iAB2cC", "BSlBWtayNRcC", "BTpNxGl2tXUC", "btTgbQqk8_sC", "BTvIhQ25s50C", "bVFMCuLLklAC", "bWECSuumcDIC", "bxFZDbbyCz8C", "BYj6ql7jv28C", "c-D-b8zEJvoC", "C-xXxfEAnzQC", "c1UfjmtTYWwC", "C3OU2sMjXjoC", "c7U0S1iOPHYC", "CA5wOJ0r7aUC", "cDFbng59ksYC", "cf5RFWIMJugC", "cG-gPxwzDGwC", "CHnm8gP-n_AC", "cjjHQgjMiXQC", "cMPHWmt6lWAC", "cMX0xoOETCkC", "cO414xqtpNQC", "cObMuzlpw0MC", "cosLaMDLOF4C", "CQFNpdixOlUC", "CRicb8AOkpEC", "CrJXCFjqd1EC", "cSqzF6bJiNsC", "CUARfIi5QdIC", "cvaYmFpC1rMC", "CYQZUeo0mcMC", "D-xZXkWpWtIC", "D2y7SftShx8C", "D8jiYWiqyqEC", "d_-I7aOYbckC", "D_1u-B9MAaUC", "dazjzKOMSxsC", "DCILcKYEg-gC", "DcMOw7Q98mkC", "dE45EA-mE9cC", "de4CjVEmv28C", "Dep5Eh_SUPkC", "deTO4RY7YHYC", "DHH7CDE_ju0C", "DjOF5044Q8kC", "DjzwZGaJq64C", "dlGBjrq_5IsC", "dLo_GyEykjQC", "DnigThvaffcC", "DNl5gZ6i-94C", "dpxajQE4VG0C", "dqI6k8TIN3MC", "DRcWz8Qif6YC", "DTCsQYBQK2EC", "dTF5pdoDIVIC", "dTmVGc4SoRwC", "dTtZ4GPU6z0C", "DVMsjPtMfqMC", "dw7ECt8MMlsC", "dWQLrRj6dQkC", "Dx4Ugg8si7kC", "DXyXGjjrIFwC", "DZF4PTaXUSYC", "DZoTIeLlBxsC", "E-jshveXxl8C", "E6UrL76WfJUC", "E7HAX2d5WwsC", "e_AKhyXiMtsC", "E_gJ4mWAkYgC", "EAu33SRf6VwC", "ebfN6XqMUZcC", "EcsIyDtMXCgC", "ees5mRMzg1kC", "eg6aPq47nRkC", "EGRLRfGTpF8C", "EGyDOtkjYSUC", "EH_5jtqfq5sC", "Ejgq8771UU4C", "eLWHPScZ-qAC", "em1D_FpNlocC", "Eok8kGCq9rEC", "epDlSPRlP64C", "EpfiV_4Im6sC", "EQ6shEPH3Z8C", "erOBU9dVA3sC", "esaI75H-SpQC", "esmBu4Ojrk8C", "Ev3D_54sCvEC", "F0yMFwWjhjMC", "F2cr0G_ZWmEC", "f3gbvvW4zaIC", "F5iKoj8roJoC", "F9nerYOcPNQC", "fa8Ilo7DVW4C", "faNTuib-zAEC", "FcjGQ-BTTdIC", "FGhVMc7gN0EC", "FGnoQosLZyYC", "FId_zGvhbKUC", "fk6uvAeBbccC", "fkqAJFeoSEAC", "fL9HDd_AFN8C", "fLFwNBxxRuMC", "fLkGTjDvYjgC", "FmDzziz8-WQC", "FnnbwLpPr58C", "fO9c9IVuOXYC", "FOFAaptU4CUC", "FOsLvwmv_K4C", "FRx9Z-8oLKkC", "Fsi_veuH6B8C", "fuu9yAPkl5QC", "fVgCjnhk14AC", "FVyEZ9kFLuEC", "fxoF-vPG-TMC", "G001xz-FDhEC", "G0tcxUnNVnQC", "G5p_fx8DMvIC", "g7n-vsSJUyEC", "G8DvSzUoDKkC", "gccU6riITuIC", "Gens5o-Vit0C", "gHxW_KO-HY8C", "gLHMGpzPmCUC", "GlObs5fGEWkC", "glV24BcDr8IC", "gNc34oNpg0AC", "GOYq2EX1QuYC", "GpAzYZnAqcoC", "GQoKx7UugagC", "GRJwW2NF6ScC", "grmm7d-B_TgC", "GSeUzsNrKQoC", "GsGTLu2Zv9kC", "gszyGuchgQkC", "gtFcropCebsC", "GWfvFkdqmNYC", "GYFIDaVfMAYC", "GzEa-lL8rngC", "GzmXXKwy0KAC", "gZrmiKutsckC", "GZtwxVgblZwC", "H-Gkvb6HK9cC", "h2WTgw_Qs4kC", "H4cbM4mroF4C", "h6Bcq8aNffcC", "H6ullBCJMXEC", "H8hOjFvZHkUC", "h_crbeKZ6iAC", "h_x9e3LtUfYC", "hGqZ-wk3zOMC", "HgusS4sGYbsC", "hGZbWwdB-1QC", "Hh8KuEIR7twC", "HIaDcEkD_y8C", "Hic-eJ_9l9gC", "hKWhhhMTRaMC", "HpoOj_yRvv8C", "hq41UzIN6sUC", "hTjaPrQQsgIC", "HVdIYf5TwXsC", "hw3gf8U_Z5cC", "HX0bEWOab_cC", "hxgOv2k1KWgC", "Hy8pU6BwX3AC", "hz32iBYVyGgC", "I0AHmFs9q2sC", "i5kZUavDFxAC", "I6mW-aqF138C", "I92GsTNjFqYC", "I_9X0_Q2rXIC", "IaA8mZqhjPkC", "iaKLCIkmYmsC", "iBdjTgKVtxUC", "IciSK2hKiQ4C", "iCnHT7D0fp4C", "IeeiW4TPJmAC", "IN_KLE9YuFkC", "inlgYOatTYgC", "ioUUU5cyWD4C", "IrEEP19689oC", "iRRpp3vEKp0C", "ISKMgGkrnh8C", "iVrXqNNZwZMC", "izeowNVsC_kC", "j1S-lIVPTrkC", "j2Hqz7qyg9sC", "j4PpSFWmNQUC", "j9KkHgfBwxAC", "J9qv-A3q01wC", "Ja_OwdTm398C", "JbUKeU0Di68C", "JchdjM2KH1wC", "JejkOq1HMzkC", "JfKzrfi8A6sC", "jgC36S_BdpwC", "JgQmOA61vR0C", "JIbbzILVgrgC", "jIg8Y9-Ha54C", "JiWZf5Or3a8C", "jJfgCKnJZLoC", "JjGiGOYJLoYC", "jJpr-7aBf_QC", "JlCLVAGG3xEC", "JljBYVrqvI0C", "jo20j86ugJMC", "Jp_eAHUqG4UC", "JPpCG82zwk8C", "jptgGdakja4C", "Jqbe-AbH7aEC", "JQg-nxPFjwcC", "jqP_eDTHM5UC", "jRWEvzORYDsC", "jwRRCH7N47UC", "jy1wYy1s2cAC", "JyBhDSvIu74C", "jZKc_W6PImEC", "K2NkBhJz06kC", "k3mNH4F9ZtEC", "k4_A4hmDOBkC", "K7JBq7pp_FcC", "kahd0P1GJuoC", "kD_rDCpaugsC", "kdJw6JgwK9EC", "KE-2ixsSCpMC", "KEGWF4JtXV0C", "kEH1Js5RC_8C", "KGe9O7sGfRYC", "KiECrhfUzRwC", "kpmL51ZiAcQC", "KPP6PhKAJgMC", "Kr_FL4dBOQoC", "Ks9kynHehRkC", "KtTuVrTjjecC", "KUMr_UyL55QC", "KuziLVfZfhMC", "kWjL0vyR0UMC", "kWOsMN_IxgUC", "kX_Buy_sG-gC", "kXVVmvAqFawC", "kYZCqpL0xcIC", "l05GSu0j7r0C", "L2JiVYu7PtQC", "l8qmxf8AGhoC", "LCg3rwRZ-X8C", "LDYVl5Ym3-oC", "lgbhSUdDEvUC", "ljDfUfu0kagC", "LkwY7J2y0xQC", "LMb7ClaXJS0C", "LnkpdauAHvEC", "lNx25OPfhggC", "ls_-Lgth7TQC", "LTa33mfbNOgC", "LuJ76pYKJqgC", "LZNNhBR3ea4C", "M2x18ZHzI-4C", "M763AjCmiqUC", "m7EUB-P4noMC", "mAiJ8a_vk3QC", "MdktGa0nHXsC", "MDM7ZFecFV0C", "Me7fAyZojEIC", "meoj6qqzJ3wC", "MGJ0uN6mmY0C", "MgwE2PZu318C", "mmofUwH31moC", "mPJkTVlz084C", "muXgq4C2UtoC", "mzfNbAE9mX8C", "N-xT_PsAjNcC", "N19wqjhL7cAC", "n3G62PcJbY8C", "n83XQTUI-DoC", "NB9Bhi6mOgAC", "nBLD2FTooCgC", "nc5GNvctQpEC", "Nd7KLa6CAtMC", "nejBeS_jnCkC", "Nf6hRs94nggC", "NFinEL0eTHMC", "ng7RJW-udoQC", "nGw_z0Z5SeoC", "nic0RdWRvJIC", "nnr7H0zxeIsC", "nqJCFT30myMC", "NRyO822Rw24C", "ntyWhaSXRDQC", "nw2sKOHJDwcC", "NwsUasv4wmgC", "Nx_zJLzs3EYC", "nxnnSzT74fsC", "o0FEMFyP_58C", "o4dc_zcnl1cC", "o7TrduB4-bsC", "O9Ih8cP82ZUC", "OfF0qpEoSrsC", "OFxRs3ScMxEC", "ojxc71E0aGYC", "ok-060mlnKMC", "Ol7nuF7QRkUC", "OnmhSKwSvM0C", "OOaw8tbk9lYC", "op5CtTPCk1IC", "OpSkmWjy7jIC", "OQBwAwyLz-4C", "OQldD65qBpAC", "oWDiu7i6uAsC", "oYG7nsEmq4kC", "oZ_vOd5GFrcC", "p00q4rikH2kC", "P09SDvbxwxQC", "p5PdMtSLLf0C", "P8FS76Kyv4kC", "P8XhS2TaxzQC", "PAEuxkTd6sUC", "PAupJYHq3_QC", "pCNalA6pX68C", "pE8eDBV3C9QC", "pEh87asSVtgC", "Pf5UpP2yQ1QC", "pfDTnAQNrKMC", "PFYBPAS3LIEC", "pL4MvQHRZGEC", "Pp6ydR5FHfYC", "PR_yqTL6FngC", "ptus_WL-Af8C", "PtXj1SYg_j8C", "pve694PWVDwC", "PXe5yUh7eDQC", "PXhISl9MQL4C", "Pxx5knnbhR8C", "py2PTt6TfgUC", "pZcnl7NK3NAC", "Q1chf04zVP0C", "q7tI2koKzr8C", "Q97JavphfIgC", "Q_UzZy1Aq64C", "QA7MGuf1DygC", "QcNDxzsbMPkC", "qd-zYXT0USUC", "QDJDpSJN2W8C", "QDo8QoJfJgQC", "Qe79lVUM-_QC", "QG7AAgV2laEC", "Qh4wsMFC0MoC", "QI6aci84OfgC", "qijqtSY6M6UC", "qikD022P1usC", "qK0BIL65rXoC", "qLfipozwnmoC", "QLGfNWbHYEwC", "QrjEgKsuXlIC", "QRPXBXsU7UIC", "QS4k67pzxggC", "QSwNbjG_JZYC", "qVxi5W6X9pcC", "QyNRtayO-8YC", "QZ_54ZvNjh4C", "qzt3tdca6xkC", "R1dgM34YgtcC", "r1o7_VVkb5oC", "r2Aglw65zccC", "r6BtrMH7j-MC", "rCGEg8VvFeQC", "RDzHvqdjynMC", "rEa6zWxasXQC", "rElJhaRDMSQC", "rfP4tCddelYC", "rmabvIcEFp0C", "RoPB4vjbFCkC", "rQqOoknhLQMC", "rs9QiQn3ugEC", "rUQMaklNOBcC", "rVyfxzxH3p0C", "rWAiRrm3LkcC", "rx1LI-P8nIkC", "rxRBf9nB-IYC", "ry83-hLk2WAC", "RYC17q5J9YoC", "RYf1o1haIFoC", "S0NUaz1xGvIC", "S1A_KdKUIocC", "S6SE1AMRmswC", "s_OpBZttLfAC", "sBjTIqguys8C", "sdoeg4UWckkC", "SGdTGMniVXkC", "SH1zfdGHbwoC", "siIiEJJWk6wC", "SkEHskyHjHYC", "SKHt_C2UgW0C", "SnJrQaEVJpUC", "SOEwja9ZQ5wC", "SwREHRH64IkC", "SWZ4FCf3LiQC", "sxiK7p9dxPYC", "sZlfOhrBemwC", "T1yLPvZoW00C", "t4x7Cy4p7lwC", "T_nZurUMcV4C", "tBKTK71-XKEC", "TBTXWyg9hkEC", "TcClcWvUrIsC", "tcHqtHz-yQoC", "TdSouWWZjZ0C", "tezKte4wcdYC", "tGfmounsYWMC", "tH7isGkFXtkC", "THczQ7cOz6IC", "tIb_fIPq_FQC", "tiQ1Lhg-r_0C", "tj-CfBmVD_EC", "Tk2tDV5PIjwC", "TkiCsdBgh0gC", "TKp8H1RMQSoC", "tKsNhxsy2v8C", "tKYwAMiDewwC", "tLsIzyFR08IC", "Tnxf6ItROOUC", "To1usfEfgfoC", "tozMibuZIOkC", "tQHBF-3p9B4C", "TRMz4gjMJdoC", "Ts5iLKxcAYQC", "TS6FdaS3OIIC", "tT_D6rYb9IYC", "Tv8d8ynb_58C", "TVudYcZo5dMC", "twEszupCmA4C", "tZKHQmFAMEYC", "U-jRYXvtyq4C", "u04b9-5u_jsC", "U1zMgkoUuwgC", "U6A95jkB3CcC", "UaBgDPVml0AC", "UAHgz1nZpUIC", "UBZ95HBrXJEC", "Uc0_h6qUskAC", "UDOKkCY7DHYC", "uey347n5FmMC", "ufdL_jO4GiUC", "uG4vxj_Atv8C", "UH9Oe5o9e2EC", "uiGk4G4tVZMC", "UjgEeVZVasUC", "ULCWTAjeIP4C", "ulQHhov3sMkC", "UnAArdWaO0QC", "unZiH7sXugQC", "UpF4aMQJ98YC", "UpYbOsOhgSAC", "UtlzaeM_NAcC", "UtsUZz66E2kC", "uvu21YInc88C", "uWy3rhbJvScC", "uyBP7TKyOjgC", "V1u1f8sv3k8C", "V5pglCEa2-sC", "v5zJZoSMC1EC", "v7bN2acZLE4C", "v7ScEd7NtIsC", "v9tZu1CH53QC", "VAo33t9q5TMC", "VAoCot5ZoygC", "vCxNVGb_2OcC", "VDY-pMwWmI0C", "VFJvvg8LmEcC", "VGGVIgezt34C", "vJZZi97-CVEC", "vMU7xhXmFg4C", "vsVJP6AhBJgC", "vUpSQK_x1T4C", "vVArHEF-bwoC", "VvhMdgcJKRUC", "w0YNgj0PcswC", "W214nqbIVZcC", "W4wZTKeyjzMC", "WA75soorIIwC", "WBmEY0t4hx4C", "WDvIpH2lB0QC", "wGk7cLvVlQwC", "WhQ5FihdLK4C", "WIyxykAkusEC", "WmK0-ckzLFkC", "wOAFj0r9KJEC", "wPbMBSdncT4C", "Wpn1uzq6RT0C", "wPQQXGo4rzAC", "wrlYMilBmZMC", "WsULcn-jfvUC", "wsxnhrrtNaMC", "WTl8OKRoFHYC", "WwmkMDW1GxIC", "wycoiv9BJ0QC", "WYQPTNHS0zUC", "WzzD2RMKP8wC", "X0LWTVvOCdoC", "X1rg0yNmMMsC", "x4f0Rx_b-D4C", "x9-H-6LPYGMC", "X_fR-2n40oEC", "x_k8Aptn6tEC", "x_uy8HAkkxMC", "Xc28Zq9EKcoC", "xcWfPlAlFUkC", "xFVpLV_Mqc0C", "xI6Y8BZJumMC", "xmYBTQcF1TsC", "XnQMxHHhmy0C", "xo87MIuUcT0C", "xRmf6D64ADIC", "XSGsyt-f-GAC", "xtS1kIGT-KwC", "XUVAHkwxfpsC", "xXuYjNkxiWsC", "xY7ZCJX1MHsC", "Y0YND98qCT8C", "Y20wwovSqr4C", "y2K_ufwme2YC", "Y4-i2vOL-hkC", "y452FlGWGdIC", "y5plTzPTw8YC", "yaWuHE_PrJ4C", "yCWLfqveCZYC", "yDxxc4XNCDIC", "yKPqty4knx8C", "YLwF_d7Rzh8C", "ymhwUl8eEVMC", "YmUjOuOnMdsC", "YnpccgRJV9EC", "yoJFJAB_F6QC", "yoPXlbQQh88C", "yRXlqW-8XEUC", "YussB5D5yO0C", "yuURbFPqG1AC", "YwXckRmVguUC", "YXkm2ydUHJwC", "Yyw6_PWorwkC", "Z0GoPisj9BMC", "Z1MLmkX_NfEC", "Z1v2pqaOmuEC", "z2v9b_mUnncC", "z9izbk-II6MC", "Z9y5-M3gX6gC", "z_nqWKD4zCcC", "zeNHpa-LirAC", "zFnso9Pjcw0C", "ZiXnaD9kb3YC", "ZKXGAEzc4-AC", "zLJcQEPrJKwC", "ZM2NTPsde2oC", "zMOM4uUPb3kC", "ZpapRhTk2aMC", "zPW5Az1MtzkC", "zQeugdxXXokC", "Zs_jqHzP4mIC", "ZsPZlcZt-LUC", "ZtLb4cCZZq4C", "Ztp-cUw0jowC", "zuM1wHVdxskC", "ZxasNALEUjMC", "zY6re8jbHWUC", "zz5otC8t4cgC", "zzv-uEc6v3oC", "1BHndeKTdDQC", "1cXYGgN_gTQC", "1UMxj3O_JbEC", "2z22FTDqiwwC", "3ia-XWJVD7oC", "47QEw79wBfQC", "5FE9hLvsv1kC", "5yF2gn9ksCUC", "6EkBTg_85fUC", "7hDY74g6pc8C", "9Jf46a7wqqoC", "_J8ymvTQz8kC", "_VfAeaKff1MC", "a72fLJcsH0wC", "AlknZbhbUPAC", "auZXJuwLw8QC", "aXiTtDi_PTMC", "Bx8fU-e2FqQC", "DBMoE3YCx0QC", "dF3FBNFsyvMC", "DPfYhaIgsEAC", "Ecl4xUM5SwMC", "ehmsqp0m4OAC", "eio5-Npast8C", "ESO9jfBkdsIC", "faAjVTbjQKIC", "FLfw-N8MCf8C", "FOcu05SkdGUC", "FpZ92p1JmhsC", "FPzap8_I4SgC", "fRx3pCIX8mYC", "GmMHj1qoG8gC", "H6ot0KqrqtYC", "h9jmli9voT4C", "HXOHZHjIKmUC", "HY3CC_nLoXIC", "Igu9K9zMEdMC", "JdTMZTHuLCoC", "jPLaqKhumPQC", "jYvfQEAc-8kC", "k64rkWSuGfAC", "K8qzZ7NWsvgC", "KAvITyK0lpsC", "kcmDfBs_cbQC", "Lel5W0G1n3EC", "lykWOYUgb0gC", "MUw_dAtcRjEC", "N6OCJhkuULUC", "NA8H9zqSKeoC", "nb8fUMuQRzEC", "NIo3RQmYLqQC", "PREUJETIcjAC", "rN-hxaSVANcC", "rsUwp-NGH4UC", "S6vx8j7-0KwC", "SEwbSC99jKgC", "SJ8ITTbJFBsC", "tNsZ8xge-0wC", "U7RCAkcuQTUC", "UggCNKyB2vIC", "UZSkjJ-20GwC", "VsMfKkwxSgcC", "W-_DNF0vm-IC", "wK4qdX-0UIAC", "xTqQrFWNoW8C", "Yl554V37zDwC", "ytjVJ9wANosC", "ywFYNFkgU9cC", "ZnF7UEcxuIQC", "ZO1IGCLCvWYC", "-1wfzbInfNIC", "0UnbTUjYzsMC", "2J-M4SBQFbcC", "3EO3zIqao8MC", "3JmF7JAtIX8C", "3nOSSNv3xlgC", "4vlcQZU6mwQC", "52nYgUsVn9QC", "5Pp8OEhIJ8EC", "6fcdrgoqgjkC", "6Y3LUwwAVQUC", "7Ga0TEYaScIC", "7P87HIh9ajMC", "7VWZRVvoE0MC", "beHXwswSD9AC", "bIih2n8DAXIC", "bmFSp3b8J_oC", "BSn7ms3kdsoC", "bX0XtVhbnOkC", "BZDgJjfi59gC", "cwEDQB2DFI8C", "Emwp17M6vE8C", "ETGVeEFFuMAC", "Fuyh3lrYV2YC", "G8N3X2u6oNcC", "g_1wN2RzTlcC", "gDgXbx8hEjAC", "GfpVKx-8lDsC", "GITDL2ZCedkC", "GPCfFs1LTIMC", "hKzjNMFba5gC", "hLhw14J-swcC", "hRrLcmOMaEwC", "j2_I7ao7B7gC", "J91S8m-5HhoC", "JIr_egKfnDUC", "JYI23XTj_XkC", "k0D1eAO035MC", "k0vwC7309EoC", "KPxNDJNQ3-8C", "LIDYmd2ibVQC", "LjHYjEZy9zMC", "lmwsbWLw6EAC", "MNcB4QaX7gMC", "nq5uwdWwEJEC", "nQYybfJwXrcC", "oQ8mv52KmBIC", "oSXEwOdkpmAC", "PDpBpo5CVB4C", "Pv1uod9kd4MC", "pWDVOTYvfvgC", "q2eNLtaZ7osC", "qg61T_I1mwsC", "qUn_UMWtrsoC", "Rg3XP_rQS6oC", "RW6pxRN2JysC", "S5v4BpqrWNYC", "s9QEjj3Lx30C", "sZ0GSJbIMo0C", "T2Mp9EEd3ncC", "TGcxvQRT5swC", "tI9POJ_lt0cC", "UfTmmBmUhbcC", "V8uoRGamur0C", "v9mR1wFHtq8C", "vaEH7rkN7vsC", "vIziFZ3K7dcC", "vKOCatOFvTgC", "wHihWKJE3asC", "WjUBulsr2O0C", "WuTHl4pK0GcC", "Xg-KfK7aFgcC", "xNdZnPXsKN4C", "XRcbURgaxmMC", "Y6-AxGipk34C", "ZC0V9erPk2IC", "Zp_b7CdQnzwC", "0i7tc2P7fAsC", "0syw4IwVuC8C", "14-8TtEVjSQC", "1KEKV2BysrUC", "1nU7NLCQGQgC", "1Rx6_jyLbBYC", "1ygSThNA1-MC", "2613mp_QbBgC", "2arSMI2yjlcC", "2by0nndSiDgC", "2nxLkMspauIC", "2toggaqJMzEC", "3oYJz7vV8fQC", "3w83rbjVWZgC", "4Eqexh3saqEC", "4L7Tl2y4PowC", "5Bli9QkKskYC", "5IVMhC9jGIIC", "6D_4FLb1DKAC", "85CBUYQqKUQC", "96_4UJrUGBYC", "9I62BcuPxfYC", "9m9tNj2w2bcC", "9Oo7uTUvAS0C", "_f9cU9A5l-0C", "_ivnD4_EHEUC", "Ax6PzlpRgNkC", "AXjRvYddXJoC", "B8zM5bs2A9gC", "bV0Pivbww6oC", "bWo8Ge1WRiwC", "cCCZD5BdAdMC", "cOxMYVG0nWwC", "cP5pxV6ogdoC", "cyD059eY2RYC", "dcKqHyguyUMC", "E1Tg9q6qgFUC", "EAQfpPEkcbMC", "ED8DRD0xzrcC", "EjtrYjnAVwEC", "eyALF5NigoYC", "eyik0rO0HlsC", "EZ8s1tWqvCMC", "eZmH26oClAwC", "fE0xNuSuFLMC", "fEmaqHANzXsC", "fPh-6h0ZjIUC", "GhU4NHMJW3cC", "gSggUrFCgNsC", "hEFNvjChUOYC", "HQwZmUU67L8C", "i6aXJLeZ2OMC", "I_K8gplq24gC", "IntaNqjL4kIC", "J4cKi6r33EQC", "JAxLVY96sqsC", "Jd5XqoxHYUEC", "Jf99l5uQqlMC", "JikT2vM5YZ0C", "JirvAdAxTnIC", "K9Zh0c6Mo44C", "kIzeIBFaDOYC", "L-MW4-8wrg8C", "lbyFW9eCUJ4C", "lHtTdnbIaw8C", "LxcuDGzPmIgC", "MJb1Utv2XEEC", "mvlLcUNu-acC", "mWFAqKADH_YC", "N9llTehCpy4C", "NsF40Xh9KHoC", "o0qO7gsBek0C", "O1BI0t0qA4MC", "oS_xi6YNcnoC", "pj-vSQv9710C", "pMjiOn7JZhIC", "pnv4COWJsikC", "puo_3AXu3HoC", "PwWh1G1ktNsC", "Pyj_G5sd3mUC", "Q7CkHF7xTuYC", "qAfYUYXsc3UC", "QeoUwz4LP2kC", "qINa6ZzeYU4C", "Qm-fSCAMrIwC", "RCz5jGH0mHEC", "rE85howYIwQC", "ryIHc_dFg9QC", "S4t9VQZgeeAC", "S7f9F47uOy4C", "s8d0F4pCFLYC", "Sd7UCI45e48C", "SsplQPga2i8C", "swicGGDT4eQC", "U_Jos-CxgBgC", "UeyX6Z15Dk0C", "uJcL_Uud0OkC", "UXdK4epTU14C", "uzx3iXNsXaEC", "vIIZ_OJBw6sC", "VMVnv48Q-WoC", "VU4TKJsUuNMC", "VugfRqniLuAC", "vw5TIVBcNsIC", "WevM7aDxwqQC", "Wk8OyjcUaNYC", "wYBhLD7xFzwC", "Y-gAhChIGPUC", "y8RsnLXx7V0C", "yeCZUpu-ZD8C", "ykz7uzPEMjEC", "yZnV_OeyVjEC", "-fYxFc8RUo4C", "-POJuDejO_8C", "0-eLkwgkzcEC", "0i1dO3r97wwC", "0M6qezYNW60C", "0Y89CoIRTI8C", "1BL8s7N-pS0C", "1UMxj3O_JbEC", "2CVmvMoBRK4C", "2n-MFn3NIdoC", "2VqEXOH-b2YC", "3eJx3RwFmKAC", "3pu3QWtuQyEC", "4a6oMgT8UsEC", "5XdIgMWhmcoC", "5yoV6-brDSUC", "63iee2qa0aEC", "658MNNM3VWYC", "6AXV76B7GTIC", "7gVDKA2OCBsC", "7mHlJDgr6pUC", "8QzD1qRZ3f0C", "97k3jPprXGUC", "9NTWxB-g2bMC", "9QCpUYKTwKwC", "_nASlQHDNksC", "aKa2XdHTOwoC", "ALOagfpXwsYC", "andJBXf1IJ4C", "aVFlEvtChHEC", "awBtfaGPr38C", "bEdfDabRIs4C", "bLOKdFhvUZcC", "BnqbHc7qE0UC", "bOS9wTxSjsMC", "C1bpMhPibbEC", "CmT3DjMEHY8C", "CNM3UfS5ZA8C", "csItFZBtVdoC", "dBhppfQYfzwC", "DFzy1wgWL6IC", "Dz67I2EuT-MC", "E8tYohlb1NAC", "eKOLNeeZQFMC", "f-lv0GeeF8EC", "F521rduZP-0C", "F_5gaom1OrIC", "fG49kbqrsgoC", "G36liS2WBmYC", "GIrGb5c50MoC", "Gpbzcr6EIG0C", "gpeD8N4Bgv0C", "gXC6tBuB3ukC", "gXIpZThzkgMC", "hKvbOiuRHK4C", "HO2tcJSd1ucC", "hUa1L6-oSFIC", "I20ZTvApcBoC", "iH8kTRPq8V4C", "IiHCtRXb58sC", "iLZ7FK0Z0BYC", "iTqij7sfRv0C", "IVk9f7XuhJMC", "IY8OBT0ALeEC", "Ja79cHnK5vkC", "jBHTwGoIKFYC", "JD8B3w-wAXAC", "JDDCX3NZg0IC", "jdoXBuPkP3IC", "jILZHKGefnAC", "jZm-7l9bVNMC", "k_PJN_n9HXsC", "kdc72ePipCIC", "KLoW8UJ7yV4C", "KSqaVLJ6gAAC", "KZhGMqTcdWkC", "lAJO7vQNrqQC", "lCGyHH-9ThMC", "lez8urgN7IsC", "lmyJpFpDO0cC", "LNyJXYzsm3IC", "luT5wRZFGt0C", "m0uNZ8L7v_wC", "mnVyKrjJnq8C", "Mt-0W2y5Ge0C", "MUgZz6fsfiEC", "MzU5LWah5yMC", "NfPZrhJB96QC", "nqD7og5KJIAC", "NUtoEunmt0IC", "nV_YYqbxgdIC", "o8kXe969g0sC", "ONHIQLf4DV4C", "ox7aNVgljlMC", "OyM3-IXdmJwC", "P3CplYtSSFEC", "PczyUV_YL2MC", "pdpeP0ZbWHsC", "pWewuk6a2BMC", "Qnuo81K0IcYC", "qp2VYFn1sOUC", "R5GOrCL-hNsC", "RPQaACqkjGwC", "rsGdiauRyxMC", "RZe6cV13zE0C", "S7xmKja99FIC", "S8i7H-hTXLAC", "SGI43GWP-IYC", "SI53QAu4dF8C", "SLkt73Lrbp4C", "ssViT_3Q3FQC", "T5UpCOVOJboC", "TTtjs91IuI4C", "TujOn209Ts8C", "tVgbhu4SOtQC", "u1HkFE75cAYC", "u2uHVUp6ekgC", "ueZOmEZ50NMC", "Ug1Syk-SggkC", "uppJmSyZNLgC", "UsLsYpi_y9oC", "V0iKXreetjoC", "V5qOnsDqd8UC", "vHpAxbBtYwgC", "Vimx2y5WKpMC", "vjwfFOOm4ysC", "VttdxFt4kT4C", "vZvy4vn11wwC", "w-vZfK66wxgC", "w6z2R-4hm7QC", "W_5-RKxftbcC", "wOIKIqrmK4gC", "X2-ZG3vkJBMC", "Xqa9U42GP2cC", "xTzN4tAcbWUC", "Ycz40OX8JC4C", "yq1xDpicghkC", "ZERszJzP_w4C", "ZhUKY-yEAzUC", "0pLN4o3jnX4C", "1s0fNs75eU0C", "3QhvCFBjXt8C", "3QPCicPagmkC", "7I9hbvFbSwwC", "8Wv67qmi7JgC", "_1CxStiRr08C", "AUbEMUpDHjMC", "B1woUWB0zoEC", "bqsnJ9Kwf8cC", "cu1La-UW1uUC", "Dgh-sFywyAcC", "dkS7CMsi0CYC", "gVEr98NLoJIC", "hfpZ7mDgL4YC", "HPYLoLgJVKwC", "m8JVt054DKwC", "OIW90It28wwC", "Qn6XPK6_9PwC", "rRYjYKrShPwC", "RZ_J2zSCsBMC", "tjoUmDYGZ_kC", "wBsz9EFmYVYC", "WDBALbSAEY0C", "XlxEL2OAq1MC", "Y9gysXtdfNYC", "-ejuRdu1o0sC", "-L6Mta5ndNAC", "-P3klEJmyYoC", "-vEse95VywMC", "-VqbhDPE6RwC", "0-KFVYyJVQAC", "02Xig2qmvr8C", "09logyEmlP8C", "0BviGSKbcTEC", "0Hq3fQM_ql0C", "0mGCIWM1pOoC", "0yF95v_cIi0C", "1CZjrwiEqWQC", "1nN5hXqGUpQC", "1Tny60vKmUUC", "2-FMeNpDPLUC", "2Ub5TJ2P8_QC", "333tT0uUJUkC", "3h9hkTsLvBsC", "3uni7ltr-EgC", "3Y3Koy1GyxwC", "4CLIORno1rAC", "4hg0KpqgjcYC", "4YR9KKoIGEwC", "50cUnQ3tcKgC", "50wLU-gKr-QC", "5gdqw3ax1KsC", "5ohxQyl4-O8C", "5SXv0BUeKh0C", "5VMcW1f4fmMC", "63VsrJx-DcwC", "6AWJpoorWoQC", "6MtRNh_cgSMC", "6zDH9GBpFmEC", "6ZOuUCxDuNQC", "74JpqIiLifEC", "79qeY1rwa9MC", "7ER4mPFI9osC", "7TEhDf57HygC", "7Xf-oGYr5V8C", "7YtL5kM_olQC", "8fjvEUIapQIC", "8Fy9NHweW9QC", "8gelKH734-oC", "8OEbjHKSKkcC", "8srzbBuD8ooC", "8TCybCs-AHAC", "9L8MwyFsFvsC", "9P7h5rB2vQ0C", "9Yy_tYUfn0AC", "_jueZ7Tz8ywC", "_U9YvW-NfvIC", "A-nGXqb5JSYC", "a3MgYVp3MNgC", "a3wg36vBXkYC", "AhajUs_0K-EC", "AikWxorjwGQC", "AlGuOeb7pl0C", "aLrU_YzhaBoC", "AM1Q4ECeQDcC", "aWGs4TGKDcgC", "AY1iHnq-xcQC", "BBKEcM6M_BUC", "bBYG-E9nRykC", "bCosFPTNyRwC", "bL0V6oCroGYC", "BOIK4w9zM_gC", "Bp35IAKbcd8C", "bX1nS36naX4C", "CaBAy2oYiNwC", "cbJAOnu-iEAC", "ClNeCvWR5P0C", "CN5So0yMZp4C", "CrJXCFjqd1EC", "cZ_F_J1308wC", "D1g9NcEBcEYC", "D8UzeKZKKvgC", "dCq_E2MSODcC", "DEussc1kYYYC", "Dk283ZDn2CgC", "DMQjVRUdl0kC", "dMwhA-NhOF4C", "DrGsqbdcIRwC", "DsDJpRznYFAC", "DSiWIXzQQRIC", "Dt67NJYFYL4C", "DXl5d3PpY04C", "edFHvonqKX0C", "evF6kdfndvYC", "eZYrYzQW3nQC", "F1Lhjw9V1WwC", "f2D-5VU4K_0C", "FjmABe9tZFkC", "FonNsPo-E60C", "FQK28Kn_l_gC", "fu-kpQVvUNkC", "fVGEkW_gHYkC", "fyvF_1MmEMkC", "FZ38Nhdr94gC", "g-xFICaT2KgC", "G1NBCKQUbLQC", "G4UH8cPE_VkC", "gDdUJG9ZAsMC", "gsMmMAyYC-gC", "GUCo0saVa8gC", "gV4SCyVYuYQC", "Hbvw2UCKoZ4C", "hEUQWxM0nHsC", "HgMEuYosYCoC", "HLzw4WZuZRAC", "hUIhZALOqtgC", "hV6KwLHHzOwC", "I4jlSqTv0bEC", "i78nrgJzFSMC", "I7eMlFZ-drcC", "I_EZKwscuG8C", "Ifj8JhEt9ggC", "IWvJms37_owC", "iXS0g4iuYzEC", "J2lPGw1Rtw4C", "jaHqDitMkcwC", "JBmmx4WE6k8C", "JigkhryKpx4C", "jtWpJQCieJgC", "K5VWQGFBxcQC", "KgSgVDI8c2UC", "KIo9mt-eOFgC", "kqbwwzLe9_MC", "kSk9JR9LgSwC", "kx6eAjugaA0C", "L4GeYVeSpAAC", "l4lfK_WL3gEC", "LEHGfCUDYfAC", "liXVkOxFDqsC", "lKKf4Yj0W4MC", "loo0_eXLXggC", "LurjwBaxF8MC", "Lw86RxlWQnYC", "lXrnTDSacVMC", "LyOdxBQrBwIC", "lZtKCE5Ui2UC", "m1Or0ficxlsC", "mUYVmd01fuoC", "mxt0Ro-l-gAC", "mzfNbAE9mX8C", "NfGHZllfQK4C", "nFVzIP622gEC", "nJv2mifE1o4C", "nlJT7puXjx4C", "nm-BUiZMc3EC", "nQ68hmToee0C", "nVMR4Gh_Y1sC", "NyTudGXQewIC", "oB4OC53QYYkC", "Odv4ILalBKcC", "OFcR4TvqVoYC", "om6ka6hzytYC", "p-NUf2ojrQYC", "p3YW4rJ5ob8C", "pAxZbNwBNzUC", "PE53nJcigosC", "pNXdJ7cvvngC", "PRi6bl07_b0C", "Pw-rcBpV-80C", "Q3Rfm2JBti0C", "Q8lg56HLGp0C", "QdiTkdgSoaYC", "QhWVUH9tNw4C", "QlLMwIkHVu8C", "Qob065xfJc4C", "qqkjpQLEWPQC", "qRn_S83y_7cC", "QtTNYdNpJRkC", "QUBFst0zmBUC", "qUgPnJLN4lEC", "Qyhd5sjMWnMC", "ROHwG0JvP-sC", "RS6m_DbSJXIC", "Ru0t7ESGsDAC", "rxlhF88yrg0C", "s0CyUSH9iPgC", "SaaCMIz8PvUC", "sAtrYgbkH5gC", "scftQIAXQHQC", "SEQr7Y2ESicC", "SIGIlqKAaW8C", "SIGkFwAmFKwC", "sNCoxfSclV4C", "SoxnKRQyj10C", "suQbrg7MhFAC", "SWZ4FCf3LiQC", "Sysopkjdno8C", "T31kevVNqUMC", "t5NEp5iKhkYC", "T6U5eQyWuSsC", "T97vHe-Q8OMC", "TE0WobkrkQYC", "trfXmiUm5PgC", "tu16MecA8cEC", "tuSGXALbaLIC", "Tv77pfIsaVYC", "ubodMGnHnx0C", "udGI7FjregcC", "UDuEFOTuCFIC", "ufNTEMTqAhYC", "uIBm2EZDcQMC", "UjOac1Td7CYC", "UkO0zAqUSVEC", "UlhGedGC668C", "uLXTjolpB_EC", "URoDbjKxx3oC", "URtZ3OXHZQsC", "US5aoykpdoAC", "USgMx6uKq7cC", "uU7Lam3hcRwC", "UUODSqSSrZcC", "UvgGzh-6t8cC", "vnEhQB8-uoEC", "VuaA_9dvD_EC", "VzamFijBMFwC", "w7e869WABvwC", "WI0nPy7U0XIC", "wIEr8jXYBt8C", "Wih7vhglJFsC", "wk1caZUaMOUC", "WNBFbIUssgAC", "wou23_QQyHgC", "wXjHgnoHQ0MC", "X3rvKJrmYVwC", "x9YvEamhGw4C", "XaKz2uqbMzUC", "xd3X5x_-MOoC", "xJ1j7mkgvlwC", "xKOiyh5KvFAC", "Xkw1nCTwsWsC", "XLFMJx8ekPkC", "XmEN-qK0bsMC", "XvMdKogKFqcC", "XzVLIY5L2swC", "y-YtcOzwf6MC", "y11kvNfIDh4C", "Y3yDkC9IIukC", "Y5yyFc5E2m8C", "yA4cn92ySgEC", "yDymY0juFzAC", "YmWw98yeh0oC", "YqtYxm9n5-IC", "Yw64dgRvc7EC", "z080t9ESro8C", "Z2HZ7kIVskUC", "Z5VRwewA4rkC", "z6iODYzWf54C", "ZHwey8h5Kj4C", "zMxUsres-coC", "zwKv3PF_Ff8C", "ZX4JoRmrwyMC", "-Ac81W-ZQDEC", "4RAq9z5RgxYC", "5rF_31RVTnMC", "7o6pq4VR26YC", "8HDEs3wNLd8C", "9m9tNj2w2bcC", "cis5uCsRYeMC", "Dep5Eh_SUPkC", "IaA8mZqhjPkC", "IJ-GgyfvKL8C", "JAxLVY96sqsC", "JckCvpOQDOoC", "jgC36S_BdpwC", "LBBhikJpLjwC", "lGS9Lbv0PdsC", "MJgN0BWagZcC", "O1H7BVBsK9oC", "o4dc_zcnl1cC", "PJP9W9X2NGQC", "pskTkT2TDeYC", "RoO9jkV-yzIC", "SQhknRXlyvkC", "T0u3mLgB7Q8C", "uHq_8awQIbgC", "WCEhW6yWDNAC", "WMVCPeDrXs8C", "Y5vLDglww74C", "yFgt50M0WPcC", "zfONjvb9FpIC", "-6tK6UnVlEcC", "-NwZA2WUfngC", "-TNhhlGcCzwC", "0nV-mIqPa5gC", "1ZkYEFi3DMMC", "2m5bzSFYhXsC", "33krmNTydTIC", "4Y0ZBW19n_YC", "58ozhlerewMC", "6DBnS2g-KrQC", "6N6t5MXXaIsC", "6ujGHAm6UmgC", "9-8jnjgYrgYC", "9IQFh2qW9b0C", "AAiV6mJp4hUC", "aC8Baky2qTcC", "bFURkBeZqPYC", "bSphUJjJe-MC", "bxZ47UHnWGsC", "c008kdNwR1cC", "cypYpNnWjXMC", "dj7I5K33aL4C", "DNd2K6mxLpIC", "gIHSN-ht0xQC", "GxKN1LiEYyEC", "gZVaXvKwxHIC", "hhnIWGD5Zt0C", "IWvreEoFhPMC", "KMdvIKsOJwIC", "KuaZgBcnmAMC", "llUvnqcEKTcC", "mJTJO3vZkSoC", "mUTV9dgfMuMC", "Qw7qj5nXSPUC", "rKmH2DNXricC", "s2ZtdAx83yMC", "s4WCjkloJCAC", "tGBUvLpgmUMC", "uuX_cmZ4mjoC", "voB6UejOtncC", "VoPogETDqa4C", "XSIssqPhDbEC", "Ybu81FJA3jgC", "zzUeWIFDCaEC", "-76GjNpR9VUC", "0uoqWWIauscC", "2hLRAkzKHjIC", "_zhwTYftf-sC", "eDt6lmVX_k0C", "fiBhVEiOFw0C", "fXX-Z75KAhoC", "gbIG-epQgyYC", "gDcH3tczR60C", "I6BQ9yxgSaoC", "Ku8NG5OgmlEC", "lSybHLQbZ_kC", "Mmvao4xhMiYC", "O1H7BVBsK9oC", "Os-9cxoj5AcC", "t9tHrAygQWIC", "uf5x7GtHpjkC", "wmgF8XJf4l4C", "xHWgnMsz8UIC", "YoryriygeZgC", "YZ5aQdRwaX4C", "Z9Djirq3VyYC", "zezJOW8XFc0C", "zMWMzPG3j38C", "zPNgwV6VPywC", "-Ufj7x82aZQC", "0H2ujnLIb4YC", "0VQVWO-XzX4C", "198V5wsaoW8C", "1eVAVRRUnkAC", "2qYKIG4lhHYC", "2vnbMzYXBQsC", "2vtmwCOgzI0C", "3_fzWPCMmvYC", "4F85nqXb6w0C", "4KiPFF1pfPAC", "5IaLGlxtqsAC", "5zd7ZiWzIKEC", "61W3aGvTVgIC", "6kBREfqwuHEC", "a-apCPdumpsC", "A8KuchLCcYkC", "anFmX2d0KxoC", "aVWi86L3w3EC", "bIoc-41VKYEC", "BJcgLVibkrEC", "ccWmlymJEq0C", "ClHUjere8vgC", "cNB8Qm4_2J4C", "DDQ6Vw9J5DwC", "DIxJQdDgS0QC", "dLbwPpBYDl8C", "DQ-wif7eBJoC", "dULNnyLkyEoC", "e4Tb_6mxqY8C", "E7h_E7K_fwsC", "FKkPEODeDT0C", "FUha9wJrSXMC", "fVgPWLQWA4sC", "fVLMYb4OH3YC", "G_ChtsfxkRsC", "GwI3Sj_pwsUC", "h0oAFNvncUUC", "hiA_PNMp6lYC", "hKNc-9vorskC", "hKV_j23sEKcC", "i6kVrD7R_n8C", "IHtQFK_sBqcC", "iqKULT8jgRkC", "IwywDY4P6gsC", "J6sln7m6S6UC", "jdwZB4TQN8gC", "JJ8ubAShaQYC", "jUX8N9kiCiQC", "K1-LL9vlxZcC", "ldH2BM3vs_EC", "liuJiSc9n6oC", "LxcWEfaffaoC", "lyrm5fJSrSkC", "M1AUC4TY4u0C", "mnoT8c0Vx_8C", "mtQuudHqmqcC", "MwQnyFkCIL8C", "nHAot4SFzlUC", "niDNtZoYsAUC", "NoKhJMLbgD8C", "NRWlitmahXkC", "oa7NCF8auswC", "Oa8W1lM7dp0C", "Oh6wLFldgIwC", "Ojqi8KbWuLwC", "paCOTGa0wS4C", "PpEz47zsLEwC", "ppLI3zTIhQ4C", "Ps6bjZJvsHoC", "q09de7IECAkC", "QTsy3cwmtgkC", "R7yZULA2tBMC", "RfXAhxwv3d8C", "RMd3GpIFxcUC", "RZavt1b_0BAC", "S0f1dqjiGXwC", "stUAkZC2Fm0C", "T4Elzas1b3QC", "tWhTr1WekFYC", "tysWnxuQhYkC", "u7aQrw6Uo4oC", "UcPsbca_C5EC", "UohaMn1AmigC", "vkHCx--93jIC", "VX4reY-uK3oC", "WU-OyPMpDVgC", "XBkchXgQ-d8C", "xoZ-WjpIc6UC", "XVwOEeHTU4QC", "YIdZ4-jKaGIC", "YIY4089h9icC", "yPBQ0x8ilx8C", "Yt5DTUj4LXgC", "ZE0pJLh53e4C", "zuzKDZmT14oC", "ZYLmkgIqCLkC", "-52RHqbsaWwC", "-_Si5OP6cjkC", "02XEWTji9E0C", "0Mei4WzHik0C", "0w2UpJzBamoC", "1bNXWy9W9IAC", "1E8PhEA5Az8C", "1lGuK9xyvokC", "1rOerr2Ci-0C", "1sInFMCUm2YC", "1T39-GfAWrUC", "1u_tY_pssu4C", "23PS8aGYYhsC", "2E3MiOWRNtQC", "2jNwYjcIK6IC", "2TTqv_HACK8C", "2X_sivIIyQ8C", "3XAM96b312YC", "4gS_0UwVI34C", "4Hpzwl0VoyUC", "4kLJkLerSaAC", "4UXyNz_R__wC", "5DGXp5h2oL4C", "5oSqucVGhwIC", "60KnbxhqPL8C", "6oILDOdkvxYC", "802VgkC4UEUC", "8dKozfsRRH4C", "8HYQQYEtQ4gC", "8ICiTVcgwuAC", "8JspW2EUnLQC", "8NCXcrGcjiwC", "8Ri5V2SwMkQC", "995krFsdee8C", "9i-bgOjaVysC", "9lZHwn9YINEC", "_MAXmVxrdasC", "_O1UFZ89S6UC", "_PIKFebe0ZUC", "_Pk7ht_KTAQC", "_tZO-x__5b4C", "_yFAecBTPwEC", "a2cWgOGKF9MC", "AKakX0dT3f4C", "aOGdsB7a-MMC", "ArPhc8pH_ugC", "avp_J4eMt4oC", "aw0bmkidutgC", "b2ov6zAspKsC", "baMsUZCRgqIC", "BhIMO0CiTwoC", "bVbUWcZJTjYC", "C53Y8utmakQC", "C_g4YJ0rTsMC", "chGjPf3_RCEC", "CL3ql_ziOxQC", "DEgiTalvVXwC", "DnVCYtiKos8C", "drAw7ArFYTIC", "dTFo7wU_510C", "dtHmdv32NakC", "dZdWebZTGKkC", "e13q14sVPiUC", "E5zQIJb1hRAC", "e7Eznt0V6QEC", "EhmN7RRA_ugC", "ek8nf53EXugC", "EnedFN3PnZwC", "EQVcqI4HM6gC", "erkTSFYCnakC", "eTi6u-MS12kC", "EVitU7S2FPwC", "EYjb5ZmougQC", "F16NoYvQA4IC", "F20_TnLlcR8C", "f65agJNAWVcC", "F9mNmjsAzQMC", "F_vwlakdLxUC", "FaA-TWtbLwQC", "FIqEEO1Kc1EC", "fkRwjQz0O7cC", "ga7KFEaiaMcC", "gGV7hWLTDUgC", "Gk6un4og4_0C", "GMKHspxES6UC", "GU1cifth7UAC", "GyCscVPFIBsC", "GZ4xx0P9di4C", "Hc2dCHfyh0AC", "HdwuLjpjVn8C", "HE9bl6gPs-8C", "hEeJMViuF_EC", "hGD_1iPQh6gC", "HGoajRhgyM4C", "hlEaPi-VRXAC", "hORPJ3l5cSMC", "HZyRMSddyh0C", "I_K8gplq24gC", "iCTMVq5iuAUC", "ijLOO6zrl-sC", "Iq8odoc_AHMC", "iyOjvMGmXo8C", "JAoLsCTW5noC", "JAtHsOzOCoUC", "Jm_TNTVOWG0C", "JQ761pPLQ_oC", "JrfffY38O9MC", "K7zz1seo1GUC", "kIfE_AnrEwAC", "KIu5wqdIb3QC", "Kkf7gowrH_UC", "KQLWPZx8fc4C", "krIH8Sax2nQC", "KwzZwJWBO_EC", "kXSKAfy5cQYC", "l-9PAnwdMHwC", "lBwBNq7OeNYC", "Lel5W0G1n3EC", "lez8urgN7IsC", "lkMyHNy64qkC", "lkoOngAgeK8C", "lzds1LbpY5wC", "lzHauSS_z6wC", "M-Yk76ZkPlIC", "M7F4yExH0ygC", "MaI5EZmsgtQC", "mfbaDBgpteAC", "mj-of_PzKJIC", "mQLDLn0GQfwC", "mqPTDRT2v3UC", "MU-_U6mkTvgC", "MuvqrIW-WUMC", "n2h7p0H5l0wC", "NfBbt3TE9xcC", "nGZ9CyVWkmQC", "nh18wf88pe0C", "nQd8MHuaXysC", "nrQxBfJLvtgC", "Nu-nE7Iif8cC", "o9_TF2NHuFUC", "oaMkKvgT3sYC", "OEXDt0Os5aQC", "oIYNBodW-ZEC", "OknSmoptV8MC", "OkOrJIysavMC", "oLCSBeuStRcC", "oLFVBoeI1gMC", "Or9G72yAd9QC", "P2XgbUHcJiwC", "PDgGBdrq13AC", "PHPdMoXyFfMC", "pJ2DUnZMffYC", "Pn-X4YCCAVYC", "POD-D1f3OUoC", "ppmteilOxqAC", "py7QAfg-elkC", "qLmG7deqB2QC", "QUBQF0zn7hYC", "r-Wlg6VAzJUC", "R82YRMlkujYC", "RFr9q4q0VLsC", "RIPdMkiKipMC", "rLtFv6s_XzMC", "rLv8OfsqR3YC", "RQtjqXmdFOsC", "RrC8pZtmzGoC", "rRUw7deQSo4C", "rUbjngR5YqIC", "Rw2ZYQFfy74C", "s550mfKJWJAC", "sPAud06zOqcC", "SstfNYaa-gsC", "sT8uCriUVloC", "SViiPVoClWAC", "SYaFTP5qgEsC", "sZPy2IltN-wC", "T0Rx9oivVsQC", "t3h4nl3v91YC", "TGYP2rhIXM0C", "TKOUBqpaLI4C", "toKIEHepkIgC", "tTOrRdTXNlQC", "txVOZJziHAcC", "uaAMQY5-4nMC", "ucFO7tBv-pIC", "UcQ0P-6P7q4C", "uf9QosYeuX4C", "ufV1PRGkP90C", "UHSx4t_R0wYC", "UIupgDi6OugC", "Up4x7U20ZVUC", "urO0JtViT3oC", "UtQKuF5Y0tUC", "UuuMiX4SDXMC", "v8Z1tc-6200C", "vHTy1OaeHI0C", "vnl0a09mk-cC", "vt2lioMOxnkC", "vWfPuK6eCn8C", "w1kb1gE5PxUC", "w4GQlLISiCYC", "wFlu01q-wC0C", "wmwnm-sPBeQC", "WwmkfE2TBE8C", "WYfK1zOtoLwC", "X91l3wqJnikC", "x_V3JdEvL7UC", "xOs5mVMo1xAC", "xu_zcxk2cOoC", "y3Zmn5Ke0ZYC", "yiKnw-99J7oC", "YogcNmM_oJwC", "yRizg1DsQh0C", "ysVrxa25lM4C", "yTfReukYcwoC", "z9SSyLNpqusC", "zDLowxgAMCoC", "Zh4_Ptk31K4C", "zlpXQ8ifEv0C", "zwEtSw1aw1QC", "-A-wrak3BkAC", "-H4xjMzoYj4C", "-sFkv-rGTJYC", "-vEXEPUJK4EC", "-y5Jxp_VbTQC", "07LTDdpMZfYC", "0ba36JZTUswC", "0dD9rHI5H5sC", "0G-F2AOqNuUC", "0HMvmNpuDf4C", "0NP8hnGNjAsC", "0Q6cMEkz8xkC", "0Sb9rQ5Ewd4C", "16agJ40MsqkC", "1amOE2BYvIYC", "1dLQ-XiilEIC", "1e_JFkI3DPMC", "1HeSzCJrOR0C", "1IjS2r3poyEC", "1PRS3fY7pykC", "1UMxj3O_JbEC", "1waIe7g_DAsC", "22DJdTiUvg0C", "29I9RRjYX9sC", "2hLRAkzKHjIC", "2Pk6AWA0cJoC", "2pxcG08a90UC", "2sbP7J-lckoC", "2VqEXOH-b2YC", "2W3d7kwUIo4C", "2z22FTDqiwwC", "2ZAptMWcCdwC", "31rCgtgEU7AC", "38T2BHhBznwC", "3HDyoJBoLBQC", "3QzNODskpJYC", "3S37vpzASg0C", "3zLSRa5lIyUC", "44ml8Z4UGEMC", "4_QEsBJLmy8C", "4cJDRBFy9kEC", "4F1SDVZb2NgC", "4GXEmkTTUpoC", "4mcT7A371xQC", "5_zAi06GKNwC", "5E0omkoy-S4C", "5EdVJ4vYF8QC", "5F3S8RgQNUQC", "5gdqw3ax1KsC", "5L4An9lC3hwC", "5L8anx8CvsIC", "5r3QJUEsNWUC", "5rF_31RVTnMC", "5VMcW1f4fmMC", "61rslRcPoZ0C", "61W3aGvTVgIC", "6pmBjSl35egC", "6S2GdoIPkKQC", "6YkQy7wv83EC", "6yRD5W-t2XMC", "70vIJVnOOpIC", "71NB5LcRaSIC", "73s7zfPb2L0C", "79x4w7DnzPMC", "7RGQjnd620gC", "7VWZRVvoE0MC", "7wMuF4A4XF8C", "7Yhkld-Fr5wC", "7Ypg28yZ6aIC", "8aEwylFfsjIC", "8dCnb4uR63EC", "8fp1A2s6aQwC", "8h7qnrbCEAUC", "8H8WfZ_AyU8C", "8HDEs3wNLd8C", "8yG5UrYMQ-0C", "8z03WKzlC3MC", "96hZRNDqFJwC", "9b2VoLf4MzkC", "9dQq-oVJFaUC", "9jiJd8_5KnoC", "9K6oJ3mezL4C", "9L-bI_M_WskC", "9L8MwyFsFvsC", "9ne3r2XzbzEC", "9nFwTXKoS6gC", "9QCpUYKTwKwC", "9SrWPKB2q7MC", "9VYuMmcxSYcC", "9vZ64MLmVS8C", "9wynPVLnhDAC", "_2BzIHoeil8C", "_30zvdewnuEC", "__CvAFrcWY0C", "_c95aA8dOLkC", "_mtzX3Gs9nUC", "_mur2PUOp8wC", "_P1JvRV1iCIC", "_rewTS4v-EsC", "_UKmhTR0ITkC", "_UNNPyZHBHoC", "_uxrn_B6nQIC", "_wofmBiXXv0C", "a3eobGCRYGgC", "a8O0IRmdttkC", "akhuVP5NY-kC", "AmESXDfiId4C", "AoSgoI5FddcC", "AR4mvx9Tn0QC", "asrHFGGziHwC", "aWmi9nbSr04C", "aXwlII05pnkC", "axxlIDSbKg0C", "AYD_qooekugC", "AZ5J6B1-4BoC", "B2tGEsVMrYUC", "b34oZ_wzrTkC", "B5I9_q-88Q4C", "BA8Ok58Q-ugC", "bCGd7ampITkC", "bKVCtH4AjwgC", "BNZ2-nzmQ_EC", "boA1HQSnefYC", "btpIkZ6X6egC", "BZvXZ1au0VcC", "c0KhuXidBe4C", "C2YHElDp6loC", "c2zhJMEYccQC", "C4Rqx1_fKLYC", "C_bL0PRTQl4C", "CBureoAhqXEC", "CcJjP5T0fwQC", "ccwXeaPkuoUC", "CdocFvhd-JsC", "CefIFvgupFYC", "CEYDySjS0UwC", "cfS2tdrgGa0C", "CfZMvlReQAkC", "cLec-hyjLJgC", "cMjSV6CDnOgC", "CQ356zufRpcC", "CqjBCWV6Eu4C", "cWQJJIgJNtUC", "CwYTKoE33jgC", "Cx4DMx_JXggC", "cxlsKCEBohsC", "CxYXaAUJytUC", "CYYnmQwmT2QC", "D1Gm-lqYM2AC", "d1LNoUWhdf4C", "d2rXwFdzuo8C", "D2sYaR0b2ZUC", "D5H6yvflq-wC", "D8UzeKZKKvgC", "D_IwgpeDNUcC", "DayPI1EjaRgC", "DE_Ay18WF8oC", "DEgbRttpd9EC", "dELO9Pc3P50C", "dfysT8sctZAC", "DFzy1wgWL6IC", "dhr32lY_rt4C", "dKIo6D9yh3cC", "DNmjHtlFJUcC", "dqM_GcdDEHsC", "DVMsjPtMfqMC", "dwfGvtzvte4C", "dyIWVNGh-zcC", "E-tcvjEw4jEC", "e2q53WFE7hEC", "e8aDEGSDCToC", "EarJQWvrLOQC", "edFHvonqKX0C", "eFBOvBvKqE4C", "eK0SnBnpkA8C", "em3obwwfGUAC", "eq0n9Ck79ysC", "EqgV2wJhi1cC", "Er-_4IaVw1AC", "EtjIuCcJkNoC", "eu-lSNjgkSIC", "EYTfQ9h2vaoC", "fa0U8hYlJlwC", "FaovgJjD1AIC", "faQU6AVeFigC", "fBazruOey4UC", "fCunxPYp_OAC", "Ffl0HCe_YV4C", "FFO2clqJCqMC", "Fg2TI5x7qOUC", "Fg5MjfVSQOkC", "FN5wMOZKTYMC", "fnVy4v5pZPMC", "FPWSLAVs8jMC", "FS2DSJIHg9MC", "fTi775ZHyDsC", "fWKAXYomhoIC", "FXPtglTFvKIC", "FZH5yr1VCfUC", "G4UH8cPE_VkC", "g8o-_gdZ4gIC", "GCyjMr7CudIC", "GELdo7SRRssC", "GG7Y6ZFGk0AC", "GghRg6VmYPMC", "GifAXXyoO84C", "gkaUu__vNDQC", "GKPktrYG7sUC", "gq5gFEcgRHAC", "gt7EQgH8-b4C", "GVchqY1ZaB0C", "gxizgOuEebsC", "gxU0P7bsBIYC", "GyjunFDS-HoC", "gZaqADTgdtcC", "h0gJc-Sdx_8C", "H4m1VKnO7VYC", "H501Nxy7xv0C", "H83nwxNyJMgC", "H8_o6tEvTnYC", "H_5zYEhiT3IC", "HDVCxjgGZmkC", "HElYZgz1dLsC", "hfpZ7mDgL4YC", "hFSx37SaQRoC", "HG1-0P8zV8IC", "HGnopNYgga4C", "hhnIWGD5Zt0C", "HjmIMdOx6-cC", "hk7brsxp4d0C", "HLkJ7pVVOKEC", "HpydZ7Xl1xwC", "hsKLPs5XqtQC", "HT7LP-hRhQ4C", "HwQD7Q7rhkwC", "hx4zw8cp__UC", "HXRS6p9LRTIC", "HxtpSewA1lAC", "HZc3FzaajnMC", "I-RTiw0Z30MC", "i3Ts4B2_SrAC", "iaKLCIkmYmsC", "iCpj07vEEIcC", "ifocmqVPHUwC", "IjJNEdgb7DwC", "IKSHVdYUzGEC", "injpY-EerZgC", "IQC01c3qeCQC", "IsldnzHkxpsC", "itSPLM6udREC", "ittzoegmRpAC", "iUwStqNL3CUC", "iUyrNlDbzsIC", "IV2Gkol65s4C", "Iw_gHtk4ghYC", "iXn5U2IzVH0C", "j1hzezxjN4QC", "jagVDBB5nNMC", "jB1L3asv5ysC", "JbffyB5vT4kC", "Jh0wzZASOyQC", "JI6RrXDzH9UC", "jILZHKGefnAC", "JNgAP8k5KroC", "jNYDVy1Xt40C", "jOMGyirP81IC", "K-7YdiF2eEQC", "k1Am3RpR7dAC", "k63dDkZnAoIC", "K8qzZ7NWsvgC", "KAvITyK0lpsC", "KAZvQcXJ0vEC", "KcOo6u5EKR8C", "kfDyeu7Gt8YC", "KFWbc2tiav8C", "KgSgVDI8c2UC", "KjxRXWdXeREC", "kJxvhVkvYmYC", "KkRi8y0wGhEC", "kNBw5fDZ7sYC", "kotPYEqx7kMC", "Kq6EQGda_30C", "KRaNlo6MwskC", "KY7pygt5ImgC", "l4CEWzs7a88C", "L5RPRCmkzhYC", "la_e6cgLl-sC", "LBBhikJpLjwC", "lDcxH8-0ODYC", "LdxfLieU0aEC", "lh0JevgRoKsC", "Lib_c4i9A50C", "lj5woI0AjhsC", "lKq3n2S7I8kC", "LmCCGgBTqFAC", "lmTAEdyyMRUC", "LnkpdauAHvEC", "LVYKm7eJC28C", "lx7mQQ0mm0IC", "LXdGN9ovH6AC", "lyOsjsAjvcgC", "M1AUC4TY4u0C", "M5X8iZ0GCoYC", "m5ysTujFqbgC", "mDmcW9KR6r0C", "MF9KWcidqhcC", "MfS5ck5qHDwC", "mGrRj_bpLBoC", "MH5atcMZq2EC", "MmJeXfkFNKwC", "mMy6t9_dONAC", "MNA1xBL8akkC", "mQVimIsyPd8C", "ms6LXsqcn7wC", "mSlgn03zAroC", "Mt9NFfWXW7wC", "mUEOJuwUAOkC", "muXgq4C2UtoC", "mUYVmd01fuoC", "MYII8Qi1-eoC", "n2B9sT9UfIkC", "n2EK2khQWfsC", "n2kd2ajvTIsC", "nI3i03KWHlcC", "niDNtZoYsAUC", "NIo3RQmYLqQC", "NksODwE5nNIC", "nRC9zn3nHIQC", "nRLXi-7ikW0C", "NuMx6tmf5iIC", "NWiG1MtLMioC", "Ny5I1aaSlSIC", "Nzcj9nmbEiUC", "NzRpoHvMkS0C", "nzUcExdmkzAC", "NzzLC__TwZkC", "Obp2ZR6DlakC", "obY-pbyMSp0C", "oCji-fn5qEUC", "OcRqqQiIrqoC", "OF-YSMKCVwMC", "of5TqT4nz4QC", "ofSWPafmlpAC", "OiE31yjuVbYC", "OKq9OVHLjjUC", "OKV8Nd7hKhkC", "On9mohCLQMgC", "ongYdoSU3R0C", "oSXEwOdkpmAC", "OwCyCvI8mokC", "OxyUsyZrqY8C", "oXz1ZblCUIUC", "p-ln2rx0vrwC", "p0dUyABx9SQC", "P7yZUMBcbxAC", "peudW5Nk940C", "PFYBPAS3LIEC", "PIqwFAOQXdoC", "PJArEP_lPlMC", "PJgMFxbClw8C", "pK43Jn0RmTcC", "PltZoL6swlQC", "Pm9ZcFYtLZ4C", "pnGaA_pJXjQC", "PQh8kNVjYyQC", "pS-xvdmJsMYC", "ps7z-1FtNPkC", "pV8oTgZ6B3AC", "PxOB8s6dtA0C", "Pyg-gr37IkwC", "Q1CEQ0AZh1kC", "q1JPyB4n7LgC", "Q2OHIJ5W94IC", "Q2yO_wNMX74C", "Q5BuEKEe4pYC", "q6-Pgq6Bd0cC", "Q7Jk307w-XkC", "q9N5V51Zp3UC", "Qa8IoiT_3kAC", "qDWo8bSCLwkC", "qFV6Th-pDiYC", "qg61T_I1mwsC", "qgJ4lh1zynwC", "QhPgEq5ZeY8C", "QJb16_AAePkC", "QJWqI7uH7YUC", "qKHF_8IruzYC", "qliYOteXA30C", "QlLMwIkHVu8C", "qsijdHADx8IC", "qxiWkQws3msC", "Qyhd5sjMWnMC", "R19P0tZxivIC", "r63oLL3zwpsC", "REwBpIGM9PAC", "rg20BVnXdz0C", "RkGQBTHGw_8C", "rKq8bnUK3WoC", "rkRu9OJ6gWQC", "RlmniRlFsU0C", "RMd3GpIFxcUC", "ROHwG0JvP-sC", "RoT8nuzZY6MC", "RoYgPLWFeakC", "rRQ-ln-SYnMC", "RrTATTAw4MoC", "rtumzZ-I8gwC", "RW5arTsd59UC", "rXeG6ivbdIcC", "RXT-iRt5s9MC", "RZ_J2zSCsBMC", "s-IKDw_xNO4C", "S1aY04SCeCcC", "S3wSTfB65c8C", "S7wSLx75gsAC", "s8zIH7dnYCsC", "s9mLc43sk5IC", "sAtrYgbkH5gC", "SBBgOwoaYMEC", "sbNgTt34a7AC", "ScE8F_pMuAAC", "SD3G3dyx2ZoC", "sfC0p0Y9wY8C", "SGJFKqC6MEYC", "SH7sligOwkkC", "sh97YD9oH3MC", "shdMhBkwr9cC", "SimBCSprSRUC", "SJe2yL_R6JQC", "sL7ECNmsZQgC", "SLwk6C7rVhgC", "sph0j9N0q44C", "SRFbLHcl808C", "SscRZAljZY0C", "SUAwvChYnlwC", "T0u3mLgB7Q8C", "T9tq_wfD9XMC", "t9XWY5VKJSkC", "t_ZYYXZq4RgC", "tDi1X___kA8C", "Tk2tDV5PIjwC", "tKLvPAScbiAC", "tMW8EeBw1UEC", "tRHgqZAB8C0C", "ts0EsIYrVc4C", "TtJ0VT4AnMkC", "TUfQSR9GsvsC", "TYHPLULRAtAC", "TZjfyuUJ9yQC", "U-G59-3EhFQC", "U0CS9uC20SEC", "U8ExdUHjzkMC", "u9udoFdoMooC", "U_XsG9AG6fsC", "ubRi0dxb8EIC", "ucpxOA3LDWcC", "ueALvm1u_YYC", "UFJC7ZobicUC", "Ugih6Tuam_sC", "UHnXXp7M_2EC", "URoDbjKxx3oC", "UUODSqSSrZcC", "UvK1Slvkz3MC", "UVtcxvx5Zr8C", "UwH5IwTWH3EC", "V-kIKg7wCZYC", "V2Nlg8AWg2AC", "VB4eUip9HNcC", "vcxlHkUGf_wC", "VDY_jN9gbioC", "veGXULZK6UAC", "VF588BtEzCcC", "VGooIP6SZQEC", "vGtXrnsvqWYC", "ViiOObWG1ogC", "Vimx2y5WKpMC", "vJvTIBZTP-8C", "VKGbb1hg8JAC", "vm0qOJQsPIIC", "vRY8uYQUjDwC", "VSlxdKgEO9EC", "VWwH9SboEQcC", "vX0W3_MvZbMC", "VYMshHfserwC", "W6AjlOPmznUC", "W_5-RKxftbcC", "wBE-34_KfcAC", "Wc_U6-E3b6YC", "wDnbqY15oCQC", "WDvIpH2lB0QC", "WGqj5MIQ1KgC", "WGTzrCVoIuYC", "whdtOuA58e0C", "wIEr8jXYBt8C", "WpCOFC9f6H0C", "WQtn2bQAowcC", "WSny7lnNBH8C", "WULCfFrGFcwC", "WUuBNF1eSqwC", "WUyzf2cJzu8C", "WwmkMDW1GxIC", "wzPlQGKox1EC", "X7J1FvRrpPoC", "x8cFahLCb54C", "xAo1XyDVdHkC", "xc2N4ZOxtCYC", "XG5At3bBBWAC", "XIdrVDRgdpMC", "xIp209jwYQ0C", "xkVp8BIq7YkC", "XpgKk24qYW8C", "XQQPM0LOS8IC", "XRxGufxD-PMC", "xsv8s0uId1oC", "XuGYOTVOU8QC", "xuRUA92_Dc4C", "xWOhDP7JWzEC", "xxBV-d20EWQC", "xXFGHk2Z4TwC", "y11kvNfIDh4C", "Y7du4IGkNagC", "YAC7D2qEu4kC", "YAv9Gv9ZIbcC", "ybOLU8HOjA4C", "YcM_8N-LLyUC", "yEnodbQ-u3MC", "YilJnRfXKSAC", "yKKMZ0YNLR4C", "YkVmgI7YvxkC", "YqtQAsx1kGAC", "Yrehcfj2IVsC", "ys_e1Jaxh4UC", "Yso319xUOF8C", "yT_H75Q6vWoC", "yTzXasTZ0xgC", "YuLuAn3itnAC", "YwzHrfZ8ROgC", "yyaL8KoFHKIC", "Yz8Fnw0PlEQC", "z2-T2Cn6NOAC", "z2NgWQu08XsC", "z2z_6hLoPmgC", "Z6yEh5g4iIcC", "z_7igwZUWX0C", "ZCAOHdptArYC", "zDy5mkB49mEC", "zejLZgD7VDsC", "ZfjzX7M8zt0C", "ZHwey8h5Kj4C", "zjvMUVww2fQC", "ZjYP5o18qQUC", "ZlGXyYoJH2EC", "ZM7mhiLmkrsC", "ZOB2ex9u1tMC", "ZoIDSON3vxcC", "Zp_b7CdQnzwC", "ZrnT-eIoVp4C", "zuaXngLs7OIC", "ZUPMbdMUJ8EC", "zWyyiIzM6kkC", "zzB8tAKtJScC", "-HiTXBE53PkC", "-Mu5Id9OoiEC", "-qs-S7mcpAcC", "-SdPoFp5WY0C", "-tpxIqgSRPwC", "-ttE-GZ-90cC", "-zXAoJy9ZmcC", "0WqtKlK_Ha8C", "0zfUQBVN_6IC", "1AX4IDXvGsYC", "1CuMCEn7nRcC", "1cXYGgN_gTQC", "1rbQvvxaIeQC", "1VlYrwJaReUC", "1wJEiMiltVgC", "1zPAua_44-kC", "24teZxI_ULEC", "25CgnTRraSwC", "29SeWQJSpSQC", "29VG6KWyirsC", "2n38thsgRaMC", "2nDPxIRqakcC", "2NNOBx5MdJUC", "3BpO_k_I2w8C", "3KzJr5_U4egC", "3xiBJl96cucC", "41O5QMgL1ZwC", "42qZKhN6n2EC", "49iiP39EWLAC", "4_NxE3TPiJsC", "4d-24SQ8TYwC", "4NhF-0fO0rIC", "4w4d6DjmDXMC", "4ZwXRrnPRuYC", "56-7DPb-1WUC", "5GjvwsQaJpsC", "5IFW0O9roEMC", "5JT8pTHx6lwC", "5PzDzEHKMegC", "5SpZmBLVnTQC", "5sstxl1kHtkC", "6cj5S73lNhMC", "6dJg5lYQTpYC", "6GabZxz4odIC", "6uDSshoVhKUC", "6uSIwSV3jqMC", "73wZxrd6LLoC", "7fMyqj458A8C", "7j2C8YXT8CMC", "7RqcdCf6nMkC", "8CxEChno1_EC", "8iEJ4ygwLR8C", "8jm4f9g0IacC", "8nUpToKerf8C", "8UOpVTHrB_sC", "8Uzp-AZ5mcIC", "8WRQSiji_N4C", "95zvqUxnGRIC", "9aBRG7IsNLgC", "9kNyNN_EpjQC", "_6NkbJnEeJMC", "_b1S5Z3T8ccC", "_dihY3IN01UC", "_f9cU9A5l-0C", "_i1VOn2G0vkC", "_tYR8zDI-gkC", "Ac7i1Tx98cgC", "AdNBeO6z8E8C", "AhyJw6wBpG8C", "Aiomz_6zVOcC", "aiq1-13V_CMC", "amjgNfGpFi4C", "AMQbpv0qNT8C", "Ao-JdOzPM-AC", "AOSNQIKsvqQC", "aUv9po5f7w0C", "b0t3tbbLF1kC", "B2QEk37eIqUC", "b9IsR8SbBqYC", "BA25ObtVNzMC", "BD78Onv1vkUC", "BExlP6vJRXYC", "bfC_gngo50wC", "bg63hIxNC1kC", "BIdJFEjW_vUC", "BN5oIno4VqQC", "Bsk0YKq0fmcC", "BspCLoRq1vUC", "BWYADYaJt2gC", "by3ZJt2TI2YC", "BYXXhMklOo8C", "BZKG-F4EycgC", "C2v0oeOu5VYC", "cbc9ocX0LIsC", "cfi0mLqWXGoC", "ChFWJid77IIC", "Chz_b0lEGXQC", "ckb0paUhxBEC", "ckegWbaTOJ0C", "CLmNsqJmFoMC", "cLWxt9-9rAoC", "coQwNld57tUC", "cQeV7Mafr3IC", "DA8YSPVoU0UC", "DdDPBL0bd3sC", "dJT51seXtO0C", "DmL9nnVzj1EC", "dnwug8jhZigC", "DPXiC_ruDiQC", "DqXoN8liZoQC", "DU-yivYkS6gC", "dWvs3ZAJfF4C", "EbquUB1D6B8C", "Egiv9G3sUUQC", "EGNjKKGuFfsC", "ELDPuG_3HvsC", "ElJEc2z5fzgC", "eTuUboxIQTsC", "euwNw6sDqJgC", "eWbJqcDb9eEC", "f4LDwCA8B3EC", "f57ibdOL5-cC", "f7Ga6pUeGhUC", "F7Xks6zduAwC", "F8Pk9pECmZ0C", "FulGowIgz_oC", "fWaS4YKF92wC", "FWW3LmOvLAkC", "fZLrWkFOed0C", "FzRuc3t_4FQC", "g6oDwhSZW1wC", "G6UBLLF9V6AC", "G_Pl1zA-kLUC", "gHHPFw298TUC", "GhxE5kre3IsC", "gIPYys8Mj9wC", "GM-pxDjDhHEC", "GRTP8eYtZRgC", "gsqHkjUK-CwC", "gt7EQgH8-b4C", "gtIuj0DenGwC", "gUcjEDfJU9wC", "Gwql9KIPwp8C", "Gxqm3AgkOD0C", "Gy-744ZK_6sC", "H1f0MKOTfmYC", "h5dwL3eiZCwC", "HcleFaappJQC", "HefV2Vc5QDoC", "HFMSaLzKFvMC", "hg5N-qqzl8QC", "HG_L8PBfRTcC", "hHW6kcAmitwC", "HIB6jD68jtAC", "hknZxFWtWnQC", "hkyn43xcqBgC", "HNSJEqH4wd8C", "hVhnQbiuF5wC", "hW_OLqbJmjQC", "Hy8W-LdFAEMC", "I7gCj8kl_z0C", "i95ShDMoWl8C", "IeTtcc4I5YgC", "IihkFTDe7U8C", "iMQc67D_Bi8C", "iOygaKJOppsC", "IpTCI9wB72gC", "iXAdjo2g5tsC", "j-bpT-iZsBIC", "j2cH4RdSssgC", "J4ypQMCZMAsC", "jI8f_EJw-loC", "JIWqvxMwdXAC", "JVs8Thx45LIC", "jW3A-I9P7KMC", "jxJmj-TmYhQC", "k6692W5sYakC", "K6Ilv7YHDvsC", "kALuBPE9pgsC", "KfidaxTHKiwC", "KHfuJmOBmaAC", "Kj0tBzuMtXkC", "kJWbXg8Wa1sC", "KqWwCMZQutQC", "l-M62xrrDrkC", "LCBLklGJH6sC", "LcRxfTdcQsgC", "LDaTjZR3M5EC", "lJ5BOCoK4S0C", "lKMngSSGLYYC", "LUjoyS5SKvAC", "LvFLo5USiAMC", "lZ5Fljw24CwC", "LzVq41L36gMC", "M0PjsgRgee4C", "M2X-64ljtXMC", "m3hk7oHshCQC", "MdEgRyJHmvoC", "MeF_f1aEpgEC", "Mfw69Bu72BUC", "MMNOTofuzh0C", "mNIwAvSxIt0C", "mOhNJQRpjroC", "mQLDLn0GQfwC", "MYMr5_Ykyo0C", "N10hOWQXL-kC", "n4bolfkDxvIC", "n7nBUhbFMfMC", "NiM_ryIMcBoC", "nKqcauePjVUC", "nLP9mH1GqtgC", "NmEftUIRJ5YC", "NoKR0DIwgsAC", "NW-neYpd2BYC", "NzZt-kQ_4bkC", "o0pxKZa6arMC", "O4I-9BDUrt8C", "O9dN_wetT2cC", "oc0LoROKM0MC", "OfcnGQxF42wC", "Oi_TFcnNj28C", "OmCZYpe_-yQC", "OmLNidG2VjgC", "onBZhX0H9YkC", "OtabdzMdbboC", "OY-R3RCzA78C", "oz4SawhQX6wC", "p2fY2E64QY0C", "pIOcbS2Pl8kC", "pJCnEYUVvF4C", "pk2phND9ApkC", "pOw1hbQ78H0C", "PTifbRnUvDoC", "q0c-bJ2hHfQC", "q9azqAw4BUYC", "QfHKUpwFKw8C", "qG-9cwHOcCIC", "qiasCVJd65UC", "qltC9xIfSVUC", "qOmL3-S6mB0C", "qrobRyJWc1kC", "Qwr5QXEo2SgC", "qxN4qk2bm3IC", "R_uGxY9OLYEC", "rcmfi84AxKYC", "RCTBfxBqRPMC", "Rgm7rGu-D1IC", "rjP8UMPX2fwC", "rJQTgovAH7QC", "rKmH2DNXricC", "rlHWoqDYZHkC", "rMkF_Lq8fyoC", "ryiKO7sUa2cC", "S1ySM_WvJasC", "SI2M91foS7IC", "SM-_qeJkHIMC", "SRfg1yx_4F0C", "sTM1gVZ5bFMC", "t1UaNw7E5CgC", "tEvwF3BTNLQC", "Tf5MWT-MrzwC", "TI-Jpzfm-04C", "TifhggVk0KoC", "TjS6g05F31EC", "TkSmPbx4wAcC", "tm1CM85Ji_UC", "tOmDiAD6WfkC", "TRXR69wo-rYC", "tsCx4nvNxs8C", "u-Ng_zi1l3kC", "U2pksdgrZUwC", "u9KzoP-MO48C", "UB5Wbb-7BBcC", "ugNkM98iIAoC", "ui2nvsots4UC", "uJoGA_fHppsC", "UMAcfj2k4dYC", "unEwDjEo4XYC", "urbPib1FKzYC", "UYn5KM1ZRKYC", "V00KDCcEbfcC", "v75WO3nTdIMC", "v8ehi--t7EYC", "v9LbGourEWoC", "VbQzT0w3UvUC", "VgcJm1OQzHAC", "VGuRUjq7rHEC", "vK88ktao7pIC", "VLaWXj1jftkC", "VRVgvfUGzHIC", "VS7FlveweFMC", "vvn9_WPnK0gC", "VxVn-pqj488C", "W3M2HhmoJioC", "w5Gkiv9mdWsC", "w6LTXzLHjRYC", "WaoGQDv7PS8C", "wB1YBB9oLoIC", "wGkfEiBVkjwC", "WHCJ-c-xfQMC", "WMjEWv8mbIMC", "wSE4rVYlfA0C", "WSm5d0TfZNwC", "wx6S6kQcs3IC", "wZmrXnyxdpUC", "x0yCaQIFn6AC", "X60kQYBZEwgC", "xcFR-BgMomcC", "XCvxvh1qP9EC", "Xf3h3Z1YQtIC", "xIRuF5cfQ84C", "Xl-q92gWo8kC", "XMpQDN8o764C", "Y3D6_dU9wKcC", "y3Jfv2LJUR4C", "Y_r_YROlF44C", "yA7lxN7h4PAC", "YBSgcUJGkxkC", "YDLE5IsoYdIC", "YdtPYQHlJJIC", "yErnhyixDrMC", "yilnz_FH8EAC", "yjCQGpt39_AC", "Yoei3KyEszUC", "yqZWNBTokh0C", "ysLuHIf92jQC", "yUf0zj2tveoC", "yuF_MMw4IMAC", "z4ymKGCCWJcC", "Z5Wmz4oPcd4C", "z6xF3flz6cgC", "zAaz0BvKzAoC", "zB0MrDkAqHQC", "zcWxPi1-TDwC", "zDors2fHOrMC", "zhJxkMW1EtcC", "ZJ3UgCmHDScC", "ZqOLmYD-0l4C", "ZUwohLzvB7kC", "zyHkTOU7fPMC", "ZZNLaR6u7GYC"]'});
define("dat/mahog/Library","dat/mahog/BookInfo,dat/mahog/CONFIG,dat/mahog/params,dat/mahog/utils,text!dat/mahog/data/dominant_colors.json,text!dat/mahog/data/ids.json,third-party/js-signals.min".split(","),function(b,c,e,f,k,m){var k=JSON.parse(k),m=JSON.parse(m),h=function(){function h(b,c,e){for(;b<c;b++)e(o.fetch(b),b)}var o=this,t=[];new function(){function b(c,e){function f(b){return function(c){h(b,b+c.length,function(b){b.status.data_received=true});for(var e=0;e<c.length;e++){var f=o.fetch(e+
b);f.data=c[e];f.id=c[e].id;f.status.data_received=true}}}this.contains=function(b){return b>=c&&b<e};this.honor=function(){var b="/api/book_info?begin="+c+"&end="+e;h(c,e,function(b){b.status.data_requested=true});$.getJSON(b,f(c))}}var c=0,e=[];this.request=function(b,c){h(b,c,function(){})};this.update=function(){if(c%20==0){for(var f=0;f<t.length;f++){var h,m;m=f;var k;if(k=t[f])if(k=t[f].status.data_request_queued)if(k=!t[f].status.data_requested){a:{k=f;for(var n=0;n<e.length;n++)if(e[n].contains(k)){k=
true;break a}k=false}k=!k}k?h==void 0&&(h=f):f!=0&&h!=void 0&&m!=h&&(e.push(new b(h,m)),h=void 0)}for(h!=void 0&&m!=h&&e.push(new b(h,m));e.length>0;)e.shift().honor()}c++}};var u=new function(){function b(e){var k=e*c.spritesheet_count,m=k+c.spritesheet_count;h(k,m,function(b){b.status.thumbnail_requested=true});var o=setInterval(function(){var b=w[e];if(b&&b.image)b.image.src="/spritesheets/"+e+".jpg"},Math.random()*1E3+1E3);w[e]=THREE.ImageUtils.loadTexture("/spritesheets/"+e+".jpg",THREE.UVMapping,
function(){clearInterval(o);v=true;x!==null&&clearTimeout(x);x=setTimeout(function(){v=false;x=null},1E3);h(k,m,function(b,c){b.status.thumbnail_received=true;f.push(c)})})}var f=[],k=[];this.request=function(b){var e=Math.floor(b/c.spritesheet_count);w[e]==void 0&&k.indexOf(e)==-1?k.push(e):w[e]!=void 0&&f.push(b)};this.update=function(){for(var h=0;h<e.applyThumbnailStaggerSize&&f.length>0;h++){var m=f.shift(),n=o.fetch(m);if(!n.status.thumbnail_applied){var t=parseInt(m/c.spritesheet_count);n.applyThumbnail(w[t],
m);n.status.thumbnail_applied=true}}for(h=0;h<e.imageRequestStaggerSize&&k.length>0;h++)b(k.shift());return v}},v=false,x=null,w=[];this.preloadSheets=function(b){function e(f){return function(){h(f,f+c.spritesheet_count,function(b){b.status.thumbnail_received=true});w[f].__webglTexture=b.createTexture();b.bindTexture(b.TEXTURE_2D,w[f].__webglTexture);b.texImage2D(b.TEXTURE_2D,0,b.RGBA,b.RGBA,b.UNSIGNED_BYTE,w[f].image);w[f].__webglInit=true}}for(var f=Math.ceil(c.count/c.spritesheet_count),k=0;k<
f;k++)w[k]=THREE.ImageUtils.loadTexture("/spritesheets/"+k+".jpg",THREE.UVMapping,e(k))};this.update=function(){u.update()};this.fetch=function(c){var e=t[c];e==void 0&&(t[c]=new b,e=t[c]);return e};this.see=function(b,c){B=0;for(var e=b;e<=c;e++)u.request(e)};var B=0;this.requestCover=function(b,c){var e=o.fetch(b),h=f.fullsizeURL(e.id);e.status.fullsize_requested=true;var k=new Image;k.src=h;k.onload=function(){c(k)}};this.registerBookDisplayerAt=function(b,e,f,h){f=b.getBookIndex();if(f!=void 0)f=
o.fetch(f),f.bookDisplayer=void 0,f.status.clearListeners(),f.status.thumbnail_applied=false,f.status.displayer_attached=false,f.applyThumbnail=function(){};f=o.fetch(e);f.bookDisplayer=b;f.applyThumbnail=h;f.id=m[e];f.data.color=k[e];f.status.displayer_attached=true;b=Math.floor(e/c.spritesheet_count);h(w[b],e);B++;if(w[b]!=void 0)f.status.thumbnail_applied=true;return f}};h.ids=m;return h});define("dat/mahog/shaders/BookVertexPars",[],function(){return"uniform float near;\nuniform float far;\nuniform float isCover;\nuniform float thickness;\nuniform float tileSize;\nuniform float tileColumn;\nuniform float tileRow;\nuniform float morphInfluences[ 4 ];\nvarying vec3 vLightWeighting;\nvarying vec3 vNormal;\nvarying vec2 vUv;\nvarying vec2 vUv2;"});
define("dat/mahog/shaders/BookFragmentPars",[],function(){return"uniform sampler2D texturemap;\nuniform sampler2D lightmap;\nuniform float isOpened;\nuniform vec4 tint;\nuniform float dim;\nvarying vec3 vLightWeighting;\nuniform vec3 fogColor;\nuniform float fogNear;\nuniform float fogFar;\nuniform float transparency;\nvarying vec3 vNormal;\nvarying vec2 vUv;\nconst vec3 black = vec3(0.);\nconst vec3 white = vec3(1.);\nvarying vec2 vUv2;"});
define("dat/mahog/shaders/MorphingBookShaderSource",["dat/mahog/shaders/BookUniforms","dat/mahog/shaders/BookVertexPars","dat/mahog/shaders/BookFragmentPars"],function(b,c,e){return{uniforms:b,vertexShader:[c,"void main() {\nvec3 transformedNormal = normalize( normalMatrix * normal );\nvNormal = transformedNormal;\nvUv = uv;\nif (isCover == 1.) {\nvUv2 = vec2(1. - vUv.s / .5, vUv.t / .7);\nif (vUv2.s > 1. || vUv2.s < 0. || vUv2.t > 1. || vUv2.s < 0.) vUv2 = vec2(.01,.5-position.y);\nvUv2 *= tileSize;\nvUv2 += vec2(tileColumn,tileRow)*tileSize;\n} else {\nvUv2 = vec2(vUv.s, vUv.t / .7);\nif (vUv2.s > 1. || vUv2.s < 0. || vUv2.t > 1. || vUv2.s < 0.) vUv2 = vec2(0.,0.);\n}\nvec3 morphedThin = vec3(0.);\nmorphedThin += ( mix(morphTarget0,morphTarget4,thickness) - position ) * morphInfluences[ 0 ];\nmorphedThin += ( mix(morphTarget1,morphTarget5,thickness) - position ) * morphInfluences[ 1 ];\nmorphedThin += ( mix(morphTarget2,morphTarget6,thickness) - position ) * morphInfluences[ 2 ];\nmorphedThin += ( mix(morphTarget3,morphTarget7,thickness) - position ) * morphInfluences[ 3 ];\nmorphedThin += position;\ngl_Position = projectionMatrix * modelViewMatrix * vec4( morphedThin, 1.0 );\n}"].join("\n"),
fragmentShader:[e,"void main() {\nvec4 texture = texture2D( texturemap, vUv2.st );\nvec3 lightMapMix = texture2D( lightmap, vUv.st ).rgg;\nfloat lightFinal = mix(lightMapMix.r,lightMapMix.g,1.-isOpened);\ngl_FragColor = vec4( vec3( lightFinal * texture ),1.0);\nfloat depth = gl_FragCoord.z / gl_FragCoord.w;\nfloat fogFactor = smoothstep( fogNear, fogFar, depth );\ngl_FragColor = mix( gl_FragColor, vec4( fogColor, gl_FragColor.w ), fogFactor );\n}"].join("\n")}});
define("dat/mahog/MorphingBook",["dat/mahog/params","dat/mahog/shaders/MorphingBookShaderSource","dat/utils/utils"],function(b,c,e){var f=function(c,m,h){function n(){var c=Math.max(Math.min(B,1),0)*3;u.morphInfluences[0]=Math.max(0,Math.min(c+1,-c+1));u.morphInfluences[1]=Math.max(0,Math.min(c,-c+2));u.morphInfluences[2]=Math.max(0,Math.min(c-1,-c+3));u.morphInfluences[3]=Math.max(0,Math.min(c-2,-c+4));L.onChangeOpenedOrThickness(B,w);C.onChangeOpenedOrThickness(B,w);E.geometry.computeBoundingBox();
E.geometry.computeBoundingSphere();z.geometry.computeBoundingBox();z.geometry.computeBoundingSphere();N.rotation.y=e.map(B,0,b.maxOpen,0,Math.PI/2);I=e.map(B,0,b.maxOpen,1,2);N.scale.set(I*v,x,v)}function o(){u.mesh.children[0].scale.set(v,x,v);u.mesh.children[1].scale.set(v,x,v);N.scale.set(I*v,x,v)}function t(){C.setTile(A,y,D)}var u=this,h=h||{},v=h.width||35,x=h.height||50,w=h.thickness||0.5,B=h.opened||0,A=h.tileSize||1,y=h.tileColumn||0,D=h.tileRow||0;this.morphInfluences=[];var C=new f.Material(c,
u,true),L=new f.Material(m,u,false);this.mesh=new THREE.Object3D;var z=new THREE.Mesh(f.COVER_GEOMETRY,C.material);this.mesh.addChild(z);var E=new THREE.Mesh(f.PAGES_GEOMETRY,L.material);this.mesh.addChild(E);var c=new THREE.PlaneGeometry(1,1),m=new THREE.MeshBasicMaterial,N=new THREE.Mesh(c,m),I=1;N.visible=false;this.mesh.addChild(N);this.show=function(){u.mesh.children[0].visible=true;u.mesh.children[1].visible=true};this.getTopLeft=function(b){var c=Math.atan2(u.mesh.position.z,u.mesh.position.x),
f=e.map(b,0,1,v/2,v),h=e.map(b,0,1,0,v/2),b=u.mesh.position.x+Math.cos(c+Math.PI/2)*f+Math.cos(c+Math.PI)*h,k=u.mesh.position.y+x/2,c=u.mesh.position.z+Math.sin(c+Math.PI/2)*f+Math.sin(c+Math.PI)*h;return new THREE.Vector3(b,k,c)};this.getTopRight=function(b){var c=Math.atan2(u.mesh.position.z,u.mesh.position.x),f=e.map(b,0,1,v/2,v),h=e.map(b,0,1,0,v/2),b=u.mesh.position.x+Math.cos(c-Math.PI/2)*f-Math.cos(c)*h,k=u.mesh.position.y+x/2,c=u.mesh.position.z+Math.sin(c-Math.PI/2)*f-Math.sin(c)*h;return new THREE.Vector3(b,
k,c)};this.getBottomMiddleRight=function(b){var c=Math.atan2(u.mesh.position.z,u.mesh.position.x),f=e.map(b,0,1,v/2,v),h=e.map(b,0,1,0,v/2),b=u.mesh.position.x+Math.cos(c-Math.PI)*f+Math.cos(c-Math.PI/2)*h,k=u.mesh.position.y-x/2*0.9,c=u.mesh.position.z+Math.sin(c-Math.PI)*f+Math.sin(c-Math.PI/2)*h;return new THREE.Vector3(b,k,c)};this.getBottomRight=function(b){var c=Math.atan2(u.mesh.position.z,u.mesh.position.x),f=e.map(b,0,1,v/2,v),h=e.map(b,0,1,0,v/2),b=u.mesh.position.x+Math.cos(c-Math.PI/2)*
f-Math.cos(c)*h,k=u.mesh.position.y-x/2,c=u.mesh.position.z+Math.sin(c-Math.PI/2)*f-Math.sin(c)*h;return new THREE.Vector3(b,k,c)};this.getBottomLeft=function(b){var c=Math.atan2(u.mesh.position.z,u.mesh.position.x),f=e.map(b,0,1,v/2,v),h=e.map(b,0,1,0,v/2),b=u.mesh.position.x+Math.cos(c+Math.PI/2)*f+Math.cos(c+Math.PI)*h,k=u.mesh.position.y-x/2,c=u.mesh.position.z+Math.sin(c+Math.PI/2)*f+Math.sin(c+Math.PI)*h;return new THREE.Vector3(b,k,c)};this.hide=function(){u.mesh.children[0].visible=false;
u.mesh.children[1].visible=false};this.__defineGetter__("height",function(){return x});this.__defineSetter__("height",function(b){x!=b&&(x=b,o())});this.__defineGetter__("width",function(){return v});this.__defineSetter__("width",function(b){v!=b&&(v=b,o())});this.__defineGetter__("thickness",function(){return w});this.__defineSetter__("thickness",function(b){w!=b&&(w=b,n())});this.__defineGetter__("opened",function(){return B});this.__defineSetter__("opened",function(b){B!=b&&(B=b,n())});this.setCoverImage=
function(b){C.setImage(b)};this.setPagesImage=function(b){L.setImage(b)};this.__defineGetter__("tileSize",function(){return A});this.__defineSetter__("tileSize",function(b){A!=b&&(A=b,t())});this.__defineGetter__("tileRow",function(){return D});this.__defineSetter__("tileRow",function(b){D!=b&&(D=b,t())});this.__defineGetter__("tileColumn",function(){return y});this.__defineSetter__("tileColumn",function(b){y!=b&&(y=b,t())});n();o();t()};f.loadAssets=function(c){function e(c){f.PAGES_GEOMETRY=c;f.COVER_LIGHT_MAP=
THREE.ImageUtils.loadTexture(b.MORPHING_COVER_LIGHT_MAP_SRC,THREE.UVMapping,h)}function h(){f.PAGES_LIGHT_MAP=THREE.ImageUtils.loadTexture(b.MORPHING_PAGES_LIGHT_MAP_SRC,THREE.UVMapping,n)}function n(){c&&c()}var o=new THREE.JSONLoader;o.load({model:b.MORPHING_COVER_GEOMETRY_SRC,callback:function(c){f.COVER_GEOMETRY=c;o.load({model:b.MORPHING_PAGES_GEOMETRY_SRC,callback:e})}})};f.Material=function(b,e,h){var n=this;this.uniforms=THREE.UniformsUtils.clone(c.uniforms);this.uniforms.texturemap.texture=
b;this.uniforms.lightmap.texture=h?f.COVER_LIGHT_MAP:f.PAGES_LIGHT_MAP;this.uniforms.isCover.value=h;this.uniforms.morphInfluences.value=e.morphInfluences;this.material=new THREE.MeshShaderMaterial({uniforms:this.uniforms,vertexShader:c.vertexShader,fragmentShader:c.fragmentShader,morphTargets:true,lights:true});this.setImage=function(b){n.uniforms.texturemap.texture.image=b;n.uniforms.texturemap.texture.needsUpdate=true};this.setTile=function(b,c,e){n.uniforms.tileSize.value=b;n.uniforms.tileColumn.value=
c;n.uniforms.tileRow.value=e};this.onChangeOpenedOrThickness=function(b,c){n.uniforms.isOpened.value=b;n.uniforms.thickness.value=c}};return f});
define("dat/mahog/shaders/StaticBookShaderSource",["dat/mahog/shaders/BookUniforms","dat/mahog/shaders/BookVertexPars","dat/mahog/shaders/BookFragmentPars"],function(b,c,e){return{uniforms:b,vertexShader:[c,"void main() {\nvec3 transformedNormal = normalize( normalMatrix * normal );\nvNormal = transformedNormal;\nvUv = uv;\nvUv2 = vec2(1. - vUv.s / .5, vUv.t / .7);\nif (vUv2.s > 1. || vUv2.s < 0. || vUv2.t > 1. || vUv2.s < 0.) vUv2 = vec2(.0001,.5-position.y);\nvUv2 *= tileSize;\nvUv2 += vec2(tileColumn,tileRow)*tileSize;\ngl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );\n}"].join("\n"),fragmentShader:[e,
"void main() {\nvec4 texture = texture2D( texturemap, vUv2.st );\nvec3 light = texture2D( lightmap, vUv.st ).rgb;\nif (vUv.s>0.5 && vUv.t > 0.7) { texture.rgb = white;\n} else { if (tint.a > 0.) texture.rgb *= mix(white, tint.rgb, tint.a);\nif (dim > 0.) texture.rgb = mix(texture.rgb, vec3(0), dim); }\nfloat depth = gl_FragCoord.z / gl_FragCoord.w;\nfloat fogFactor = smoothstep( fogNear, fogFar, depth );\ngl_FragColor = mix( vec4( texture.rgb * light.g , transparency), vec4( fogColor, 1.0 ), fogFactor );\n}"].join("\n")}});
define("dat/mahog/StaticBook",["dat/mahog/params","dat/mahog/shaders/StaticBookShaderSource"],function(b,c){var e=function(b,c){function f(){u.mesh.scale.set(x*v,w*v,x*v)}function m(){D.setTile(B,A,y)}var c=c||{},u=this,v=1,x=c.width||35,w=c.height||50,B=c.tileSize||1,A=c.tileColumn||0,y=c.tileRow||0,D=new e.Material(b,u);this.material=D.material;this.mesh=new THREE.Mesh(k,D.material);this.mesh.matrixAutoUpdate=false;this.mesh.rotationAutoUpdate=false;this.setTexture=function(b){D.uniforms.texturemap.texture=
b};this.setScale=function(b){v=b;f()};var C=0,L=0,z=false,E=0,N=0,I=false,P;this.setTint=function(b,c,e,f){L=f;L!=C&&(z=true);D.uniforms.tint.value.x=b;D.uniforms.tint.value.y=c;D.uniforms.tint.value.z=e};this.clearTint=function(){L=0;L!=C&&(z=true)};this.setDim=function(b){N=b;N!=E&&(I=true)};this.setTransparency=function(b){D.uniforms.transparency.value=b};this.getTint=function(){return C};this.getDim=function(){return E};this.update=function(){if(z)P=L-C,P>0.05||P<-0.05?(C+=P*0.7,D.uniforms.tint.value.w=
C):(z=false,D.uniforms.tint.value.w=L);if(I)P=N-E,P>0.05||P<-0.05?(E+=P*0.7,D.uniforms.dim.value=E):(I=false,D.uniforms.dim.value=N)};this.__defineGetter__("width",function(){return x});this.__defineSetter__("width",function(b){x=b;f()});this.__defineGetter__("height",function(){return w});this.__defineSetter__("height",function(b){w=b;f()});this.__defineGetter__("tileSize",function(){return B});this.__defineGetter__("tileColumn",function(){return A});this.__defineGetter__("tileRow",function(){return y});
this.__defineSetter__("tileSize",function(b){B=b;m()});this.__defineSetter__("tileColumn",function(b){A=b;m()});this.__defineSetter__("tileRow",function(b){y=b;m()});f();m()};e.loadAssets=function(c){e.COVER_LIGHT_MAP=THREE.ImageUtils.loadTexture(b.STATIC_COVER_LIGHT_MAP_SRC,THREE.UVMapping,function(){c&&c()})};e.Material=function(b){var f=this;f.uniforms=THREE.UniformsUtils.clone(c.uniforms);f.uniforms.texturemap.texture=b;f.uniforms.lightmap.texture=e.COVER_LIGHT_MAP;this.material=new THREE.MeshShaderMaterial({uniforms:this.uniforms,
vertexShader:c.vertexShader,fragmentShader:c.fragmentShader,lights:true});this.setTile=function(b,c,e){f.uniforms.tileSize.value=b;f.uniforms.tileColumn.value=c;f.uniforms.tileRow.value=e}};var f={version:2,materials:[{DbgColor:15658734,DbgIndex:0,DbgName:"default"}],vertices:[0.496127,0.491075,0.007651,-0.488862,0.491075,0.007651,-0.492502,0.495455,0.010889,0.498874,0.495455,0.012181,-0.492502,-0.495455,0.010889,0.498874,-0.495455,0.012181,0.496127,-0.490868,0.007651,-0.488862,-0.490868,0.007651,
-0.492807,0.491075,0,-0.496212,0.495455,0,-0.496212,-0.495455,0,-0.492807,-0.490868,0,0.496127,0.491075,-0.007651,-0.488862,0.491075,-0.007651,-0.492502,0.495455,-0.010889,0.498874,0.495455,-0.012181,-0.492502,-0.495455,-0.010889,0.498874,-0.495455,-0.012181,0.496127,-0.495455,-0.007651,-0.488862,-0.490868,-0.007651,0.496127,0.491075,0,0.496127,-0.490868,0],morphTargets:[],morphColors:[],normals:[],colors:[],uvs:[[3.71E-4,8.8E-5,0.494461,8.8E-5,0.494461,0.7,3.71E-4,0.7,0.843354,0.52269,0.850928,0.692143,
0.850928,0.296902,0.843354,0.382325,0.940324,0.335176,0.932983,0.327617,0.9126,0.581246,0.920026,0.581356,0.977676,0.253133,0.957194,0.004995,0.949768,0.005105,0.97014,0.251508,0.898214,0.250497,0.513762,0.250497,0.513762,0.286871,0.88588,0.284575,0.934129,0.294073,0.96164,0.292278,0.971297,0.292278,0.007529,0.709909,0.497969,0.709908,0.497969,0.990674,0.007529,0.990674,0.880522,0.300495,0.880522,0.692143,0.887948,0.692143,0.887948,0.300495,0.977492,0.333381,0.971365,0.327569,0.953572,0.533439,0.960122,
0.544045,0.940508,0.254928,0.922955,0.042316,0.916404,0.052908,0.932971,0.253305,0.898214,0.214122,0.513762,0.214122,0.924472,0.294073,0.907904,0.883392,0.909942,0.866608,0.874449,0.866608,0.873699,0.883392,0.846746,0.866608,0.848777,0.883392,0.812565,0.883392,0.811696,0.866608,0.701736,0.711853,0.673127,0.711853,0.673127,0.988792,0.701736,0.988792,0.657125,0.988792,0.657125,0.711853,0.628516,0.711853,0.628516,0.988792,0.936519,0.883392,0.972919,0.883392,0.974956,0.866608,0.937269,0.866608,0.744802,
0.866608,0.78233,0.866608,0.784248,0.883392,0.746839,0.883392]],faces:[11,3,2,4,5,0,0,1,2,3,11,5,6,0,3,0,4,5,6,7,11,1,2,3,0,0,8,9,10,11,11,7,6,5,4,0,12,13,14,15,11,9,10,4,2,0,16,17,18,19,11,8,9,2,1,0,20,41,9,8,11,10,11,7,4,0,21,22,12,15,11,15,17,16,14,0,23,24,25,26,11,17,15,12,18,0,27,28,29,30,11,19,16,17,18,0,31,32,33,34,11,13,12,15,14,0,35,36,37,38,11,9,14,16,10,0,16,39,40,17,11,8,13,14,9,0,20,35,38,41,11,10,16,19,11,0,21,32,31,22,11,20,8,1,0,0,42,43,44,45,11,6,7,11,21,0,46,47,48,49,11,20,0,6,21,
0,50,51,52,53,11,20,21,18,12,0,54,55,56,57,11,18,21,11,19,0,58,59,60,61,11,20,12,13,8,0,62,63,64,65],edges:[]},k=null,m=new THREE.JSONLoader;m.createModel({version:2,materials:[{DbgColor:15658734,DbgIndex:0,DbgName:"default"}],vertices:[0.487209,0.486099,0.168254,-0.466534,0.486099,0.168254,-0.478581,0.495455,0.183348,0.493336,0.495455,0.183348,-0.478581,-0.495455,0.183348,0.493336,-0.495455,0.183348,0.487209,-0.486099,0.168254,-0.466534,-0.486099,0.168254,-0.492807,0.486099,0,-0.501347,0.495455,
0,-0.501347,-0.495455,0,-0.492807,-0.486099,0,0.487209,0.486099,-0.168254,-0.466534,0.486099,-0.168254,-0.478581,0.495455,-0.183348,0.493336,0.495455,-0.183348,-0.478581,-0.495455,-0.183348,0.493336,-0.495455,-0.183348,0.487209,-0.495455,-0.168254,-0.466534,-0.486099,-0.168254,0.456931,0.486099,0,0.456931,-0.486099,0],morphTargets:[],morphColors:[],normals:[],colors:[],uvs:[[3.71E-4,8.8E-5,0.494461,8.8E-5,0.494461,0.7,3.71E-4,0.7,0.843354,0.52269,0.850928,0.692143,0.850928,0.296902,0.843354,0.382325,
0.940324,0.335176,0.932983,0.327617,0.9126,0.581246,0.920026,0.581356,0.977676,0.253133,0.957194,0.004995,0.949768,0.005105,0.97014,0.251508,0.898214,0.250497,0.513762,0.250497,0.513762,0.286871,0.88588,0.284575,0.934129,0.294073,0.96164,0.292278,0.971297,0.292278,0.007529,0.709909,0.497969,0.709908,0.497969,0.990674,0.007529,0.990674,0.880522,0.300495,0.880522,0.692143,0.887948,0.692143,0.887948,0.300495,0.977492,0.333381,0.971365,0.327569,0.953572,0.533439,0.960122,0.544045,0.940508,0.254928,0.922955,
0.042316,0.916404,0.052908,0.932971,0.253305,0.898214,0.214122,0.513762,0.214122,0.924472,0.294073,0.907904,0.883392,0.909942,0.866608,0.874449,0.866608,0.873699,0.883392,0.846746,0.866608,0.848777,0.883392,0.812565,0.883392,0.811696,0.866608,0.701736,0.711853,0.673127,0.711853,0.673127,0.988792,0.701736,0.988792,0.657125,0.988792,0.657125,0.711853,0.628516,0.711853,0.628516,0.988792,0.936519,0.883392,0.972919,0.883392,0.974956,0.866608,0.937269,0.866608,0.744802,0.866608,0.78233,0.866608,0.784248,
0.883392,0.746839,0.883392]],faces:[11,3,2,4,5,0,0,1,2,3,11,5,6,0,3,0,4,5,6,7,11,1,2,3,0,0,8,9,10,11,11,7,6,5,4,0,12,13,14,15,11,9,10,4,2,0,16,17,18,19,11,8,9,2,1,0,20,41,9,8,11,10,11,7,4,0,21,22,12,15,11,15,17,16,14,0,23,24,25,26,11,17,15,12,18,0,27,28,29,30,11,19,16,17,18,0,31,32,33,34,11,13,12,15,14,0,35,36,37,38,11,9,14,16,10,0,16,39,40,17,11,8,13,14,9,0,20,35,38,41,11,10,16,19,11,0,21,32,31,22,11,20,8,1,0,0,42,43,44,45,11,6,7,11,21,0,46,47,48,49,11,20,0,6,21,0,50,51,52,53,11,20,21,18,12,0,54,
55,56,57,11,18,21,11,19,0,58,59,60,61,11,20,12,13,8,0,62,63,64,65],edges:[]},function(b){m.createModel(f,function(c){for(var e=0;e<b.vertices.length;e++)c.vertices[e].position.x-=(c.vertices[e].position.x-b.vertices[e].position.x)*0.3,c.vertices[e].position.y-=(c.vertices[e].position.y-b.vertices[e].position.y)*0.3,c.vertices[e].position.z-=(c.vertices[e].position.z-b.vertices[e].position.z)*0.3;k=c})});return e});
define("dat/utils/Routine",[],function(){return function(){function b(c){if(!(k||c>=e.length)){var h;try{e[c].execute(function(){b(++c)},function(){e[c].fatal?typeof f=="function"&&f():b(++c)})}catch(n){typeof f=="function"&&f(n)}}}function c(b,c){this.fatal=c;this.execute=function(c,e){b.apply(this,[c,function(){console.error("Failed to do "+b);e()}])}}var e=[],f,k=false;this.clear=function(){e=[]};this.wait=function(b,f){e.push(new c(b,f||false))};this.run=function(c){k=false;f=c;b(0)};this.cancel=
function(){k=true}}});(function(){var b=typeof jQuery!=="undefined"&&jQuery;define("jquery",[],function(){return b})})();
define("dat/utils/showMessage",["jquery"],function(){var b=document.createElement("div");b.setAttribute("id","console");b.innerHTML="Aww, snap!";document.body.appendChild(b);var c=$(b);c.hide();var e,f=false;return function(b){c.html(b);if(!f){clearTimeout(e);c.fadeIn();f=true;var b=window.innerHeight/2-c.height()/2,m=window.innerWidth/2-c.width()/2;c.css("top",b+"px");c.css("left",m+"px");e=setTimeout(function(){c.fadeOut();f=false},5E3)}$(window).trigger("resize")}});
define("dat/utils/Canvas2DWrappedText",[],function(){return function(b,c,e,f,k,m){for(var h=this,n=[],o=0,t=0,u,e=e.replace(/<br>/g,"\r"),e=e.replace(/<p>\w<\/p>/,""),e=e.replace(/<\/p>/g,"\r\r"),e=e.replace(/<\/?[^>]+(>|$)/g,""),e=e.replace("\r{3,}","\r\r"),v=0;v<e.length;v++){var x=e[v];x==" "&&(t=v);u=e.substring(o,v+1);var w=b.measureText(u).width;if(x=="\r"||w>k){var B=m!==void 0&&(n.length+1)*f>m;x==" "||x=="\r"?(n.push(e.substring(o,v)+(B?"...":"")),o=v+1):(n.push(e.substring(o,t)+(B?"...":
"")),o=t+1);if(B)break}}B||n.push(u);this.numLines=function(){return n.length};this.draw=function(){b.font=c;for(var e=0,k=0;k<n.length;k++)e=h.textAlign=="center"?-b.measureText(n[k]).width/2:0,b.fillText(n[k],e,k*f)};this.getHeight=function(){return f*n.length}}});
define("dat/mahog/makePages","dat/mahog/params,dat/utils/Routine,dat/utils/utils,dat/utils/showMessage,dat/utils/Canvas2DWrappedText,dat/mahog/utils,dat/utils/urlArgs,three".split(","),function(b,c,e,f,k,m,h){var n,o,t,u=false;return function(e,x,w){u||(n=document.createElement("canvas"),t=n.getContext("2d"),u=true);var B=new c,A=new Image;B.wait(function(b,c){A.crossOrigin="";A.src=m.qrURL(e.id);A.onload=b;A.onerror=c});B.wait(function(){var c=b.pagesTextureWidth/x/b.pagesAspectRatio,f=b.pagesTextureWidth;
n.height=c;o=n.width=f;t.fillStyle="#fff";t.fillRect(0,0,o,c);t.fillStyle="#000";t.save();t.translate(o*0.07,c*3.53/4);t.scale(b.pagesScale,b.pagesScale);t.drawImage(A,-57.5,-57.5,115,115);t.restore();e.volumeInfo.description?(f=h.installation==void 0?new k(t,"15px serif",e.volumeInfo.description,20,187*b.pagesScale,290*b.pagesScale):new k(t,"11.5px serif",e.volumeInfo.description,18,215*b.pagesScale,300*b.pagesScale),t.save(),t.translate(o*0.625,c*0.45-f.getHeight()/2),t.scale(b.pagesScale,b.pagesScale),
f.draw(),t.restore(),t.save(),t.translate(o*0.625,c*0.38-f.getHeight()/2),t.scale(b.pagesScale,b.pagesScale),t.textAlign="left",t.font="italic 16px serif",t.fillText("Synopsis",0,0)):(t.save(),t.translate(o*0.802,c*0.5),t.scale(b.pagesScale,b.pagesScale),t.textAlign="center",t.font="italic 16px serif",t.fillText("No description available.",0,0));t.restore();t.fillStyle="#000";var f=0,m;e.volumeInfo.subtitle?(m=new k(t,"20px serif",e.volumeInfo.title,24,175*b.pagesScale),m.textAlign="center",t.save(),
t.translate(o*0.21,c*0.185),t.scale(b.pagesScale,b.pagesScale),m.draw(),t.restore(),f+=m.getHeight()-16*b.pagesScale,m=new k(t,"16px serif",e.volumeInfo.subtitle,21,145*b.pagesScale),m.textAlign="center",t.save(),t.translate(o*0.21,c*0.24+f),t.scale(b.pagesScale,b.pagesScale),m.draw(),t.restore(),f+=m.getHeight()):(m=new k(t,"20px serif",e.volumeInfo.title,24,145*b.pagesScale),m.textAlign="center",t.save(),t.translate(o*0.21,c*0.185),t.scale(b.pagesScale,b.pagesScale),m.draw(),t.restore(),m.numLines()==
1&&(f-=17*b.pagesScale));t.save();t.lineWidth=0.5;t.translate(o*0.21,c*0.27+f);t.scale(b.pagesScale,b.pagesScale);t.beginPath();t.moveTo(-80,0);t.lineTo(80,0);t.stroke();t.restore();m=new k(t,"16px serif",e.volumeInfo.authors.join(", "),21,145*b.pagesScale);m.textAlign="center";t.save();t.translate(o*0.21,c*0.34+f);t.scale(b.pagesScale,b.pagesScale);m.draw();t.restore();t.save();t.fillStyle="#666";t.translate(o*0.21,c*0.43);t.scale(b.pagesScale,b.pagesScale);w(n)});B.run(function(){f(b.errorString);
require("dat/mahog/BookDisplayer").cancel()})}});
define("dat/utils/Easing",[],function(){Easing={Linear:{},Quadratic:{},Cubic:{},Quartic:{},Quintic:{},Sinusoidal:{},Exponential:{},Circular:{},Elastic:{},Back:{},Bounce:{}};Easing.Linear.EaseNone=function(b){return b};Easing.Quadratic.EaseIn=function(b){return b*b};Easing.Quadratic.EaseOut=function(b){return-b*(b-2)};Easing.Quadratic.EaseInOut=function(b){return(b*=2)<1?0.5*b*b:-0.5*(--b*(b-2)-1)};Easing.Cubic.EaseIn=function(b){return b*b*b};Easing.Cubic.EaseOut=function(b){return--b*b*b+1};Easing.Cubic.EaseInOut=
function(b){return(b*=2)<1?0.5*b*b*b:0.5*((b-=2)*b*b+2)};Easing.Quartic.EaseIn=function(b){return b*b*b*b};Easing.Quartic.EaseOut=function(b){return-(--b*b*b*b-1)};Easing.Quartic.EaseInOut=function(b){return(b*=2)<1?0.5*b*b*b*b:-0.5*((b-=2)*b*b*b-2)};Easing.Quintic.EaseIn=function(b){return b*b*b*b*b};Easing.Quintic.EaseOut=function(b){return(b-=1)*b*b*b*b+1};Easing.Quintic.EaseInOut=function(b){return(b*=2)<1?0.5*b*b*b*b*b:0.5*((b-=2)*b*b*b*b+2)};Easing.Sinusoidal.EaseIn=function(b){return-Math.cos(b*
Math.PI/2)+1};Easing.Sinusoidal.EaseOut=function(b){return Math.sin(b*Math.PI/2)};Easing.Sinusoidal.EaseInOut=function(b){return-0.5*(Math.cos(Math.PI*b)-1)};Easing.Exponential.EaseIn=function(b){return b==0?0:Math.pow(2,10*(b-1))};Easing.Exponential.EaseOut=function(b){return b==1?1:-Math.pow(2,-10*b)+1};Easing.Exponential.EaseInOut=function(b){return b==0?0:b==1?1:(b*=2)<1?0.5*Math.pow(2,10*(b-1)):0.5*(-Math.pow(2,-10*(b-1))+2)};Easing.Circular.EaseIn=function(b){return-(Math.sqrt(1-b*b)-1)};Easing.Circular.EaseOut=
function(b){return Math.sqrt(1- --b*b)};Easing.Circular.EaseInOut=function(b){return(b/=0.5)<1?-0.5*(Math.sqrt(1-b*b)-1):0.5*(Math.sqrt(1-(b-=2)*b)+1)};Easing.Elastic.EaseIn=function(b){var c,e=0.1,f=0.4;if(b==0)return 0;if(b==1)return 1;f||(f=0.3);!e||e<1?(e=1,c=f/4):c=f/(2*Math.PI)*Math.asin(1/e);return-(e*Math.pow(2,10*(b-=1))*Math.sin((b-c)*2*Math.PI/f))};Easing.Elastic.EaseOut=function(b){var c,e=0.1,f=0.4;if(b==0)return 0;if(b==1)return 1;f||(f=0.3);!e||e<1?(e=1,c=f/4):c=f/(2*Math.PI)*Math.asin(1/
e);return e*Math.pow(2,-10*b)*Math.sin((b-c)*2*Math.PI/f)+1};Easing.Elastic.EaseInOut=function(b){var c,e=0.1,f=0.4;if(b==0)return 0;if(b==1)return 1;f||(f=0.3);!e||e<1?(e=1,c=f/4):c=f/(2*Math.PI)*Math.asin(1/e);return(b*=2)<1?-0.5*e*Math.pow(2,10*(b-=1))*Math.sin((b-c)*2*Math.PI/f):e*Math.pow(2,-10*(b-=1))*Math.sin((b-c)*2*Math.PI/f)*0.5+1};Easing.Back.EaseIn=function(b){return b*b*(2.70158*b-1.70158)};Easing.Back.EaseOut=function(b){return(b-=1)*b*(2.70158*b+1.70158)+1};Easing.Back.EaseInOut=function(b){return(b*=
2)<1?0.5*b*b*(3.5949095*b-2.5949095):0.5*((b-=2)*b*(3.5949095*b+2.5949095)+2)};Easing.Bounce.EaseIn=function(b){return 1-Easing.Bounce.EaseOut(1-b)};Easing.Bounce.EaseOut=function(b){return(b/=1)<1/2.75?7.5625*b*b:b<2/2.75?7.5625*(b-=1.5/2.75)*b+0.75:b<2.5/2.75?7.5625*(b-=2.25/2.75)*b+0.9375:7.5625*(b-=2.625/2.75)*b+0.984375};Easing.Bounce.EaseInOut=function(b){return b<0.5?Easing.Bounce.EaseIn(b*2)*0.5:Easing.Bounce.EaseOut(b*2-1)*0.5+0.5};return Easing});
(function(){var b=this,c=b._,e={},f=Array.prototype,k=Object.prototype,m=f.slice,h=f.unshift,n=k.toString,o=k.hasOwnProperty,t=f.forEach,u=f.map,v=f.reduce,x=f.reduceRight,w=f.filter,B=f.every,A=f.some,y=f.indexOf,D=f.lastIndexOf,k=Array.isArray,C=Object.keys,L=Function.prototype.bind,z=function(b){return new H(b)};typeof module!=="undefined"&&module.exports?(module.exports=z,z._=z):b._=z;z.VERSION="1.1.6";var E=z.each=z.forEach=function(b,c,f){if(b!=null)if(t&&b.forEach===t)b.forEach(c,f);else if(z.isNumber(b.length))for(var h=
0,k=b.length;h<k;h++){if(h in b&&c.call(f,b[h],h,b)===e)break}else for(h in b)if(o.call(b,h)&&c.call(f,b[h],h,b)===e)break};z.map=function(b,c,e){var f=[];if(b==null)return f;if(u&&b.map===u)return b.map(c,e);E(b,function(b,h,k){f[f.length]=c.call(e,b,h,k)});return f};z.reduce=z.foldl=z.inject=function(b,c,e,f){var h=e!==void 0;b==null&&(b=[]);if(v&&b.reduce===v)return f&&(c=z.bind(c,f)),h?b.reduce(c,e):b.reduce(c);E(b,function(b,k,m){!h&&k===0?(e=b,h=true):e=c.call(f,e,b,k,m)});if(!h)throw new TypeError("Reduce of empty array with no initial value");
return e};z.reduceRight=z.foldr=function(b,c,e,f){b==null&&(b=[]);if(x&&b.reduceRight===x)return f&&(c=z.bind(c,f)),e!==void 0?b.reduceRight(c,e):b.reduceRight(c);b=(z.isArray(b)?b.slice():z.toArray(b)).reverse();return z.reduce(b,c,e,f)};z.find=z.detect=function(b,c,e){var f;N(b,function(b,h,k){if(c.call(e,b,h,k))return f=b,true});return f};z.filter=z.select=function(b,c,e){var f=[];if(b==null)return f;if(w&&b.filter===w)return b.filter(c,e);E(b,function(b,h,k){c.call(e,b,h,k)&&(f[f.length]=b)});
return f};z.reject=function(b,c,e){var f=[];if(b==null)return f;E(b,function(b,h,k){c.call(e,b,h,k)||(f[f.length]=b)});return f};z.every=z.all=function(b,c,f){var h=true;if(b==null)return h;if(B&&b.every===B)return b.every(c,f);E(b,function(b,k,m){if(!(h=h&&c.call(f,b,k,m)))return e});return h};var N=z.some=z.any=function(b,c,f){c||(c=z.identity);var h=false;if(b==null)return h;if(A&&b.some===A)return b.some(c,f);E(b,function(b,k,m){if(h=c.call(f,b,k,m))return e});return h};z.include=z.contains=function(b,
c){var e=false;if(b==null)return e;if(y&&b.indexOf===y)return b.indexOf(c)!=-1;N(b,function(b){if(e=b===c)return true});return e};z.invoke=function(b,c){var e=m.call(arguments,2);return z.map(b,function(b){return(c.call?c||b:b[c]).apply(b,e)})};z.pluck=function(b,c){return z.map(b,function(b){return b[c]})};z.max=function(b,c,e){if(!c&&z.isArray(b))return Math.max.apply(Math,b);var f={computed:-Infinity};E(b,function(b,h,k){h=c?c.call(e,b,h,k):b;h>=f.computed&&(f={value:b,computed:h})});return f.value};
z.min=function(b,c,e){if(!c&&z.isArray(b))return Math.min.apply(Math,b);var f={computed:Infinity};E(b,function(b,h,k){h=c?c.call(e,b,h,k):b;h<f.computed&&(f={value:b,computed:h})});return f.value};z.sortBy=function(b,c,e){return z.pluck(z.map(b,function(b,f,h){return{value:b,criteria:c.call(e,b,f,h)}}).sort(function(b,c){var e=b.criteria,f=c.criteria;return e<f?-1:e>f?1:0}),"value")};z.groupBy=function(b,c){var e={};E(b,function(b,f){var h=c(b,f);(e[h]||(e[h]=[])).push(b)});return e};z.sortedIndex=
function(b,c,e){e||(e=z.identity);for(var f=0,h=b.length;f<h;){var k=f+h>>1;e(b[k])<e(c)?f=k+1:h=k}return f};z.toArray=function(b){return!b?[]:b.toArray?b.toArray():z.isArray(b)?b:z.isArguments(b)?m.call(b):z.values(b)};z.size=function(b){return z.toArray(b).length};z.first=z.head=function(b,c,e){return c!=null&&!e?m.call(b,0,c):b[0]};z.rest=z.tail=function(b,c,e){return m.call(b,c==null||e?1:c)};z.last=function(b){return b[b.length-1]};z.compact=function(b){return z.filter(b,function(b){return!!b})};
z.flatten=function(b){return z.reduce(b,function(b,c){if(z.isArray(c))return b.concat(z.flatten(c));b[b.length]=c;return b},[])};z.without=function(b){var c=m.call(arguments,1);return z.filter(b,function(b){return!z.include(c,b)})};z.uniq=z.unique=function(b,c){return z.reduce(b,function(b,e,f){if(0==f||(c===true?z.last(b)!=e:!z.include(b,e)))b[b.length]=e;return b},[])};z.intersect=function(b){var c=m.call(arguments,1);return z.filter(z.uniq(b),function(b){return z.every(c,function(c){return z.indexOf(c,
b)>=0})})};z.zip=function(){for(var b=m.call(arguments),c=z.max(z.pluck(b,"length")),e=Array(c),f=0;f<c;f++)e[f]=z.pluck(b,""+f);return e};z.indexOf=function(b,c,e){if(b==null)return-1;var f;if(e)return e=z.sortedIndex(b,c),b[e]===c?e:-1;if(y&&b.indexOf===y)return b.indexOf(c);for(e=0,f=b.length;e<f;e++)if(b[e]===c)return e;return-1};z.lastIndexOf=function(b,c){if(b==null)return-1;if(D&&b.lastIndexOf===D)return b.lastIndexOf(c);for(var e=b.length;e--;)if(b[e]===c)return e;return-1};z.range=function(b,
c,e){arguments.length<=1&&(c=b||0,b=0);for(var e=arguments[2]||1,f=Math.max(Math.ceil((c-b)/e),0),h=0,k=Array(f);h<f;)k[h++]=b,b+=e;return k};z.bind=function(b,c){if(b.bind===L&&L)return L.apply(b,m.call(arguments,1));var e=m.call(arguments,2);return function(){return b.apply(c,e.concat(m.call(arguments)))}};z.bindAll=function(b){var c=m.call(arguments,1);c.length==0&&(c=z.functions(b));E(c,function(c){b[c]=z.bind(b[c],b)});return b};z.memoize=function(b,c){var e={};c||(c=z.identity);return function(){var f=
c.apply(this,arguments);return o.call(e,f)?e[f]:e[f]=b.apply(this,arguments)}};z.delay=function(b,c){var e=m.call(arguments,2);return setTimeout(function(){return b.apply(b,e)},c)};z.defer=function(b){return z.delay.apply(z,[b,1].concat(m.call(arguments,1)))};var I=function(b,c,e){var f;return function(){var h=this,k=arguments,m=function(){f=null;b.apply(h,k)};e&&clearTimeout(f);if(e||!f)f=setTimeout(m,c)}};z.throttle=function(b,c){return I(b,c,false)};z.debounce=function(b,c){return I(b,c,true)};
z.once=function(b){var c=false,e;return function(){if(c)return e;c=true;return e=b.apply(this,arguments)}};z.wrap=function(b,c){return function(){var e=[b].concat(m.call(arguments));return c.apply(this,e)}};z.compose=function(){var b=m.call(arguments);return function(){for(var c=m.call(arguments),e=b.length-1;e>=0;e--)c=[b[e].apply(this,c)];return c[0]}};z.after=function(b,c){return function(){if(--b<1)return c.apply(this,arguments)}};z.keys=C||function(b){if(b!==Object(b))throw new TypeError("Invalid object");
var c=[],e;for(e in b)o.call(b,e)&&(c[c.length]=e);return c};z.values=function(b){return z.map(b,z.identity)};z.functions=z.methods=function(b){return z.filter(z.keys(b),function(c){return z.isFunction(b[c])}).sort()};z.extend=function(b){E(m.call(arguments,1),function(c){for(var e in c)c[e]!==void 0&&(b[e]=c[e])});return b};z.defaults=function(b){E(m.call(arguments,1),function(c){for(var e in c)b[e]==null&&(b[e]=c[e])});return b};z.clone=function(b){return z.isArray(b)?b.slice():z.extend({},b)};
z.tap=function(b,c){c(b);return b};z.isEqual=function(b,c){if(b===c)return true;var e=typeof b;if(e!=typeof c)return false;if(b==c)return true;if(!b&&c||b&&!c)return false;if(b._chain)b=b._wrapped;if(c._chain)c=c._wrapped;if(b.isEqual)return b.isEqual(c);if(z.isDate(b)&&z.isDate(c))return b.getTime()===c.getTime();if(z.isNaN(b)&&z.isNaN(c))return false;if(z.isRegExp(b)&&z.isRegExp(c))return b.source===c.source&&b.global===c.global&&b.ignoreCase===c.ignoreCase&&b.multiline===c.multiline;if(e!=="object")return false;
if(b.length&&b.length!==c.length)return false;var e=z.keys(b),f=z.keys(c);if(e.length!=f.length)return false;for(var h in b)if(!(h in c)||!z.isEqual(b[h],c[h]))return false;return true};z.isEmpty=function(b){if(z.isArray(b)||z.isString(b))return b.length===0;for(var c in b)if(o.call(b,c))return false;return true};z.isElement=function(b){return!!(b&&b.nodeType==1)};z.isArray=k||function(b){return n.call(b)==="[object Array]"};z.isArguments=function(b){return!(!b||!o.call(b,"callee"))};z.isFunction=
function(b){return!(!b||!b.constructor||!b.call||!b.apply)};z.isString=function(b){return!!(b===""||b&&b.charCodeAt&&b.substr)};z.isNumber=function(b){return!!(b===0||b&&b.toExponential&&b.toFixed)};z.isNaN=function(b){return b!==b};z.isBoolean=function(b){return b===true||b===false};z.isDate=function(b){return!(!b||!b.getTimezoneOffset||!b.setUTCFullYear)};z.isRegExp=function(b){return!(!b||!b.test||!b.exec||!(b.ignoreCase||b.ignoreCase===false))};z.isNull=function(b){return b===null};z.isUndefined=
function(b){return b===void 0};z.noConflict=function(){b._=c;return this};z.identity=function(b){return b};z.times=function(b,c,e){for(var f=0;f<b;f++)c.call(e,f)};z.mixin=function(b){E(z.functions(b),function(c){M(c,z[c]=b[c])})};var P=0;z.uniqueId=function(b){var c=P++;return b?b+c:c};z.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g};z.template=function(b,c){var e=z.templateSettings,e="var __p=[],print=function(){__p.push.apply(__p,arguments);};with(obj||{}){__p.push('"+
b.replace(/\\/g,"\\\\").replace(/'/g,"\\'").replace(e.interpolate,function(b,c){return"',"+c.replace(/\\'/g,"'")+",'"}).replace(e.evaluate||null,function(b,c){return"');"+c.replace(/\\'/g,"'").replace(/[\r\n\t]/g," ")+"__p.push('"}).replace(/\r/g,"\\r").replace(/\n/g,"\\n").replace(/\t/g,"\\t")+"');}return __p.join('');",e=new Function("obj",e);return c?e(c):e};var H=function(b){this._wrapped=b};z.prototype=H.prototype;var W=function(b,c){return c?z(b).chain():b},M=function(b,c){H.prototype[b]=function(){var b=
m.call(arguments);h.call(b,this._wrapped);return W(c.apply(z,b),this._chain)}};z.mixin(z);E("pop,push,reverse,shift,sort,splice,unshift".split(","),function(b){var c=f[b];H.prototype[b]=function(){c.apply(this._wrapped,arguments);return W(this._wrapped,this._chain)}});E(["concat","join","slice"],function(b){var c=f[b];H.prototype[b]=function(){return W(c.apply(this._wrapped,arguments),this._chain)}});H.prototype.chain=function(){this._chain=true;return this};H.prototype.value=function(){return this._wrapped}})();
define("underscore",function(){});
define("dat/mahog/animate",["underscore"],function(){function b(m,h){function n(b){var e=new c(m,b,o);_.each(b.to,function(b,c){if(!_.isUndefined(u[c]))u[c].__markedForDeath=true;u[c]=e});k.push(e)}function o(b){_.each(u,function(c,e){c==b&&delete u[e]})}var t,u={},v;v=_.isString(h)?h:b.DEFAULT_NAMESPACE;t=function(c){if(_.isArray(c)){if(f(m,c,n),n(c[0]),k.length==0)b.ondisturb()}else if(!_.isUndefined(c)&&(n(e(m,c)),k.length==0))b.ondisturb();t.destinationChange()};t.isAnimating=function(b){return b in
u};h!==false&&(m[v]=t);t.clear=function(){var b=arguments;b.length==0&&(b=_.keys(u));_.each(b,function(b){if(!_.isUndefined(u[b]))u[b].__markedForDeath=true})};t.destinationChange=function(){};t.dest=function(b){return _.isUndefined(u[b])?m[b]:u[b].__params.to[b]};if(h===false)return t}function c(b,c,e){function f(e,k,n){B&&c.onUpdate(e,k,n)===false||_.each(e,function(c,e){b[e]=c})}this.__params=c;var k=this,u=c.at+c.duration,v,x=_.isFunction(c.onBegin),w=_.isFunction(c.onComplete),B=_.isFunction(c.onUpdate),
A=_.isFunction(c.curve);this.update=function(b){if(k.__markedForDeath)return e(k),false;if(b>=u){if(w)c.onComplete();f(c.to,1,1);e(k);return false}if(b<c.at)return v=b,true;if(x&&v<c.at)c.onBegin();var m=0+1*((b-c.at)/(u-c.at)),B=m;A&&(B=c.curve(m));var L={};_.each(c.to,function(b,e){L[e]=c.from[e]+(b-c.from[e])*((B-0)/1)});f(L,m,B);v=b;return true}}function e(b,c){if(_.isUndefined(c.at))c.at=Date.now();if(_.isUndefined(c.from))c.from={};var e={};_.each(c.to,function(c,f){e[f]=b[f]});c.from=_.extend(e,
c.from);return c}function f(b,c,f){_.each(_.range(c.length-1),function(k){c[k].onComplete=_.wrap(c[k].onComplete,function(t){c[k+1]=e(b,c[k+1]);f(c[k+1]);_.isFunction(t)&&t()})});c[0]=e(b,c[0]);_.each(_.range(1,c.length),function(b){if(_.isUndefined(c[b].at))c[b].at=c[b-1].at+c[b-1].duration})}var k=[];b.DEFAULT_NAMESPACE="animate";b.ondisturb=function(){};b.update=function(b){if(k.length===0)return false;_.isUndefined(b)&&(b=Date.now());var c=[];_.each(k,function(e,f){e.update(b)===false&&c.push(f-
c.length)});_.each(c,function(b){k.splice(b,1)});return k.length>0};return b});
define("dat/mahog/BookDisplayer","dat/mahog/params,dat/mahog/StaticBook,dat/mahog/CONFIG,dat/mahog/makePages,dat/utils/Easing,dat/utils/utils,dat/mahog/animate,dat/utils/showMessage,three".split(","),function(b,c,e,f,k,m,h,n){var o=function(h,u,v){function x(c,f){if(!y){L=c;if(c!=void 0&&f!=void 0){var h=e.spritesheet_count,k=f%h,h=Math.sqrt(h),m=Math.floor(k/h);H.tileSize=1/h+b.tileSizeCorrect;H.tileRow=m;H.tileColumn=k%h;H.clearTint()}else H.tileSize=1,H.tileRow=0,H.tileColumn=0;H.setTexture(c||
o.DEFAULT_TEXTURE)}}function w(c){if(o.active==A)v.opened=0,C=false,H.mesh.visible=false,v.show(),v.mesh.position.copy(A.mesh.position),v.mesh.rotation.copy(A.mesh.rotation),o.loading=false,v.animate({from:{cover:0},to:{cover:1},duration:b.bookOpenTime,onUpdate:B(v.mesh,true),onComplete:function(){A.comingOut=false;c&&c()},onBegin:function(){A.comingOut=true}})}function B(c,e){var f=u.position.distanceTo(u.target.position),f=b.openDistance/f,h;h=e?new THREE.Vector3(m.lerp(u.position.x,u.target.position.x,
f),m.lerp(u.position.y,u.target.position.y,f),m.lerp(u.position.z,u.target.position.z,f)):new THREE.Vector3(v.mesh.position.x,v.mesh.position.y,v.mesh.position.z);var f=new THREE.Matrix4,n=new THREE.Vector3;f.lookAt(h,u.position,u.up);n.setRotationFromMatrix(f);var o=m.dist(A.restPosition.x,A.restPosition.z,0,0),t=m.dist(h.x,h.z,0,0);A.targetAngle=Math.atan2(h.x,h.z);A.startAngle=Math.atan2(A.restPosition.x,A.restPosition.z);f=A.targetAngle-A.startAngle;for(n=m.sign(f);Math.abs(f)>Math.PI;)A.targetAngle+=
-n*Math.PI*2,f=A.targetAngle-A.startAngle;return openOnUpdate=function(f,n){A.fullyOut=e&&n==1;v.opened=0;var u;e?(n=k.Exponential.EaseOut(n),u=k.Exponential.EaseOut(n)):(u=1-n,n=k.Exponential.EaseIn(u),u=k.Exponential.EaseIn(u));var w=m.lerp(A.startAngle,A.targetAngle,n),x=m.lerp(o,t,n);c.position.x=Math.sin(w)*x;c.position.y=m.lerp(A.restPosition.y,h.y,k.Cubic.EaseIn(n));c.position.z=Math.cos(w)*x;c.rotation.y=m.lerp(A.startAngle+b.bookTwist-Math.PI/2,A.targetAngle,u);c.updateMatrix()}}var A=this,
y=false,D=false,C=false,L,z,E,N,I,P,H=this.staticBook=new c(o.DEFAULT_TEXTURE),W=H.width,M=H.height,J=W/M;this.mesh=H.mesh;this.mesh.bookDisplayer=this;this.restPosition=new THREE.Vector3;this.restRotation=new THREE.Vector3;this.getWidth=function(){return W};this.getHeight=function(){return M};var Q=new function(){this.on_displayer_attached=function(){b.TINT_DEBUG&&H.setTint(1,1,1)};this.on_data_request_queued=function(){b.TINT_DEBUG&&H.setTint(1,0,0)};this.on_data_requested=function(){b.TINT_DEBUG&&
H.setTint(0.6,1,0)};this.on_data_received=function(){b.TINT_DEBUG&&H.setTint(1,1,0)};this.on_thumbnail_requested=function(){b.TINT_DEBUG&&H.setTint(0,0,0)};this.on_thumbnail_received=function(){b.TINT_DEBUG&&H.setTint(0,1,0)};this.on_thumbnail_created=function(){b.TINT_DEBUG&&H.setTint(0,1,0.5)};this.on_thumbnail_applied=function(){b.TINT_DEBUG&&H.setTint(0,1,1)};this.on_fullsize_requested=function(){};this.on_fullsize_received=function(){}};this.setBookIndex=function(b){if(I==b)return false;P=h.library.registerBookDisplayerAt(A,
b,Q,x);I=b;var c=P.data.color;L==void 0&&H.setTint(c[0]/255,c[1]/255,c[2]/255,1);this.genre=h.getGenre(b);A.onGenreChange();return true};this.getBookIndex=function(){return I};this.getBookID=function(){return P.id};this.highlight=function(){H.setTint(1,1,0)};this.unhighlight=function(){H.clearTint()};this.onGenreChange=function(){A.genre!=h.getCurrentGenre()?H.setDim(0.66):H.setDim(0)};this.update=function(){if(C||D){E=Math.sin((Date.now()-z)/200);var b;b=N>0?E<0:E>0;!D||D&&!b?b=Math.abs(E)*15:(b=
0,D=false);A.mesh.position.y=b+A.restPosition.y;A.mesh.updateMatrix()}P.status.thumbnail_requested&&!P.status.thumbnail_received?(b=(Math.sin((Date.now()-I*40)/140)+1)/2+0.5,H.setTransparency(b)):H.setTransparency(1);H.update()};this.open=function(c,e){A.comingOut=false;z=Date.now();C=true;v.hide();o.loading=true;o.active=A;v.mesh.position.x=H.mesh.position.x;v.mesh.position.y=H.mesh.position.y;v.mesh.position.z=H.mesh.position.z;v.mesh.rotation.x=H.mesh.rotation.x;v.mesh.rotation.y=H.mesh.rotation.y;
v.mesh.rotation.z=H.mesh.rotation.z;var k=0,m=function(){k++;k==2&&(y=true,w(c))};h.library.requestCover(I,function(b){o.active==A&&v.setCoverImage(b);m()},function(){n(b.errorString);o.cancel()});$.ajax("https://www.googleapis.com/books/v1/volumes/"+P.id,{dataType:"jsonp",success:function(c){c.volumeInfo?(e.call(this,c),f(c,J,function(b){v.setPagesImage(b);m()},function(){n(b.errorString);o.cancel()})):(n(c.error.message),o.cancel())}})};this.cancel=function(){C=false;D=true;N=E};this.close=function(){v.animate.clear();
A.closing=true;H.mesh.visible=true;v.animate({from:{close:0},to:{close:1},duration:b.bookCloseTime,onUpdate:B(H.mesh,false),onComplete:function(){A.closing=false}});y=false;v.hide();v.opened=0}};o.active=null;o.cancel=function(){o.active!=null&&((o.active.fullyOut||o.active.comingOut)&&o.active.close(),o.active.cancel());o.active=null;o.loadingID="";o.loading=false};o.DEFAULT_TEXTURE=THREE.ImageUtils.loadTexture("textures/blue.jpg");return o});
define("dat/mahog/SpiralShelf",["dat/mahog/params","dat/mahog/utils","dat/utils/urlArgs"],function(b,c,e){return function(f,k,m,h){var n=this,o=new THREE.Geometry,t,u=function(b){for(var c=1;c<b;)c<<=1;return c},v=THREE.ImageUtils.loadTexture(b.SHELF_TEXTURE,new THREE.UVMapping,function(){var b=document.createElement("canvas");b.width=u(v.image.width);b.height=u(v.image.height);b.getContext("2d").drawImage(v.image,0,0,v.image.width,v.image.height,0,0,b.width,b.height);v.image=b});this.mesh={};if(h)for(var x in h)b[x]=
h[x];(function(){if(e.installation==="1"||e.installation_debug==="1")b.orbits*=3;t=new THREE.MeshPhongMaterial({map:v,shading:THREE.SmoothShading});for(var f=0,h=b.orbits/2,k=Math.PI*2/b.shelfResolution,m=-b.orbits/2;m<=h;m+=k){var u=b.spiralRadius-b.shelfDepth/2,x=Math.cos(m)*u,L=c.orbitToY(m)+b.shelfThickness/2,z=Math.sin(m)*u,u=b.spiralRadius+b.shelfDepth/2,E=Math.cos(m)*u,N=c.orbitToY(m)+b.shelfThickness/2,I=Math.sin(m)*u,u=b.spiralRadius+b.shelfDepth/2,P=Math.cos(m)*u,H=c.orbitToY(m)-b.shelfThickness/
2,W=Math.sin(m)*u,u=b.spiralRadius-b.shelfDepth/2,M=Math.cos(m)*u,J=c.orbitToY(m)-b.shelfThickness/2;u*=Math.sin(m);x=new THREE.Vector3(x,L,z);E=new THREE.Vector3(E,N,I);P=new THREE.Vector3(P,H,W);M=new THREE.Vector3(M,J,u);o.vertices.push(new THREE.Vertex(x));o.vertices.push(new THREE.Vertex(E));o.vertices.push(new THREE.Vertex(P));o.vertices.push(new THREE.Vertex(M));var Q=o.vertices.length,J=f%b.topTextureSpan/b.topTextureSpan,H=J+1/b.topTextureSpan,u=f%b.sideTextureSpan/b.sideTextureSpan,N=u+
1/b.sideTextureSpan;if(Q>7){var x=Q-4,E=Q-3,P=Q-2,M=Q-1,I=o.vertices[x].position.clone().normalize().negate(),O=o.vertices[E].position.clone().normalize(),Y=o.vertices[P].position.clone().normalize(),L=o.vertices[M].position.clone().normalize().negate(),z=Q-8,V=Q-7,W=Q-6;Q-=5;var Z=o.vertices[z].position.clone().normalize().negate(),K=o.vertices[V].position.clone().normalize(),X=o.vertices[W].position.clone().normalize(),S=o.vertices[Q].position.clone().normalize().negate();b.outsideFace&&(o.faces.push(new THREE.Face4(V,
E,P,W,[K,O,Y,X])),o.faceVertexUvs[0].push([new THREE.UV(0,u),new THREE.UV(0,N),new THREE.UV(1,N),new THREE.UV(1,u)]));O=new THREE.Vector3(0,1,0);b.topFace&&(o.faces.push(new THREE.Face4(z,x,E,V,[O,O,O,O])),o.faceVertexUvs[0].push([new THREE.UV(1,J),new THREE.UV(1,H),new THREE.UV(0,H),new THREE.UV(0,J)]));b.insideFace&&(o.faces.push(new THREE.Face4(Q,M,x,z,[S,L,I,Z])),o.faceVertexUvs[0].push([new THREE.UV(0,u),new THREE.UV(0,N),new THREE.UV(1,N),new THREE.UV(1,u)]));x=new THREE.Vector3(0,-1,0);b.bottomFace&&
(o.faces.push(new THREE.Face4(W,P,M,Q,[x,x,x,x])),o.faceVertexUvs[0].push([new THREE.UV(0,J),new THREE.UV(0,H),new THREE.UV(1,H),new THREE.UV(1,J)]))}f++}n.mesh=new THREE.Mesh(o,t)})()}});define("text!dat/mahog/pre.html",function(){return"<h6>You are currently looking:</h6>"});define("text!dat/mahog/post.html",function(){return'<a href="#">Browse Subjects</a>'});
define("dat/mahog/DomLabelManager","dat/mahog/params,text!dat/mahog/pre.html,text!dat/mahog/post.html,dat/utils/urlArgs,underscore,jquery".split(","),function(b,c,e,f){return function(c,e,h){function n(){var c=e.getCurrentGenre();if(c!==B){var f=_.indexOf(w,c);v.find("li");var h=-(f*50)-60,k=350,n=f-A,o=Math.abs(n);if(o>=w.length-1)h=-(A*50)-60,n<0?h-=50:h+=50,_.isNull(C)||clearTimeout(C),C=setTimeout(function(){v.css({"-webkit-transition":"all 0ms cubic-bezier(0.785, 0.135, 0.150, 0.860)","-moz-transition":"all 0ms cubic-bezier(0.785, 0.135, 0.150, 0.860)",
"-ms-transition":"all 0ms cubic-bezier(0.785, 0.135, 0.150, 0.860)","-o-transition":"all 0ms cubic-bezier(0.785, 0.135, 0.150, 0.860)",transition:"all 0ms cubic-bezier(0.785, 0.135, 0.150, 0.860)",marginTop:-(f*50)-60});C=null},k);else if(o>3)k=b.cameraPositionDriftLength;v.css({"-webkit-transition":"all "+k+"ms cubic-bezier(0.785, 0.135, 0.150, 0.860)","-moz-transition":"all "+k+"ms cubic-bezier(0.785, 0.135, 0.150, 0.860)","-ms-transition":"all "+k+"ms cubic-bezier(0.785, 0.135, 0.150, 0.860)",
"-o-transition":"all "+k+"ms cubic-bezier(0.785, 0.135, 0.150, 0.860)",transition:"all "+k+"ms cubic-bezier(0.785, 0.135, 0.150, 0.860)",marginTop:h}).children("li").removeClass("active").eq(f+1).addClass("active");B=c;A=f}}var o=this,t=$('<div id="label-manager" style="display: none; top: -250px;" />').appendTo("#content"),u=$('<div id="active-genre-element"/>').appendTo(t),v,x,w=_.pluck(c,"name"),B="Travel",A=0,y=0,D=null,C=null;if(f.installation!=void 0||f.installation_debug!=void 0)y=$(window).height()/
2;this.hidden=true;this.update=function(){n()};this.fadeOut=function(){var b=y-250;t.css({marginTop:b,opacity:0});x.css({marginTop:b,opacity:0});_.isNull(D)||clearTimeout(D);D=setTimeout(function(){t.css("display","none");x.css("display","none");D=null;o.hidden=true},350)};this.fadeIn=function(){t.css({display:"block",opacity:0,marginTop:y-250});x.css({display:"block",opacity:0,marginTop:y-250});_.defer(function(){t.css({marginTop:y,opacity:1});x.css({marginTop:y,opacity:1});o.hidden=false})};(function(){var b=
"<ul>";_.each(w.reverse(),function(c){b+='<li name="'+c+'"><span>'+c+"</span></li>"});b+="</ul>";var c=$(window);x=$('<div class="frame" />').width(227).height(40).css({position:"fixed",marginTop:y}).appendTo(t).bind("mouseover mouseenter",function(){v.find(".active").html("Browse subjects")}).bind("mouseout mouseleave",function(){var b=v.find(".active");b.html("<span>"+b.attr("name")+"</span>")}).click(function(b){b.preventDefault();h.show()});u.html(b);v=u.find("ul");c.resize(function(){t.css({left:(c.width()-
t.outerWidth())/2});x.css({top:12,left:(c.width()-x.outerWidth())/2})}).trigger("resize");t.css({top:22,marginTop:y});v.find("li").eq(0).clone().appendTo(v);v.find("li").eq(w.length-1).clone().prependTo(v)})()}});
define("dat/mahog/Genre2DOverlay","dat/mahog/params,dat/utils/urlArgs,dat/mahog/CONFIG,dat/utils/utils,jquery,underscore".split(","),function(b,c,e){return function(f,k){function m(){var b=(window.innerHeight-z.outerHeight())/2;z.css("top",b);var c=$(".container"),b=c.width(),e=c.position().left,c=c.position().top;L.css({left:e+b-L.width()/2,top:c-L.height()/2})}var h=this,n=document.createElement("div");n.setAttribute("class","closebutton");var o=document.createElement("div");o.setAttribute("id",
"genre-2d");var t="<div class='container'>",u="",v="<h1>Choose a Subject:</h1><div class='decoration two-thirds'></div>",x="<footer>The helix includes "+e.count+" books, and was last updated on September 19, 2011.</footer>";c.installation!==void 0&&(u="<h5 class='pre-heading'>Project</h5><h1>"+b.projectTitle+"</h1>",v="<h3 class='post-heading'>"+b.projectDescription+"</h3><div class='decoration two-thirds'></div>",x="<footer>"+b.smallPrint+"</footer>");u+=v;for(var v="<div class='body'>",w=Math.ceil(f.length/
3),B=0;B<3;B++){for(var A="<ul>",y="",D=0;D<w;D++){var C=f[B*w+D];C&&(y+="<li>"+("<span class = 'name'>"+C.name+"</span> <span class = 'count'>"+C.count+"</span>")+"</li>")}A+=y+"</ul>";v+=A}v+="<div class='clear'></div></div><div class='decoration three-quarters'></div>";$("body").append(o);t+=u+v+x+"</div>";o.innerHTML=t;o.appendChild(n);var L=$(n);L.click(function(){h.hide()});var z=$(o);o.style.display="block";z.hide();$("li").click(function(b){var c=$(this).find(".name").html();b.preventDefault();
b.stopPropagation();k(c);h.hide()});this.domElement=o;this.hide=function(){z.css("opacity","0.0");L.fadeOut();setTimeout(function(){E=false;z.css("display","none")},500)};var E=false;z.css("top",window.innerHeight/2-z.outerHeight()/2);this.__defineGetter__("showing",function(){return E});this.show=function(){E||(E=true,z.css("display","block"),z.outerHeight(),$(window).resize(m),z.css("opacity","1.0"),setTimeout(function(){var b=$(".container"),c=b.width(),e=b.position().left,b=b.position().top;L.css({left:e+
c-L.width()/2,top:b-L.height()/2});L.fadeIn()},500))}}});define("text!dat/mahog/data/categories.json",function(){return'[{"count": 98, "name": "Bestsellers"}, {"count": 283, "name": "Biographies and Memoirs"}, {"count": 157, "name": "Business and Investing"}, {"count": 125, "name": "Childrens Books"}, {"count": 86, "name": "Computers and Internet"}, {"count": 254, "name": "Cooking Food and Wine"}, {"count": 192, "name": "Fantasy"}, {"count": 788, "name": "Fiction"}, {"count": 511, "name": "Free Books"}, {"count": 4153, "name": "General"}, {"count": 855, "name": "Highly Cited"}, {"count": 87, "name": "History"}, {"count": 71, "name": "Humor"}, {"count": 212, "name": "Lifestyle and Home"}, {"count": 29, "name": "Movie Inspirations"}, {"count": 210, "name": "Mystery and Thrillers"}, {"count": 116, "name": "NYT Bestsellers"}, {"count": 741, "name": "New Arrivals"}, {"count": 70, "name": "Parenting and Families"}, {"count": 77, "name": "Politics and Current Events"}, {"count": 112, "name": "Reference"}, {"count": 139, "name": "Religion and Spirituality"}, {"count": 282, "name": "Romance"}, {"count": 73, "name": "Science"}, {"count": 122, "name": "Science Fiction"}, {"count": 220, "name": "Sports"}, {"count": 561, "name": "Top Rated"}, {"count": 341, "name": "Travel"}]'});
(function(){function b(b,c,e){c([b],function(b){e(function(){return b})})}function c(c){var e=c.currentTarget||c.srcElement,o;if(c.type==="load"||f.test(e.readyState)){c=e.getAttribute("data-requiremodule");m[c]=true;for(c=0;o=k[c];c++)if(m[o.name])b(o.name,o.req,o.onLoad);else break;c>0&&k.splice(0,c);setTimeout(function(){e.parentNode.removeChild(e)},15)}}var e=typeof document!=="undefined"&&typeof window!=="undefined"&&(document.createElement("script").async||window.opera&&Object.prototype.toString.call(window.opera)===
"[object Opera]"||"MozAppearance"in document.documentElement.style),f=/^(complete|loaded)$/,k=[],m={};define("order",{version:"0.25.0",load:function(f,m,o,t){var u=m.nameToUrl(f,null);t.isBuild?b(f,m,o):(require.s.skipAsync[u]=true,e?m([f],function(b){o(function(){return b})}):m.specified(f)?m([f],function(b){o(function(){return b})}):(k.push({name:f,req:m,onLoad:o}),require.attach(u,null,f,c,"script/cache")))}})})();
var Stats=function(){function b(b,c,e){var f,h,k;for(h=0;h<30;h++)for(f=0;f<73;f++)k=(f+h*74)*4,b[k]=b[k+4],b[k+1]=b[k+5],b[k+2]=b[k+6];for(h=0;h<30;h++)k=(73+h*74)*4,h<c?(b[k]=O[e].bg.r,b[k+1]=O[e].bg.g,b[k+2]=O[e].bg.b):(b[k]=O[e].fg.r,b[k+1]=O[e].fg.g,b[k+2]=O[e].fg.b)}var c=0,e=2,f,k=0,m=(new Date).getTime(),h=m,n=m,o=0,t=1E3,u=0,v,x,w,B,A,y=0,D=1E3,C=0,L,z,E,N,I=0,P=1E3,H=0,W,M,J,Q,O={fps:{bg:{r:16,g:16,b:48},fg:{r:0,g:255,b:255}},ms:{bg:{r:16,g:48,b:16},fg:{r:0,g:255,b:0}},mem:{bg:{r:48,g:16,
b:26},fg:{r:255,g:0,b:128}}};f=document.createElement("div");f.style.cursor="pointer";f.style.width="80px";f.style.opacity="0.9";f.style.zIndex="10001";f.addEventListener("click",function(){c++;c==e&&(c=0);v.style.display="none";L.style.display="none";W.style.display="none";switch(c){case 0:v.style.display="block";break;case 1:L.style.display="block";break;case 2:W.style.display="block"}},false);v=document.createElement("div");v.style.backgroundColor="rgb("+Math.floor(O.fps.bg.r/2)+","+Math.floor(O.fps.bg.g/
2)+","+Math.floor(O.fps.bg.b/2)+")";v.style.padding="2px 0px 3px 0px";f.appendChild(v);x=document.createElement("div");x.style.fontFamily="Helvetica, Arial, sans-serif";x.style.textAlign="left";x.style.fontSize="9px";x.style.color="rgb("+O.fps.fg.r+","+O.fps.fg.g+","+O.fps.fg.b+")";x.style.margin="0px 0px 1px 3px";x.innerHTML='<span style="font-weight:bold">FPS</span>';v.appendChild(x);w=document.createElement("canvas");w.width=74;w.height=30;w.style.display="block";w.style.marginLeft="3px";v.appendChild(w);
B=w.getContext("2d");B.fillStyle="rgb("+O.fps.bg.r+","+O.fps.bg.g+","+O.fps.bg.b+")";B.fillRect(0,0,w.width,w.height);A=B.getImageData(0,0,w.width,w.height);L=document.createElement("div");L.style.backgroundColor="rgb("+Math.floor(O.ms.bg.r/2)+","+Math.floor(O.ms.bg.g/2)+","+Math.floor(O.ms.bg.b/2)+")";L.style.padding="2px 0px 3px 0px";L.style.display="none";f.appendChild(L);z=document.createElement("div");z.style.fontFamily="Helvetica, Arial, sans-serif";z.style.textAlign="left";z.style.fontSize=
"9px";z.style.color="rgb("+O.ms.fg.r+","+O.ms.fg.g+","+O.ms.fg.b+")";z.style.margin="0px 0px 1px 3px";z.innerHTML='<span style="font-weight:bold">MS</span>';L.appendChild(z);w=document.createElement("canvas");w.width=74;w.height=30;w.style.display="block";w.style.marginLeft="3px";L.appendChild(w);E=w.getContext("2d");E.fillStyle="rgb("+O.ms.bg.r+","+O.ms.bg.g+","+O.ms.bg.b+")";E.fillRect(0,0,w.width,w.height);N=E.getImageData(0,0,w.width,w.height);try{performance&&performance.memory&&performance.memory.totalJSHeapSize&&
(e=3)}catch(Y){}W=document.createElement("div");W.style.backgroundColor="rgb("+Math.floor(O.mem.bg.r/2)+","+Math.floor(O.mem.bg.g/2)+","+Math.floor(O.mem.bg.b/2)+")";W.style.padding="2px 0px 3px 0px";W.style.display="none";f.appendChild(W);M=document.createElement("div");M.style.fontFamily="Helvetica, Arial, sans-serif";M.style.textAlign="left";M.style.fontSize="9px";M.style.color="rgb("+O.mem.fg.r+","+O.mem.fg.g+","+O.mem.fg.b+")";M.style.margin="0px 0px 1px 3px";M.innerHTML='<span style="font-weight:bold">MEM</span>';
W.appendChild(M);w=document.createElement("canvas");w.width=74;w.height=30;w.style.display="block";w.style.marginLeft="3px";W.appendChild(w);J=w.getContext("2d");J.fillStyle="#301010";J.fillRect(0,0,w.width,w.height);Q=J.getImageData(0,0,w.width,w.height);return{domElement:f,update:function(){k++;m=(new Date).getTime();y=m-h;D=Math.min(D,y);C=Math.max(C,y);b(N.data,Math.min(30,30-y/200*30),"ms");z.innerHTML='<span style="font-weight:bold">'+y+" MS</span> ("+D+"-"+C+")";E.putImageData(N,0,0);h=m;if(m>
n+1E3){o=Math.round(k*1E3/(m-n));t=Math.min(t,o);u=Math.max(u,o);b(A.data,Math.min(30,30-o/100*30),"fps");x.innerHTML='<span style="font-weight:bold">'+o+" FPS</span> ("+t+"-"+u+")";B.putImageData(A,0,0);if(e==3)I=performance.memory.usedJSHeapSize*9.54E-7,P=Math.min(P,I),H=Math.max(H,I),b(Q.data,Math.min(30,30-I/2),"mem"),M.innerHTML='<span style="font-weight:bold">'+Math.round(I)+" MEM</span> ("+Math.round(P)+"-"+Math.round(H)+")",J.putImageData(Q,0,0);n=m;k=0}}}};define("stats",function(){});
if(!window.requestAnimationFrame)window.requestAnimationFrame=function(){return window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(b){window.setTimeout(b,1E3/60)}}();define("RequestAnimationFrame",function(){});var dat=dat||{};
dat.GUI=function(b){b==void 0&&(b={});var c=false;b.height==void 0?b.height=300:c=true;var e=[],f=[],k=true,m,h,n=this,o=true,t=280;if(b.width!=void 0)t=b.width;var u=false,v,x,w=0,B;this.domElement=document.createElement("div");this.domElement.setAttribute("class","guidat");this.domElement.style.width=t+"px";var A=b.height,y=document.createElement("div");y.setAttribute("class","guidat-controllers");y.style.height=A+"px";y.addEventListener("DOMMouseScroll",function(b){var c=this.scrollTop;b.wheelDelta?
c+=b.wheelDelta:b.detail&&(c+=b.detail);b.preventDefault&&b.preventDefault();b.returnValue=false;y.scrollTop=c},false);var D=document.createElement("a");D.setAttribute("class","guidat-toggle");D.setAttribute("href","#");D.innerHTML=o?"Close Controls":"Open Controls";var C=false,L=0,z=0,E=false,N,I,P,H,W=function(b){I=N;H=P;N=b.pageY;P=b.pageX;b=N-I;if(!o)if(b>0)o=true,A=v=1,D.innerHTML=x||"Close Controls";else return;var c=H-P;if(b>0&&A>h){var e=dat.GUI.map(A,h,h+100,1,0);b*=e}C=true;L+=b;v+=b;A+=
b;y.style.height=v+"px";z+=c;t+=c;t=dat.GUI.constrain(t,240,500);n.domElement.style.width=t+"px";Q()};D.addEventListener("mousedown",function(b){I=N=b.pageY;H=P=b.pageX;E=true;b.preventDefault();L=z=0;document.addEventListener("mousemove",W,false);return false},false);D.addEventListener("click",function(b){b.preventDefault();return false},false);document.addEventListener("mouseup",function(b){E&&!C&&n.toggle();if(E&&C)if(z==0&&V(),v>h)clearTimeout(B),v=w=h,Y();else if(y.children.length>=1){var c=
y.children[0].offsetHeight;clearTimeout(B);w=Math.round(A/c)*c-1;w<=0?(n.close(),v=c*2):(v=w,Y())}document.removeEventListener("mousemove",W,false);b.preventDefault();return E=C=false},false);this.domElement.appendChild(y);this.domElement.appendChild(D);if(b.domElement)b.domElement.appendChild(this.domElement);else if(dat.GUI.autoPlace){if(dat.GUI.autoPlaceContainer==null)dat.GUI.autoPlaceContainer=document.createElement("div"),dat.GUI.autoPlaceContainer.setAttribute("id","guidat"),document.body.appendChild(dat.GUI.autoPlaceContainer);
dat.GUI.autoPlaceContainer.appendChild(this.domElement)}this.autoListenIntervalTime=1E3/60;var M=function(){m=setInterval(function(){n.listen()},this.autoListenIntervalTime)};this.__defineSetter__("autoListen",function(b){(k=b)?f.length>0&&M():clearInterval(m)});this.__defineGetter__("autoListen",function(){return k});this.listenTo=function(b){f.length==0&&M();f.push(b)};this.unlistenTo=function(b){for(var c=0;c<f.length;c++)f[c]==b&&f.splice(c,1);f.length<=0&&clearInterval(m)};this.listen=function(b){var b=
b||f,c;for(c in b)b[c].updateDisplay()};this.listenAll=function(){this.listen(e)};this.autoListen=true;var J=function(b,c){function e(){return b.apply(this,c)}e.prototype=b.prototype;return new e};this.add=function(){if(arguments.length==1){var b=[],f;for(f in arguments[0])b.push(n.add(arguments[0],f));return b}b=arguments[0];f=arguments[1];var k;a:for(k in e)if(e[k].object==b&&e[k].propertyName==f)break a;k=b[f];if(k==void 0)dat.GUI.error(b+" either has no property '"+f+"', or the property is inaccessible.");
else if(b=typeof k,k=O[b],k==void 0)dat.GUI.error("Cannot create controller for data type '"+b+"'");else{for(var m=[this],o=0;o<arguments.length;o++)m.push(arguments[o]);if(k=J(k,m)){y.appendChild(k.domElement);e.push(k);dat.GUI.allControllers.push(k);b!="function"&&dat.GUI.saveIndex<dat.GUI.savedValues.length&&(k.setValue(dat.GUI.savedValues[dat.GUI.saveIndex]),dat.GUI.saveIndex++);Q();u||(v=h);if(!c)try{if(arguments.callee.caller==window.onload)A=w=v=h,y.style.height=A+"px"}catch(t){}return k}else dat.GUI.error("Error creating controller for '"+
f+"'.")}};var Q=function(){h=0;for(var b in e)h+=e[b].domElement.offsetHeight;y.style.overflowY=h-1>v?"auto":"hidden"},O={number:dat.GUI.ControllerNumber,string:dat.GUI.ControllerString,"boolean":dat.GUI.ControllerBoolean,"function":dat.GUI.ControllerFunction};this.reset=function(){};this.toggle=function(){o?this.close():this.open()};this.open=function(){D.innerHTML=x||"Close Controls";w=v;clearTimeout(B);Y();V();o=true};this.close=function(){D.innerHTML=x||"Open Controls";w=0;clearTimeout(B);Y();
V();o=false};this.name=function(b){x=b;D.innerHTML=b};this.appearanceVars=function(){return[o,t,v,y.scrollTop]};var Y=function(){A=y.offsetHeight;A+=(w-A)*0.6;Math.abs(A-w)<1?A=w:B=setTimeout(Y,1E3/30);y.style.height=Math.round(A)+"px";Q()},V=function(){n.domElement.style.width=t-1+"px";setTimeout(function(){n.domElement.style.width=t+"px"},1)};if(dat.GUI.guiIndex<dat.GUI.savedAppearanceVars.length){t=parseInt(dat.GUI.savedAppearanceVars[dat.GUI.guiIndex][1]);n.domElement.style.width=t+"px";v=parseInt(dat.GUI.savedAppearanceVars[dat.GUI.guiIndex][2]);
u=true;if(eval(dat.GUI.savedAppearanceVars[dat.GUI.guiIndex][0])==true){var A=v,Z=dat.GUI.savedAppearanceVars[dat.GUI.guiIndex][3];setTimeout(function(){y.scrollTop=Z},0);if(dat.GUI.scrollTop>-1)document.body.scrollTop=dat.GUI.scrollTop;w=v;this.open()}dat.GUI.guiIndex++}dat.GUI.allGuis.push(this);if(dat.GUI.allGuis.length==1&&(window.addEventListener("keyup",function(b){!dat.GUI.supressHotKeys&&b.keyCode==72&&dat.GUI.toggleHide()},false),dat.GUI.inlineCSS))b=document.createElement("style"),b.setAttribute("type",
"text/css"),b.innerHTML=dat.GUI.inlineCSS,document.head.insertBefore(b,document.head.firstChild)};dat.GUI.hidden=false;dat.GUI.autoPlace=true;dat.GUI.autoPlaceContainer=null;dat.GUI.allControllers=[];dat.GUI.allGuis=[];dat.GUI.supressHotKeys=false;dat.GUI.toggleHide=function(){dat.GUI.hidden?dat.GUI.open():dat.GUI.close()};dat.GUI.open=function(){dat.GUI.hidden=false;for(var b in dat.GUI.allGuis)dat.GUI.allGuis[b].domElement.style.display="block"};
dat.GUI.close=function(){dat.GUI.hidden=true;for(var b in dat.GUI.allGuis)dat.GUI.allGuis[b].domElement.style.display="none"};dat.GUI.saveURL=function(){var b=dat.GUI.replaceGetVar("saveString",dat.GUI.getSaveString());window.location=b};dat.GUI.scrollTop=-1;dat.GUI.load=function(b){var b=b.split(","),c=parseInt(b[0]);dat.GUI.scrollTop=parseInt(b[1]);for(var e=0;e<c;e++){var f=b.splice(2,4);dat.GUI.savedAppearanceVars.push(f)}dat.GUI.savedValues=b.splice(2,b.length)};dat.GUI.savedValues=[];
dat.GUI.savedAppearanceVars=[];dat.GUI.getSaveString=function(){var b=[],c;b.push(dat.GUI.allGuis.length);b.push(document.body.scrollTop);for(c in dat.GUI.allGuis)for(var e=dat.GUI.allGuis[c].appearanceVars(),f=0;f<e.length;f++)b.push(e[f]);for(c in dat.GUI.allControllers)dat.GUI.allControllers[c].type!="function"&&(e=dat.GUI.allControllers[c].getValue(),dat.GUI.allControllers[c].type=="number"&&(e=dat.GUI.roundToDecimal(e,4)),b.push(e));return b.join(",")};
dat.GUI.getVarFromURL=function(b){for(var c,e=window.location.href.slice(window.location.href.indexOf("?")+1).split("&"),f=0;f<e.length;f++)if(c=e[f].split("="),c!=void 0&&c[0]==b)return c[1];return null};
dat.GUI.replaceGetVar=function(b,c){for(var e,f=window.location.href,k=window.location.href.slice(window.location.href.indexOf("?")+1).split("&"),m=0;m<k.length;m++)if(e=k[m].split("="),e!=void 0&&e[0]==b)return f.replace(e[1],c);return window.location.href.indexOf("?")!=-1?f+"&"+b+"="+c:f+"?"+b+"="+c};dat.GUI.saveIndex=0;dat.GUI.guiIndex=0;dat.GUI.showSaveString=function(){alert(dat.GUI.getSaveString())};
dat.GUI.makeUnselectable=function(b){if(!(b==void 0||b.style==void 0)){b.onselectstart=function(){return false};b.style.MozUserSelect="none";b.style.KhtmlUserSelect="none";b.unselectable="on";for(var b=b.childNodes,c=0;c<b.length;c++)dat.GUI.makeUnselectable(b[c])}};dat.GUI.makeSelectable=function(b){if(!(b==void 0||b.style==void 0)){b.onselectstart=function(){};b.style.MozUserSelect="auto";b.style.KhtmlUserSelect="auto";b.unselectable="off";for(var b=b.childNodes,c=0;c<b.length;c++)dat.GUI.makeSelectable(b[c])}};
dat.GUI.map=function(b,c,e,f,k){return f+(k-f)*((b-c)/(e-c))};dat.GUI.constrain=function(b,c,e){b<c?b=c:b>e&&(b=e);return b};dat.GUI.error=function(b){typeof console.error=="function"&&console.error("[DAT.GUI ERROR] "+b)};dat.GUI.roundToDecimal=function(b,c){var e=Math.pow(10,c);return Math.round(b*e)/e};dat.GUI.extendController=function(b){b.prototype=new dat.GUI.Controller;b.prototype.constructor=b};dat.GUI.addClass=function(b,c){dat.GUI.hasClass(b,c)||(b.className+=" "+c)};
dat.GUI.hasClass=function(b,c){return b.className.indexOf(c)!=-1};dat.GUI.removeClass=function(b,c){b.className=b.className.replace(RegExp(" "+c,"g"),"")};dat.GUI.getVarFromURL("saveString")!=null&&dat.GUI.load(dat.GUI.getVarFromURL("saveString"));
dat.GUI.Controller=function(){this.parent=arguments[0];this.object=arguments[1];this.propertyName=arguments[2];if(arguments.length>0)this.initialValue=this.propertyName[this.object];this.domElement=document.createElement("div");this.domElement.setAttribute("class","guidat-controller "+this.type);this.propertyNameElement=document.createElement("span");this.propertyNameElement.setAttribute("class","guidat-propertyname");this.name(this.propertyName);this.domElement.appendChild(this.propertyNameElement);
dat.GUI.makeUnselectable(this.domElement)};dat.GUI.Controller.prototype.changeFunction=null;dat.GUI.Controller.prototype.finishChangeFunction=null;dat.GUI.Controller.prototype.name=function(b){this.propertyNameElement.innerHTML=b;return this};dat.GUI.Controller.prototype.reset=function(){this.setValue(this.initialValue);return this};dat.GUI.Controller.prototype.listen=function(){this.parent.listenTo(this);return this};dat.GUI.Controller.prototype.unlisten=function(){this.parent.unlistenTo(this);return this};
dat.GUI.Controller.prototype.setValue=function(b){this.object[this.propertyName]=b;this.changeFunction!=null&&this.changeFunction.call(this,b);this.updateDisplay();return this};dat.GUI.Controller.prototype.getValue=function(){return this.object[this.propertyName]};dat.GUI.Controller.prototype.updateDisplay=function(){};dat.GUI.Controller.prototype.onChange=function(b){this.changeFunction=b;return this};dat.GUI.Controller.prototype.onFinishChange=function(b){this.finishChangeFunction=b;return this};
dat.GUI.Controller.prototype.options=function(){var b=this,c=document.createElement("select");if(arguments.length==1){var e=arguments[0],f;for(f in e){var k=document.createElement("option");k.innerHTML=f;k.setAttribute("value",e[f]);if(arguments[f]==this.getValue())k.selected=true;c.appendChild(k)}}else for(f=0;f<arguments.length;f++){k=document.createElement("option");k.innerHTML=arguments[f];k.setAttribute("value",arguments[f]);if(arguments[f]==this.getValue())k.selected=true;c.appendChild(k)}c.addEventListener("change",
function(){b.setValue(this.value);b.finishChangeFunction!=null&&b.finishChangeFunction.call(this,b.getValue())},false);b.domElement.appendChild(c);return this};
dat.GUI.ControllerBoolean=function(){this.type="boolean";dat.GUI.Controller.apply(this,arguments);var b=this,c=document.createElement("input");c.setAttribute("type","checkbox");c.checked=this.getValue();this.setValue(this.getValue());this.domElement.addEventListener("click",function(e){c.checked=!c.checked;e.preventDefault();b.setValue(c.checked)},false);c.addEventListener("mouseup",function(){c.checked=!c.checked},false);this.domElement.style.cursor="pointer";this.propertyNameElement.style.cursor=
"pointer";this.domElement.appendChild(c);this.updateDisplay=function(){c.checked=b.getValue()};this.setValue=function(b){if(typeof b!="boolean")try{b=eval(b)}catch(c){}return dat.GUI.Controller.prototype.setValue.call(this,b)}};dat.GUI.extendController(dat.GUI.ControllerBoolean);
dat.GUI.ControllerFunction=function(){this.type="function";var b=this;dat.GUI.Controller.apply(this,arguments);this.domElement.addEventListener("click",function(){b.fire()},false);this.domElement.style.cursor="pointer";this.propertyNameElement.style.cursor="pointer";var c=null;this.onFire=function(b){c=b;return this};this.fire=function(){c!=null&&c.call(this);b.object[b.propertyName].call(b.object)}};dat.GUI.extendController(dat.GUI.ControllerFunction);
dat.GUI.ControllerNumber=function(){this.type="number";dat.GUI.Controller.apply(this,arguments);var b=this,c=false,e=false,f=0,k=0,m=arguments[3],h=arguments[4],n=arguments[5];this.min=function(){var c=false;m==void 0&&h!=void 0&&(c=true);if(arguments.length==0)return m;else m=arguments[0];c&&(u(),n==void 0&&(n=(h-m)*0.01));return b};this.max=function(){var c=false;m!=void 0&&h==void 0&&(c=true);if(arguments.length==0)return h;else h=arguments[0];c&&(u(),n==void 0&&(n=(h-m)*0.01));return b};this.step=
function(){if(arguments.length==0)return n;else n=arguments[0];return b};this.getMin=function(){return m};this.getMax=function(){return h};this.getStep=function(){return n==void 0?h!=void 0&&m!=void 0?(h-m)/100:1:n};var o=document.createElement("input");o.setAttribute("id",this.propertyName);o.setAttribute("type","text");o.setAttribute("value",this.getValue());n&&o.setAttribute("step",n);this.domElement.appendChild(o);var t,u=function(){t=new dat.GUI.ControllerNumberSlider(b,m,h,n,b.getValue());b.domElement.appendChild(t.domElement)};
m!=void 0&&h!=void 0&&u();o.addEventListener("blur",function(){var c=parseFloat(this.value);t&&dat.GUI.removeClass(b.domElement,"active");isNaN(c)||b.setValue(c)},false);o.addEventListener("mousewheel",function(c){c.preventDefault();b.setValue(b.getValue()+Math.abs(c.wheelDeltaY)/c.wheelDeltaY*b.getStep());return false},false);o.addEventListener("mousedown",function(b){k=f=b.pageY;dat.GUI.makeSelectable(o);document.addEventListener("mousemove",x,false);document.addEventListener("mouseup",v,false)},
false);o.addEventListener("keydown",function(c){switch(c.keyCode){case 13:c=parseFloat(this.value);b.setValue(c);break;case 38:c=b.getValue()+b.getStep();b.setValue(c);break;case 40:c=b.getValue()-b.getStep(),b.setValue(c)}},false);var v=function(){document.removeEventListener("mousemove",x,false);dat.GUI.makeSelectable(o);b.finishChangeFunction!=null&&b.finishChangeFunction.call(this,b.getValue());e=c=false;document.removeEventListener("mouseup",v,false)},x=function(h){k=f;f=h.pageY;var m=k-f;!c&&
!e&&(m==0?c=true:e=true);if(c)return true;dat.GUI.addClass(b.domElement,"active");dat.GUI.makeUnselectable(b.parent.domElement);dat.GUI.makeUnselectable(o);h.preventDefault();h=b.getValue()+m*b.getStep();b.setValue(h);return false};this.options=function(){b.noSlider();b.domElement.removeChild(o);return dat.GUI.Controller.prototype.options.apply(this,arguments)};this.noSlider=function(){t&&b.domElement.removeChild(t.domElement);return this};this.setValue=function(b){b=parseFloat(b);m!=void 0&&b<=m?
b=m:h!=void 0&&b>=h&&(b=h);return dat.GUI.Controller.prototype.setValue.call(this,b)};this.updateDisplay=function(){o.value=dat.GUI.roundToDecimal(b.getValue(),4);if(t)t.value=b.getValue()}};dat.GUI.extendController(dat.GUI.ControllerNumber);
dat.GUI.ControllerNumberSlider=function(b,c,e,f,k){var m=false,h=this;this.domElement=document.createElement("div");this.domElement.setAttribute("class","guidat-slider-bg");this.fg=document.createElement("div");this.fg.setAttribute("class","guidat-slider-fg");this.domElement.appendChild(this.fg);var n=function(c){if(m){var e;e=h.domElement;var f=0,k=0;if(e.offsetParent){do f+=e.offsetLeft,k+=e.offsetTop;while(e=e.offsetParent);e=[f,k]}else e=void 0;c=dat.GUI.map(c.pageX,e[0],e[0]+h.domElement.offsetWidth,
b.getMin(),b.getMax());c=Math.round(c/b.getStep())*b.getStep();b.setValue(c)}};this.domElement.addEventListener("mousedown",function(c){m=true;dat.GUI.addClass(b.domElement,"active");n(c);document.addEventListener("mouseup",o,false)},false);var o=function(){dat.GUI.removeClass(b.domElement,"active");m=false;b.finishChangeFunction!=null&&b.finishChangeFunction.call(this,b.getValue());document.removeEventListener("mouseup",o,false)};this.__defineSetter__("value",function(c){this.fg.style.width=dat.GUI.map(c,
b.getMin(),b.getMax(),0,100)+"%"});document.addEventListener("mousemove",n,false);this.value=k};
dat.GUI.ControllerString=function(){this.type="string";var b=this;dat.GUI.Controller.apply(this,arguments);var c=document.createElement("input"),e=this.getValue();c.setAttribute("value",e);c.setAttribute("spellcheck","false");this.domElement.addEventListener("mouseup",function(){c.focus();c.select()},false);c.addEventListener("keyup",function(e){e.keyCode==13&&b.finishChangeFunction!=null&&(b.finishChangeFunction.call(this,b.getValue()),c.blur());b.setValue(c.value)},false);c.addEventListener("mousedown",
function(){dat.GUI.makeSelectable(c)},false);c.addEventListener("blur",function(){dat.GUI.supressHotKeys=false;b.finishChangeFunction!=null&&b.finishChangeFunction.call(this,b.getValue())},false);c.addEventListener("focus",function(){dat.GUI.supressHotKeys=true},false);this.updateDisplay=function(){c.value=b.getValue()};this.options=function(){b.domElement.removeChild(c);return dat.GUI.Controller.prototype.options.apply(this,arguments)};this.domElement.appendChild(c)};dat.GUI.extendController(dat.GUI.ControllerString);
dat.GUI.inlineCSS="#guidat { position: fixed; top: 0; right: 0; width: auto; z-index: 1001; text-align: right; } .guidat { color: #fff; opacity: 0.97; text-align: left; float: right; margin-right: 20px; margin-bottom: 20px; background-color: #fff; } .guidat, .guidat input { font: 9.5px Lucida Grande, sans-serif; } .guidat-controllers { height: 300px; overflow-y: auto; overflow-x: hidden; background-color: rgba(0, 0, 0, 0.1); } a.guidat-toggle:link, a.guidat-toggle:visited, a.guidat-toggle:active { text-decoration: none; cursor: pointer; color: #fff; background-color: #222; text-align: center; display: block; padding: 5px; } a.guidat-toggle:hover { background-color: #000; } .guidat-controller { padding: 3px; height: 25px; clear: left; border-bottom: 1px solid #222; background-color: #111; } .guidat-controller, .guidat-controller input, .guidat-slider-bg, .guidat-slider-fg { -moz-transition: background-color 0.15s linear; -webkit-transition: background-color 0.15s linear; transition: background-color 0.15s linear; } .guidat-controller.boolean:hover, .guidat-controller.function:hover { background-color: #000; } .guidat-controller input { float: right; outline: none; border: 0; padding: 4px; margin-top: 2px; background-color: #222; } .guidat-controller select { margin-top: 4px; float: right; } .guidat-controller input:hover { background-color: #444; } .guidat-controller input:focus, .guidat-controller.active input { background-color: #555; color: #fff; } .guidat-controller.number { border-left: 5px solid #00aeff; } .guidat-controller.string { border-left: 5px solid #1ed36f; } .guidat-controller.string input { border: 0; color: #1ed36f; margin-right: 2px; width: 148px; } .guidat-controller.boolean { border-left: 5px solid #54396e; } .guidat-controller.function { border-left: 5px solid #e61d5f; } .guidat-controller.number input[type=text] { width: 35px; margin-left: 5px; margin-right: 2px; color: #00aeff; } .guidat .guidat-controller.boolean input { margin-top: 6px; margin-right: 2px; font-size: 20px; } .guidat-controller:last-child { border-bottom: none; -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5); -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5); box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5); } .guidat-propertyname { padding: 5px; padding-top: 7px; cursor: default; display: inline-block; } .guidat-controller .guidat-slider-bg:hover, .guidat-controller.active .guidat-slider-bg { background-color: #444; } .guidat-controller .guidat-slider-bg .guidat-slider-fg:hover, .guidat-controller.active .guidat-slider-bg .guidat-slider-fg { background-color: #52c8ff; } .guidat-slider-bg { background-color: #222; cursor: ew-resize; width: 40%; margin-top: 2px; float: right; height: 21px; } .guidat-slider-fg { cursor: ew-resize; background-color: #00aeff; height: 21px; } ";
define("dat/gui/dat.GUI.min",function(){});
define("dat/mahog/Bookshelf","dat/mahog/shaders/BookUniforms,dat/mahog/Library,dat/mahog/MorphingBook,dat/mahog/StaticBook,dat/mahog/params,dat/mahog/BookDisplayer,dat/mahog/utils,dat/mahog/SpiralShelf,dat/mahog/CONFIG,dat/mahog/DomLabelManager,dat/mahog/animate,dat/mahog/Genre2DOverlay,dat/utils/Easing,dat/utils/utils,dat/utils/Routine,dat/utils/showMessage,dat/utils/urlArgs,text!dat/mahog/data/categories.json,order!dat/gui/dat.GUI.min,jquery,three,stats,RequestAnimationFrame,underscore".split(","),function(b,
c,e,f,k,m,h,n,o,t,u,v,x,w,B,A,y,D){var D=JSON.parse(D),C=!!y.disableClickToRead;return function(){var A,z;function E(){ha=new dat.GUI({height:A-40});G=new THREE.Camera(k.baseFov,z/A,1,1E4);Ga=G.position.y-1;Ha=new THREE.Projector;qa=new THREE.Scene;qa.fog=new THREE.Fog(0,k.near,k.far);qa.matrixAutoUpdate=false;Ea=new e(new THREE.Texture,new THREE.Texture);u(Ea);Ea.hide();Ea.mesh.matrixAutoUpdate=true;qa.addObject(Ea.mesh);qa.addLight(Va);qa.addLight(db);if(y.stats=="true"||y.stats=="1")ra=new Stats,
ra.domElement.style.position="absolute",ra.domElement.style.bottom="20px",ra.domElement.style.left="20px",ra.domElement.style.opacity="0.6",ra.domElement.style.zIndex=100,ra.domElement.setAttribute("id","stats"),U.domElement.appendChild(ra.domElement);THREE.currentRenderer=Aa;Aa.sortObjects=false;U.domElement.appendChild(Aa.domElement);if(y.installation!=void 0||y.installation_debug!=void 0){var b=document.createElement("style");b.type="text/css";b.styleSheet?b.styleSheet.cssText="*, html, body, div, canvas { cursor: url(/textures/ui/invisible.gif), none !important; }":
b.appendChild(document.createTextNode("*, html, body, div, canvas { cursor: url(/textures/ui/invisible.gif), none !important; }"));document.getElementsByTagName("head")[0].appendChild(b)}wa=document.createElement("div");wa.setAttribute("class","closebutton");U.domElement.appendChild(wa);$(wa).click(function(b){b.stopPropagation();U.returnBookToShelf()});pa=document.createElement("div");pa.setAttribute("id","click-to-read");pa.style.display="none";pa.innerHTML='<a href="#" target="_blank">Click here to get the book.</a>';
U.domElement.appendChild(pa);window.addEventListener("resize",N,false);N()}function N(){var b=$("#content");Aa.setSize(b.width(),b.height());G.aspect=b.width()/b.height();G.updateProjectionMatrix();z=b.width();A=b.height();Ka=true}function I(){var b=Math.floor(h.yToIndex(U.getClimbDest())),c=k.grabTextures,e=w.wrap(b-c/2,o.count),b=w.wrap(b+c/2,o.count),c=G.target.position.y-G.position.y,f=U.getCurrentBookIndex(),f=U.getGenre(f);f!=ta&&(Ka=true,ta=f,_.each(U.bookDisplayers,function(b){b.onGenreChange()}),
Ka=true);e>b?(U.library.see(e,o.count-1,c),U.library.see(0,b,c)):U.library.see(e,b,c)}function P(){G.vel=Math.abs(Ga-G.position.y);if(Ga!=G.position.y)for(var b=0;b<U.bookDisplayers.length;b++){var c=U.bookDisplayers[b],e;e=b;var f=k.loopHeight,m=w.lerp(G.position.y,G.target.position.y,0.1);if(G.position.y>G.target.position.y){for(;h.indexToY(e)<m-f;)e+=ab;for(;h.indexToY(e)>m+f;)e-=ab}else{for(;h.indexToY(e)>m+f;)e-=ab;for(;h.indexToY(e)<m-f;)e+=ab}f=w.wrap(e,o.count);c.setBookIndex(f);e=h.indexToY(e);
f=h.yToOrbit(e);c.restPosition.x=Math.cos(f)*k.spiralRadius;c.restPosition.y=e+c.getHeight()/2;c.restPosition.z=Math.sin(f)*k.spiralRadius;c.restRotation.y=-(f%(Math.PI*2))+k.bookTwist;c.mesh.position.copy(c.restPosition);c.mesh.rotation.copy(c.restRotation);c.mesh.updateMatrix()}Ga=G.position.y}function H(){y.saveString==void 0&&(y.installation!=void 0||y.installation_debug!=void 0?dat.GUI.load("1,0,true,304,767,0,1300,1240,1100,68,1.8221,true,40,110,0.5708,1.6445,202,39,950,1.25,618,237,725,1400,1525,3000,-15,56,0,0,20"):
dat.GUI.load("1,0,true,280,0,0,500,400,950,74,1.8221,true,28,52,0.5708,1.6445,279,52,355,1.25,665,120,550,1250,1500,3000,54,30,0,0,20"));dat.GUI.close();ha.listenAll();ha.add(k,"numBookDisplayers").min(0).step(5);ha.add(k,"loopHeight").step(10);ha.add(k,"cameraDistance").step(50);ha.add(k,"shelfHeight").onChange(P);ha.add(k,"bookTwist",0,Math.PI*2).onChange(P);ha.add(k,"scaleFov");ha.add(k,"baseFov");ha.add(k,"maxFov");ha.add(k,"fovCap").max(Math.PI/2).step(0.05);ha.add(k,"fovCurve",0.01,3);ha.add(k,
"spiralRadius").onChange(P);ha.add(k,"booksPerCircle").onChange(P);ha.add(k,"grabTextures").min(1);ha.add(k,"shelfYOffset").step(0.25);ha.add(k,"lightDistance");ha.add(k,"openDistance");ha.add(qa.fog,"near").step(25).onChange(function(c){b.fogNear.value=c;za(c,b.fogFar.value)});ha.add(qa.fog,"far").step(25).onChange(function(c){b.fogFar.value=c;za(b.fogNear.value,c)});ha.add(k,"cameraTargetDriftLength").step(25);ha.add(k,"cameraPositionDriftLength").step(25);ha.add(k,"labelOffsetY").step(1);ha.add(k,
"labelOffsetX").step(1);ha.add(k,"offsetTheta").step(Math.PI/16).min(-Math.PI*2).max(Math.PI*2);ha.add(k,"focusOffset");ha.add(k,"maxTextures")}function W(b){var b=b||function(){return true},c=new THREE.Vector3(Qa/z*2-1,-(La/A)*2+1,0.5);Ha.unprojectVector(c,G);c=(new THREE.Ray(G.position,c.subSelf(G.position).normalize())).intersectScene(qa);for(i=0;i<c.length;i++){var e=c[i].object;if(b(e,c[i].distance))return e}return null}function M(b){if(b.generated||!y.installation)return ib=Qa||0,hb=La||0,Qa=
(b.x||b.clientX)+$("body").scrollLeft(),La=(b.y||b.clientY)+$("body").scrollTop(),false}function J(b){if(b.generated||!y.installation){b.preventDefault();var c=false;fa.cameraPositionY!=fa.cameraTargetPositionY&&(c=true);fa.animate.clear();c&&fa.animate({to:{cameraPositionY:fa.cameraTargetPositionY},duration:k.cameraTargetDriftLength,curve:x.Exponential.EaseOut});va=ib=Qa=(b.x||b.clientX)+$("body").scrollLeft();Ia=hb=La=(b.y||b.clientY)+$("body").scrollTop();sa=W(aa)!==null;Sa=false;U.domElement.addEventListener("mousemove",
Q,false);U.domElement.addEventListener("mouseup",V,false);window.addEventListener("mouseout",V,false);return false}}function Q(b){if(b.generated||!y.installation){if(!Sa&&w.dist(va,Ia,Qa,La)>k.dragEpsilon){Sa=true;va=Qa;Ia=La;gb=Ea.opened;var b={},c;for(c in fa)b[c]=fa[c];Ba=b}else if(!Sa)return false;Sa=true;if(m.loading)m.cancel();else if(m.active!=null)if(sa)return ea(),da(),c=w.map(Qa,va,va-k.fullOpenEffort,0,1),c+=gb,c=w.clamp(c,0,1),p(c),false;else U.returnBookToShelf(),m.cancel();b=w.map(Qa,
va,va+300,Ba.orbit,Ba.orbit+Math.PI/8);c=w.map(La,Ia,Ia+2.5,Ba.cameraTargetPositionY,Ba.cameraTargetPositionY+0.5*(5/6));fa.animate.clear();fa.animate({to:{orbit:b,cameraPositionY:c,cameraTargetPositionY:c},duration:0});Ka=true;return false}}function O(b){if(b.generated||!y.installation){m.active!=null&&(m.cancel(),U.returnBookToShelf());var c=fa.orbit-b.wheelDeltaX/1E3,b=fa.cameraTargetPositionY-b.wheelDeltaY/6;fa.animate.clear();fa.animate({to:{orbit:c,cameraPositionY:b,cameraTargetPositionY:b},
duration:0});Ka=true;return false}}function Y(b){if((b.generated||!y.installation)&&!Sa){var c=b=null;oa.showing||(b=W(ca),c=W(aa),m.active!=null&&c!=null?(ea(function(){S(true)}),da()):m.active==null?b!=null&&U.showCover(b.bookDisplayer):b!=null&&b.bookDisplayer!=m.active?(m.loading&&!m.active.comingOut?m.cancel():U.returnBookToShelf(),U.showCover(b.bookDisplayer)):U.returnBookToShelf())}}function V(b){if(b.generated||!y.installation){sa=false;if(m.active==null&&Sa){var c;c=Qa-ib;b=La-hb;fa.animate({to:{orbit:fa.orbit+
c*0.03},duration:k.cameraTargetDriftLength,curve:x.Exponential.EaseOut});c=5;fa.animate({to:{cameraPositionY:fa.cameraPositionY+b*c,cameraTargetPositionY:fa.cameraTargetPositionY+b*c},duration:k.cameraPositionDriftLength,curve:x.Exponential.EaseOut})}else m.active&&m.active.fullyOut&&Sa&&S();U.domElement.removeEventListener("mousemove",Q);U.domElement.removeEventListener("mouseup",V);window.removeEventListener("mouseout",V);return false}}function Z(){requestAnimationFrame(Z);Ka=u.update()||Ka||m.loading||
U.frameCount<6E5;U.frameCount++;var b=Math.abs(Math.atan2(fa.cameraTargetPositionY-fa.cameraPositionY,k.cameraDistance-k.spiralRadius)),b=Math.min(b,k.fovCap),b=Math.pow(b/k.fovCap,k.fovCurve);R=k.baseFov+(k.scaleFov?b*(k.maxFov-k.baseFov):0);b=k.cameraDistance*k.baseFov/R;G.fov=R;G.updateProjectionMatrix();G.position.x=Math.cos(fa.orbit)*b;G.position.z=Math.sin(fa.orbit)*b;G.target.position.y=fa.cameraTargetPositionY+h.orbitToY(fa.orbit);G.position.y=fa.cameraPositionY+h.orbitToY(fa.orbit);Va.position.x=
Math.cos(fa.orbit+Math.PI/3);Va.position.z=Math.sin(fa.orbit+Math.PI/3);Va.position.normalize();db.position.x=Math.cos(fa.orbit)*k.lightDistance;db.position.z=Math.sin(fa.orbit)*k.lightDistance;db.position.y=G.position.y;ia.mesh.position.y=Math.floor(G.position.y/k.shelfHeight)*k.shelfHeight;ia.mesh.updateMatrix();Ca.update();P();for(var b=0,c=U.bookDisplayers.length;b<c;b++)U.bookDisplayers[b].update(G);b=U.library.update();(Ka||b)&&Aa.render(qa,G);(y.stats=="true"||y.stats=="1")&&ra.update();Ka=
false}function K(b){Ea.animate({from:{open:0},to:{open:1},duration:(k.maxOpen-Ea.opened)/k.openVel,onUpdate:la(true),onComplete:function(){ga(true);y.installation===void 0&&y.installation_debug===void 0&&ya();_.isFunction(b)&&b()}})}function X(b){Ea.animate({from:{open:1},to:{open:0},duration:Ea.opened/k.openVel,onUpdate:la(false),onComplete:function(){ga(false);y.installation===void 0&&y.installation_debug===void 0&&$(pa).fadeOut();_.isFunction(b)&&b()}})}function S(b){var c=Ea.opened>(gb>0.5?k.maxOpen-
k.openThreshold:k.openThreshold);b&&(c=!c);c?U.openBook():U.closeBook()}function p(b){if(m.active!=null)Ea.opened=w.lerp(0,k.maxOpen,b),Ea.mesh.rotation.y=w.cmap(x.Sinusoidal.EaseInOut(b),0,1,m.active.targetAngle,m.active.targetAngle-Math.PI/2),Ka=true}function ca(b,c){return b.bookDisplayer!==void 0&&b.visible&&c<k.cameraDistance}function aa(b){for(var c in Ea.mesh.children)if(b==Ea.mesh.children[c])return true;return false}function la(b){var c=w.map(Ea.opened,0,k.maxOpen,0,1);return function(e,
f){var h=w.map(f,0,1,c,b?1:0),h=b?w.map(x.Circular.EaseOut(f),0,1,c,1):w.map(x.Quadratic.EaseOut(f),0,1,c,0);p(h)}}function ka(b){var b=_.isUndefined(b)?0:Math.round(b),c=Ha.projectVector(Ea.getTopRight(b),G),b=A/2*(1-c.y)-$(wa).height()/2,c=z/2*(c.x+1)-$(wa).width()/2;wa.style.top=b+"px";wa.style.left=c+"px"}function ja(b){var c=Ha.projectVector(Ea.getBottomMiddleRight(b),G),b=A/2*(1-c.y)-$(pa).height()/2,c=z/2*(c.x+1)-$(pa).width()/2;pa.style.top=b+"px";pa.style.left=c+"px"}function ea(b){$(wa).fadeOut(k.closeButtonFadeSpeed,
function(){window.removeEventListener("resize",ma,false);_.isFunction(b)&&b()})}function da(b){$(pa).fadeOut(k.closeButtonFadeSpeed,function(){window.removeEventListener("resize",na,false);_.isFunction(b)&&b()})}function ga(b){ka(b);$(wa).fadeIn(function(){window.addEventListener("resize",ma,false)})}function ya(){C||(ja(1),$(pa).fadeIn(function(){window.addEventListener("resize",na,false)}))}function ma(){ka(Ea.open)}function na(){ja(1)}function za(b,c){_.each(U.bookDisplayers,function(e){e.staticBook.material.uniforms.fogNear.value=
b;e.staticBook.material.uniforms.fogFar.value=c})}this.__defineSetter__("numBookDisplayers",function(b){for(;U.bookDisplayers.length<b;){var c=new m(U,G,Ea);U.bookDisplayers.push(c);qa.addObject(c.mesh)}ab=b});this.__defineGetter__("numBookDisplayers",function(){return ab});this.bookDisplayers=[];this.domElement=document.createElement("div");this.domElement.setAttribute("id","content");var ta,Aa=new THREE.WebGLRenderer({antialias:true});this.library=new c(Aa);this.frameCount=0;this.getClimbDest=function(){return fa.animate.dest("cameraTargetPositionY")+
h.orbitToY(fa.animate.dest("orbit"))};this.goToBookById=function(b,e){U.returnBookToShelf();var f=c.ids.indexOf(b);if(f<0)console.log("Error index of "+b+" not found: "+f);else{var h=e;e===true&&(h=function(){U.showCover(f)});U.goToBookByIndex(f,h)}};this.getActiveBookId=function(){return m.active!=null?m.active.getBookID():null};this.goToBookByIndex=function(b,c){var e=h.indexToY(b),e=h.yToOrbit(e),f=Math.floor(e/(Math.PI*2));e%=Math.PI*2;f+=1;for(var f=-f*k.shelfHeight,m=e-fa.orbit;Math.abs(m)>
Math.PI*2;)e-=w.sign(m)*Math.PI*2,f-=w.sign(m)*k.shelfHeight,m=e-fa.orbit;U.returnBookToShelf();fa.animate({to:{cameraTargetPositionY:f},duration:k.cameraTargetDriftLength,curve:x.Circular.EaseOut});fa.animate({to:{cameraPositionY:f,orbit:e},duration:k.cameraPositionDriftLength,curve:x.Quadratic.EaseOut,onComplete:c})};this.goToGenre=function(b,c){var e=0,f;for(f in ua)if(ua[f].name===b)break;else e+=ua[f].count;e=Math.max(e,k.booksPerCircle);U.goToBookByIndex(e,c,U.showCover)};this.getCurrentGenre=
function(){return ta};this.getGenre=function(b){var c=0,e;for(e in ua)if(c+=ua[e].count,c>b)return ua[e].name;return ua[0].name};this.showCover=function(b,c){Ca.fadeOut();if(!m.active||m.active.fullyOut){if(_.isNumber(b)){var e=b,b=U.bookDisplayers[e];if(_.isUndefined(b))b=U.library.fetch(e).bookDisplayer}else if(_.isUndefined(b)||_.isNull(b))b=U.library.fetch(U.getCurrentBookIndex()).bookDisplayer;if(!m.loading&&m.active!=b)m.active=b,U.lastOpenedId=b.getBookID(),b.open(function(){ga(0);_.isFunction(c)&&
c()},function(b){b.error===void 0&&$(pa).find("a").attr("href",b.volumeInfo.infoLink)})}};this.openBook=function(b){$(wa).css("opacity")<1||$(wa).css("display")==="none"?K(b):(ea(b),da())};this.closeBook=function(b){$(wa).css("opacity")<1||$(wa).css("display")==="none"?X(b):(ea(b),da())};this.getCurrentBookIndex=function(){var b=h.indexToY(o.count),c=w.wrap(U.getClimbDest()+k.shelfHeight,b),c=h.yToIndex(c),e=c/k.booksPerCircle;e-=h.orbitToY(fa.orbit)/k.shelfHeight;var f=k.booksPerCircle-o.count%k.booksPerCircle,
b=Math.floor(U.getClimbDest()/b);c+=b*f;e%1<0.5?c-=w.wrap(e,1)*k.booksPerCircle:(c-=(e-0.5)%1*k.booksPerCircle,c-=k.booksPerCircle/2);c+=k.booksPerCircle*k.focusOffset;c=w.wrap(c,o.count);return Math.round(c)};this.returnBookToShelf=function(){m.loading&&m.cancel();ea();da();Ca.fadeIn();m.active!=null&&m.active.close();m.active=null};var Fa=null,Da=false,U=this,Ha,qa,ra,R,G,Ga,ha,ia,ua,oa,sa=false,Ca,pa,wa,fa={cameraPositionY:0,cameraTargetPositionY:0,orbit:0};this.ready=function(b){clearTimeout(Fa);
Da?_.isFunction(b)&&b(U):Fa=setTimeout(this.ready,7E3,b)};u(fa);fa.animate.destinationChange=I;var va,Ia,Ba,nb=new THREE.AmbientLight(16777215,1),Va=new THREE.DirectionalLight(16777215,1),db=new THREE.PointLight(16777215,1);Va.position.set(1,0.2,0);Va.position.normalize();var gb=0,ab=0,Sa=false,ib=0,hb=0,Qa=0,La=0,Ea;A=void 0;z=void 0;if(y.rows!==void 0||y.cols!==void 0){var Ma=y.rows||1,Pa=y.cols||1,Wa=y.bezel||0;z=Pa*window.innerWidth+(Pa-1)*Wa;A=Ma*window.innerHeight+(Ma-1)*Wa}else z=parseInt(y.fullWidth)||
window.innerWidth,A=parseInt(y.fullHeight)||window.innerHeight,parseInt(y.viewX),parseInt(y.viewY);Ma=new B;Ma.wait(e.loadAssets);Ma.wait(f.loadAssets);Ma.wait(function(b){E();ua=D;H();oa=new v(ua,U.goToGenre,Aa.domElement);U.domElement.appendChild(oa.domElement);Ca=new t(ua,U,oa);b()});Ma.wait(function(b){ia=new n(nb,Va,db);qa.addObject(ia.mesh);U.numBookDisplayers=k.numBookDisplayers;I();Z();b()});Ma.wait(function(b){Da=true;b()});Ma.run();this.addEventListeners=function(){U.domElement.addEventListener("mousemove",
M,false);U.domElement.addEventListener("mousedown",J,false);U.domElement.addEventListener("click",Y,false);U.domElement.addEventListener("mousewheel",O,false);_.isUndefined(void 0)||$(void 0).click(function(){oa.show()});Ca.hidden&&Ca.fadeIn()};this.removeEventListeners=function(){U.domElement.removeEventListener("mousemove",M,false);U.domElement.removeEventListener("mousedown",J,false);U.domElement.removeEventListener("click",Y,false);U.domElement.removeEventListener("mousewheel",O,false);_.isUndefined(void 0)||
$(void 0).unbind("click")};var Ka=true}});
| 865.901221 | 175,500 | 0.673915 |
c8b2c0ff82237805d240edd4e4a68850268aa6d7 | 1,888 | js | JavaScript | node_modules/pxt-core/built/web/worker.js | emwta/pxt-iBit | b1fb7fd41f208491ae0ab2175cd78ecbbf4b0691 | [
"MIT"
] | 7 | 2018-02-15T11:14:50.000Z | 2022-03-05T09:58:49.000Z | node_modules/pxt-core/built/web/worker.js | emwta/pxt-iBit | b1fb7fd41f208491ae0ab2175cd78ecbbf4b0691 | [
"MIT"
] | 7 | 2018-04-27T18:18:06.000Z | 2019-10-16T06:48:11.000Z | node_modules/pxt-core/built/web/worker.js | emwta/pxt-iBit | b1fb7fd41f208491ae0ab2175cd78ecbbf4b0691 | [
"MIT"
] | 16 | 2018-03-19T08:16:43.000Z | 2022-03-05T09:58:55.000Z | /// <reference path="../../built/pxtlib.d.ts"/>
importScripts("/blb/typescript.js", "/blb/fuse.min.js", "/blb/pxtlib.js");
var pm = postMessage;
// work around safari not providing atob
if (typeof atob === "undefined") {
// http://www.rise4fun.com/Bek/base64encode
pxtc.decodeBase64 = function (_input) {
function _base64(_x) { return ((_x <= 0x19) ? (_x + 0x41) : ((_x <= 0x33) ? (_x + 0x47) : ((_x <= 0x3D) ? (_x - 0x4) : ((_x == 0x3E) ? 0x2B : 0x2F)))); }
;
var result = new Array();
var _q = 0x0;
var _r = 0x0;
for (var _i = 0; _i < _input.length; _i++) {
var _x = _input.charCodeAt(_i);
if ((_x > 0xFF)) {
//throw { name: 'InvalidCharacter' };
return undefined;
}
else if ((_q == 0x0)) {
result.push(String.fromCharCode(_base64((_x >> 0x2))));
_q = 0x1;
_r = ((_x & 0x3) << 0x4);
}
else if ((_q == 0x1)) {
result.push(String.fromCharCode(_base64((_r | (_x >> 0x4)))));
_q = 0x2;
_r = ((_x & 0xF) << 0x2);
}
else if ((_q == 0x2)) {
result.push(String.fromCharCode(_base64((_r | (_x >> 0x6))), _base64((_x & 0x3F))));
_q = 0x0;
_r = 0x0;
}
}
if ((_q == 0x1)) {
result.push(String.fromCharCode(_base64(_r), 0x3D, 0x3D));
}
else if ((_q == 0x2)) {
result.push(String.fromCharCode(_base64(_r), 0x3D));
}
return result.join('');
};
}
onmessage = function (ev) {
var res = pxtc.service.performOperation(ev.data.op, ev.data.arg);
pm({
op: ev.data.op,
id: ev.data.id,
result: JSON.parse(JSON.stringify(res))
});
};
pm({
id: "ready"
});
| 34.327273 | 161 | 0.461864 |
c8b4cb015fc3ed712725009368a63613a918d199 | 5,545 | js | JavaScript | node_modules/@covalent/core/steps/step-header/step-header.component.js | QuantumRich/cov-quick | 7497122bd7f95d56c851fac07079d0b987f1d718 | [
"MIT"
] | null | null | null | node_modules/@covalent/core/steps/step-header/step-header.component.js | QuantumRich/cov-quick | 7497122bd7f95d56c851fac07079d0b987f1d718 | [
"MIT"
] | null | null | null | node_modules/@covalent/core/steps/step-header/step-header.component.js | QuantumRich/cov-quick | 7497122bd7f95d56c851fac07079d0b987f1d718 | [
"MIT"
] | null | null | null | var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
import { Component, Input } from '@angular/core';
import { StepState } from '../step.component';
export var TdStepHeaderComponent = (function () {
function TdStepHeaderComponent() {
/**
* state?: StepState or ['none' | 'required' | 'complete']
* Sets styles for state of header.
* Defaults to [StepState.None | 'none'].
*/
this.state = StepState.None;
}
/**
* Returns 'true' if [state] equals to [StepState.Complete | 'complete'], else 'false'.
*/
TdStepHeaderComponent.prototype.isComplete = function () {
return this.state === StepState.Complete;
};
;
/**
* Returns 'true' if [state] equals to [StepState.Required | 'required'], else 'false'.
*/
TdStepHeaderComponent.prototype.isRequired = function () {
return this.state === StepState.Required;
};
;
__decorate([
Input('number'),
__metadata('design:type', Number)
], TdStepHeaderComponent.prototype, "number", void 0);
__decorate([
Input('label'),
__metadata('design:type', String)
], TdStepHeaderComponent.prototype, "label", void 0);
__decorate([
Input('sublabel'),
__metadata('design:type', String)
], TdStepHeaderComponent.prototype, "sublabel", void 0);
__decorate([
Input('active'),
__metadata('design:type', Boolean)
], TdStepHeaderComponent.prototype, "active", void 0);
__decorate([
Input('disabled'),
__metadata('design:type', Boolean)
], TdStepHeaderComponent.prototype, "disabled", void 0);
__decorate([
Input('state'),
__metadata('design:type', Number)
], TdStepHeaderComponent.prototype, "state", void 0);
TdStepHeaderComponent = __decorate([
Component({
selector: 'td-step-header',
styles: [":host /deep/ md-nav-list { padding-top: 0px; } :host /deep/ md-nav-list [md-list-item]:active, :host /deep/ md-nav-list [md-list-item]:focus { outline: none; } :host /deep/ md-nav-list [md-list-item].md-interaction-disabled .md-list-item { background: none !important; } :host /deep/ md-nav-list .md-list-item { flex: 1; height: 72px !important; padding: 0px !important; } .md-ripple-boundary { position: relative; height: 72px; } .td-step-header md-icon.td-edit-icon { margin-right: 8px; } .md-caption { color: rgba(0, 0, 0, 0.54); } .md-disabled, .md-disabled * { color: rgba(0, 0, 0, 0.38); } .md-warn, .md-warn * { color: #f44336; } .md-complete { color: #2196f3; } md-icon.md-warn { font-size: 24px; height: 24px; width: 24px; } md-icon.md-complete { position: relative; left: -2px; top: 2px; font-size: 28px; height: 24px; width: 24px; } .td-circle { height: 24px; width: 24px; line-height: 24px; border-radius: 99%; color: #ffffff; text-align: center; flex: none; } .td-circle.md-active { background-color: #2196f3; } .td-circle.md-inactive { background-color: rgba(0, 0, 0, 0.38); } .td-circle md-icon { fill: #ffffff; margin-top: 2px; font-weight: bold; } .td-triangle { color: #f44336; } .td-triangle > md-icon { font-size: 27px; } .td-complete { font-size: 0; } .td-circle, .td-complete { margin-left: 8px; font-size: 14px; } .td-triangle { margin-left: 7px; } .td-step-label { padding-left: 8px; padding-right: 8px; } .td-step-sublabel { line-height: 14px; font-weight: normal; } "],
template: "<div class=\"td-step-header\" layout=\"row\" layout-align=\"start center\" flex> <md-nav-list flex> <a md-list-item [class.md-interaction-disabled]=\"disabled\" [tabIndex]=\"disabled ? -1 : 0\" flex> <div class=\"md-ripple-boundary\" md-ripple [md-ripple-disabled]=\"disabled\" layout=\"row\" layout-align=\"start center\" flex> <div class=\"td-circle\" [class.md-inactive]=\"(!active && !isComplete()) || disabled\" [class.md-active]=\"active && !disabled\" *ngIf=\"!isRequired() && !isComplete()\"> <span *ngIf=\"(active || !isComplete())\">{{number || ''}}</span> </div> <div class=\"td-complete\" *ngIf=\"isComplete()\"> <md-icon class=\"md-complete\">check_circle</md-icon> </div> <div class=\"td-triangle\" [class.bg-muted]=\"disabled\" *ngIf=\"isRequired()\"> <md-icon class=\"md-warn\">warning</md-icon> </div> <div class=\"td-step-label\" [class.md-disabled]=\"(!active && !isComplete()) || disabled\" [class.md-warn]=\"isRequired() && !disabled\"> <div class=\"md-body-2\">{{label}}</div> <div class=\"md-caption td-step-sublabel\">{{sublabel}}</div> </div> <span flex></span> <md-icon class=\"td-edit-icon\" *ngIf=\"isComplete() && !active && !disabled\">mode_edit</md-icon> </div> </a> </md-nav-list> </div>",
}),
__metadata('design:paramtypes', [])
], TdStepHeaderComponent);
return TdStepHeaderComponent;
}());
//# sourceMappingURL=step-header.component.js.map
| 78.098592 | 1,517 | 0.628494 |
c8b4da926e6d01aa42e0050b4c5bfacf35a7be0f | 29,322 | js | JavaScript | public/chunks/category.bundle.js | ShibbirAhmad/bondhon_society_web_app | bd28199a65d7b221c93c57163fceccbc858f6ddb | [
"MIT"
] | 1 | 2021-07-10T06:46:46.000Z | 2021-07-10T06:46:46.000Z | public/chunks/category.bundle.js | ShibbirAhmad/bondhon_web_app_final | cafc28c7e58b0c0fbdb0b7b22bbe68fe0effd597 | [
"MIT"
] | null | null | null | public/chunks/category.bundle.js | ShibbirAhmad/bondhon_web_app_final | cafc28c7e58b0c0fbdb0b7b22bbe68fe0effd597 | [
"MIT"
] | null | null | null | (window["webpackJsonp"] = window["webpackJsonp"] || []).push([["category"],{
/***/ "./node_modules/babel-loader/lib/index.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/admin/category/Category.vue?vue&type=script&lang=js&":
/*!**********************************************************************************************************************************************************************************!*\
!*** ./node_modules/babel-loader/lib??ref--4-0!./node_modules/vue-loader/lib??vue-loader-options!./resources/js/components/admin/category/Category.vue?vue&type=script&lang=js& ***!
\**********************************************************************************************************************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var _Index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Index */ "./resources/js/components/admin/Index.vue");
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
/* harmony default export */ __webpack_exports__["default"] = ({
components: {
Index: _Index__WEBPACK_IMPORTED_MODULE_0__["default"]
},
created: function created() {
var _this = this;
setTimeout(function () {
_this.category();
}, 500);
},
data: function data() {
return {
categories: {},
loading: true,
search: '',
basePath: this.$store.state.image_base_link
};
},
methods: {
category: function category() {
var _this2 = this;
axios.get('/list/category').then(function (resp) {
console.log(resp); // console.log(resp.data.admins.data)
if (resp.data.status == 'SUCCESS') {
_this2.categories = resp.data.categories;
_this2.loading = false;
} else {
_this2.$toasted.show('some thing want to wrong', {
type: "error",
position: 'top-center',
duration: 5000
});
}
})["catch"](function (error) {
_this2.$toasted.show('some thing want to wrong', {
type: "error",
position: 'top-center',
duration: 4000
});
});
},
unselected: function unselected(category) {
var _this3 = this;
axios.get('/unselected/category/' + category.id).then(function (resp) {
//console.log(resp)
if (resp.data.status == 'SUCCESS') {
_this3.category();
_this3.$toasted.show(resp.data.message, {
type: "success",
position: 'top-center',
duration: 4000
});
} else {
_this3.$toasted.show('something want to wrong', {
type: "error",
position: 'top-center',
duration: 4000
});
}
})["catch"](function (error) {
_this3.$toasted.show('some thing want to wrong', {
type: "error",
position: 'top-center',
duration: 4000
});
});
},
selected: function selected(category) {
var _this4 = this;
axios.get('/selected/category/' + category.id).then(function (resp) {
// console.log(resp)
if (resp.data.status == 'SUCCESS') {
_this4.category();
_this4.$toasted.show(resp.data.message, {
type: "success",
position: 'top-center',
duration: 4000
});
} else {
_this4.$toasted.show('some thing want to wrong', {
type: "error",
position: 'top-center',
duration: 4000
});
}
})["catch"](function (error) {
_this4.$toasted.show('some thing want to wrong', {
type: "error",
position: 'top-center',
duration: 4000
});
});
},
active: function active(category) {
var _this5 = this;
axios.get('/active/category/' + category.id).then(function (resp) {
// console.log(resp)
if (resp.data.status == 'SUCCESS') {
_this5.category();
_this5.$toasted.show(resp.data.message, {
type: "success",
position: 'top-center',
duration: 4000
});
} else {
_this5.$toasted.show('some thing want to wrong', {
type: "error",
position: 'top-center',
duration: 4000
});
}
})["catch"](function (error) {
_this5.$toasted.show('some thing want to wrong', {
type: "error",
position: 'top-center',
duration: 4000
});
});
},
deActive: function deActive(category) {
var _this6 = this;
axios.get('/deActive/category/' + category.id).then(function (resp) {
// console.log(resp)
if (resp.data.status == 'SUCCESS') {
_this6.category();
_this6.$toasted.show(resp.data.message, {
type: "success",
position: 'top-center',
duration: 4000
});
} else {
_this6.$toasted.show('some thing want to wrong', {
type: "error",
position: 'top-center',
duration: 4000
});
}
})["catch"](function (error) {
_this6.$toasted.show('some thing want to wrong', {
type: "error",
position: 'top-center',
duration: 4000
});
});
},
searchResult: function searchResult() {
var _this7 = this;
if (this.search.length > 1) {
this.loading = true;
axios.get('/search/category/' + this.search).then(function (resp) {
console.log(resp);
if (resp.data.status == 'SUCCESS') {
_this7.loading = false;
_this7.categories = resp.data.categories;
} else {
_this7.$toasted.show('some thing want to wrong', {
type: "error",
position: 'top-center',
duration: 4000
});
}
})["catch"](function (error) {
_this7.$toasted.show('some thing want to wrong', {
type: "error",
position: 'top-center',
duration: 4000
});
});
} else {
this.category();
}
},
getPagination: function getPagination() {
var _this8 = this;
var page = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 1;
this.loading = true;
axios.get('/list/category?page=' + page).then(function (response) {
_this8.loading = false;
_this8.categories = response.data.categories;
});
}
}
});
/***/ }),
/***/ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/admin/category/Category.vue?vue&type=template&id=0b45bc54&scoped=true&":
/*!**************************************************************************************************************************************************************************************************************************************!*\
!*** ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./resources/js/components/admin/category/Category.vue?vue&type=template&id=0b45bc54&scoped=true& ***!
\**************************************************************************************************************************************************************************************************************************************/
/*! exports provided: render, staticRenderFns */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
var render = function() {
var _vm = this
var _h = _vm.$createElement
var _c = _vm._self._c || _h
return _c(
"div",
[
_c("admin-main"),
_vm._v(" "),
_c("div", { staticClass: "content-wrapper" }, [
_c("section", { staticClass: "content-header" }, [
_c(
"h1",
[
_c(
"router-link",
{
staticClass: "btn btn-primary",
attrs: { to: { name: "categoryAdd" } }
},
[_c("i", { staticClass: "fa fa-plus" })]
),
_vm._v(" "),
_c(
"router-link",
{
staticClass: "btn btn-success",
attrs: { to: { name: "SubCategory" } }
},
[_vm._v("sub category")]
),
_vm._v(" "),
_c(
"router-link",
{
staticClass: "btn btn-primary",
attrs: { to: { name: "subSubCategory" } }
},
[_vm._v("sub sub category")]
)
],
1
),
_vm._v(" "),
_vm._m(0)
]),
_vm._v(" "),
_c("section", { staticClass: "content" }, [
_c("div", { staticClass: "container" }, [
_c("div", { staticClass: "row justify-content-center" }, [
_c("div", { staticClass: "col-lg-8 col-lg-offset-1" }, [
_c("div", { staticClass: "box box-primary" }, [
_c("div", { staticClass: "box-header with-border" }, [
_c("div", { staticClass: "row" }, [
_vm._m(1),
_vm._v(" "),
_c("div", { staticClass: "col-lg-6" }, [
_c("input", {
directives: [
{
name: "model",
rawName: "v-model",
value: _vm.search,
expression: "search"
}
],
staticClass: "form-control",
attrs: {
type: "text",
placeholder: "Enter Category name"
},
domProps: { value: _vm.search },
on: {
keyup: _vm.searchResult,
input: function($event) {
if ($event.target.composing) {
return
}
_vm.search = $event.target.value
}
}
})
])
])
]),
_vm._v(" "),
_c("div", { staticClass: "box-body" }, [
_c("table", { staticClass: "table" }, [
_vm._m(2),
_vm._v(" "),
_c(
"tbody",
[
_vm.loading
? _c("h1", [
_c("i", {
staticClass: "fa fa-spin fa-spinner"
})
])
: _vm._l(_vm.categories.data, function(
category,
index
) {
return _c("tr", { key: index }, [
_c("td", { attrs: { scope: "row" } }, [
_vm._v(_vm._s(index + 1))
]),
_vm._v(" "),
_c("td", [_vm._v(_vm._s(category.name))]),
_vm._v(" "),
_c("td", [
category.icon_image
? _c("img", {
staticClass: "img-circle small-image",
attrs: {
src:
_vm.basePath +
category.icon_image,
alt: "Category Image"
}
})
: _c("img", {
staticClass: "img-circle small-image",
attrs: {
src:
_vm.basePath +
"images/static/noimage.png",
alt: "Category Image"
}
})
]),
_vm._v(" "),
_c("td", [
category.is_selected == 1
? _c("span", { staticClass: "badge" }, [
_c("i", {
staticClass: "fa fa-check"
})
])
: _c("span", { staticClass: "badge" }, [
_c("i", {
staticClass: "fa fa-close"
})
])
]),
_vm._v(" "),
_c("td", [
category.status == 1
? _c("span", { staticClass: "badge" }, [
_vm._v("active")
])
: _c("span", { staticClass: "badge" }, [
_vm._v("De-active")
])
]),
_vm._v(" "),
_c(
"td",
[
_c(
"router-link",
{
staticClass: "btn btn-success btn-sm",
attrs: {
to: {
name: "CategoryEdit",
params: {
categoryId: category.id
}
}
}
},
[_c("i", { staticClass: "fa fa-edit" })]
),
_vm._v(" "),
category.is_selected == 1
? _c(
"a",
{
staticClass: "btn btn-danger",
attrs: { title: "un-selected" },
on: {
click: function($event) {
return _vm.unselected(
category
)
}
}
},
[
_c("i", {
staticClass: "fa fa-close"
})
]
)
: _c(
"a",
{
staticClass: "btn btn-primary",
attrs: { title: "selected" },
on: {
click: function($event) {
return _vm.selected(category)
}
}
},
[
_c("i", {
staticClass: "fa fa-chain"
})
]
),
_vm._v(" "),
category.status == 1
? _c(
"a",
{
staticClass: "btn btn-warning",
attrs: { title: "De-active" },
on: {
click: function($event) {
return _vm.deActive(category)
}
}
},
[
_c("i", {
staticClass: "fa fa-ban"
})
]
)
: _c(
"a",
{
staticClass: "btn btn-primary",
attrs: { title: "active" },
on: {
click: function($event) {
return _vm.active(category)
}
}
},
[
_c("i", {
staticClass: "fa fa-check"
})
]
)
],
1
)
])
})
],
2
)
])
]),
_vm._v(" "),
_c("div", { staticClass: "box-footer" }, [
_c("div", { staticClass: "row" }, [
_c(
"div",
{ staticClass: "col-lg-6" },
[
_c("pagination", {
attrs: { data: _vm.categories },
on: { "pagination-change-page": _vm.getPagination }
})
],
1
),
_vm._v(" "),
_c(
"div",
{
staticClass: "col-lg-6 mt-1",
staticStyle: {
"margin-top": "25px",
"text-align": "right"
}
},
[
_c("p", [
_vm._v("Showing "),
_c("strong", [_vm._v(_vm._s(_vm.categories.from))]),
_vm._v(
" to\n "
),
_c("strong", [_vm._v(_vm._s(_vm.categories.to))]),
_vm._v(
" of total\n "
),
_c("strong", [
_vm._v(_vm._s(_vm.categories.total))
]),
_vm._v(
" entries\n "
)
])
]
)
])
])
])
])
])
])
])
])
],
1
)
}
var staticRenderFns = [
function() {
var _vm = this
var _h = _vm.$createElement
var _c = _vm._self._c || _h
return _c("ol", { staticClass: "breadcrumb" }, [
_c("li", [
_c("a", { attrs: { href: "#" } }, [
_c("i", { staticClass: "fa fa-dashboard" }),
_vm._v("Dashboard")
])
]),
_vm._v(" "),
_c("li", { staticClass: "active" }, [_vm._v("Category")])
])
},
function() {
var _vm = this
var _h = _vm.$createElement
var _c = _vm._self._c || _h
return _c("div", { staticClass: "col-lg-6" }, [
_c("h3", { staticClass: "box-title" }, [_vm._v("Category table")])
])
},
function() {
var _vm = this
var _h = _vm.$createElement
var _c = _vm._self._c || _h
return _c("thead", [
_c("tr", [
_c("th", { attrs: { scope: "col" } }, [_vm._v("#")]),
_vm._v(" "),
_c("th", { attrs: { scope: "col" } }, [_vm._v("Name")]),
_vm._v(" "),
_c("th", { attrs: { scope: "col" } }, [_vm._v("Image")]),
_vm._v(" "),
_c("th", { attrs: { scope: "col" } }, [_vm._v("isSelected")]),
_vm._v(" "),
_c("th", { attrs: { scope: "col" } }, [_vm._v("Status")]),
_vm._v(" "),
_c("th", { attrs: { scope: "col" } }, [_vm._v("Action")])
])
])
}
]
render._withStripped = true
/***/ }),
/***/ "./resources/js/components/admin/category/Category.vue":
/*!*************************************************************!*\
!*** ./resources/js/components/admin/category/Category.vue ***!
\*************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var _Category_vue_vue_type_template_id_0b45bc54_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Category.vue?vue&type=template&id=0b45bc54&scoped=true& */ "./resources/js/components/admin/category/Category.vue?vue&type=template&id=0b45bc54&scoped=true&");
/* harmony import */ var _Category_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Category.vue?vue&type=script&lang=js& */ "./resources/js/components/admin/category/Category.vue?vue&type=script&lang=js&");
/* empty/unused harmony star reexport *//* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ "./node_modules/vue-loader/lib/runtime/componentNormalizer.js");
/* normalize component */
var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__["default"])(
_Category_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
_Category_vue_vue_type_template_id_0b45bc54_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"],
_Category_vue_vue_type_template_id_0b45bc54_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
false,
null,
"0b45bc54",
null
)
/* hot reload */
if (false) { var api; }
component.options.__file = "resources/js/components/admin/category/Category.vue"
/* harmony default export */ __webpack_exports__["default"] = (component.exports);
/***/ }),
/***/ "./resources/js/components/admin/category/Category.vue?vue&type=script&lang=js&":
/*!**************************************************************************************!*\
!*** ./resources/js/components/admin/category/Category.vue?vue&type=script&lang=js& ***!
\**************************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var _node_modules_babel_loader_lib_index_js_ref_4_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Category_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../node_modules/babel-loader/lib??ref--4-0!../../../../../node_modules/vue-loader/lib??vue-loader-options!./Category.vue?vue&type=script&lang=js& */ "./node_modules/babel-loader/lib/index.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/admin/category/Category.vue?vue&type=script&lang=js&");
/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_ref_4_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Category_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"]);
/***/ }),
/***/ "./resources/js/components/admin/category/Category.vue?vue&type=template&id=0b45bc54&scoped=true&":
/*!********************************************************************************************************!*\
!*** ./resources/js/components/admin/category/Category.vue?vue&type=template&id=0b45bc54&scoped=true& ***!
\********************************************************************************************************/
/*! exports provided: render, staticRenderFns */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_Category_vue_vue_type_template_id_0b45bc54_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../node_modules/vue-loader/lib??vue-loader-options!./Category.vue?vue&type=template&id=0b45bc54&scoped=true& */ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/components/admin/category/Category.vue?vue&type=template&id=0b45bc54&scoped=true&");
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_Category_vue_vue_type_template_id_0b45bc54_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"]; });
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_Category_vue_vue_type_template_id_0b45bc54_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
/***/ })
}]); | 37.688946 | 678 | 0.377055 |
c8b51d1b963b5c8f2b8d369082202f4e2e184987 | 5,740 | js | JavaScript | transactions/FoodAsset.js | davilinfo/icbct21 | 0b6bfcc101413f0cf41230a5185cbb6b4e08fedc | [
"MIT"
] | null | null | null | transactions/FoodAsset.js | davilinfo/icbct21 | 0b6bfcc101413f0cf41230a5185cbb6b4e08fedc | [
"MIT"
] | null | null | null | transactions/FoodAsset.js | davilinfo/icbct21 | 0b6bfcc101413f0cf41230a5185cbb6b4e08fedc | [
"MIT"
] | null | null | null | const {
BaseAsset,
codec,
} = require('lisk-sdk');
const { cryptography } = require('@liskhq/lisk-client');
const FoodAssetId = 1040;
class FoodAsset extends BaseAsset {
name = 'FoodAsset';
id = FoodAssetId;
schema = {
$id: 'lisk/food/transaction',
type: 'object',
required: ["name", "description", "foodType", "price", "observation", "restaurantData", "restaurantNonce", "clientData", "clientNonce"],
properties: {
name: {
dataType: 'string',
fieldNumber: 1
},
description: {
dataType: 'string',
fieldNumber: 2
},
foodType: {
dataType: 'uint32',
fieldNumber: 3
},
price:{
dataType: 'uint64',
fieldNumber: 4
},
observation: {
dataType: 'string',
fieldNumber: 5
},
restaurantData: {
dataType: 'string',
fieldNumber: 6
},
restaurantNonce: {
dataType: 'string',
fieldNumber: 7
},
clientData: {
dataType: 'string',
fieldNumber: 8
},
clientNonce: {
dataType: 'string',
fieldNumber: 9
},
recipientAddress: {
dataType: "bytes",
fieldNumber: 10
}
}
}
/*
{
address: 'lsk3z33t62zbfsaq9mwa2bwfd2befeymrrhsdbhdc',
binaryAddress: '401089ab0037b79ab4b7ce0d7f6b06b7ad12ca5d',
passphrase: 'model dilemma peace excess buffalo weasel decide cradle setup tiger cabin disorder',
publicKey: 'a862a83dbb2c07efb723fa2a96fe73917d90e0e85823e8801487bd3bca9b17f9',
privateKey: '5f63a3ad49c3bd06fc8a0cc6c18e0a2255cf4dea8d338c2f372917bf47194cd7a862a83dbb2c07efb723fa2a96fe73917d90e0e85823e8801487bd3bca9b17f9'
}
*/
get sidechainAddress () {
const address = cryptography.getAddressFromBase32Address('lsk3z33t62zbfsaq9mwa2bwfd2befeymrrhsdbhdc');
return address;
}
get sidechainFee () {
return BigInt('50000000');
}
static get TYPE() {
return FoodAssetId;
}
validate({asset}){
const errors = [];
if (!asset.name || typeof asset.name !== 'string' || asset.name.length > 200){
throw new Error(
'Invalid "asset.name" defined on transaction:A string value no longer than 200 characters');
}
if (!asset.description || typeof asset.description !== 'string' || asset.description.length > 1500){
throw new Error(
'Invalid "asset.description" defined on transaction: A string value no longer than 1500 characters');
}
if (!asset.foodType || asset.foodType <= 0){
throw new Error(
'Invalid "asset.foodType" defined on transaction: A value bigger than 0');
}
if (!asset.price || asset.price <= 0){
throw new Error(
'Invalid "asset.price" defined on transaction: A value bigger than 0');
}
if (!asset.restaurantData || asset.restaurantData.length === 0){
throw new Error(
'Invalid "restaurantData" defined on transaction:Not empty');
}
if (!asset.restaurantNonce || asset.restaurantNonce.length === 0){
throw new Error(
'Invalid "restaurantNonce" defined on transaction: Not empty');
}
if (!asset.clientData || asset.clientData.length === 0){
throw new Error(
'Invalid "clientData" defined on transaction:Not empty');
}
if (!asset.clientNonce || asset.clientNonce.length === 0){
throw new Error(
'Invalid "clientNonce" defined on transaction: Not empty');
}
}
async apply({asset, stateStore, reducerHandler, transaction}){
const errors = [];
// Get sender account details
const senderAddress = transaction.senderAddress;
const senderAccount = await stateStore.account.get(senderAddress);
if (!senderAccount){
throw new Error(
'Invalid "sender", please verify your passphrase: Verify your passpahrase and address');
}
await stateStore.account.set(senderAddress, senderAccount);
await reducerHandler.invoke("token:debit", {
address: senderAddress,
amount: asset.price,
});
const restaurantAddress = asset.recipientAddress;
const restaurantAccount = await stateStore.account.get(asset.recipientAddress);
const restaurantPaymentSubSidechainFee = asset.price - this.sidechainFee;
await reducerHandler.invoke("token:credit", {
address: restaurantAddress,
amount: restaurantPaymentSubSidechainFee,
});
await stateStore.account.set(restaurantAddress, restaurantAccount);
const sidechainAccount = await stateStore.account.get(this.sidechainAddress);
await reducerHandler.invoke("token:credit", {
address: this.sidechainAddress,
amount: this.sidechainFee,
});
await stateStore.account.set(this.sidechainAddress, sidechainAccount);
}
}
module.exports = FoodAsset; | 33.372093 | 144 | 0.547038 |
c8b524c322f3b2b582eb1b88a9b5c4c972566df6 | 20,440 | js | JavaScript | public/panel_assets/vendors/js/tables/datatable/pdfmake.min.js | yaserbahrami87/acckt | abe3bf897e347f7a95a567c75d426556a2301133 | [
"MIT"
] | null | null | null | public/panel_assets/vendors/js/tables/datatable/pdfmake.min.js | yaserbahrami87/acckt | abe3bf897e347f7a95a567c75d426556a2301133 | [
"MIT"
] | null | null | null | public/panel_assets/vendors/js/tables/datatable/pdfmake.min.js | yaserbahrami87/acckt | abe3bf897e347f7a95a567c75d426556a2301133 | [
"MIT"
] | null | null | null | /*! pdfmake v0.1.36, @license MIT, @link http://pdfmake.org */
!function(t,e){if("object"==typeof exports&&"object"==typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var n=e();for(var r in n)("object"==typeof exports?exports:t)[r]=n[r]}}("undefined"!=typeof self?self:this,function(){return function(t){var e={};function n(r){if(e[r])return e[r].exports;var i=e[r]={i:r,l:!1,exports:{}};return t[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{configurable:!1,enumerable:!0,get:r})},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=122)}([function(t,e,n){"use strict";t.exports={isString:function(t){return"string"==typeof t||t instanceof String},isNumber:function(t){return"number"==typeof t||t instanceof Number},isBoolean:function(t){return"boolean"==typeof t},isArray:function(t){return Array.isArray(t)},isFunction:function(t){return"function"==typeof t},isObject:function(t){return null!==t&&"object"==typeof t},isNull:function(t){return null===t},isUndefined:function(t){return void 0===t},pack:function(){for(var t={},e=0,n=arguments.length;e<n;e++){var r=arguments[e];if(r)for(var i in r)r.hasOwnProperty(i)&&(t[i]=r[i])}return t},fontStringify:function(t,e){return"font"===t?"font":e},offsetVector:function(t,e,n){switch(t.type){case"ellipse":case"rect":t.x+=e,t.y+=n;break;case"line":t.x1+=e,t.x2+=e,t.y1+=n,t.y2+=n;break;case"polyline":for(var r=0,i=t.points.length;r<i;r++)t.points[r].x+=e,t.points[r].y+=n}}}},function(t,e,n){"use strict";(function(t){var r=n(124),i=n(125),a=n(76);function o(){return l.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function s(t,e){if(o()<e)throw new RangeError("Invalid typed array length");return l.TYPED_ARRAY_SUPPORT?(t=new Uint8Array(e)).__proto__=l.prototype:(null===t&&(t=new l(e)),t.length=e),t}function l(t,e,n){if(!(l.TYPED_ARRAY_SUPPORT||this instanceof l))return new l(t,e,n);if("number"==typeof t){if("string"==typeof e)throw new Error("If encoding is specified then the first argument must be a string");return h(this,t)}return u(this,t,e,n)}function u(t,e,n,r){if("number"==typeof e)throw new TypeError('"value" argument must not be a number');return"undefined"!=typeof ArrayBuffer&&e instanceof ArrayBuffer?function(t,e,n,r){if(e.byteLength,n<0||e.byteLength<n)throw new RangeError("'offset' is out of bounds");if(e.byteLength<n+(r||0))throw new RangeError("'length' is out of bounds");e=void 0===n&&void 0===r?new Uint8Array(e):void 0===r?new Uint8Array(e,n):new Uint8Array(e,n,r);l.TYPED_ARRAY_SUPPORT?(t=e).__proto__=l.prototype:t=f(t,e);return t}(t,e,n,r):"string"==typeof e?function(t,e,n){"string"==typeof n&&""!==n||(n="utf8");if(!l.isEncoding(n))throw new TypeError('"encoding" must be a valid string encoding');var r=0|p(e,n),i=(t=s(t,r)).write(e,n);i!==r&&(t=t.slice(0,i));return t}(t,e,n):function(t,e){if(l.isBuffer(e)){var n=0|d(e.length);return 0===(t=s(t,n)).length?t:(e.copy(t,0,0,n),t)}if(e){if("undefined"!=typeof ArrayBuffer&&e.buffer instanceof ArrayBuffer||"length"in e)return"number"!=typeof e.length||(r=e.length)!=r?s(t,0):f(t,e);if("Buffer"===e.type&&a(e.data))return f(t,e.data)}var r;throw new TypeError("First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.")}(t,e)}function c(t){if("number"!=typeof t)throw new TypeError('"size" argument must be a number');if(t<0)throw new RangeError('"size" argument must not be negative')}function h(t,e){if(c(e),t=s(t,e<0?0:0|d(e)),!l.TYPED_ARRAY_SUPPORT)for(var n=0;n<e;++n)t[n]=0;return t}function f(t,e){var n=e.length<0?0:0|d(e.length);t=s(t,n);for(var r=0;r<n;r+=1)t[r]=255&e[r];return t}function d(t){if(t>=o())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+o().toString(16)+" bytes");return 0|t}function p(t,e){if(l.isBuffer(t))return t.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(t)||t instanceof ArrayBuffer))return t.byteLength;"string"!=typeof t&&(t=""+t);var n=t.length;if(0===n)return 0;for(var r=!1;;)switch(e){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":case void 0:return F(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return D(t).length;default:if(r)return F(t).length;e=(""+e).toLowerCase(),r=!0}}function g(t,e,n){var r=t[e];t[e]=t[n],t[n]=r}function y(t,e,n,r,i){if(0===t.length)return-1;if("string"==typeof n?(r=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),n=+n,isNaN(n)&&(n=i?0:t.length-1),n<0&&(n=t.length+n),n>=t.length){if(i)return-1;n=t.length-1}else if(n<0){if(!i)return-1;n=0}if("string"==typeof e&&(e=l.from(e,r)),l.isBuffer(e))return 0===e.length?-1:v(t,e,n,r,i);if("number"==typeof e)return e&=255,l.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(t,e,n):Uint8Array.prototype.lastIndexOf.call(t,e,n):v(t,[e],n,r,i);throw new TypeError("val must be string, number or Buffer")}function v(t,e,n,r,i){var a,o=1,s=t.length,l=e.length;if(void 0!==r&&("ucs2"===(r=String(r).toLowerCase())||"ucs-2"===r||"utf16le"===r||"utf-16le"===r)){if(t.length<2||e.length<2)return-1;o=2,s/=2,l/=2,n/=2}function u(t,e){return 1===o?t[e]:t.readUInt16BE(e*o)}if(i){var c=-1;for(a=n;a<s;a++)if(u(t,a)===u(e,-1===c?0:a-c)){if(-1===c&&(c=a),a-c+1===l)return c*o}else-1!==c&&(a-=a-c),c=-1}else for(n+l>s&&(n=s-l),a=n;a>=0;a--){for(var h=!0,f=0;f<l;f++)if(u(t,a+f)!==u(e,f)){h=!1;break}if(h)return a}return-1}function b(t,e,n,r){n=Number(n)||0;var i=t.length-n;r?(r=Number(r))>i&&(r=i):r=i;var a=e.length;if(a%2!=0)throw new TypeError("Invalid hex string");r>a/2&&(r=a/2);for(var o=0;o<r;++o){var s=parseInt(e.substr(2*o,2),16);if(isNaN(s))return o;t[n+o]=s}return o}function m(t,e,n,r){return z(function(t){for(var e=[],n=0;n<t.length;++n)e.push(255&t.charCodeAt(n));return e}(e),t,n,r)}function w(t,e,n){return 0===e&&n===t.length?r.fromByteArray(t):r.fromByteArray(t.slice(e,n))}function x(t,e,n){n=Math.min(t.length,n);for(var r=[],i=e;i<n;){var a,o,s,l,u=t[i],c=null,h=u>239?4:u>223?3:u>191?2:1;if(i+h<=n)switch(h){case 1:u<128&&(c=u);break;case 2:128==(192&(a=t[i+1]))&&(l=(31&u)<<6|63&a)>127&&(c=l);break;case 3:a=t[i+1],o=t[i+2],128==(192&a)&&128==(192&o)&&(l=(15&u)<<12|(63&a)<<6|63&o)>2047&&(l<55296||l>57343)&&(c=l);break;case 4:a=t[i+1],o=t[i+2],s=t[i+3],128==(192&a)&&128==(192&o)&&128==(192&s)&&(l=(15&u)<<18|(63&a)<<12|(63&o)<<6|63&s)>65535&&l<1114112&&(c=l)}null===c?(c=65533,h=1):c>65535&&(c-=65536,r.push(c>>>10&1023|55296),c=56320|1023&c),r.push(c),i+=h}return function(t){var e=t.length;if(e<=S)return String.fromCharCode.apply(String,t);var n="",r=0;for(;r<e;)n+=String.fromCharCode.apply(String,t.slice(r,r+=S));return n}(r)}e.Buffer=l,e.SlowBuffer=function(t){+t!=t&&(t=0);return l.alloc(+t)},e.INSPECT_MAX_BYTES=50,l.TYPED_ARRAY_SUPPORT=void 0!==t.TYPED_ARRAY_SUPPORT?t.TYPED_ARRAY_SUPPORT:function(){try{var t=new Uint8Array(1);return t.__proto__={__proto__:Uint8Array.prototype,foo:function(){return 42}},42===t.foo()&&"function"==typeof t.subarray&&0===t.subarray(1,1).byteLength}catch(t){return!1}}(),e.kMaxLength=o(),l.poolSize=8192,l._augment=function(t){return t.__proto__=l.prototype,t},l.from=function(t,e,n){return u(null,t,e,n)},l.TYPED_ARRAY_SUPPORT&&(l.prototype.__proto__=Uint8Array.prototype,l.__proto__=Uint8Array,"undefined"!=typeof Symbol&&Symbol.species&&l[Symbol.species]===l&&Object.defineProperty(l,Symbol.species,{value:null,configurable:!0})),l.alloc=function(t,e,n){return r=null,a=e,o=n,c(i=t),i<=0?s(r,i):void 0!==a?"string"==typeof o?s(r,i).fill(a,o):s(r,i).fill(a):s(r,i);var r,i,a,o},l.allocUnsafe=function(t){return h(null,t)},l.allocUnsafeSlow=function(t){return h(null,t)},l.isBuffer=function(t){return!(null==t||!t._isBuffer)},l.compare=function(t,e){if(!l.isBuffer(t)||!l.isBuffer(e))throw new TypeError("Arguments must be Buffers");if(t===e)return 0;for(var n=t.length,r=e.length,i=0,a=Math.min(n,r);i<a;++i)if(t[i]!==e[i]){n=t[i],r=e[i];break}return n<r?-1:r<n?1:0},l.isEncoding=function(t){switch(String(t).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},l.concat=function(t,e){if(!a(t))throw new TypeError('"list" argument must be an Array of Buffers');if(0===t.length)return l.alloc(0);var n;if(void 0===e)for(e=0,n=0;n<t.length;++n)e+=t[n].length;var r=l.allocUnsafe(e),i=0;for(n=0;n<t.length;++n){var o=t[n];if(!l.isBuffer(o))throw new TypeError('"list" argument must be an Array of Buffers');o.copy(r,i),i+=o.length}return r},l.byteLength=p,l.prototype._isBuffer=!0,l.prototype.swap16=function(){var t=this.length;if(t%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var e=0;e<t;e+=2)g(this,e,e+1);return this},l.prototype.swap32=function(){var t=this.length;if(t%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var e=0;e<t;e+=4)g(this,e,e+3),g(this,e+1,e+2);return this},l.prototype.swap64=function(){var t=this.length;if(t%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var e=0;e<t;e+=8)g(this,e,e+7),g(this,e+1,e+6),g(this,e+2,e+5),g(this,e+3,e+4);return this},l.prototype.toString=function(){var t=0|this.length;return 0===t?"":0===arguments.length?x(this,0,t):function(t,e,n){var r=!1;if((void 0===e||e<0)&&(e=0),e>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if((n>>>=0)<=(e>>>=0))return"";for(t||(t="utf8");;)switch(t){case"hex":return C(this,e,n);case"utf8":case"utf-8":return x(this,e,n);case"ascii":return _(this,e,n);case"latin1":case"binary":return k(this,e,n);case"base64":return w(this,e,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return A(this,e,n);default:if(r)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),r=!0}}.apply(this,arguments)},l.prototype.equals=function(t){if(!l.isBuffer(t))throw new TypeError("Argument must be a Buffer");return this===t||0===l.compare(this,t)},l.prototype.inspect=function(){var t="",n=e.INSPECT_MAX_BYTES;return this.length>0&&(t=this.toString("hex",0,n).match(/.{2}/g).join(" "),this.length>n&&(t+=" ... ")),"<Buffer "+t+">"},l.prototype.compare=function(t,e,n,r,i){if(!l.isBuffer(t))throw new TypeError("Argument must be a Buffer");if(void 0===e&&(e=0),void 0===n&&(n=t?t.length:0),void 0===r&&(r=0),void 0===i&&(i=this.length),e<0||n>t.length||r<0||i>this.length)throw new RangeError("out of range index");if(r>=i&&e>=n)return 0;if(r>=i)return-1;if(e>=n)return 1;if(this===t)return 0;for(var a=(i>>>=0)-(r>>>=0),o=(n>>>=0)-(e>>>=0),s=Math.min(a,o),u=this.slice(r,i),c=t.slice(e,n),h=0;h<s;++h)if(u[h]!==c[h]){a=u[h],o=c[h];break}return a<o?-1:o<a?1:0},l.prototype.includes=function(t,e,n){return-1!==this.indexOf(t,e,n)},l.prototype.indexOf=function(t,e,n){return y(this,t,e,n,!0)},l.prototype.lastIndexOf=function(t,e,n){return y(this,t,e,n,!1)},l.prototype.write=function(t,e,n,r){if(void 0===e)r="utf8",n=this.length,e=0;else if(void 0===n&&"string"==typeof e)r=e,n=this.length,e=0;else{if(!isFinite(e))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");e|=0,isFinite(n)?(n|=0,void 0===r&&(r="utf8")):(r=n,n=void 0)}var i=this.length-e;if((void 0===n||n>i)&&(n=i),t.length>0&&(n<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");r||(r="utf8");for(var a,o,s,l,u,c,h,f,d,p=!1;;)switch(r){case"hex":return b(this,t,e,n);case"utf8":case"utf-8":return f=e,d=n,z(F(t,(h=this).length-f),h,f,d);case"ascii":return m(this,t,e,n);case"latin1":case"binary":return m(this,t,e,n);case"base64":return l=this,u=e,c=n,z(D(t),l,u,c);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return o=e,s=n,z(function(t,e){for(var n,r,i,a=[],o=0;o<t.length&&!((e-=2)<0);++o)n=t.charCodeAt(o),r=n>>8,i=n%256,a.push(i),a.push(r);return a}(t,(a=this).length-o),a,o,s);default:if(p)throw new TypeError("Unknown encoding: "+r);r=(""+r).toLowerCase(),p=!0}},l.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var S=4096;function _(t,e,n){var r="";n=Math.min(t.length,n);for(var i=e;i<n;++i)r+=String.fromCharCode(127&t[i]);return r}function k(t,e,n){var r="";n=Math.min(t.length,n);for(var i=e;i<n;++i)r+=String.fromCharCode(t[i]);return r}function C(t,e,n){var r=t.length;(!e||e<0)&&(e=0),(!n||n<0||n>r)&&(n=r);for(var i="",a=e;a<n;++a)i+=R(t[a]);return i}function A(t,e,n){for(var r=t.slice(e,n),i="",a=0;a<r.length;a+=2)i+=String.fromCharCode(r[a]+256*r[a+1]);return i}function P(t,e,n){if(t%1!=0||t<0)throw new RangeError("offset is not uint");if(t+e>n)throw new RangeError("Trying to access beyond buffer length")}function E(t,e,n,r,i,a){if(!l.isBuffer(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>i||e<a)throw new RangeError('"value" argument is out of bounds');if(n+r>t.length)throw new RangeError("Index out of range")}function I(t,e,n,r){e<0&&(e=65535+e+1);for(var i=0,a=Math.min(t.length-n,2);i<a;++i)t[n+i]=(e&255<<8*(r?i:1-i))>>>8*(r?i:1-i)}function T(t,e,n,r){e<0&&(e=4294967295+e+1);for(var i=0,a=Math.min(t.length-n,4);i<a;++i)t[n+i]=e>>>8*(r?i:3-i)&255}function O(t,e,n,r,i,a){if(n+r>t.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function L(t,e,n,r,a){return a||O(t,0,n,4),i.write(t,e,n,r,23,4),n+4}function B(t,e,n,r,a){return a||O(t,0,n,8),i.write(t,e,n,r,52,8),n+8}l.prototype.slice=function(t,e){var n,r=this.length;if((t=~~t)<0?(t+=r)<0&&(t=0):t>r&&(t=r),(e=void 0===e?r:~~e)<0?(e+=r)<0&&(e=0):e>r&&(e=r),e<t&&(e=t),l.TYPED_ARRAY_SUPPORT)(n=this.subarray(t,e)).__proto__=l.prototype;else{var i=e-t;n=new l(i,void 0);for(var a=0;a<i;++a)n[a]=this[a+t]}return n},l.prototype.readUIntLE=function(t,e,n){t|=0,e|=0,n||P(t,e,this.length);for(var r=this[t],i=1,a=0;++a<e&&(i*=256);)r+=this[t+a]*i;return r},l.prototype.readUIntBE=function(t,e,n){t|=0,e|=0,n||P(t,e,this.length);for(var r=this[t+--e],i=1;e>0&&(i*=256);)r+=this[t+--e]*i;return r},l.prototype.readUInt8=function(t,e){return e||P(t,1,this.length),this[t]},l.prototype.readUInt16LE=function(t,e){return e||P(t,2,this.length),this[t]|this[t+1]<<8},l.prototype.readUInt16BE=function(t,e){return e||P(t,2,this.length),this[t]<<8|this[t+1]},l.prototype.readUInt32LE=function(t,e){return e||P(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},l.prototype.readUInt32BE=function(t,e){return e||P(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},l.prototype.readIntLE=function(t,e,n){t|=0,e|=0,n||P(t,e,this.length);for(var r=this[t],i=1,a=0;++a<e&&(i*=256);)r+=this[t+a]*i;return r>=(i*=128)&&(r-=Math.pow(2,8*e)),r},l.prototype.readIntBE=function(t,e,n){t|=0,e|=0,n||P(t,e,this.length);for(var r=e,i=1,a=this[t+--r];r>0&&(i*=256);)a+=this[t+--r]*i;return a>=(i*=128)&&(a-=Math.pow(2,8*e)),a},l.prototype.readInt8=function(t,e){return e||P(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},l.prototype.readInt16LE=function(t,e){e||P(t,2,this.length);var n=this[t]|this[t+1]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt16BE=function(t,e){e||P(t,2,this.length);var n=this[t+1]|this[t]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt32LE=function(t,e){return e||P(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},l.prototype.readInt32BE=function(t,e){return e||P(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},l.prototype.readFloatLE=function(t,e){return e||P(t,4,this.length),i.read(this,t,!0,23,4)},l.prototype.readFloatBE=function(t,e){return e||P(t,4,this.length),i.read(this,t,!1,23,4)},l.prototype.readDoubleLE=function(t,e){return e||P(t,8,this.length),i.read(this,t,!0,52,8)},l.prototype.readDoubleBE=function(t,e){return e||P(t,8,this.length),i.read(this,t,!1,52,8)},l.prototype.writeUIntLE=function(t,e,n,r){(t=+t,e|=0,n|=0,r)||E(this,t,e,n,Math.pow(2,8*n)-1,0);var i=1,a=0;for(this[e]=255&t;++a<n&&(i*=256);)this[e+a]=t/i&255;return e+n},l.prototype.writeUIntBE=function(t,e,n,r){(t=+t,e|=0,n|=0,r)||E(this,t,e,n,Math.pow(2,8*n)-1,0);var i=n-1,a=1;for(this[e+i]=255&t;--i>=0&&(a*=256);)this[e+i]=t/a&255;return e+n},l.prototype.writeUInt8=function(t,e,n){return t=+t,e|=0,n||E(this,t,e,1,255,0),l.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),this[e]=255&t,e+1},l.prototype.writeUInt16LE=function(t,e,n){return t=+t,e|=0,n||E(this,t,e,2,65535,0),l.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):I(this,t,e,!0),e+2},l.prototype.writeUInt16BE=function(t,e,n){return t=+t,e|=0,n||E(this,t,e,2,65535,0),l.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):I(this,t,e,!1),e+2},l.prototype.writeUInt32LE=function(t,e,n){return t=+t,e|=0,n||E(this,t,e,4,4294967295,0),l.TYPED_ARRAY_SUPPORT?(this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t):T(this,t,e,!0),e+4},l.prototype.writeUInt32BE=function(t,e,n){return t=+t,e|=0,n||E(this,t,e,4,4294967295,0),l.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):T(this,t,e,!1),e+4},l.prototype.writeIntLE=function(t,e,n,r){if(t=+t,e|=0,!r){var i=Math.pow(2,8*n-1);E(this,t,e,n,i-1,-i)}var a=0,o=1,s=0;for(this[e]=255&t;++a<n&&(o*=256);)t<0&&0===s&&0!==this[e+a-1]&&(s=1),this[e+a]=(t/o>>0)-s&255;return e+n},l.prototype.writeIntBE=function(t,e,n,r){if(t=+t,e|=0,!r){var i=Math.pow(2,8*n-1);E(this,t,e,n,i-1,-i)}var a=n-1,o=1,s=0;for(this[e+a]=255&t;--a>=0&&(o*=256);)t<0&&0===s&&0!==this[e+a+1]&&(s=1),this[e+a]=(t/o>>0)-s&255;return e+n},l.prototype.writeInt8=function(t,e,n){return t=+t,e|=0,n||E(this,t,e,1,127,-128),l.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),t<0&&(t=255+t+1),this[e]=255&t,e+1},l.prototype.writeInt16LE=function(t,e,n){return t=+t,e|=0,n||E(this,t,e,2,32767,-32768),l.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):I(this,t,e,!0),e+2},l.prototype.writeInt16BE=function(t,e,n){return t=+t,e|=0,n||E(this,t,e,2,32767,-32768),l.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):I(this,t,e,!1),e+2},l.prototype.writeInt32LE=function(t,e,n){return t=+t,e|=0,n||E(this,t,e,4,2147483647,-2147483648),l.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24):T(this,t,e,!0),e+4},l.prototype.writeInt32BE=function(t,e,n){return t=+t,e|=0,n||E(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),l.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):T(this,t,e,!1),e+4},l.prototype.writeFloatLE=function(t,e,n){return L(this,t,e,!0,n)},l.prototype.writeFloatBE=function(t,e,n){return L(this,t,e,!1,n)},l.prototype.writeDoubleLE=function(t,e,n){return B(this,t,e,!0,n)},l.prototype.writeDoubleBE=function(t,e,n){return B(this,t,e,!1,n)},l.prototype.copy=function(t,e,n,r){if(n||(n=0),r||0===r||(r=this.length),e>=t.length&&(e=t.length),e||(e=0),r>0&&r<n&&(r=n),r===n)return 0;if(0===t.length||0===this.length)return 0;if(e<0)throw new RangeError("targetStart out of bounds");if(n<0||n>=this.length)throw new RangeError("sourceStart out of bounds");if(r<0)throw new RangeError("sourceEnd out of bounds");r>this.length&&(r=this.length),t.length-e<r-n&&(r=t.length-e+n);var i,a=r-n;if(this===t&&n<e&&e<r)for(i=a-1;i>=0;--i)t[i+e]=this[i+n];else if(a<1e3||!l.TYPED_ARRAY_SUPPORT)for(i=0;i<a;++i)t[i+e]=this[i+n];else Uint8Array.prototype.set.call(t,this.subarray(n,n+a),e);return a},l.prototype.fill=function(t,e,n,r){if("string"==typeof t){if("string"==typeof e?(r=e,e=0,n=this.length):"string"==typeof n&&(r=n,n=this.length),1===t.length){var i=t.charCodeAt(0);i<256&&(t=i)}if(void 0!==r&&"string"!=typeof r)throw new TypeError("encoding must be a string");if("string"==typeof r&&!l.isEncoding(r))throw new TypeError("Unknown encoding: "+r)}else"number"==typeof t&&(t&=255);if(e<0||this.length<e||this.length<n)throw new RangeError("Out of range index");if(n<=e)return this;var a;if(e>>>=0,n=void 0===n?this.length:n>>>0,t||(t=0),"number"==typeof t)for(a=e;a<n;++a)this[a]=t;else{var o=l.isBuffer(t)?t:F(new l(t,r).toString()),s=o.length;for(a=0;a<n-e;++a)this[a+e]=o[a%s]}return this};var M=/[^+\/0-9A-Za-z-_]/g;function R(t){return t<16?"0"+t.toString(16):t.toString(16)}function F(t,e){var n;e=e||1/0;for(var r=t.length,i=null,a=[],o=0;o<r;++o){if((n=t.charCodeAt(o))>55295&&n<57344){if(!i){if(n>56319){(e-=3)> | 10,220 | 20,377 | 0.66727 |
c8b5d01aa6c06db37632cf47833a884d90c50508 | 19,817 | js | JavaScript | ui/src/components/tree/QTree.js | JeRabix/quasar | 82ba9059401c4324fe390d527a8faaa86a76d53f | [
"MIT"
] | 1 | 2021-10-30T17:21:55.000Z | 2021-10-30T17:21:55.000Z | ui/src/components/tree/QTree.js | JeRabix/quasar | 82ba9059401c4324fe390d527a8faaa86a76d53f | [
"MIT"
] | null | null | null | ui/src/components/tree/QTree.js | JeRabix/quasar | 82ba9059401c4324fe390d527a8faaa86a76d53f | [
"MIT"
] | null | null | null | import {
h, ref, computed, watch,
withDirectives, vShow, nextTick, getCurrentInstance, onBeforeUpdate
} from 'vue'
import QIcon from '../icon/QIcon.js'
import QCheckbox from '../checkbox/QCheckbox.js'
import QSlideTransition from '../slide-transition/QSlideTransition.js'
import QSpinner from '../spinner/QSpinner.js'
import useDark, { useDarkProps } from '../../composables/private/use-dark.js'
import { createComponent } from '../../utils/private/create.js'
import { stopAndPrevent } from '../../utils/event.js'
import { shouldIgnoreKey } from '../../utils/private/key-composition.js'
export default createComponent({
name: 'QTree',
props: {
...useDarkProps,
nodes: {
type: Array,
required: true
},
nodeKey: {
type: String,
required: true
},
labelKey: {
type: String,
default: 'label'
},
childrenKey: {
type: String,
default: 'children'
},
color: String,
controlColor: String,
textColor: String,
selectedColor: String,
icon: String,
tickStrategy: {
type: String,
default: 'none',
validator: v => [ 'none', 'strict', 'leaf', 'leaf-filtered' ].includes(v)
},
ticked: Array, // v-model:ticked
expanded: Array, // v-model:expanded
selected: {}, // v-model:selected
defaultExpandAll: Boolean,
accordion: Boolean,
filter: String,
filterMethod: Function,
duration: Number,
noConnectors: Boolean,
noNodesLabel: String,
noResultsLabel: String
},
emits: [
'update:expanded',
'update:ticked',
'update:selected',
'lazy-load',
'after-show',
'after-hide'
],
setup (props, { slots, emit }) {
const { proxy } = getCurrentInstance()
const { $q } = proxy
const isDark = useDark(props, $q)
const lazy = ref({})
const innerTicked = ref(props.ticked || [])
const innerExpanded = ref(props.expanded || [])
let blurTargets = {}
onBeforeUpdate(() => {
blurTargets = {}
})
const classes = computed(() =>
'q-tree'
+ (props.noConnectors === true ? ' q-tree--no-connectors' : '')
+ (isDark.value === true ? ' q-tree--dark' : '')
+ (props.color !== void 0 ? ` text-${ props.color }` : '')
)
const hasSelection = computed(() => props.selected !== void 0)
const computedIcon = computed(() => props.icon || $q.iconSet.tree.icon)
const computedControlColor = computed(() => props.controlColor || props.color)
const textColorClass = computed(() => (
props.textColor !== void 0
? ` text-${ props.textColor }`
: ''
))
const selectedColorClass = computed(() => {
const color = props.selectedColor || props.color
return color ? ` text-${ color }` : ''
})
const computedFilterMethod = computed(() => (
props.filterMethod !== void 0
? props.filterMethod
: (node, filter) => {
const filt = filter.toLowerCase()
return node[ props.labelKey ]
&& node[ props.labelKey ].toLowerCase().indexOf(filt) > -1
}
))
const meta = computed(() => {
const meta = {}
const travel = (node, parent) => {
const tickStrategy = node.tickStrategy || (parent ? parent.tickStrategy : props.tickStrategy)
const
key = node[ props.nodeKey ],
isParent = node[ props.childrenKey ] && node[ props.childrenKey ].length > 0,
isLeaf = isParent !== true,
selectable = node.disabled !== true && hasSelection.value === true && node.selectable !== false,
expandable = node.disabled !== true && node.expandable !== false,
hasTicking = tickStrategy !== 'none',
strictTicking = tickStrategy === 'strict',
leafFilteredTicking = tickStrategy === 'leaf-filtered',
leafTicking = tickStrategy === 'leaf' || tickStrategy === 'leaf-filtered'
let tickable = node.disabled !== true && node.tickable !== false
if (leafTicking === true && tickable === true && parent && parent.tickable !== true) {
tickable = false
}
let localLazy = node.lazy
if (
localLazy === true
&& lazy.value[ key ] !== void 0
&& Array.isArray(node[ props.childrenKey ]) === true
) {
localLazy = lazy.value[ key ]
}
const m = {
key,
parent,
isParent,
isLeaf,
lazy: localLazy,
disabled: node.disabled,
link: node.disabled !== true && (selectable === true || (expandable === true && (isParent === true || localLazy === true))),
children: [],
matchesFilter: props.filter ? computedFilterMethod.value(node, props.filter) : true,
selected: key === props.selected && selectable === true,
selectable,
expanded: isParent === true ? innerExpanded.value.includes(key) : false,
expandable,
noTick: node.noTick === true || (strictTicking !== true && localLazy && localLazy !== 'loaded'),
tickable,
tickStrategy,
hasTicking,
strictTicking,
leafFilteredTicking,
leafTicking,
ticked: strictTicking === true
? innerTicked.value.includes(key)
: (isLeaf === true ? innerTicked.value.includes(key) : false)
}
meta[ key ] = m
if (isParent === true) {
m.children = node[ props.childrenKey ].map(n => travel(n, m))
if (props.filter) {
if (m.matchesFilter !== true) {
m.matchesFilter = m.children.some(n => n.matchesFilter)
}
else if (
m.noTick !== true
&& m.disabled !== true
&& m.tickable === true
&& leafFilteredTicking === true
&& m.children.every(n => n.matchesFilter !== true || n.noTick === true || n.tickable !== true) === true
) {
m.tickable = false
}
}
if (m.matchesFilter === true) {
if (m.noTick !== true && strictTicking !== true && m.children.every(n => n.noTick) === true) {
m.noTick = true
}
if (leafTicking) {
m.ticked = false
m.indeterminate = m.children.some(node => node.indeterminate === true)
m.tickable = m.tickable === true && m.children.some(node => node.tickable)
if (m.indeterminate !== true) {
const sel = m.children
.reduce((acc, meta) => (meta.ticked === true ? acc + 1 : acc), 0)
if (sel === m.children.length) {
m.ticked = true
}
else if (sel > 0) {
m.indeterminate = true
}
}
if (m.indeterminate === true) {
m.indeterminateNextState = m.children
.every(meta => meta.tickable !== true || meta.ticked !== true)
}
}
}
}
return m
}
props.nodes.forEach(node => travel(node, null))
return meta
})
watch(() => props.ticked, val => {
innerTicked.value = val
})
watch(() => props.expanded, val => {
innerExpanded.value = val
})
function getNodeByKey (key) {
const reduce = [].reduce
const find = (result, node) => {
if (result || !node) {
return result
}
if (Array.isArray(node) === true) {
return reduce.call(Object(node), find, result)
}
if (node[ props.nodeKey ] === key) {
return node
}
if (node[ props.childrenKey ]) {
return find(null, node[ props.childrenKey ])
}
}
return find(null, props.nodes)
}
function getTickedNodes () {
return innerTicked.value.map(key => getNodeByKey(key))
}
function getExpandedNodes () {
return innerExpanded.value.map(key => getNodeByKey(key))
}
function isExpanded (key) {
return key && meta.value[ key ]
? meta.value[ key ].expanded
: false
}
function collapseAll () {
if (props.expanded !== void 0) {
emit('update:expanded', [])
}
else {
innerExpanded.value = []
}
}
function expandAll () {
const
expanded = innerExpanded.value,
travel = node => {
if (node[ props.childrenKey ] && node[ props.childrenKey ].length > 0) {
if (node.expandable !== false && node.disabled !== true) {
expanded.push(node[ props.nodeKey ])
node[ props.childrenKey ].forEach(travel)
}
}
}
props.nodes.forEach(travel)
if (props.expanded !== void 0) {
emit('update:expanded', expanded)
}
else {
innerExpanded.value = expanded
}
}
function setExpanded (key, state, node = getNodeByKey(key), m = meta.value[ key ]) {
if (m.lazy && m.lazy !== 'loaded') {
if (m.lazy === 'loading') {
return
}
lazy.value[ key ] = 'loading'
if (Array.isArray(node[ props.childrenKey ]) !== true) {
node[ props.childrenKey ] = []
}
emit('lazy-load', {
node,
key,
done: children => {
lazy.value[ key ] = 'loaded'
node[ props.childrenKey ] = Array.isArray(children) === true ? children : []
nextTick(() => {
const localMeta = meta.value[ key ]
if (localMeta && localMeta.isParent === true) {
localSetExpanded(key, true)
}
})
},
fail: () => {
delete lazy.value[ key ]
if (node[ props.childrenKey ].length === 0) {
delete node[ props.childrenKey ]
}
}
})
}
else if (m.isParent === true && m.expandable === true) {
localSetExpanded(key, state)
}
}
function localSetExpanded (key, state) {
let target = innerExpanded.value
const shouldEmit = props.expanded !== void 0
if (shouldEmit === true) {
target = target.slice()
}
if (state) {
if (props.accordion) {
if (meta.value[ key ]) {
const collapse = []
if (meta.value[ key ].parent) {
meta.value[ key ].parent.children.forEach(m => {
if (m.key !== key && m.expandable === true) {
collapse.push(m.key)
}
})
}
else {
props.nodes.forEach(node => {
const k = node[ props.nodeKey ]
if (k !== key) {
collapse.push(k)
}
})
}
if (collapse.length > 0) {
target = target.filter(k => collapse.includes(k) === false)
}
}
}
target = target.concat([ key ])
.filter((key, index, self) => self.indexOf(key) === index)
}
else {
target = target.filter(k => k !== key)
}
if (shouldEmit === true) {
emit('update:expanded', target)
}
else {
innerExpanded.value = target
}
}
function isTicked (key) {
return key && meta.value[ key ]
? meta.value[ key ].ticked
: false
}
function setTicked (keys, state) {
let target = innerTicked.value
const shouldEmit = props.ticked !== void 0
if (shouldEmit === true) {
target = target.slice()
}
if (state) {
target = target.concat(keys)
.filter((key, index, self) => self.indexOf(key) === index)
}
else {
target = target.filter(k => keys.includes(k) === false)
}
if (shouldEmit === true) {
emit('update:ticked', target)
}
}
function getSlotScope (node, meta, key) {
const scope = { tree: proxy, node, key, color: props.color, dark: isDark.value }
Object.defineProperty(scope, 'expanded', {
get: () => { return meta.expanded },
set: val => { val !== meta.expanded && setExpanded(key, val) },
configurable: true,
enumerable: true
})
Object.defineProperty(scope, 'ticked', {
get: () => { return meta.ticked },
set: val => { val !== meta.ticked && setTicked([ key ], val) },
configurable: true,
enumerable: true
})
return scope
}
function getChildren (nodes) {
return (
props.filter
? nodes.filter(n => meta.value[ n[ props.nodeKey ] ].matchesFilter)
: nodes
).map(child => getNode(child))
}
function getNodeMedia (node) {
if (node.icon !== void 0) {
return h(QIcon, {
class: 'q-tree__icon q-mr-sm',
name: node.icon,
color: node.iconColor
})
}
const src = node.img || node.avatar
if (src) {
return h('img', {
class: `q-tree__${ node.img ? 'img' : 'avatar' } q-mr-sm`,
src
})
}
}
function onShow () {
emit('after-show')
}
function onHide () {
emit('after-hide')
}
function getNode (node) {
const
key = node[ props.nodeKey ],
m = meta.value[ key ],
header = node.header
? slots[ `header-${ node.header }` ] || slots[ 'default-header' ]
: slots[ 'default-header' ]
const children = m.isParent === true
? getChildren(node[ props.childrenKey ])
: []
const isParent = children.length > 0 || (m.lazy && m.lazy !== 'loaded')
let body = node.body
? slots[ `body-${ node.body }` ] || slots[ 'default-body' ]
: slots[ 'default-body' ]
const slotScope = header !== void 0 || body !== void 0
? getSlotScope(node, m, key)
: null
if (body !== void 0) {
body = h('div', { class: 'q-tree__node-body relative-position' }, [
h('div', { class: textColorClass.value }, [
body(slotScope)
])
])
}
return h('div', {
key,
class: 'q-tree__node relative-position'
+ ` q-tree__node--${ isParent === true ? 'parent' : 'child' }`
}, [
h('div', {
class: 'q-tree__node-header relative-position row no-wrap items-center'
+ (m.link === true ? ' q-tree__node--link q-hoverable q-focusable' : '')
+ (m.selected === true ? ' q-tree__node--selected' : '')
+ (m.disabled === true ? ' q-tree__node--disabled' : ''),
tabindex: m.link === true ? 0 : -1,
onClick: (e) => {
onClick(node, m, e)
},
onKeypress (e) {
if (shouldIgnoreKey(e) !== true) {
if (e.keyCode === 13) { onClick(node, m, e, true) }
else if (e.keyCode === 32) { onExpandClick(node, m, e, true) }
}
}
}, [
h('div', {
class: 'q-focus-helper',
tabindex: -1,
ref: el => { blurTargets[ m.key ] = el }
}),
m.lazy === 'loading'
? h(QSpinner, {
class: 'q-tree__spinner q-mr-xs',
color: computedControlColor.value
})
: (
isParent === true
? h(QIcon, {
class: 'q-tree__arrow q-mr-xs'
+ (m.expanded === true ? ' q-tree__arrow--rotate' : ''),
name: computedIcon.value,
onClick (e) { onExpandClick(node, m, e) }
})
: null
),
m.hasTicking === true && m.noTick !== true
? h(QCheckbox, {
class: 'q-mr-xs',
modelValue: m.indeterminate === true ? null : m.ticked,
color: computedControlColor.value,
dark: isDark.value,
dense: true,
keepColor: true,
disable: m.tickable !== true,
onKeydown: stopAndPrevent,
'onUpdate:modelValue': v => {
onTickedClick(m, v)
}
})
: null,
h('div', {
class: 'q-tree__node-header-content col row no-wrap items-center'
+ (m.selected === true ? selectedColorClass.value : textColorClass.value)
}, [
header
? header(slotScope)
: [
getNodeMedia(node),
h('div', node[ props.labelKey ])
]
])
]),
isParent === true
? h(QSlideTransition, {
duration: props.duration,
onShow,
onHide
}, () => withDirectives(
h('div', {
class: 'q-tree__node-collapsible' + textColorClass.value,
key: `${ key }__q`
}, [
body,
h('div', {
class: 'q-tree__children'
+ (m.disabled === true ? ' q-tree__node--disabled' : '')
}, children)
]),
[ [ vShow, m.expanded ] ]
))
: body
])
}
function blur (key) {
const blurTarget = blurTargets[ key ]
blurTarget && blurTarget.focus()
}
function onClick (node, meta, e, keyboard) {
keyboard !== true && blur(meta.key)
if (hasSelection.value) {
if (meta.selectable) {
emit('update:selected', meta.key !== props.selected ? meta.key : null)
}
}
else {
onExpandClick(node, meta, e, keyboard)
}
if (typeof node.handler === 'function') {
node.handler(node)
}
}
function onExpandClick (node, meta, e, keyboard) {
if (e !== void 0) {
stopAndPrevent(e)
}
keyboard !== true && blur(meta.key)
setExpanded(meta.key, !meta.expanded, node, meta)
}
function onTickedClick (meta, state) {
if (meta.indeterminate === true) {
state = meta.indeterminateNextState
}
if (meta.strictTicking) {
setTicked([ meta.key ], state)
}
else if (meta.leafTicking) {
const keys = []
const travel = meta => {
if (meta.isParent) {
if (state !== true && meta.noTick !== true && meta.tickable === true) {
keys.push(meta.key)
}
if (meta.leafTicking === true) {
meta.children.forEach(travel)
}
}
else if (
meta.noTick !== true
&& meta.tickable === true
&& (meta.leafFilteredTicking !== true || meta.matchesFilter === true)
) {
keys.push(meta.key)
}
}
travel(meta)
setTicked(keys, state)
}
}
// expose public methods
Object.assign(proxy, {
getNodeByKey,
getTickedNodes,
getExpandedNodes,
isExpanded,
collapseAll,
expandAll,
setExpanded,
isTicked,
setTicked
})
props.defaultExpandAll === true && expandAll()
return () => {
const children = getChildren(props.nodes)
return h(
'div', {
class: classes.value
},
children.length === 0
? (
props.filter
? props.noResultsLabel || $q.lang.tree.noResults
: props.noNodesLabel || $q.lang.tree.noNodes
)
: children
)
}
}
})
| 28.472701 | 134 | 0.488823 |
c8b6518c3f346c2e7ec5bfcf973db3a8668f50c5 | 4,483 | js | JavaScript | src/examples/conwaysgameoflife/script.js | tomwilliamfranklin/blogsite | 324485d8a26e94ab6b0df71de8820fe621414f12 | [
"MIT"
] | 1 | 2019-12-27T02:12:16.000Z | 2019-12-27T02:12:16.000Z | src/examples/conwaysgameoflife/script.js | tomwilliamfranklin/blogsite | 324485d8a26e94ab6b0df71de8820fe621414f12 | [
"MIT"
] | null | null | null | src/examples/conwaysgameoflife/script.js | tomwilliamfranklin/blogsite | 324485d8a26e94ab6b0df71de8820fe621414f12 | [
"MIT"
] | null | null | null | //Made with ♥ by Tom Franklin
w=1000; //Size of Grid, recommend equal height and width
h=1000;
var size = 25; //Size of cubes, make sure the height/width are both dividable by the size.
var frames = 30; //Framerate. Works with max frames tbh.
var aliveCells = 200;
var squares = Array(w/size+1);
function setup() {
for(var foo = 0; foo < squares.length; foo++) {
squares[foo] = Array(w/size+1);
}
squares[1][6] = true;
createCanvas(w, h);
background(200);
nextposw = 0;
nextposh = 0;
frameRate(frames); // Attempt to refresh at starting FPS
for(i=0;i<=w/size;i++) {
for(ii=0;ii<=h/size;ii++) {
squares[i][ii] = false;
square(nextposw,nextposh, size);
nextposh = nextposh+size;
}
nextposh = 0;
nextposw = nextposw+size;
}
bringAliveMultiple(aliveCells);
}
function draw() {
ConwaysRules();
}
function bringAlive(w,h) {
var maxw = (w/size) + 1;
var maxh = (h/size) + 1;
fill(color(0, 0, 255));
square(w,h, size);
squares[w/size][h/size] = true;
}
var nextFrame = Array(w/size+1);
function ConwaysRules() {
for(var foo = 0; foo < nextFrame.length; foo++) {
nextFrame[foo] = Array(w/size+1);
}
for(i=0;i<=w/size;i++) {
for(ii=0;ii<=h/size;ii++) {
aliveNeighbours = 0;
try {
if(squares[i-1][ii-1]==true) {
aliveNeighbours++;
} } catch (e) {
}
try { if(squares[i][ii-1]==true) {
aliveNeighbours++;
} } catch (e) {
}
try { if(squares[i+1][ii-1]==true) {
aliveNeighbours++;
} } catch (e) {
}
try { if(squares[i-1][ii]==true) {
aliveNeighbours++;
} } catch (e) {
}
try { if(squares[i+1][ii]==true) {
aliveNeighbours++;
} } catch (e) {
}
try { if(squares[i-1][ii+1]==true) {
aliveNeighbours++;
} } catch (e) {
}
try { if(squares[i][ii+1]==true) {
aliveNeighbours++;
} } catch (e) {
}
try { if(squares[i+1][ii+1]==true) {
aliveNeighbours++;
} } catch (e) {
}
fill("white");
if(squares[i][ii]) {
if(aliveNeighbours < 2 || aliveNeighbours > 3) {
nextFrame[i][ii] = false;
}
if(aliveNeighbours === 2 || aliveNeighbours === 3) {
nextFrame[i][ii] = true;
}
} else {
if(aliveNeighbours === 3) {
nextFrame[i][ii] = true;
}
}
}
}
for(i=0;i<=w/size;i++) {
for(ii=0;ii<=h/size;ii++) {
if(nextFrame[i][ii]) {
fill(color(0, 0, 255));
squares[i][ii] = true;
square(i*size,ii*size, size);
} else {
fill('white');
squares[i][ii] = false;
square(i*size,ii*size, size);
}
}
}
}
function bringAlive() {
var maxw = (w/size) + 1;
var maxh = (h/size) + 1;
var coorw = (Math.floor((Math.random()) * maxw)) * size;
var coorh = (Math.floor((Math.random()) * maxh)) * size;
fill(color(0, 0, 255));
square(coorw,coorh, size);
squares[coorw/size][coorh/size] = true;
}
function bringAliveMultiple(num) {
for(var n = 0; n != num; n ++) {
var maxw = (w/size) + 1;
var maxh = (h/size) + 1;
var coorw = (Math.floor((Math.random()) * maxw)) * size;
var coorh = (Math.floor((Math.random()) * maxh)) * size;
fill(color(0, 0, 255));
square(coorw,coorh, size);
squares[coorw/size][coorh/size] = true;
}
}
function changeFrameRate() {
frames = parseInt(document.getElementById('frames').value);
frameRate(frames);
}
function resetFunc() {
setup();
}
function setAliveCells() {
aliveCells = parseInt(document.getElementById('cells').value);
}
$(document).ready(function() {
}); | 26.370588 | 91 | 0.443676 |
c8b67653a2edc83daca53b4f6c04933b1012824f | 1,401 | js | JavaScript | src/Components/School Exam/State Board.js | recscse/previouspaper | 517879a9a780eedfca018f685b9691db3b6ab3e7 | [
"MIT"
] | 2 | 2020-11-18T20:44:28.000Z | 2020-11-18T20:44:31.000Z | src/Components/School Exam/State Board.js | recscse/previouspaper | 517879a9a780eedfca018f685b9691db3b6ab3e7 | [
"MIT"
] | null | null | null | src/Components/School Exam/State Board.js | recscse/previouspaper | 517879a9a780eedfca018f685b9691db3b6ab3e7 | [
"MIT"
] | null | null | null | import React from "react"
import "./State Board.css"
import sb from "../../imgers/up board.jpeg"
const StateBoard=()=>{
return(
<div>
<div className="navs">
<h2> Welcome to State Board</h2>
State Board
<p1> Download all Class 10th and Class 12th previous year question paper of all Board </p1></div>
<h4>Uttar Pradesh Board</h4>
<div style={{display:"flex",marginLeft:"10%" ,marginRight:"10%"}}>
<div class="card" style={{width:"20rem",height:"25rem"}}>
<img src={sb} className="img2" alt="..."/>
<div class="card-body">
<h5 class="card-title">Class 10</h5>
<p class="card-text">Here You will get all previous year question paper of class 10th up board </p>
<a href="#" class="btn btn-primary">Open Questions </a>
</div>
</div>
<div style={{display:"flex",marginLeft:"10%" ,marginRight:"10%"}}>
<div class="card" style={{width:"20rem",height:"25rem"}}>
<img src={sb} className="img2" alt="..."/>
<div class="card-body">
<h5 class="card-title">Class 12</h5>
<p class="card-text">Here You will get all previous year question paper of class 12th up board </p>
<a href="#" class="btn btn-primary">Open Questions </a>
</div>
</div> </div>
</div>
</div>
)
}
export default StateBoard; | 37.864865 | 109 | 0.569593 |
c8b68a89c6d1d65779b6c3157cbdf6d5708e02f6 | 327 | js | JavaScript | source/MessageChannel.js | Kiosked/handlr | 02fce428bdf0e42171b4ac9f4bdabed9e10b886a | [
"MIT"
] | 1 | 2018-04-27T07:49:54.000Z | 2018-04-27T07:49:54.000Z | source/MessageChannel.js | Kiosked/handlr | 02fce428bdf0e42171b4ac9f4bdabed9e10b886a | [
"MIT"
] | null | null | null | source/MessageChannel.js | Kiosked/handlr | 02fce428bdf0e42171b4ac9f4bdabed9e10b886a | [
"MIT"
] | null | null | null | const EventEmitter = require("eventemitter3");
let __sharedChannel;
class MessageChannel extends EventEmitter {}
MessageChannel.getSharedChannel = function getSharedChannel() {
if (!__sharedChannel) {
__sharedChannel = new MessageChannel();
}
return __sharedChannel;
};
module.exports = MessageChannel;
| 21.8 | 63 | 0.746177 |
c8b6e485fe341bbf95f3ad084073b79c647810eb | 6,424 | js | JavaScript | test/index.js | toniov/es-fixtures | 35a76d1c72965b77a950c0375efb471ea8d34963 | [
"MIT"
] | 17 | 2017-09-28T01:38:47.000Z | 2021-04-13T10:55:51.000Z | test/index.js | antonvs2/es-fixtures | 35a76d1c72965b77a950c0375efb471ea8d34963 | [
"MIT"
] | null | null | null | test/index.js | antonvs2/es-fixtures | 35a76d1c72965b77a950c0375efb471ea8d34963 | [
"MIT"
] | 1 | 2018-10-29T19:56:02.000Z | 2018-10-29T19:56:02.000Z | 'use strict';
const esFixtures = require('../src');
const test = require('ava');
// use a different index for each test
const indexes = ['bulk_index', 'clear_index', 'create_index', 'create_unexistent_index', 'mapping_index',
'load_random_index', 'load_incremental_index', 'clear_load_index', 'load_assigned_id_index'];
const type = 'my_type';
test.before('delete indexes in case they exist', async () => {
const client = esFixtures.bootstrap().client;
const arrayOfPromsies = indexes.map(async (index) => {
return client.indices.delete({
index: index,
ignore: [404]
});
});
await Promise.all(arrayOfPromsies);
});
test('should use bulk properly', async (t) => {
const loader = esFixtures.bootstrap('bulk_index', type);
const data = [
{ index: { _id: 1 } },
{ name: 'Jotaro' },
{ index: { _id: 2 } },
{ name: 'Jolyne' },
];
const result = await loader.bulk(data);
t.false(result.errors);
});
test('should clear all documents', async (t) => {
const index = 'clear_index';
const loader = esFixtures.bootstrap(index, type);
// insert mock data
for (let i = 0; i < 100; i++) {
await loader.client.create({
index: index,
type: type,
id: i,
refresh: true,
body: {
title: `Inserted in ${i} place`,
}
});
}
// count inserted number of documents
const countBefore = await loader.client.count({
index: index,
type: type
});
t.is(countBefore.count, 100);
// delete all inserted documents
await loader.clear();
// count again deleting them
const countAfter = await loader.client.count({
index: index,
type: type
});
t.is(countAfter.count, 0);
});
test('should re-create existent index', async (t) => {
const loader = esFixtures.bootstrap('create_index', type);
await loader.client.indices.create({
index: 'create_index'
});
const data = {
mappings: {
my_type_old: {
properties: {
name: {
type: 'string'
}
}
}
}
};
await loader.createIndex(data, { force: true });
t.notThrows(loader.client.indices.get({
index: 'create_index'
}));
});
test('should create index if it does not exist', async (t) => {
const index = 'create_unexistent_index';
const loader = esFixtures.bootstrap(index, type);
const data = {
mappings: {
[type]: {
properties: {
name: {
type: 'string'
}
}
}
}
};
await loader.createIndex(data);
t.notThrows(loader.client.indices.get({
index: 'create_unexistent_index'
}));
});
test('should add mapping', async (t) => {
const index = 'mapping_index';
const loader = esFixtures.bootstrap(index, type);
await loader.client.indices.create({
index: index
});
const data = {
properties: {
name: {
type: 'string'
}
}
};
await loader.addMapping(data);
const mappingRes = await loader.client.indices.getMapping({
index: index,
type: type
});
t.truthy(mappingRes[index].mappings[type]);
});
test('should add documents with random ids', async (t) => {
const index = 'load_random_index';
const loader = esFixtures.bootstrap(index, type);
const data = [{
name: 'Jotaro',
standName: 'Star Platinum'
}, {
name: 'Jolyne',
standName: 'Stone Free'
}];
await loader.load(data);
// check it was inserted correctly
const searchResult = (await loader.client.search({
index: index
})).hits.hits;
const result1 = searchResult.some(result => result._source.name === 'Jotaro');
const result2 = searchResult.some(result => result._source.name === 'Jolyne');
t.is(searchResult.length, 2);
t.true(result1);
t.true(result2);
});
test('should add documents with incremental ids', async (t) => {
const index = 'load_incremental_index';
const loader = esFixtures.bootstrap(index, type);
const data = [{
name: 'Jotaro',
standName: 'Star Platinum'
}, {
name: 'Jolyne',
standName: 'Stone Free'
}];
const options = {
incremental: true
};
await loader.load(data, options);
// check it was inserted correctly
const searchResult = (await loader.client.search({
index: index
})).hits.hits;
const result1 = searchResult.find(result => result._id === '1');
const result2 = searchResult.find(result => result._id === '2');
t.is(result1._source.name, 'Jotaro');
t.is(result2._source.name, 'Jolyne');
});
test('should add documents with id specified inside doc', async (t) => {
const index = 'load_assigned_id_index';
const loader = esFixtures.bootstrap(index, type);
const data = [{
_id: 1,
name: 'Jotaro',
standName: 'Star Platinum'
}, {
_id: 2,
name: 'Jolyne',
standName: 'Stone Free'
}];
await loader.load(data);
// check it was inserted correctly
const searchResult = (await loader.client.search({
index: index
})).hits.hits;
const result1 = searchResult.find(result => result._id === '1');
const result2 = searchResult.find(result => result._id === '2');
t.is(result1._source.name, 'Jotaro');
t.is(result2._source.name, 'Jolyne');
});
test('should clear and add documents with random ids', async (t) => {
const loader = esFixtures.bootstrap('clear_load_index', type);
// insert mock data
for (let i = 0; i < 100; i++) {
await loader.client.create({
index: 'clear_load_index',
type: type,
id: i,
refresh: true,
body: {
title: `Inserted in ${i} place`,
}
});
}
// count inserted number of documents
const countBefore = await loader.client.count({
index: 'clear_load_index',
type: type
});
t.is(countBefore.count, 100);
// delete all inserted documents and add new ones
const data = [{
name: 'Jotaro',
standName: 'Star Platinum'
}, {
name: 'Jolyne',
standName: 'Stone Free'
}];
await loader.clearAndLoad(data, { refresh: false });
// count again after clearing and loading them
const countAfter = await loader.client.count({
index: 'clear_load_index',
type: type
});
t.is(countAfter.count, 2);
});
test.after.always('remove created indexes', async () => {
const client = esFixtures.bootstrap().client;
const arrayOfPromises = indexes.map((index) => {
return client.indices.delete({
index: index,
ignore: [404]
});
});
await Promise.all(arrayOfPromises);
});
| 26.113821 | 106 | 0.622976 |
c8b73df639eda41a6650637bf7a1f7f6e99cfd63 | 176 | js | JavaScript | src/components/Text.js | ximing/react-pixi | db51dad398af01638843fc356fd4813fc89762d0 | [
"MIT"
] | null | null | null | src/components/Text.js | ximing/react-pixi | db51dad398af01638843fc356fd4813fc89762d0 | [
"MIT"
] | null | null | null | src/components/Text.js | ximing/react-pixi | db51dad398af01638843fc356fd4813fc89762d0 | [
"MIT"
] | null | null | null | import { Text as PixiText } from 'pixi.js'
const Text = (root, props) => {
const { text = '', style = {} } = props
return new PixiText(text, style)
}
export default Text
| 19.555556 | 42 | 0.625 |
c8b76ab3e2f8825b590c1fc6e336ba29f649d8e6 | 899 | js | JavaScript | build/translations/sv.js | nielmanullang/ckeditor5-build-classic-mention | 96c8f6a8e25745a3c59f7736452d84be332faa5e | [
"MIT"
] | null | null | null | build/translations/sv.js | nielmanullang/ckeditor5-build-classic-mention | 96c8f6a8e25745a3c59f7736452d84be332faa5e | [
"MIT"
] | null | null | null | build/translations/sv.js | nielmanullang/ckeditor5-build-classic-mention | 96c8f6a8e25745a3c59f7736452d84be332faa5e | [
"MIT"
] | null | null | null | (function(d){d['sv']=Object.assign(d['sv']||{},{a:"Kan inte ladda upp fil:",b:"Fet",c:"Kursiv",d:"Blockcitat",e:"Välj rubrik",f:"Rubrik",g:"Insert image or file",h:"Länk",i:"Numrerad lista",j:"Punktlista",k:"Upload in progress",l:"Paragraf",m:"Rubrik 1",n:"Rubrik 2",o:"Rubrik 3",p:"Rubrik 4",q:"Rubrik 5",r:"Rubrik 6",s:"Could not obtain resized image URL.",t:"Selecting resized image failed",u:"Could not insert image at the current position.",v:"Inserting image failed",w:"Open in a new tab",x:"Downloadable",y:"Ta bort länk",z:"Redigera länk",aa:"Öppna länk i ny flik",ab:"Denna länk saknar URL",ac:"Spara",ad:"Avbryt",ae:"Länkens URL",af:"Ångra",ag:"Gör om",ah:"Dropdown toolbar",ai:"Rich Text-editor",aj:"Rich Text-editor, %0",ak:"%0 of %1",al:"Previous",am:"Next",an:"Editor toolbar",ao:"Show more items",ap:"image widget"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); | 899 | 899 | 0.696329 |
c8b8dcce950c1710a0efe6829d03af95bc17ac19 | 4,598 | js | JavaScript | src/scene/UserLoginScene.js | seLain/clerkapp | ed097699ec835b0cddff9f2ee34fba6e45be3b3c | [
"Apache-2.0"
] | null | null | null | src/scene/UserLoginScene.js | seLain/clerkapp | ed097699ec835b0cddff9f2ee34fba6e45be3b3c | [
"Apache-2.0"
] | null | null | null | src/scene/UserLoginScene.js | seLain/clerkapp | ed097699ec835b0cddff9f2ee34fba6e45be3b3c | [
"Apache-2.0"
] | null | null | null | import React, { Component } from 'react';
import CleanNavigator from './Utils.js';
import {
AppRegistry,
StyleSheet,
Text,
View,
Image,
TextInput,
Alert,
Button,
AsyncStorage
} from 'react-native';
var Config = require('./Config.js');
class UserLoginScene extends Component {
constructor(props) {
super(props);
this.state = {
password: '',
username: '',
}
}
async onGoClick() {
const { navigate } = this.props.navigation;
const { username, password } = this.state;
if(!username || !password) {
Alert.alert('Account or Password Empty');
return;
}
/* #CODE_SECTION */
/* vetify username / password */
var login_url = Config.SERVER_URL + '/inventorycheck/app_login';
let response = await fetch(login_url,
{method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
username: username,
password: password,
})
},);
let responseJSON = await response.json();
if(responseJSON.verified == 'true'){
/* product data loading */
/* this.productDataLoading(); */
/* update task list from ERP server */
/* var tasks = this.updateTask(); */
/* Alert.alert(tasks.list.length.toString()); */
/* go to mainmenu */
CleanNavigator.resetNavigation(this, 'UserMainScene', { username: this.state.username });
}else{
Alert.alert('Account or Password Error');
}
/* #SECTION_CODE */
}
render() {
const {password, username, spinnerShow} = this.state;
return (
<View style={styles.container}>
<View style={{flex: 1, flexDirection: 'column'}}>
<Image source={require('../img/logo.png')} style={styles.responsiveImg}/>
<TextInput style={styles.textInput}
onChangeText={ (username) => {this.setState({username})}}
placeholder='Clerk Account'
placeholderTextColor='blue'
underlineColorAndroid='blue'
autoCorrect={false}
value={username} />
<TextInput style={styles.textInput}
onChangeText={ (password) => {this.setState({password})}}
placeholder='Clerk Password'
secureTextEntry
placeholderTextColor='blue'
underlineColorAndroid='blue'
autoCorrect={false}
value={password} />
<View style={styles.btnStartWrapper}>
<Button style={styles.btnSignIn}
color={'#1194f6'}
textStyle={{fontSize: 24, color: 'white'}}
onPress={this.onGoClick.bind(this)}
title=' Login ' />
</View>
</View>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'flex-start'
},
textWrapper: {
flex: 0.3,
flexDirection: 'row',
justifyContent: 'center',
height: 60
},
textInput: {
alignSelf: 'center',
height: 50,
width: 250,
marginTop: 20,
marginBottom: 0,
color: 'blue',
fontSize: 17,
},
btnStartWrapper: {
flex: 1,
alignSelf:'center',
bottom: -40
},
btnSignIn: {
backgroundColor: '#48baeb',
borderWidth: 0,
padding: 20,
height: 50,
paddingTop: 23,
width: 250
},
btnGroup: {
flex: 1,
flexDirection: 'row',
justifyContent: 'center',
marginTop: 10,
marginBottom: 100
},
// style code from
// https://gist.github.com/tpraxl/02dc4bfcfa301340d26a0bf2140cd8b9
responsiveImg: {
// Image dimensions are known: 510, 400
aspectRatio: (510 / 400),
// Make sure the image stretches and shrinks
width: '40%',
height: '40%',
// Make sure the image doesn't exceed it's original size
// If you want it to exceed it's original size, then
// don't use maxWidth / maxHeight or set their
// value to null
maxWidth: 510,
maxHeight: 400,
// center horizontally
marginLeft: 'auto',
marginRight: 'auto',
// make sure, the image is resized properly:
resizeMode: 'contain',
// demonstrate the dimensions of the image
alignSelf: 'center',
// margins
marginTop: 40,
},
});
module.exports = UserLoginScene; | 25.977401 | 95 | 0.546977 |
c8b8ecd63460d82112543ce2224451cf3bbade3d | 95 | js | JavaScript | dist/js/script.js | cuebrick/facial-expression | 0273a22d6b55e190f048645f17e23fea38a1c3be | [
"MIT"
] | null | null | null | dist/js/script.js | cuebrick/facial-expression | 0273a22d6b55e190f048645f17e23fea38a1c3be | [
"MIT"
] | null | null | null | dist/js/script.js | cuebrick/facial-expression | 0273a22d6b55e190f048645f17e23fea38a1c3be | [
"MIT"
] | null | null | null | var expression = {
SET : function (amount) {
// amount range is 0 ~ 100, 50 is neutral
}
}; | 19 | 43 | 0.610526 |
c8b8fd14c1242833701bb3560a283907028d32e2 | 2,440 | js | JavaScript | 05. hydroflowDashboards/chronograf-ui/webpack/devConfig.js | vtorianne/hydroflow-solutions | 4cdf7b993f0c0a7a0ddaa99c84462f4a4cb509c2 | [
"MIT"
] | null | null | null | 05. hydroflowDashboards/chronograf-ui/webpack/devConfig.js | vtorianne/hydroflow-solutions | 4cdf7b993f0c0a7a0ddaa99c84462f4a4cb509c2 | [
"MIT"
] | null | null | null | 05. hydroflowDashboards/chronograf-ui/webpack/devConfig.js | vtorianne/hydroflow-solutions | 4cdf7b993f0c0a7a0ddaa99c84462f4a4cb509c2 | [
"MIT"
] | null | null | null | var webpack = require('webpack');
var path = require('path');
var ExtractTextPlugin = require("extract-text-webpack-plugin");
var HtmlWebpackPlugin = require("html-webpack-plugin");
var package = require('../package.json');
var dependencies = package.dependencies;
module.exports = {
devtool: 'source-map',
entry: {
app: path.resolve(__dirname, '..', 'src', 'index.js'),
vendor: Object.keys(dependencies),
},
output: {
publicPath: '/',
path: path.resolve(__dirname, '../build'),
filename: '[name].[chunkhash].dev.js',
},
resolve: {
alias: {
src: path.resolve(__dirname, '..', 'src'),
shared: path.resolve(__dirname, '..', 'src', 'shared'),
style: path.resolve(__dirname, '..', 'src', 'style'),
utils: path.resolve(__dirname, '..', 'src', 'utils'),
},
},
module: {
preLoaders: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'eslint-loader',
},
],
loaders: [
{
test: /\.json$/,
loader: 'json',
},
{
test: /\.scss$/,
loader: ExtractTextPlugin.extract('style-loader', 'css-loader!sass-loader!resolve-url!sass?sourceMap'),
},
{
test: /\.css$/,
loader: ExtractTextPlugin.extract('style-loader', 'css-loader!postcss-loader'),
},
{
test : /\.(ico|png|cur|jpg|ttf|eot|svg|woff(2)?)(\?[a-z0-9]+)?$/,
loader : 'file',
},
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel',
query: {
presets: ['es2015', 'react', 'stage-0'],
cacheDirectory: true, // use a cache directory to speed up compilation
},
},
],
},
sassLoader: {
includePaths: [path.resolve(__dirname, "node_modules")],
},
eslint: {
failOnWarning: false,
failOnError: false,
},
plugins: [
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery",
}),
new ExtractTextPlugin("chronograf.css"),
new HtmlWebpackPlugin({
template: path.resolve(__dirname, '..', 'src', 'index.template.html'),
inject: 'body',
favicon: 'assets/images/favicon.ico',
}),
new webpack.optimize.CommonsChunkPlugin({
names: ['vendor', 'manifest'],
}),
new webpack.DefinePlugin({
VERSION: JSON.stringify(require('../package.json').version),
}),
],
postcss: require('./postcss'),
target: 'web',
};
| 26.813187 | 111 | 0.552459 |
c8ba101ea396edcac993c74cdec6aef8b7cae960 | 1,468 | js | JavaScript | src/service/weatherService.js | BassemMohamed/ReactJS-Weather-App | de4d326a8fcd9f04aa1725ebc114c4e8a6601d5c | [
"OML"
] | null | null | null | src/service/weatherService.js | BassemMohamed/ReactJS-Weather-App | de4d326a8fcd9f04aa1725ebc114c4e8a6601d5c | [
"OML"
] | 3 | 2021-03-10T02:17:45.000Z | 2022-02-18T17:11:33.000Z | src/service/weatherService.js | BassemMohamed/ReactJS-Weather-App | de4d326a8fcd9f04aa1725ebc114c4e8a6601d5c | [
"OML"
] | null | null | null | function formatWeatherInfo(weatherData) {
const formattedWeatherData = [];
// Fromat the response to be an array of days instead
for (let i = 0; i < weatherData.list.length; i++) {
const segment = weatherData.list[i];
const date = segment.dt_txt.split(" ")[0];
const hour = segment.dt_txt.split(" ")[1];
const day = formattedWeatherData.find(item => item.date === date);
if (day) {
day.segments.push({
hour: hour,
temp: segment.main.temp,
humidity: segment.main.humidity
});
} else {
formattedWeatherData.push({
date: date,
weather: segment.weather[0].main,
segments: [
{
hour: hour,
temp: segment.main.temp,
humidity: segment.main.humidity
}
]
});
}
}
// Compute the average temperature & humidity
formattedWeatherData.forEach(day => {
day.avgTemp = (
day.segments.reduce((acc, item) => acc + item.temp, 0) /
day.segments.length
).toFixed(1);
day.avgHumidity = (
day.segments.reduce((acc, item) => acc + item.humidity, 0) /
day.segments.length
).toFixed(1);
});
return formattedWeatherData;
}
function convertTempTo(unit, value) {
if (unit === "Fahrenheit") {
return (value - 273.15) * 1.8 + 32;
}
if (unit === "Celcius") {
return value - 273.15;
}
return value;
}
export default {
formatWeatherInfo,
convertTempTo
};
| 23.677419 | 70 | 0.581744 |
c8ba6ec4af5af55716996f688702f3cc4cc8279a | 2,535 | js | JavaScript | app/themes/activityTheme.js | shnizzedy/mindlogger-app | 6bf857455f5a7d6e37ac16d8097c429436197783 | [
"Apache-2.0"
] | null | null | null | app/themes/activityTheme.js | shnizzedy/mindlogger-app | 6bf857455f5a7d6e37ac16d8097c429436197783 | [
"Apache-2.0"
] | 3 | 2020-05-19T12:27:44.000Z | 2020-05-29T12:35:04.000Z | app/themes/activityTheme.js | shnizzedy/mindlogger-app | 6bf857455f5a7d6e37ac16d8097c429436197783 | [
"Apache-2.0"
] | 1 | 2020-05-28T15:06:23.000Z | 2020-05-28T15:06:23.000Z | import { StyleSheet } from 'react-native';
import theme from './base-theme';
const styles = StyleSheet.create({
body: {
flex: 1,
fontFamily: theme.fontFamily,
},
camera: {
width: '100%',
height: 360,
position: 'relative',
},
footer: {
flexDirection: 'row',
justifyContent: 'space-between',
padding: 15,
},
footerText: {
fontSize: 20,
fontWeight: '300',
fontFamily: theme.fontFamily,
},
buttonText: {
fontSize: 24,
fontWeight: '300',
fontFamily: theme.fontFamily,
},
takeButton: {
borderRadius: 12,
width: '100%',
height: 360,
alignContent: 'center',
justifyContent: 'center',
alignItems: 'center',
borderWidth: 4,
borderColor: '#d10000',
backgroundColor: '#ffdddd',
fontFamily: theme.fontFamily,
},
videoConfirmed: {
borderRadius: 12,
width: '100%',
height: 360,
alignContent: 'center',
justifyContent: 'center',
alignItems: 'center',
borderWidth: 4,
borderColor: '#00a30a',
backgroundColor: '#99ff9f',
fontFamily: theme.fontFamily,
},
chooseButton: {
borderRadius: 12,
width: '100%',
height: 116,
alignContent: 'center',
justifyContent: 'center',
alignItems: 'center',
borderWidth: 4,
borderColor: '#000000',
backgroundColor: '#dbdbdb',
marginTop: 8,
fontFamily: theme.fontFamily,
},
redIcon: {
color: '#d10000',
fontSize: 60,
},
greenIcon: {
color: '#00a30a',
fontSize: 60,
},
});
export const markdownStyle = {
heading1: {
fontSize: 36,
fontWeight: 'bold',
marginBottom: 18,
fontFamily: theme.fontFamily,
},
heading2: {
fontSize: 30,
fontWeight: 'bold',
marginBottom: 18,
fontFamily: theme.fontFamily,
},
heading3: {
fontSize: 24,
fontWeight: 'bold',
marginBottom: 18,
fontFamily: theme.fontFamily,
},
paragraph: {
alignSelf: 'flex-start',
fontSize: 22,
fontWeight: '300',
color: '#000000',
fontFamily: theme.fontFamily,
},
listItemUnorderedContent: {
fontSize: 18,
color: '#000000',
fontFamily: theme.fontFamily,
},
listItemOrderedContent: {
fontSize: 18,
color: '#000000',
fontFamily: theme.fontFamily,
},
linkWrapper: {
alignSelf: 'flex-start',
fontFamily: theme.fontFamily,
},
link: {
alignSelf: 'flex-start',
textDecorationLine: 'underline',
fontFamily: theme.fontFamily,
},
image: {
resizeMode: 'contain',
},
};
export default styles;
| 19.96063 | 42 | 0.608284 |
c8baeb62f6e6a38bd515d5532e6b4e5fe66f1f5a | 1,091 | js | JavaScript | tomcat/webapps/ROOT/js/saiku/views/AboutModal.js | uliana291/audit_is | a0f4071a90a467a32d20cd99ce1d1c3382e31308 | [
"Apache-2.0"
] | null | null | null | tomcat/webapps/ROOT/js/saiku/views/AboutModal.js | uliana291/audit_is | a0f4071a90a467a32d20cd99ce1d1c3382e31308 | [
"Apache-2.0"
] | null | null | null | tomcat/webapps/ROOT/js/saiku/views/AboutModal.js | uliana291/audit_is | a0f4071a90a467a32d20cd99ce1d1c3382e31308 | [
"Apache-2.0"
] | null | null | null | /*
* Copyright 2012 OSBI Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* The "about us" dialog
*/
var AboutModal = Modal.extend({
type: 'info',
events: {
'click a' : 'close'
},
message: "Аудит информационной безопасности " +Settings.VERSION,
initialize: function() {
this.options.title = 'О версии ' + Settings.VERSION;
},
close: function(event) {
if (event.target.hash === '#close') {
event.preventDefault();
}
this.$el.dialog('destroy').remove();
}
});
| 27.275 | 77 | 0.636114 |
c8bafde8d8a68f55e41ec684d9dcb9648f910dbe | 525,387 | js | JavaScript | demo/main.bundle.min.js | AtosJanetW/ngresizable | a29a6072fa9499b665a2a63f84c3e19a756006f0 | [
"MIT"
] | 128 | 2017-01-13T17:07:25.000Z | 2021-11-09T11:42:51.000Z | demo/main.bundle.min.js | AtosJanetW/ngresizable | a29a6072fa9499b665a2a63f84c3e19a756006f0 | [
"MIT"
] | 18 | 2017-01-25T01:33:09.000Z | 2020-06-29T19:26:38.000Z | demo/main.bundle.min.js | AtosJanetW/ngresizable | a29a6072fa9499b665a2a63f84c3e19a756006f0 | [
"MIT"
] | 32 | 2017-01-21T11:52:48.000Z | 2022-01-25T10:41:51.000Z | !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e():"function"==typeof define&&define.amd?define(e):e()}(this,function(){"use strict";function t(t,e){return e={exports:{}},t(e,e.exports),e.exports}function e(t){return"function"==typeof t}function n(t){return null!=t&&"object"==typeof t}function r(){try{return nc.apply(this,arguments)}catch(t){return hc.errorObject.e=t,hc.errorObject}}function i(t){return nc=t,r}function o(t){return t.reduce(function(t,e){return t.concat(e instanceof gc.UnsubscriptionError?e.errors:e)},[])}function s(t,e,n){if(t){if(t instanceof kc.Subscriber)return t;if(t[xc.rxSubscriber])return t[xc.rxSubscriber]()}return t||e||n?new kc.Subscriber(t,e,n):new kc.Subscriber(Cc.empty)}function a(t){return t&&"function"==typeof t.schedule}function u(t){return t&&"function"!=typeof t.subscribe&&"function"==typeof t.then}function c(t,e,n,r){var i=new up.InnerSubscriber(t,n,r);if(i.closed)return null;if(e instanceof Dc.Observable)return e._isScalar?(i.next(e.value),i.complete(),null):e.subscribe(i);if(ep.isArrayLike(e)){for(var o=0,s=e.length;s>o&&!i.closed;o++)i.next(e[o]);i.closed||i.complete()}else{if(rp.isPromise(e))return e.then(function(t){i.closed||(i.next(t),i.complete())},function(t){return i.error(t)}).then(null,function(t){ic.root.setTimeout(function(){throw t})}),i;if(e&&"function"==typeof e[ip.iterator])for(var a=e[ip.iterator]();;){var u=a.next();if(u.done){i.complete();break}if(i.next(u.value),i.closed)break}else if(e&&"function"==typeof e[Nc.observable]){var c=e[Nc.observable]();if("function"==typeof c.subscribe)return c.subscribe(new up.InnerSubscriber(t,n,r));i.error(new TypeError("Provided object does not correctly implement Symbol.observable"))}else{var p=pc.isObject(e)?"an invalid object":"'"+e+"'",l="You provided "+p+" where a stream was expected. You can provide an Observable, Promise, Array, or Iterable.";i.error(new TypeError(l))}}return null}function p(t){return void 0===t&&(t=Number.POSITIVE_INFINITY),this.lift(new fp(t))}function l(){for(var t=[],e=0;e<arguments.length;e++)t[e-0]=arguments[e];return this.lift.call(h.apply(void 0,[this].concat(t)))}function h(){for(var t=[],e=0;e<arguments.length;e++)t[e-0]=arguments[e];var n=Number.POSITIVE_INFINITY,r=null,i=t[t.length-1];return Wc.isScheduler(i)?(r=t.pop(),t.length>1&&"number"==typeof t[t.length-1]&&(n=t.pop())):"number"==typeof i&&(n=t.pop()),null===r&&1===t.length&&t[0]instanceof Dc.Observable?t[0]:new Xc.ArrayObservable(t,r).lift(new mp.MergeAllOperator(n))}function f(t,e){var n;if(n="function"==typeof t?t:function(){return t},"function"==typeof e)return this.lift(new Qp(n,e));var r=Object.create(this,Wp.connectableObservableDescriptor);return r.source=this,r.subjectFactory=n,r}function d(){return new Fp.Subject}function v(){return Xp.multicast.call(this,d).refCount()}function y(){if(!il){var t=rl.Symbol;if(t&&t.iterator)il=t.iterator;else for(var e=Object.getOwnPropertyNames(Map.prototype),n=0;n<e.length;++n){var r=e[n];"entries"!==r&&"size"!==r&&Map.prototype[r]===Map.prototype.entries&&(il=r)}}return il}function m(t){Zone.current.scheduleMicroTask("scheduleMicrotask",t)}function g(t,e){return t===e||"number"==typeof t&&"number"==typeof e&&isNaN(t)&&isNaN(e)}function _(t){if("string"==typeof t)return t;if(null==t)return""+t;if(t.overriddenName)return""+t.overriddenName;if(t.name)return""+t.name;var e=t.toString();if(null==e)return""+e;var n=e.indexOf("\n");return-1===n?e:e.substring(0,n)}function b(t){return"function"==typeof t&&t.hasOwnProperty("annotation")&&(t=t.annotation),t}function w(t,e){if(t===Object||t===String||t===Function||t===Number||t===Array)throw new Error("Can not use native "+_(t)+" as constructor");if("function"==typeof t)return t;if(Array.isArray(t)){var n=t,r=n.length-1,i=t[r];if("function"!=typeof i)throw new Error("Last position of Class method array must be Function in key "+e+" was '"+_(i)+"'");if(r!=i.length)throw new Error("Number of annotations ("+r+") does not match number of arguments ("+i.length+") in the function: "+_(i));for(var o=[],s=0,a=n.length-1;a>s;s++){var u=[];o.push(u);var c=n[s];if(Array.isArray(c))for(var p=0;p<c.length;p++)u.push(b(c[p]));else u.push("function"==typeof c?b(c):c)}return sl.defineMetadata("parameters",o,i),i}throw new Error("Only Function or Array is supported in Class definition for key '"+e+"' is '"+_(t)+"'")}function E(t){var e=w(t.hasOwnProperty("constructor")?t.constructor:void 0,"constructor"),n=e.prototype;if(t.hasOwnProperty("extends")){if("function"!=typeof t.extends)throw new Error("Class definition 'extends' property must be a constructor function was: "+_(t.extends));e.prototype=n=Object.create(t.extends.prototype)}for(var r in t)"extends"!==r&&"prototype"!==r&&t.hasOwnProperty(r)&&(n[r]=w(t[r],r));this&&this.annotations instanceof Array&&sl.defineMetadata("annotations",this.annotations,e);var i=e.name;return i&&"constructor"!==i||(e.overriddenName="class"+ol++),e}function C(t,e,n,r){function i(t){if(!sl||!sl.getOwnMetadata)throw"reflect-metadata shim is required when using class decorators";if(this instanceof i)return o.call(this,t),this;var e=new i(t),n="function"==typeof this&&Array.isArray(this.annotations)?this.annotations:[];n.push(e);var s=function(t){var n=sl.getOwnMetadata("annotations",t)||[];return n.push(e),sl.defineMetadata("annotations",n,t),t};return s.annotations=n,s.Class=E,r&&r(s),s}var o=x([e]);return n&&(i.prototype=Object.create(n.prototype)),i.prototype.toString=function(){return"@"+t},i.annotationCls=i,i}function x(t){return function(){for(var e=this,n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];t.forEach(function(t,r){var i=n[r];if(Array.isArray(t))e[t[0]]=void 0===i?t[1]:i;else for(var o in t)e[o]=i&&i.hasOwnProperty(o)?i[o]:t[o]})}}function S(t,e,n){function r(){function t(t,e,n){for(var r=sl.getOwnMetadata("parameters",t)||[];r.length<=n;)r.push(null);return r[n]=r[n]||[],r[n].push(o),sl.defineMetadata("parameters",r,t),t}for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];if(this instanceof r)return i.apply(this,e),this;var o=new(r.bind.apply(r,[void 0].concat(e)));return t.annotation=o,t}var i=x(e);return n&&(r.prototype=Object.create(n.prototype)),r.prototype.toString=function(){return"@"+t},r.annotationCls=r,r}function T(t,e,n){function r(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];if(this instanceof r)return i.apply(this,t),this;var n=new(r.bind.apply(r,[void 0].concat(t)));return function(t,e){var r=sl.getOwnMetadata("propMetadata",t.constructor)||{};r[e]=r.hasOwnProperty(e)&&r[e]||[],r[e].unshift(n),sl.defineMetadata("propMetadata",r,t.constructor)}}var i=x(e);return n&&(r.prototype=Object.create(n.prototype)),r.prototype.toString=function(){return"@"+t},r.annotationCls=r,r}function A(t){return t.__forward_ref__=A,t.toString=function(){return _(this())},t}function P(t){return"function"==typeof t&&t.hasOwnProperty("__forward_ref__")&&t.__forward_ref__===A?t():t}function k(t){return t[Dl]}function M(t){return t[Ll]}function O(t){return t[Fl]||N}function N(t){for(var e=[],n=1;n<arguments.length;n++)e[n-1]=arguments[n];t.error.apply(t,e)}function I(t,e){var n=t+" caused by: "+(e instanceof Error?e.message:e),r=Error(n);return r[Ll]=e,r}function R(t){for(var e=[],n=0;n<t.length;++n){if(e.indexOf(t[n])>-1)return e.push(t[n]),e;e.push(t[n])}return e}function D(t){if(t.length>1){var e=R(t.slice().reverse()),n=e.map(function(t){return _(t.token)});return" ("+n.join(" -> ")+")"}return""}function L(t,e,n,r){var i=r?I("",r):Error();return i.addKey=F,i.keys=[e],i.injectors=[t],i.constructResolvingMessage=n,i.message=i.constructResolvingMessage(),i[Ll]=r,i}function F(t,e){this.injectors.push(t),this.keys.push(e),this.message=this.constructResolvingMessage()}function V(t,e){return L(t,e,function(){var t=_(this.keys[0].token);return"No provider for "+t+"!"+D(this.keys)})}function j(t,e){return L(t,e,function(){return"Cannot instantiate cyclic dependency!"+D(this.keys)})}function H(t,e,n,r){return L(t,r,function(){var t=_(this.keys[0].token);return M(this).message+": Error during instantiation of "+t+"!"+D(this.keys)+"."},e)}function U(t){return Error("Invalid provider - only instances of Provider and Type are allowed, got: "+t)}function B(t,e){for(var n=[],r=0,i=e.length;i>r;r++){var o=e[r];n.push(o&&0!=o.length?o.map(_).join(" "):"?")}return Error("Cannot resolve all parameters for '"+_(t)+"'("+n.join(", ")+"). Make sure that all the parameters are decorated with Inject or have valid type annotations and that '"+_(t)+"' is decorated with Injectable.")}function z(t){return Error("Index "+t+" is out-of-bounds.")}function q(t,e){return Error("Cannot mix multi providers and regular providers, got: "+t+" "+e)}function W(t){return"function"==typeof t}function K(t){return t?t.map(function(t){var e=t.type,n=e.annotationCls,r=t.args?t.args:[];return new(n.bind.apply(n,[void 0].concat(r)))}):[]}function Q(t){var e=Object.getPrototypeOf(t.prototype),n=e?e.constructor:null;return n||Object}function G(t){var e,n;if(t.useClass){var r=P(t.useClass);e=Ql.factory(r),n=tt(r)}else t.useExisting?(e=function(t){return t},n=[Gl.fromKey(jl.get(t.useExisting))]):t.useFactory?(e=t.useFactory,n=J(t.useFactory,t.deps)):(e=function(){return t.useValue},n=Xl);return new Yl(e,n)}function X(t){return new Zl(jl.get(t.provide),[G(t)],t.multi||!1)}function Z(t){var e=$(t,[]),n=e.map(X),r=Y(n,new Map);return Array.from(r.values())}function Y(t,e){for(var n=0;n<t.length;n++){var r=t[n],i=e.get(r.key.id);if(i){if(r.multiProvider!==i.multiProvider)throw q(i,r);if(r.multiProvider)for(var o=0;o<r.resolvedFactories.length;o++)i.resolvedFactories.push(r.resolvedFactories[o]);else e.set(r.key.id,r)}else{var s=void 0;s=r.multiProvider?new Zl(r.key,r.resolvedFactories.slice(),r.multiProvider):r,e.set(r.key.id,s)}}return e}function $(t,e){return t.forEach(function(t){if(t instanceof Bl)e.push({provide:t,useClass:t});else if(t&&"object"==typeof t&&void 0!==t.provide)e.push(t);else{if(!(t instanceof Array))throw U(t);$(t,e)}}),e}function J(t,e){if(e){var n=e.map(function(t){return[t]});return e.map(function(e){return et(t,e,n)})}return tt(t)}function tt(t){var e=Ql.parameters(t);if(!e)return[];if(e.some(function(t){return null==t}))throw B(t,e);return e.map(function(n){return et(t,n,e)})}function et(t,e,n){var r=null,i=!1;if(!Array.isArray(e))return e instanceof xl?nt(e.token,i,null):nt(e,i,null);for(var o=null,s=0;s<e.length;++s){var a=e[s];a instanceof Bl?r=a:a instanceof xl?r=a.token:a instanceof Sl?i=!0:a instanceof Al||a instanceof Pl?o=a:a instanceof Jp&&(r=a)}if(r=P(r),null!=r)return nt(r,i,o);throw B(t,n)}function nt(t,e,n){return new Gl(jl.get(t),e,n)}function rt(t,e){for(var n=new Array(t._providers.length),r=0;r<t._providers.length;++r)n[r]=e(t.getProviderAtIndex(r));return n}function it(t){return!!t&&"function"==typeof t.then}function ot(t){return!!t&&"function"==typeof t.subscribe}function st(){return""+at()+at()+at()}function at(){return String.fromCharCode(97+Math.floor(25*Math.random()))}function ut(){throw new Error("Runtime compiler is not loaded")}function ct(t){var e=Error("No component factory found for "+_(t)+". Did you add it to @NgModule.entryComponents?");return e[mh]=t,e}function pt(){var t=rl.wtf;return t&&(bh=t.trace)?(wh=bh.events,!0):!1}function lt(t,e){return void 0===e&&(e=null),wh.createScope(t,e)}function ht(t,e){return bh.leaveScope(t,e),e}function ft(){return null}function dt(t){Fh=t}function vt(){if(jh)throw new Error("Cannot enable prod mode after platform setup.");Vh=!1}function yt(){return jh=!0,Vh}function mt(t){if(Dh&&!Dh.destroyed&&!Dh.injector.get(Hh,!1))throw new Error("There can be only one platform. Destroy the previous one to create a new one.");Dh=t.get(Bh);var e=t.get(sh,null);return e&&e.forEach(function(t){return t()}),Dh}function gt(t,e,n){void 0===n&&(n=[]);var r=new Jp("Platform: "+e);return function(e){void 0===e&&(e=[]);var i=bt();return(!i||i.injector.get(Hh,!1))&&(t?t(n.concat(e).concat({provide:r,useValue:!0})):mt(Jl.resolveAndCreate(n.concat(e).concat({provide:r,useValue:!0})))),_t(r)}}function _t(t){var e=bt();if(!e)throw new Error("No platform exists!");if(!e.injector.get(t,null))throw new Error("A platform with a different configuration has been created. Please destroy it first.");return e}function bt(){return Dh&&!Dh.destroyed?Dh:null}function wt(t,e){try{var n=e();return it(n)?n.catch(function(e){throw t.handleError(e),e}):n}catch(e){throw t.handleError(e),e}}function Et(t,e){var n=t.indexOf(e);n>-1&&t.splice(n,1)}function Ct(t,e){var n=Yh.get(t);if(n)throw new Error("Duplicate module registered for "+t+" - "+n.moduleType.name+" vs "+e.moduleType.name);Yh.set(t,e)}function xt(t){return t.reduce(function(t,e){var n=Array.isArray(e)?xt(e):e;return t.concat(n)},[])}function St(t,e,n){if(!t)throw new Error("Cannot find '"+n+"' in '"+e+"'");return t}function Tt(t,e,n){t.childNodes.forEach(function(t){t instanceof lf&&(e(t)&&n.push(t),Tt(t,e,n))})}function At(t,e,n){t instanceof lf&&t.childNodes.forEach(function(t){e(t)&&n.push(t),t instanceof lf&&At(t,e,n)})}function Pt(t){return hf.get(t)||null}function kt(t){hf.set(t.nativeNode,t)}function Mt(t){hf.delete(t.nativeNode)}function Ot(t,e){var n=Nt(t),r=Nt(e);if(n&&r)return It(t,e,Ot);var i=t&&("object"==typeof t||"function"==typeof t),o=e&&("object"==typeof e||"function"==typeof e);return!n&&i&&!r&&o?!0:g(t,e)}function Nt(t){return Dt(t)?Array.isArray(t)||!(t instanceof Map)&&y()in t:!1}function It(t,e,n){for(var r=t[y()](),i=e[y()]();;){var o=r.next(),s=i.next();if(o.done&&s.done)return!0;if(o.done||s.done)return!1;if(!n(o.value,s.value))return!1}}function Rt(t,e){if(Array.isArray(t))for(var n=0;n<t.length;n++)e(t[n]);else for(var r=t[y()](),i=void 0;!(i=r.next()).done;)e(i.value)}function Dt(t){return null!==t&&("function"==typeof t||"object"==typeof t)}function Lt(t,e,n){var r=t.previousIndex;if(null===r)return r;var i=0;return n&&r<n.length&&(i=n[r]),r+e+i}function Ft(t){return t.name||typeof t}function Vt(){return Ql}function jt(t,e){return t.nodes[e]}function Ht(t,e){return t.nodes[e]}function Ut(t,e){return t.nodes[e]}function Bt(t,e){return t.nodes[e]}function zt(t,e){return t.nodes[e]}function qt(t,e,n,r){var i="ExpressionChangedAfterItHasBeenCheckedError: Expression has changed after it was checked. Previous value: '"+e+"'. Current value: '"+n+"'.";return r&&(i+=" It seems like the view has been created after its parent and its children have been dirty checked. Has it been created in a change detection hook ?"),Kt(i,t)}function Wt(t,e){return t instanceof Error||(t=new Error(t.toString())),Qt(t,e),t}function Kt(t,e){var n=new Error(t);return Qt(n,e),n}function Qt(t,e){t[Dl]=e,t[Fl]=e.logError.bind(e)}function Gt(t){return!!k(t)}function Xt(t){return new Error("ViewDestroyedError: Attempt to use a destroyed view: "+t)}function Zt(t){var e=Hf.get(t);return e||(e=_(t)+"_"+Hf.size,Hf.set(t,e)),e}function Yt(t,e,n,r){if(r instanceof ff){r=r.wrapped;var i=t.def.nodes[e].bindingIndex+n,o=t.oldValues[i];o instanceof ff&&(o=o.wrapped),t.oldValues[i]=new ff(o)}return r}function $t(t){return{id:Uf,styles:t.styles,encapsulation:t.encapsulation,data:t.data}}function Jt(t){if(t&&t.id===Uf){var e=null!=t.encapsulation&&t.encapsulation!==wl.None||t.styles.length||Object.keys(t.data).length;t.id=e?"c"+zf++:Bf}return t&&t.id===Bf&&(t=null),t||null}function te(t,e,n,r){var i=t.oldValues;return 1&t.state||!g(i[e.bindingIndex+n],r)?!0:!1}function ee(t,e,n,r){return te(t,e,n,r)?(t.oldValues[e.bindingIndex+n]=r,!0):!1}function ne(t,e,n,r){var i=t.oldValues[e.bindingIndex+n];if(1&t.state||!Ot(i,r))throw qt(Vf.createDebugContext(t,e.index),i,r,0!==(1&t.state))}function re(t){for(var e=t;e;)2&e.def.flags&&(e.state|=2),e=e.viewContainerParent||e.parent}function ie(t,e,n,r){var i=t.def.nodes[e],o=16777216&i.flags?Ht(t,e).componentView:t;return re(o),Vf.handleEvent(t,e,n,r)}function oe(t){if(t.parent){var e=t.parent;return Ht(e,t.parentNodeDef.index)}return null}function se(t){var e=t.parent;return e?t.parentNodeDef.parent:null}function ae(t,e){switch(100673535&e.flags){case 1:return Ht(t,e.index).renderElement;case 2:return jt(t,e.index).renderText}}function ue(t,e){return t?t+":"+e:e}function ce(t){return!!t.parent&&!!(16384&t.parentNodeDef.flags)}function pe(t){return!(!t.parent||16384&t.parentNodeDef.flags)}function le(t){return 1<<t%32}function he(t){var e={},n=0,r={};return t&&t.forEach(function(t){var i=t[0],o=t[1];"number"==typeof i?(e[i]=o,n|=le(i)):r[i]=o}),{matchedQueries:e,references:r,matchedQueryIds:n}}function fe(t,e,n){var r=n.renderParent;return r?0===(1&r.flags)||0===(16777216&r.flags)||r.element.componentRendererType&&r.element.componentRendererType.encapsulation===wl.Native?Ht(t,n.renderParent.index).renderElement:void 0:e}function de(t){var e=qf.get(t);return e||(e=t(function(){return jf}),e.factory=t,qf.set(t,e)),e}function ve(t){var e=[];return ye(t,0,void 0,void 0,e),e}function ye(t,e,n,r,i){3===e&&(n=t.renderer.parentNode(ae(t,t.def.lastRenderRootNode))),me(t,e,0,t.def.nodes.length-1,n,r,i)}function me(t,e,n,r,i,o,s){for(var a=n;r>=a;a++){var u=t.def.nodes[a];7&u.flags&&_e(t,u,e,i,o,s),a+=u.childCount}}function ge(t,e,n,r,i,o){for(var s=t;s&&!ce(s);)s=s.parent;for(var a=s.parent,u=se(s),c=u.index+1,p=u.index+u.childCount,l=c;p>=l;l++){var h=a.def.nodes[l];h.ngContentIndex===e&&_e(a,h,n,r,i,o),l+=h.childCount}if(!a.parent){var f=t.root.projectableNodes[e];if(f)for(var l=0;l<f.length;l++)be(t,f[l],n,r,i,o)}}function _e(t,e,n,r,i,o){if(4&e.flags)ge(t,e.ngContent.index,n,r,i,o);else{var s=ae(t,e);if(3===n&&16777216&e.flags&&48&e.bindingFlags){if(16&e.bindingFlags&&be(t,s,n,r,i,o),32&e.bindingFlags){var a=Ht(t,e.index).componentView;be(a,s,n,r,i,o)}}else be(t,s,n,r,i,o);if(8388608&e.flags)for(var u=Ht(t,e.index).viewContainer._embeddedViews,c=0;c<u.length;c++)ye(u[c],n,r,i,o);1&e.flags&&!e.element.name&&me(t,n,e.index+1,e.index+e.childCount,r,i,o)}}function be(t,e,n,r,i,o){var s=t.renderer;switch(n){case 1:s.appendChild(r,e);break;case 2:s.insertBefore(r,e,i);break;case 3:s.removeChild(r,e);break;case 0:o.push(e)}}function we(t){if(":"===t[0]){var e=t.match(Wf);return[e[1],e[2]]}return["",t]}function Ee(t){for(var e=0,n=0;n<t.length;n++)e|=t[n].flags;return e}function Ce(t,e){for(var n="",r=0;2*t>r;r+=2)n=n+e[r]+Se(e[r+1]);return n+e[2*t]}function xe(t,e,n,r,i,o,s,a,u,c,p,l,h,f,d,v,y,m,g,_){switch(t){case 1:return e+Se(n)+r;case 2:return e+Se(n)+r+Se(i)+o;case 3:return e+Se(n)+r+Se(i)+o+Se(s)+a;case 4:return e+Se(n)+r+Se(i)+o+Se(s)+a+Se(u)+c;case 5:return e+Se(n)+r+Se(i)+o+Se(s)+a+Se(u)+c+Se(p)+l;case 6:return e+Se(n)+r+Se(i)+o+Se(s)+a+Se(u)+c+Se(p)+l+Se(h)+f;case 7:return e+Se(n)+r+Se(i)+o+Se(s)+a+Se(u)+c+Se(p)+l+Se(h)+f+Se(d)+v;case 8:return e+Se(n)+r+Se(i)+o+Se(s)+a+Se(u)+c+Se(p)+l+Se(h)+f+Se(d)+v+Se(y)+m;case 9:return e+Se(n)+r+Se(i)+o+Se(s)+a+Se(u)+c+Se(p)+l+Se(h)+f+Se(d)+v+Se(y)+m+Se(g)+_;default:throw new Error("Does not support more than 9 expressions")}}function Se(t){return null!=t?t.toString():""}function Te(t,e,n,r,i,o){t|=1;var s=he(e),a=s.matchedQueries,u=s.references,c=s.matchedQueryIds,p=o?de(o):null;return{index:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,flags:t,childFlags:0,directChildFlags:0,childMatchedQueries:0,matchedQueries:a,matchedQueryIds:c,references:u,ngContentIndex:n,childCount:r,bindings:[],bindingFlags:0,outputs:[],element:{ns:null,name:null,attrs:null,template:p,componentProvider:null,componentView:null,componentRendererType:null,publicProviders:null,allProviders:null,handleEvent:i||jf},provider:null,text:null,query:null,ngContent:null}}function Ae(t,e,n,r,i,o,s,a,u,c,p){void 0===o&&(o=[]),u||(u=jf);var l=he(e),h=l.matchedQueries,f=l.references,d=l.matchedQueryIds,v=null,y=null;i&&(I=we(i),v=I[0],y=I[1]),s=s||[];for(var m=new Array(s.length),g=0;g<s.length;g++){var _=s[g],b=_[0],w=_[1],E=_[2],C=we(w),x=C[0],S=C[1],T=void 0,A=void 0;switch(15&b){case 4:A=E;break;case 1:case 8:T=E}m[g]={flags:b,ns:x,name:S,nonMinifiedName:S,securityContext:T,suffix:A}}a=a||[];for(var P=new Array(a.length),g=0;g<a.length;g++){var k=a[g],M=k[0],O=k[1];P[g]={type:0,target:M,eventName:O,propName:null}}o=o||[];var N=o.map(function(t){var e=t[0],n=t[1],r=we(e),i=r[0],o=r[1];return[i,o,n]});return p=Jt(p),c&&(t|=16777216),t|=1,{index:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,flags:t,childFlags:0,directChildFlags:0,childMatchedQueries:0,matchedQueries:h,matchedQueryIds:d,references:f,ngContentIndex:n,childCount:r,bindings:m,bindingFlags:Ee(m),outputs:P,element:{ns:v,name:y,attrs:N,template:null,componentProvider:null,componentView:c||null,componentRendererType:p,publicProviders:null,allProviders:null,handleEvent:u||jf},provider:null,text:null,query:null,ngContent:null};var I}function Pe(t,e,n){var r,i=n.element,o=t.root.selectorOrNode,s=t.renderer;if(t.parent||!o){r=i.name?s.createElement(i.name,i.ns):s.createComment("");var a=fe(t,e,n);a&&s.appendChild(a,r)}else r=s.selectRootElement(o);if(i.attrs)for(var u=0;u<i.attrs.length;u++){var c=i.attrs[u],p=c[0],l=c[1],h=c[2];s.setAttribute(r,l,h,p)}return r}function ke(t,e,n,r){for(var i=0;i<n.outputs.length;i++){var o=n.outputs[i],s=Me(t,n.index,ue(o.target,o.eventName)),a=o.target,u=t;"component"===o.target&&(a=null,u=e);var c=u.renderer.listen(a||r,o.eventName,s);t.disposables[n.outputIndex+i]=c}}function Me(t,e,n){return function(r){return ie(t,e,n,r)}}function Oe(t,e,n,r,i,o,s,a,u,c,p,l){var h=e.bindings.length,f=!1;return h>0&&Ie(t,e,0,n)&&(f=!0),h>1&&Ie(t,e,1,r)&&(f=!0),h>2&&Ie(t,e,2,i)&&(f=!0),h>3&&Ie(t,e,3,o)&&(f=!0),h>4&&Ie(t,e,4,s)&&(f=!0),h>5&&Ie(t,e,5,a)&&(f=!0),h>6&&Ie(t,e,6,u)&&(f=!0),h>7&&Ie(t,e,7,c)&&(f=!0),h>8&&Ie(t,e,8,p)&&(f=!0),h>9&&Ie(t,e,9,l)&&(f=!0),f}function Ne(t,e,n){for(var r=!1,i=0;i<n.length;i++)Ie(t,e,i,n[i])&&(r=!0);return r}function Ie(t,e,n,r){if(!ee(t,e,n,r))return!1;var i=e.bindings[n],o=Ht(t,e.index),s=o.renderElement,a=i.name;switch(15&i.flags){case 1:Re(t,i,s,i.ns,a,r);break;case 2:De(t,s,a,r);break;case 4:Le(t,i,s,a,r);break;case 8:var u=16777216&e.flags&&32&i.flags?o.componentView:t;Fe(u,i,s,a,r)}return!0}function Re(t,e,n,r,i,o){var s=e.securityContext,a=s?t.root.sanitizer.sanitize(s,o):o;a=null!=a?a.toString():null;var u=t.renderer;null!=o?u.setAttribute(n,i,a,r):u.removeAttribute(n,i,r)}function De(t,e,n,r){var i=t.renderer;r?i.addClass(e,n):i.removeClass(e,n)}function Le(t,e,n,r,i){var o=t.root.sanitizer.sanitize(Lf.STYLE,i);if(null!=o){o=o.toString();var s=e.suffix;null!=s&&(o+=s)}else o=null;var a=t.renderer;null!=o?a.setStyle(n,r,o):a.removeStyle(n,r)}function Fe(t,e,n,r,i){var o=e.securityContext,s=o?t.root.sanitizer.sanitize(o,i):i;t.renderer.setProperty(n,r,s)}function Ve(t,e){return{index:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,flags:4,childFlags:0,directChildFlags:0,childMatchedQueries:0,matchedQueries:{},matchedQueryIds:0,references:{},ngContentIndex:t,childCount:0,bindings:[],bindingFlags:0,outputs:[],element:null,provider:null,text:null,query:null,ngContent:{index:e}}}function je(t,e,n){var r=fe(t,e,n);if(r){var i=n.ngContent.index;ge(t,i,1,r,null,void 0)}}function He(t,e,n,r){var i=e.viewContainer._embeddedViews;(null===n||void 0===n)&&(n=i.length),r.viewContainerParent=t,We(i,n,r);var o=oe(r);if(o&&o!==e){var s=o.template._projectedViews;s||(s=o.template._projectedViews=[]),s.push(r)}Vf.dirtyParentQueries(r);var a=n>0?i[n-1]:null;ze(e,a,r)}function Ue(t,e){var n=t.viewContainer._embeddedViews;if((null==e||e>=n.length)&&(e=n.length-1),0>e)return null;var r=n[e];r.viewContainerParent=null,Ke(n,e);var i=oe(r);if(i&&i!==t){var o=i.template._projectedViews;Ke(o,o.indexOf(r))}return Vf.dirtyParentQueries(r),qe(r),r}function Be(t,e,n){var r=t.viewContainer._embeddedViews,i=r[e];Ke(r,e),null==n&&(n=r.length),We(r,n,i),Vf.dirtyParentQueries(i),qe(i);var o=n>0?r[n-1]:null;return ze(t,o,i),i}function ze(t,e,n){var r=e?ae(e,e.def.lastRenderRootNode):t.renderElement,i=n.renderer.parentNode(r),o=n.renderer.nextSibling(r);ye(n,2,i,o,void 0)}function qe(t){ye(t,3,null,null,void 0)}function We(t,e,n){e>=t.length?t.push(n):t.splice(e,0,n)}function Ke(t,e){e>=t.length-1?t.pop():t.splice(e,1)}function Qe(t,e,n,r,i,o){return new Xf(t,e,n,r,i,o)}function Ge(t){return t.viewDefFactory}function Xe(t,e,n){return new Yf(t,e,n)}function Ze(t){return new $f(t)}function Ye(t,e){return new Jf(t,e)}function $e(t,e){return new td(t,e)}function Je(t,e){var n=t.def.nodes[e];if(1&n.flags){var r=Ht(t,n.index);return n.element.template?r.template:r.renderElement}if(2&n.flags)return jt(t,n.index).renderText;if(10120&n.flags)return Ut(t,n.index).instance;throw new Error("Illegal state: read nodeValue for node index "+e)}function tn(t){return new ed(t.renderer)}function en(t,e,n,r,i,o,s){var a=[];if(o)for(var u in o){var c=o[u],p=c[0],l=c[1];a[p]={flags:8,name:u,nonMinifiedName:l,ns:null,securityContext:null,suffix:null}}var h=[];if(s)for(var f in s)h.push({type:1,propName:f,target:null,eventName:s[f]});return t|=8192,on(t,e,n,r,r,i,a,h)}function nn(t,e,n){return t|=8,on(t,null,0,e,e,n)}function rn(t,e,n,r,i){return on(t,e,0,n,r,i)}function on(t,e,n,r,i,o,s,a){var u=he(e),c=u.matchedQueries,p=u.references,l=u.matchedQueryIds;a||(a=[]),s||(s=[]);var h=o.map(function(t){var e,n;return Array.isArray(t)?(n=t[0],e=t[1]):(n=0,e=t),{flags:n,token:e,tokenKey:Zt(e)}});return{index:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,flags:t,childFlags:0,directChildFlags:0,childMatchedQueries:0,matchedQueries:c,matchedQueryIds:l,references:p,ngContentIndex:-1,childCount:n,bindings:s,bindingFlags:Ee(s),outputs:a,element:null,provider:{token:r,tokenKey:Zt(r),value:i,deps:h},text:null,query:null,ngContent:null}}function sn(t,e){return 2048&e.flags?cd:hn(t,e)}function an(t,e){for(var n=t;n.parent&&!ce(n);)n=n.parent;var r=!0;return fn(n.parent,se(n),r,e.provider.value,e.provider.deps)}function un(t,e){var n=(16384&e.flags)>0,r=fn(t,e.parent,n,e.provider.value,e.provider.deps);if(e.outputs.length)for(var i=0;i<e.outputs.length;i++){var o=e.outputs[i],s=r[o.propName].subscribe(cn(t,e.parent.index,o.eventName));t.disposables[e.outputIndex+i]=s.unsubscribe.bind(s)}return r}function cn(t,e,n){return function(r){return ie(t,e,n,r)}}function pn(t,e,n,r,i,o,s,a,u,c,p,l){var h=Ut(t,e.index),f=h.instance,d=!1,v=void 0,y=e.bindings.length;return y>0&&te(t,e,0,n)&&(d=!0,v=mn(t,h,e,0,n,v)),y>1&&te(t,e,1,r)&&(d=!0,v=mn(t,h,e,1,r,v)),y>2&&te(t,e,2,i)&&(d=!0,v=mn(t,h,e,2,i,v)),y>3&&te(t,e,3,o)&&(d=!0,v=mn(t,h,e,3,o,v)),y>4&&te(t,e,4,s)&&(d=!0,v=mn(t,h,e,4,s,v)),y>5&&te(t,e,5,a)&&(d=!0,v=mn(t,h,e,5,a,v)),y>6&&te(t,e,6,u)&&(d=!0,v=mn(t,h,e,6,u,v)),y>7&&te(t,e,7,c)&&(d=!0,v=mn(t,h,e,7,c,v)),y>8&&te(t,e,8,p)&&(d=!0,v=mn(t,h,e,8,p,v)),y>9&&te(t,e,9,l)&&(d=!0,v=mn(t,h,e,9,l,v)),v&&f.ngOnChanges(v),1&t.state&&32768&e.flags&&f.ngOnInit(),131072&e.flags&&f.ngDoCheck(),d}function ln(t,e,n){for(var r=Ut(t,e.index),i=r.instance,o=!1,s=void 0,a=0;a<n.length;a++)te(t,e,a,n[a])&&(o=!0,s=mn(t,r,e,a,n[a],s));return s&&i.ngOnChanges(s),1&t.state&&32768&e.flags&&i.ngOnInit(),131072&e.flags&&i.ngDoCheck(),o}function hn(t,e){var n,r=(4096&e.flags)>0,i=e.provider;switch(100673535&e.flags){case 256:n=fn(t,e.parent,r,i.value,i.deps);break;case 512:n=dn(t,e.parent,r,i.value,i.deps);break;case 1024:n=vn(t,e.parent,r,i.deps[0]);break;case 128:n=i.value}return n}function fn(t,e,n,r,i){var o,s=i.length;switch(s){case 0:o=new r;break;case 1:o=new r(vn(t,e,n,i[0]));break;case 2:o=new r(vn(t,e,n,i[0]),vn(t,e,n,i[1]));break;case 3:o=new r(vn(t,e,n,i[0]),vn(t,e,n,i[1]),vn(t,e,n,i[2]));break;default:for(var a=new Array(s),u=0;s>u;u++)a[u]=vn(t,e,n,i[u]);o=new(r.bind.apply(r,[void 0].concat(a)))}return o}function dn(t,e,n,r,i){var o,s=i.length;switch(s){case 0:o=r();break;case 1:o=r(vn(t,e,n,i[0]));break;case 2:o=r(vn(t,e,n,i[0]),vn(t,e,n,i[1]));break;case 3:o=r(vn(t,e,n,i[0]),vn(t,e,n,i[1]),vn(t,e,n,i[2]));break;default:for(var a=Array(s),u=0;s>u;u++)a[u]=vn(t,e,n,i[u]);o=r.apply(void 0,a)}return o}function vn(t,e,n,r,i){if(void 0===i&&(i=Il.THROW_IF_NOT_FOUND),8&r.flags)return r.token;var o=t;2&r.flags&&(i=null);var s=r.tokenKey;for(e&&1&r.flags&&(n=!1,e=e.parent);t;){if(e)switch(s){case nd:var a=yn(t,e,n);return tn(a);case rd:var a=yn(t,e,n);return a.renderer;case id:return new Zh(Ht(t,e.index).renderElement);case od:return Ht(t,e.index).viewContainer;case sd:if(e.element.template)return Ht(t,e.index).template;break;case ad:var u=yn(t,e,n);return Ze(u);case ud:return $e(t,e);default:var c=(n?e.element.allProviders:e.element.publicProviders)[s];if(c){var p=Ut(t,c.index);return p.instance===cd&&(p.instance=hn(t,c)),p.instance}}n=ce(t),e=se(t),t=t.parent}var l=o.root.injector.get(r.token,pd);return l!==pd||i===pd?l:o.root.ngModule.injector.get(r.token,i)}function yn(t,e,n){var r;if(n)r=Ht(t,e.index).componentView;else for(r=t;r.parent&&!ce(r);)r=r.parent;return r}function mn(t,e,n,r,i,o){if(16384&n.flags){var s=Ht(t,n.parent.index).componentView;2&s.def.flags&&(s.state|=2)}var a=n.bindings[r],u=a.name;if(e.instance[u]=i,262144&n.flags){o=o||{};var c=t.oldValues[n.bindingIndex+r];c instanceof ff&&(c=c.wrapped);var p=n.bindings[r];o[p.nonMinifiedName]=new df(c,i,0!==(1&t.state))}return t.oldValues[n.bindingIndex+r]=i,o}function gn(t,e){if(t.def.nodeFlags&e)for(var n=t.def.nodes,r=0;r<n.length;r++){var i=n[r],o=i.parent;for(!o&&i.flags&e&&bn(t,r,i.flags&e),0===(i.childFlags&e)&&(r+=i.childCount);o&&1&o.flags&&r===o.index+o.childCount;)o.directChildFlags&e&&_n(t,o,e),o=o.parent}}function _n(t,e,n){for(var r=e.index+1;r<=e.index+e.childCount;r++){var i=t.def.nodes[r];i.flags&n&&bn(t,r,i.flags&n),r+=i.childCount}}function bn(t,e,n){var r=Ut(t,e).instance;r!==cd&&(Vf.setCurrentNode(t,e),524288&n&&r.ngAfterContentInit(),1048576&n&&r.ngAfterContentChecked(),2097152&n&&r.ngAfterViewInit(),4194304&n&&r.ngAfterViewChecked(),65536&n&&r.ngOnDestroy())}function wn(t){return xn(64,new Array(t+1))}function En(t){return xn(16,new Array(t))}function Cn(t){return xn(32,t)}function xn(t,e){for(var n=new Array(e.length),r=0;r<e.length;r++){var i=e[r];n[r]={flags:8,name:i,ns:null,nonMinifiedName:i,securityContext:null,suffix:null}}return{index:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,flags:t,childFlags:0,directChildFlags:0,childMatchedQueries:0,matchedQueries:{},matchedQueryIds:0,references:{},ngContentIndex:-1,childCount:0,bindings:n,bindingFlags:Ee(n),outputs:[],element:null,provider:null,text:null,query:null,ngContent:null}}function Sn(){return{value:void 0}}function Tn(t,e,n,r,i,o,s,a,u,c,p,l){var h=e.bindings,f=!1,d=h.length;if(d>0&&ee(t,e,0,n)&&(f=!0),d>1&&ee(t,e,1,r)&&(f=!0),d>2&&ee(t,e,2,i)&&(f=!0),d>3&&ee(t,e,3,o)&&(f=!0),d>4&&ee(t,e,4,s)&&(f=!0),d>5&&ee(t,e,5,a)&&(f=!0),d>6&&ee(t,e,6,u)&&(f=!0),d>7&&ee(t,e,7,c)&&(f=!0),d>8&&ee(t,e,8,p)&&(f=!0),d>9&&ee(t,e,9,l)&&(f=!0),f){var v=Bt(t,e.index),y=void 0;switch(100673535&e.flags){case 16:y=new Array(h.length),d>0&&(y[0]=n),d>1&&(y[1]=r),d>2&&(y[2]=i),d>3&&(y[3]=o),d>4&&(y[4]=s),d>5&&(y[5]=a),d>6&&(y[6]=u),d>7&&(y[7]=c),d>8&&(y[8]=p),d>9&&(y[9]=l);break;case 32:y={},d>0&&(y[h[0].name]=n),d>1&&(y[h[1].name]=r),d>2&&(y[h[2].name]=i),d>3&&(y[h[3].name]=o),d>4&&(y[h[4].name]=s),d>5&&(y[h[5].name]=a),d>6&&(y[h[6].name]=u),d>7&&(y[h[7].name]=c),d>8&&(y[h[8].name]=p),d>9&&(y[h[9].name]=l);break;case 64:var m=n;switch(d){case 1:y=m.transform(n);break;case 2:y=m.transform(r);break;case 3:y=m.transform(r,i);break;case 4:y=m.transform(r,i,o);break;case 5:y=m.transform(r,i,o,s);break;case 6:y=m.transform(r,i,o,s,a);break;case 7:y=m.transform(r,i,o,s,a,u);break;case 8:y=m.transform(r,i,o,s,a,u,c);break;case 9:y=m.transform(r,i,o,s,a,u,c,p);break;case 10:y=m.transform(r,i,o,s,a,u,c,p,l)}}v.value=y}return f}function An(t,e,n){for(var r=e.bindings,i=!1,o=0;o<n.length;o++)ee(t,e,o,n[o])&&(i=!0);if(i){var s=Bt(t,e.index),a=void 0;switch(100673535&e.flags){case 16:a=n;break;case 32:a={};for(var o=0;o<n.length;o++)a[r[o].name]=n[o];break;case 64:var u=n[0],c=n.slice(1);a=u.transform.apply(u,c)}s.value=a}return i}function Pn(t,e,n){var r=[];for(var i in n){var o=n[i];r.push({
propName:i,bindingType:o})}return{index:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,flags:t,childFlags:0,directChildFlags:0,childMatchedQueries:0,ngContentIndex:-1,matchedQueries:{},matchedQueryIds:0,references:{},childCount:0,bindings:[],bindingFlags:0,outputs:[],element:null,provider:null,text:null,query:{id:e,filterId:le(e),bindings:r},ngContent:null}}function kn(){return new $h}function Mn(t){for(var e=t.def.nodeMatchedQueries;t.parent&&pe(t);){var n=t.parentNodeDef;t=t.parent;for(var r=n.index+n.childCount,i=0;r>=i;i++){var o=t.def.nodes[i];33554432&o.flags&&268435456&o.flags&&(o.query.filterId&e)===o.query.filterId&&zt(t,i).setDirty(),!(1&o.flags&&i+o.childCount<n.index)&&33554432&o.childFlags&&268435456&o.childFlags||(i+=o.childCount)}}if(67108864&t.def.nodeFlags)for(var i=0;i<t.def.nodes.length;i++){var o=t.def.nodes[i];67108864&o.flags&&268435456&o.flags&&zt(t,i).setDirty(),i+=o.childCount}}function On(t,e){var n=zt(t,e.index);if(n.dirty){var r,i=void 0;if(33554432&e.flags){var o=e.parent.parent;i=Nn(t,o.index,o.index+o.childCount,e.query,[]),r=Ut(t,e.parent.index).instance}else 67108864&e.flags&&(i=Nn(t,0,t.def.nodes.length-1,e.query,[]),r=t.component);n.reset(i);for(var s=e.query.bindings,a=!1,u=0;u<s.length;u++){var c=s[u],p=void 0;switch(c.bindingType){case 0:p=n.first;break;case 1:p=n,a=!0}r[c.propName]=p}a&&n.notifyOnChanges()}}function Nn(t,e,n,r,i){for(var o=e;n>=o;o++){var s=t.def.nodes[o],a=s.matchedQueries[r.id];if(null!=a&&i.push(In(t,s,a)),1&s.flags&&s.element.template&&(s.element.template.nodeMatchedQueries&r.filterId)===r.filterId){var u=Ht(t,o);if(8388608&s.flags)for(var c=u.viewContainer._embeddedViews,p=0;p<c.length;p++){var l=c[p],h=oe(l);h&&h===u&&Nn(l,0,l.def.nodes.length-1,r,i)}var f=u.template._projectedViews;if(f)for(var p=0;p<f.length;p++){var d=f[p];Nn(d,0,d.def.nodes.length-1,r,i)}}(s.childMatchedQueries&r.filterId)!==r.filterId&&(o+=s.childCount)}return i}function In(t,e,n){if(null!=n){var r=void 0;switch(n){case 1:r=Ht(t,e.index).renderElement;break;case 0:r=new Zh(Ht(t,e.index).renderElement);break;case 2:r=Ht(t,e.index).template;break;case 3:r=Ht(t,e.index).viewContainer;break;case 4:r=Ut(t,e.index).instance}return r}}function Rn(t,e){for(var n=new Array(e.length-1),r=1;r<e.length;r++)n[r-1]={flags:8,name:null,ns:null,nonMinifiedName:null,securityContext:null,suffix:e[r]};var i=2;return{index:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,flags:i,childFlags:0,directChildFlags:0,childMatchedQueries:0,matchedQueries:{},matchedQueryIds:0,references:{},ngContentIndex:t,childCount:0,bindings:n,bindingFlags:Ee(n),outputs:[],element:null,provider:null,text:{prefix:e[0]},query:null,ngContent:null}}function Dn(t,e,n){var r,i=t.renderer;r=i.createText(n.text.prefix);var o=fe(t,e,n);return o&&i.appendChild(o,r),{renderText:r}}function Ln(t,e,n,r,i,o,s,a,u,c,p,l){var h=!1,f=e.bindings,d=f.length;if(d>0&&ee(t,e,0,n)&&(h=!0),d>1&&ee(t,e,1,r)&&(h=!0),d>2&&ee(t,e,2,i)&&(h=!0),d>3&&ee(t,e,3,o)&&(h=!0),d>4&&ee(t,e,4,s)&&(h=!0),d>5&&ee(t,e,5,a)&&(h=!0),d>6&&ee(t,e,6,u)&&(h=!0),d>7&&ee(t,e,7,c)&&(h=!0),d>8&&ee(t,e,8,p)&&(h=!0),d>9&&ee(t,e,9,l)&&(h=!0),h){var v=e.text.prefix;d>0&&(v+=Vn(n,f[0])),d>1&&(v+=Vn(r,f[1])),d>2&&(v+=Vn(i,f[2])),d>3&&(v+=Vn(o,f[3])),d>4&&(v+=Vn(s,f[4])),d>5&&(v+=Vn(a,f[5])),d>6&&(v+=Vn(u,f[6])),d>7&&(v+=Vn(c,f[7])),d>8&&(v+=Vn(p,f[8])),d>9&&(v+=Vn(l,f[9]));var y=jt(t,e.index).renderText;t.renderer.setValue(y,v)}return h}function Fn(t,e,n){for(var r=e.bindings,i=!1,o=0;o<n.length;o++)ee(t,e,o,n[o])&&(i=!0);if(i){for(var s="",o=0;o<n.length;o++)s+=Vn(n[o],r[o]);s=e.text.prefix+s;var a=jt(t,e.index).renderText;t.renderer.setValue(a,s)}return i}function Vn(t,e){var n=null!=t?t.toString():"";return n+e.suffix}function jn(t,e,n,r){for(var i=0,o=0,s=0,a=0,u=0,c=null,p=!1,l=!1,h=null,f=0;f<e.length;f++){for(;c&&f>c.index+c.childCount;){var d=c.parent;d&&(d.childFlags|=c.childFlags,d.childMatchedQueries|=c.childMatchedQueries),c=d}var v=e[f];v.index=f,v.parent=c,v.bindingIndex=i,v.outputIndex=o;var y=void 0;if(y=c&&1&c.flags&&!c.element.name?c.renderParent:c,v.renderParent=y,v.element){var m=v.element;m.publicProviders=c?c.element.publicProviders:Object.create(null),m.allProviders=m.publicProviders,p=!1,l=!1}if(Hn(c,v,e.length),s|=v.flags,u|=v.matchedQueryIds,v.element&&v.element.template&&(u|=v.element.template.nodeMatchedQueries),c?(c.childFlags|=v.flags,c.directChildFlags|=v.flags,c.childMatchedQueries|=v.matchedQueryIds,v.element&&v.element.template&&(c.childMatchedQueries|=v.element.template.nodeMatchedQueries)):a|=v.flags,i+=v.bindings.length,o+=v.outputs.length,!y&&3&v.flags&&(h=v),10112&v.flags){p||(p=!0,c.element.publicProviders=Object.create(c.element.publicProviders),c.element.allProviders=c.element.publicProviders);var g=0!==(4096&v.flags),_=0!==(16384&v.flags);!g||_?c.element.publicProviders[v.provider.tokenKey]=v:(l||(l=!0,c.element.allProviders=Object.create(c.element.publicProviders)),c.element.allProviders[v.provider.tokenKey]=v),_&&(c.element.componentProvider=v)}v.childCount&&(c=v)}for(;c;){var d=c.parent;d&&(d.childFlags|=c.childFlags,d.childMatchedQueries|=c.childMatchedQueries),c=d}var b=function(t,n,r,i){return e[n].element.handleEvent(t,r,i)};return{factory:null,nodeFlags:s,rootNodeFlags:a,nodeMatchedQueries:u,flags:t,nodes:e,updateDirectives:n||jf,updateRenderer:r||jf,handleEvent:b||jf,bindingCount:i,outputCount:o,lastRenderRootNode:h}}function Hn(t,e,n){var r=e.element&&e.element.template;if(r){if(!r.lastRenderRootNode)throw new Error("Illegal State: Embedded templates without nodes are not allowed!");if(r.lastRenderRootNode&&8388608&r.lastRenderRootNode.flags)throw new Error("Illegal State: Last root node of a template can't have embedded views, at index "+e.index+"!")}if(10112&e.flags){var i=t?t.flags:0;if(0===(1&i))throw new Error("Illegal State: Provider/Directive nodes need to be children of elements or anchors, at index "+e.index+"!")}if(e.query){if(33554432&e.flags&&(!t||0===(8192&t.flags)))throw new Error("Illegal State: Content Query nodes need to be children of directives, at index "+e.index+"!");if(67108864&e.flags&&t)throw new Error("Illegal State: View Query nodes have to be top level nodes, at index "+e.index+"!")}if(e.childCount){var o=t?t.index+t.childCount:n-1;if(e.index<=o&&e.index+e.childCount>o)throw new Error("Illegal State: childCount of node leads outside of parent, at index "+e.index+"!")}}function Un(t,e,n){var r=zn(t.root,t.renderer,t,e,e.element.template);return qn(r,t.component,n),Wn(r),r}function Bn(t,e,n){var r=zn(t,t.renderer,null,null,e);return qn(r,n,n),Wn(r),r}function zn(t,e,n,r,i){var o=new Array(i.nodes.length),s=i.outputCount?new Array(i.outputCount):null,a={def:i,parent:n,viewContainerParent:null,parentNodeDef:r,context:null,component:null,nodes:o,state:3,root:t,renderer:e,oldValues:new Array(i.bindingCount),disposables:s};return a}function qn(t,e,n){t.component=e,t.context=n}function Wn(t){var e;if(ce(t)){var n=t.parentNodeDef;e=Ht(t.parent,n.parent.index).renderElement}for(var r=t.def,i=t.nodes,o=0;o<r.nodes.length;o++){var s=r.nodes[o];Vf.setCurrentNode(t,o);var a=void 0;switch(100673535&s.flags){case 1:var u=Pe(t,e,s),c=void 0;if(16777216&s.flags){var p=de(s.element.componentView),l=s.element.componentRendererType,h=void 0;h=l?t.root.rendererFactory.createRenderer(u,l):t.root.renderer,c=zn(t.root,h,t,s.element.componentProvider,p)}ke(t,c,s,u),a={renderElement:u,componentView:c,viewContainer:null,template:s.element.template?Ye(t,s):void 0},8388608&s.flags&&(a.viewContainer=Xe(t,s,a));break;case 2:a=Dn(t,e,s);break;case 256:case 512:case 1024:case 128:var f=sn(t,s);a={instance:f};break;case 8:var f=an(t,s);a={instance:f};break;case 8192:var f=un(t,s);if(a={instance:f},16384&s.flags){var d=Ht(t,s.parent.index).componentView;qn(d,f,f)}break;case 16:case 32:case 64:a=Sn(t,s);break;case 33554432:case 67108864:a=kn();break;case 4:je(t,e,s),a=void 0}i[o]=a}rr(t,ld.CreateViewNodes),sr(t,100663296,134217728,0)}function Kn(t){Vf.updateDirectives(t,1),ir(t,ld.CheckNoChanges),Vf.updateRenderer(t,1),rr(t,ld.CheckNoChanges)}function Qn(t){Vf.updateDirectives(t,0),ir(t,ld.CheckAndUpdate),sr(t,33554432,268435456,0),gn(t,1048576|(1&t.state?524288:0)),Vf.updateRenderer(t,0),rr(t,ld.CheckAndUpdate),sr(t,67108864,268435456,0),gn(t,4194304|(1&t.state?2097152:0)),2&t.def.flags&&(t.state&=-3),t.state&=-2}function Gn(t,e,n,r,i,o,s,a,u,c,p,l,h){return 0===n?Xn(t,e,r,i,o,s,a,u,c,p,l,h):Zn(t,e,r)}function Xn(t,e,n,r,i,o,s,a,u,c,p,l){var h=!1;switch(100673535&e.flags){case 1:h=Oe(t,e,n,r,i,o,s,a,u,c,p,l);break;case 2:h=Ln(t,e,n,r,i,o,s,a,u,c,p,l);break;case 8192:h=pn(t,e,n,r,i,o,s,a,u,c,p,l);break;case 16:case 32:case 64:h=Tn(t,e,n,r,i,o,s,a,u,c,p,l)}return h}function Zn(t,e,n){var r=!1;switch(100673535&e.flags){case 1:r=Ne(t,e,n);break;case 2:r=Fn(t,e,n);break;case 8192:r=ln(t,e,n);break;case 16:case 32:case 64:r=An(t,e,n)}if(r)for(var i=e.bindings.length,o=e.bindingIndex,s=t.oldValues,a=0;i>a;a++)s[o+a]=n[a];return r}function Yn(t,e,n,r,i,o,s,a,u,c,p,l,h){return 0===n?$n(t,e,r,i,o,s,a,u,c,p,l,h):Jn(t,e,r),!1}function $n(t,e,n,r,i,o,s,a,u,c,p,l){var h=e.bindings.length;h>0&&ne(t,e,0,n),h>1&&ne(t,e,1,r),h>2&&ne(t,e,2,i),h>3&&ne(t,e,3,o),h>4&&ne(t,e,4,s),h>5&&ne(t,e,5,a),h>6&&ne(t,e,6,u),h>7&&ne(t,e,7,c),h>8&&ne(t,e,8,p),h>9&&ne(t,e,9,l)}function Jn(t,e,n){for(var r=0;r<n.length;r++)ne(t,e,r,n[r])}function tr(t,e){var n=zt(t,e.index);if(n.dirty)throw qt(Vf.createDebugContext(t,e.index),"Query "+e.query.id+" not dirty","Query "+e.query.id+" dirty",0!==(1&t.state))}function er(t){if(!(8&t.state)){if(ir(t,ld.Destroy),rr(t,ld.Destroy),gn(t,65536),t.disposables)for(var e=0;e<t.disposables.length;e++)t.disposables[e]();t.renderer.destroyNode&&nr(t),ce(t)&&t.renderer.destroy(),t.state|=8}}function nr(t){for(var e=t.def.nodes.length,n=0;e>n;n++){var r=t.def.nodes[n];1&r.flags?t.renderer.destroyNode(Ht(t,n).renderElement):2&r.flags&&t.renderer.destroyNode(jt(t,n).renderText)}}function rr(t,e){var n=t.def;if(16777216&n.nodeFlags)for(var r=0;r<n.nodes.length;r++){var i=n.nodes[r];16777216&i.flags?or(Ht(t,r).componentView,e):0===(16777216&i.childFlags)&&(r+=i.childCount)}}function ir(t,e){var n=t.def;if(8388608&n.nodeFlags)for(var r=0;r<n.nodes.length;r++){var i=n.nodes[r];if(8388608&i.flags)for(var o=Ht(t,r).viewContainer._embeddedViews,s=0;s<o.length;s++)or(o[s],e);else 0===(8388608&i.childFlags)&&(r+=i.childCount)}}function or(t,e){var n=t.state;switch(e){case ld.CheckNoChanges:2&n&&0===(12&n)&&Kn(t);break;case ld.CheckAndUpdate:2&n&&0===(12&n)&&Qn(t);break;case ld.Destroy:er(t);break;case ld.CreateViewNodes:Wn(t)}}function sr(t,e,n,r){if(t.def.nodeFlags&e&&t.def.nodeFlags&n)for(var i=t.def.nodes.length,o=0;i>o;o++){var s=t.def.nodes[o];if(s.flags&e&&s.flags&n)switch(Vf.setCurrentNode(t,s.index),r){case 0:On(t,s);break;case 1:tr(t,s)}s.childFlags&e&&s.childFlags&n||(o+=s.childCount)}}function ar(){if(!hd){hd=!0;var t=yt()?cr():ur();Vf.setCurrentNode=t.setCurrentNode,Vf.createRootView=t.createRootView,Vf.createEmbeddedView=t.createEmbeddedView,Vf.checkAndUpdateView=t.checkAndUpdateView,Vf.checkNoChangesView=t.checkNoChangesView,Vf.destroyView=t.destroyView,Vf.resolveDep=vn,Vf.createDebugContext=t.createDebugContext,Vf.handleEvent=t.handleEvent,Vf.updateDirectives=t.updateDirectives,Vf.updateRenderer=t.updateRenderer,Vf.dirtyParentQueries=Mn}}function ur(){return{setCurrentNode:function(){},createRootView:pr,createEmbeddedView:Un,checkAndUpdateView:Qn,checkNoChangesView:Kn,destroyView:er,createDebugContext:function(t,e){return new gd(t,e)},handleEvent:function(t,e,n,r){return t.def.handleEvent(t,e,n,r)},updateDirectives:function(t,e){return t.def.updateDirectives(0===e?fr:dr,t)},updateRenderer:function(t,e){return t.def.updateRenderer(0===e?fr:dr,t)}}}function cr(){return{setCurrentNode:_r,createRootView:lr,createEmbeddedView:vr,checkAndUpdateView:yr,checkNoChangesView:mr,destroyView:gr,createDebugContext:function(t,e){return new gd(t,e)},handleEvent:br,updateDirectives:wr,updateRenderer:Er}}function pr(t,e,n,r,i,o){var s=i.injector.get(Qh);return Bn(hr(t,i,s,e,n),r,o)}function lr(t,e,n,r,i,o){var s=i.injector.get(Qh),a=hr(t,i,new _d(s),e,n);return Ir(fd.create,Bn,null,[a,r,o])}function hr(t,e,n,r,i){var o=e.injector.get(Ff),s=n.createRenderer(null,null);return{ngModule:e,injector:t,projectableNodes:r,selectorOrNode:i,sanitizer:o,rendererFactory:n,renderer:s}}function fr(t,e,n,r,i,o,s,a,u,c,p,l,h){var f=t.def.nodes[e];return Gn(t,f,n,r,i,o,s,a,u,c,p,l,h),112&f.flags?Bt(t,e).value:void 0}function dr(t,e,n,r,i,o,s,a,u,c,p,l,h){var f=t.def.nodes[e];return Yn(t,f,n,r,i,o,s,a,u,c,p,l,h),112&f.flags?Bt(t,e).value:void 0}function vr(t,e,n){return Ir(fd.create,Un,null,[t,e,n])}function yr(t){return Ir(fd.detectChanges,Qn,null,[t])}function mr(t){return Ir(fd.checkNoChanges,Kn,null,[t])}function gr(t){return Ir(fd.destroy,er,null,[t])}function _r(t,e){vd=t,yd=e}function br(t,e,n,r){return _r(t,e),Ir(fd.handleEvent,t.def.handleEvent,null,[t,e,n,r])}function wr(t,e){function n(t,n,r){for(var i=[],o=3;o<arguments.length;o++)i[o-3]=arguments[o];var s=t.def.nodes[n];return 0===e?Cr(t,s,r,i):xr(t,s,r,i),8192&s.flags&&_r(t,Pr(t,n)),112&s.flags?Bt(t,s.index).value:void 0}if(8&t.state)throw Xt(fd[dd]);return _r(t,Pr(t,0)),t.def.updateDirectives(n,t)}function Er(t,e){function n(t,n,r){for(var i=[],o=3;o<arguments.length;o++)i[o-3]=arguments[o];var s=t.def.nodes[n];return 0===e?Cr(t,s,r,i):xr(t,s,r,i),3&s.flags&&_r(t,kr(t,n)),112&s.flags?Bt(t,s.index).value:void 0}if(8&t.state)throw Xt(fd[dd]);return _r(t,kr(t,0)),t.def.updateRenderer(n,t)}function Cr(t,e,n,r){var i=Gn.apply(void 0,[t,e,n].concat(r));if(i){var o=1===n?r[0]:r;if(8192&e.flags){for(var s={},a=0;a<e.bindings.length;a++){var u=e.bindings[a],c=o[a];8&u.flags&&(s[Sr(u.nonMinifiedName)]=Ar(c))}var p=e.parent,l=Ht(t,p.index).renderElement;if(p.element.name)for(var h in s){var c=s[h];null!=c?t.renderer.setAttribute(l,h,c):t.renderer.removeAttribute(l,h)}else t.renderer.setValue(l,"bindings="+JSON.stringify(s,null,2))}}}function xr(t,e,n,r){Yn.apply(void 0,[t,e,n].concat(r))}function Sr(t){return t=Tr(t.replace(/[$@]/g,"_")),"ng-reflect-"+t}function Tr(t){return t.replace(md,function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];return"-"+t[1].toLowerCase()})}function Ar(t){try{return null!=t?t.toString().slice(0,30):t}catch(t){return"[ERROR] Exception while trying to serialize the value"}}function Pr(t,e){for(var n=e;n<t.def.nodes.length;n++){var r=t.def.nodes[n];if(8192&r.flags&&r.bindings&&r.bindings.length)return n}return null}function kr(t,e){for(var n=e;n<t.def.nodes.length;n++){var r=t.def.nodes[n];if(3&r.flags&&r.bindings&&r.bindings.length)return n}return null}function Mr(t,e){for(var n=-1,r=0;e>=r;r++){var i=t.nodes[r];3&i.flags&&n++}return n}function Or(t){for(;t&&!ce(t);)t=t.parent;return t.parent?Ht(t.parent,se(t).index):null}function Nr(t,e,n){for(var r in e.references)n[r]=In(t,e,e.references[r])}function Ir(t,e,n,r){var i=dd,o=vd,s=yd;try{dd=t;var a=e.apply(n,r);return vd=o,yd=s,dd=i,a}catch(t){if(Gt(t)||!vd)throw t;throw vd.state|=4,Wt(t,Rr())}}function Rr(){return vd?new gd(vd,yd):null}function Dr(){return Pf}function Lr(){return kf}function Fr(t){return t||"en-US"}function Vr(){ar()}function jr(t,e,n){void 0===n&&(n=null);var r=[],i=t.visit?function(e){return t.visit(e,n)||e.visit(t,n)}:function(e){return e.visit(t,n)};return e.forEach(function(t){var e=i(t);e&&r.push(e)}),r}function Hr(t){if(":"!=t[0])return[null,t];var e=t.indexOf(":",1);if(-1==e)throw new Error('Unsupported format "'+t+'" expecting ":namespace:name"');return[t.slice(1,e),t.slice(e+1)]}function Ur(t){return null===t?null:Hr(t)[0]}function Br(t,e){return t?":"+t+":"+e:e}function zr(t){return Wd[t.toLowerCase()]||Kd}function qr(t){return t.replace(Jd,function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];return t[1].toUpperCase()})}function Wr(t,e){return Qr(t,":",e)}function Kr(t,e){return Qr(t,".",e)}function Qr(t,e,n){var r=t.indexOf(e);return-1==r?n:[t.slice(0,r).trim(),t.slice(r+1).trim()]}function Gr(t,e,n){return Array.isArray(t)?e.visitArray(t,n):Yr(t)?e.visitStringMap(t,n):null==t||"string"==typeof t||"number"==typeof t||"boolean"==typeof t?e.visitPrimitive(t,n):e.visitOther(t,n)}function Xr(t){var e=Error(t);return e[nv]=!0,e}function Zr(t){return t.replace(/([.*+?^=!:${}()|[\]\/\\])/g,"\\$1")}function Yr(t){return"object"==typeof t&&null!==t&&Object.getPrototypeOf(t)===rv}function $r(t){for(var e="",n=0;n<t.length;n++){var r=t.charCodeAt(n);if(r>=55296&&56319>=r&&t.length>n+1){var i=t.charCodeAt(n+1);i>=56320&&57343>=i&&(n++,r=(r-55296<<10)+i-56320+65536)}127>=r?e+=String.fromCharCode(r):2047>=r?e+=String.fromCharCode(r>>6&31|192,63&r|128):65535>=r?e+=String.fromCharCode(r>>12|224,r>>6&63|128,63&r|128):2097151>=r&&(e+=String.fromCharCode(r>>18&7|240,r>>12&63|128,r>>6&63|128,63&r|128))}return e}function Jr(t){return t.replace(/\W/g,"_")}function ti(t){if(!t||!t.reference)return null;var e=t.reference;if(e instanceof Hd)return e.name;if(e.__anonymousType)return e.__anonymousType;var n=_(e);return n.indexOf("(")>=0?(n="anonymous_"+uv++,e.__anonymousType=n):n=Jr(n),n}function ei(t){var e=t.reference;return e instanceof Hd?e.filePath:Ql.importUri(e)}function ni(t,e){return"View_"+ti({reference:t})+"_"+e}function ri(t){return"RenderType_"+ti({reference:t})}function ii(t){return"HostView_"+ti({reference:t})}function oi(t){return ti({reference:t})+"NgFactory"}function si(t){return null!=t.value?Jr(t.value):ti(t.identifier)}function ai(t){return null!=t.identifier?t.identifier.reference:t.value}function ui(t,e,n){var r=Gd.parse(e.selector)[0].getMatchingElementTemplate();return hv.create({isHost:!0,type:{reference:t,diDeps:[],lifecycleHooks:[]},template:new lv({encapsulation:wl.None,template:r,templateUrl:"",styles:[],styleUrls:[],ngContentSelectors:[],animations:[],isInline:!0}),changeDetection:pl.Default,inputs:[],outputs:[],host:{},isComponent:!0,selector:"*",providers:[],viewProviders:[],queries:[],viewQueries:[],componentViewType:n,rendererType:{id:"__Host__",encapsulation:wl.None,styles:[],data:{}}})}function ci(t){return t||[]}function pi(t){return t.reduce(function(t,e){var n=Array.isArray(e)?pi(e):e;return t.concat(n)},[])}function li(t){return t.replace(/(\w+:\/\/[\w:-]+)?(\/+)?/,"ng:///")}function hi(t,e,n){var r;return r=n.isInline?e.type.reference instanceof Hd?e.type.reference.filePath+"."+e.type.reference.name+".html":ti(t)+"/"+ti(e.type)+".html":n.templateUrl,li(r)}function fi(t,e){var n=t.moduleUrl.split(/\/\\/g),r=n[n.length-1];return li("css/"+e+r+".ngstyle.js")}function di(t){return li(ti(t.type)+"/module.ngfactory.js")}function vi(t,e){return li(ti(t)+"/"+ti(e.type)+".ngfactory.js")}function yi(t){return t>=Kv&&Yv>=t||t==qy}function mi(t){return t>=_y&&by>=t}function gi(t){return t>=Oy&&Hy>=t||t>=wy&&Sy>=t}function _i(t){return t>=Oy&&Iy>=t||t>=wy&&Cy>=t||mi(t)}function bi(){return function(t){return t}}function wi(t,e){if(yt()&&null!=e){if(!Array.isArray(e))throw new Error("Expected '"+t+"' to be an array of strings.");for(var n=0;n<e.length;n+=1)if("string"!=typeof e[n])throw new Error("Expected '"+t+"' to be an array of strings.")}}function Ei(t,e){if(!(null==e||Array.isArray(e)&&2==e.length))throw new Error("Expected '"+t+"' to be an array, [start, end].");if(yt()&&null!=e){var n=e[0],r=e[1];Ky.forEach(function(t){if(t.test(n)||t.test(r))throw new Error("['"+n+"', '"+r+"'] contains unusable interpolation symbol.")})}}function Ci(t,e){return new $y(t,Xy.Character,e,String.fromCharCode(e))}function xi(t,e){return new $y(t,Xy.Identifier,0,e)}function Si(t,e){return new $y(t,Xy.Keyword,0,e)}function Ti(t,e){return new $y(t,Xy.Operator,0,e)}function Ai(t,e){return new $y(t,Xy.String,0,e)}function Pi(t,e){return new $y(t,Xy.Number,e,"")}function ki(t,e){return new $y(t,Xy.Error,0,e)}function Mi(t){return t>=Oy&&Hy>=t||t>=wy&&Sy>=t||t==My||t==ey}function Oi(t){if(0==t.length)return!1;var e=new tm(t);if(!Mi(e.peek))return!1;for(e.advance();e.peek!==Wv;){if(!Ni(e.peek))return!1;e.advance()}return!0}function Ni(t){return gi(t)||mi(t)||t==My||t==ey}function Ii(t){return t==Ny||t==Ey}function Ri(t){return t==py||t==uy}function Di(t){return t===iy||t===Jv||t===Wy}function Li(t){switch(t){case Ry:return Qv;case Iy:return Xv;case Dy:return Zv;case Ly:return Kv;case Vy:return Gv;default:return t}}function Fi(t){var e=parseInt(t);if(isNaN(e))throw new Error("Invalid integer literal when parsing "+t);return e}function Vi(t){var e=Zr(t.start)+"([\\s\\S]*?)"+Zr(t.end);return new RegExp(e,"g")}function ji(t,e){var n=ei(e),r=null!=n?"in "+t+" "+ti(e)+" in "+n:"in "+t+" "+ti(e),i=new am("",r);return new um(new sm(i,null,null,null),new sm(i,null,null,null))}function Hi(t,e,n){void 0===n&&(n=null);var r=[],i=t.visit?function(e){return t.visit(e,n)||e.visit(t,n)}:function(e){return e.visit(t,n)};return e.forEach(function(t){var e=i(t);e&&r.push(e)}),r}function Ui(t,e,n,r,i){return void 0===r&&(r=!1),void 0===i&&(i=Gy),new Cm(new am(t,e),n,r,i).tokenize()}function Bi(t){var e=t===Wv?"EOF":String.fromCharCode(t);return'Unexpected character "'+e+'"'}function zi(t){return'Unknown entity "'+t+'" - use the "&#<decimal>;" or "&#x<hex>;" syntax'}function qi(t){return!yi(t)||t===Wv}function Wi(t){return yi(t)||t===my||t===hy||t===iy||t===Jv||t===yy}function Ki(t){return(Oy>t||t>Hy)&&(wy>t||t>Sy)&&(_y>t||t>by)}function Qi(t){return t==dy||t==Wv||!_i(t)}function Gi(t){return t==dy||t==Wv||!gi(t)}function Xi(t,e,n){var r=n?t.indexOf(n.start,e)==e:!1;return t.charCodeAt(e)==Uy&&!r}function Zi(t){return t===yy||gi(t)}function Yi(t,e){return $i(t)==$i(e)}function $i(t){return t>=Oy&&Hy>=t?t-Oy+wy:t}function Ji(t){for(var e,n=[],r=0;r<t.length;r++){var i=t[r];e&&e.type==mm.TEXT&&i.type==mm.TEXT?(e.parts[0]+=i.parts[0],e.sourceSpan.end=i.sourceSpan.end):(e=i,n.push(e))}return n}function to(t,e){return t.length>0&&t[t.length-1]===e}function eo(t){var e=new Hm(jm,t);return function(t,n,r,i){return e.toI18nMessage(t,n,r,i)}}function no(t){return t.split(Um)[2]}function ro(t,e,n,r,i){var o=new Zm(r,i);return o.merge(t,e,n)}function io(t){return t instanceof ym&&t.value&&t.value.startsWith("i18n")}function oo(t){return t instanceof ym&&t.value&&"/i18n"===t.value}function so(t){return t.attrs.find(function(t){return t.name===zm})||null}function ao(t){if(!t)return{meaning:"",description:"",id:""};var e=t.indexOf(Qm),n=t.indexOf(Km),r=e>-1?[t.slice(0,e),t.slice(e+2)]:[t,""],i=r[0],o=r[1],s=n>-1?[i.slice(0,n),i.slice(n+1)]:["",i],a=s[0],u=s[1];return{meaning:a,description:u,id:o}}function uo(){return $m}function co(t){return t.id||ho(lo(t.nodes).join("")+("["+t.meaning+"]"))}function po(t){if(t.id)return t.id;var e=new ng,n=t.nodes.map(function(t){return t.visit(e,null)});return yo(n.join(""),t.meaning)}function lo(t){return t.map(function(t){return t.visit(eg,null)})}function ho(t){var e=$r(t),n=So(e,rg.Big),r=8*e.length,i=new Array(80),o=[1732584193,4023233417,2562383102,271733878,3285377520],s=o[0],a=o[1],u=o[2],c=o[3],p=o[4];n[r>>5]|=128<<24-r%32,n[(r+64>>9<<4)+15]=r;for(var l=0;l<n.length;l+=16){for(var h=[s,a,u,c,p],f=h[0],d=h[1],v=h[2],y=h[3],m=h[4],g=0;80>g;g++){i[g]=16>g?n[l+g]:Co(i[g-3]^i[g-8]^i[g-14]^i[g-16],1);var _=fo(g,a,u,c),b=_[0],w=_[1],E=[Co(s,5),b,p,w,i[g]].reduce(_o);C=[c,u,Co(a,30),s,E],p=C[0],c=C[1],u=C[2],a=C[3],s=C[4]}x=[_o(s,f),_o(a,d),_o(u,v),_o(c,y),_o(p,m)],s=x[0],a=x[1],u=x[2],c=x[3],p=x[4]}return Mo(Po([s,a,u,c,p]));var C,x}function fo(t,e,n,r){return 20>t?[e&n|~e&r,1518500249]:40>t?[e^n^r,1859775393]:60>t?[e&n|e&r|n&r,2400959708]:[e^n^r,3395469782]}function vo(t){var e=$r(t),n=[mo(e,0),mo(e,102072)],r=n[0],i=n[1];return 0!=r||0!=i&&1!=i||(r=319790063^r,i=-1801410264^i),[r,i]}function yo(t,e){var n=vo(t),r=n[0],i=n[1];if(e){var o=vo(e),s=o[0],a=o[1];u=wo(xo([r,i],1),[s,a]),r=u[0],i=u[1]}return Oo(Po([2147483647&r,i]));var u}function mo(t,e){var n,r=[2654435769,2654435769],i=r[0],o=r[1],s=t.length;for(n=0;s>=n+12;n+=12)i=_o(i,Ao(t,n,rg.Little)),o=_o(o,Ao(t,n+4,rg.Little)),e=_o(e,Ao(t,n+8,rg.Little)),a=go([i,o,e]),i=a[0],o=a[1],e=a[2];return i=_o(i,Ao(t,n,rg.Little)),o=_o(o,Ao(t,n+4,rg.Little)),e=_o(e,s),e=_o(e,Ao(t,n+8,rg.Little)<<8),go([i,o,e])[2];var a}function go(t){var e=t[0],n=t[1],r=t[2];return e=Eo(e,n),e=Eo(e,r),e^=r>>>13,n=Eo(n,r),n=Eo(n,e),n^=e<<8,r=Eo(r,e),r=Eo(r,n),r^=n>>>13,e=Eo(e,n),e=Eo(e,r),e^=r>>>12,n=Eo(n,r),n=Eo(n,e),n^=e<<16,r=Eo(r,e),r=Eo(r,n),r^=n>>>5,e=Eo(e,n),e=Eo(e,r),e^=r>>>3,n=Eo(n,r),n=Eo(n,e),n^=e<<10,r=Eo(r,e),r=Eo(r,n),r^=n>>>15,[e,n,r]}function _o(t,e){return bo(t,e)[1]}function bo(t,e){var n=(65535&t)+(65535&e),r=(t>>>16)+(e>>>16)+(n>>>16);return[r>>>16,r<<16|65535&n]}function wo(t,e){var n=t[0],r=t[1],i=e[0],o=e[1],s=bo(r,o),a=s[0],u=s[1],c=_o(_o(n,i),a);return[c,u]}function Eo(t,e){var n=(65535&t)-(65535&e),r=(t>>16)-(e>>16)+(n>>16);return r<<16|65535&n}function Co(t,e){return t<<e|t>>>32-e}function xo(t,e){var n=t[0],r=t[1],i=n<<e|r>>>32-e,o=r<<e|n>>>32-e;return[i,o]}function So(t,e){for(var n=Array(t.length+3>>>2),r=0;r<n.length;r++)n[r]=Ao(t,4*r,e);return n}function To(t,e){return e>=t.length?0:255&t.charCodeAt(e)}function Ao(t,e,n){var r=0;if(n===rg.Big)for(var i=0;4>i;i++)r+=To(t,e+i)<<24-8*i;else for(var i=0;4>i;i++)r+=To(t,e+i)<<8*i;return r}function Po(t){return t.reduce(function(t,e){return t+ko(e)},"")}function ko(t){for(var e="",n=0;4>n;n++)e+=String.fromCharCode(t>>>8*(3-n)&255);return e}function Mo(t){for(var e="",n=0;n<t.length;n++){var r=To(t,n);e+=(r>>>4).toString(16)+(15&r).toString(16)}return e.toLowerCase()}function Oo(t){for(var e="",n="1",r=t.length-1;r>=0;r--)e=No(e,Io(To(t,r),n)),n=Io(256,n);return e.split("").reverse().join("")}function No(t,e){for(var n="",r=Math.max(t.length,e.length),i=0,o=0;r>i||o;i++){var s=o+ +(t[i]||0)+ +(e[i]||0);s>=10?(o=1,n+=s-10):(o=0,n+=s)}return n}function Io(t,e){for(var n="",r=e;0!==t;t>>>=1)1&t&&(n=No(n,r)),r=No(r,r);return n}function Ro(t){return t.map(function(t){return t.visit(ag)}).join("")}function Do(t){return fg.reduce(function(t,e){return t.replace(e[0],e[1])},t)}function Lo(t){switch(t.toLowerCase()){case"br":return"lb";case"img":return"image";default:return"x-"+t}}function Fo(t){return po(t)}function Vo(t){return t.toUpperCase().replace(/[^A-Z0-9_]/g,"_")}function jo(t,e,n){Object.defineProperty(t,e,{configurable:!0,enumerable:!0,get:function(){var r=n();return Object.defineProperty(t,e,{enumerable:!0,value:r}),r},set:function(){throw new Error("Could not overwrite an XTB translation")}})}function Ho(t){switch(t=(t||"xlf").toLowerCase()){case"xmb":return new Og;case"xtb":return new Fg;case"xliff":case"xlf":default:return new Eg}}function Uo(t,e,n){return void 0===e&&(e=null),void 0===n&&(n="src"),null==e?"@angular/"+t:"@angular/"+t+"/"+n+"/"+e}function Bo(t){var e=t.name;return Ql.resolveIdentifier(e,t.moduleUrl,null,t.runtime)}function zo(t){return{reference:Bo(t)}}function qo(t){return{identifier:t}}function Wo(t){return qo(zo(t))}function Ko(t){var e=new Xg;return new Qg(Hi(e,t),e.isExpanded,e.errors)}function Qo(t,e){var n=t.cases.map(function(t){-1!=Kg.indexOf(t.value)||t.value.match(/^=\d+$/)||e.push(new Gg(t.valueSourceSpan,'Plural cases should be "=<number>" or one of '+Kg.join(", ")));var n=Ko(t.expression);return e.push.apply(e,n.errors),new vm("ng-template",[new dm("ngPluralCase",""+t.value,t.valueSourceSpan)],n.nodes,t.sourceSpan,t.sourceSpan,t.sourceSpan)}),r=new dm("[ngPlural]",t.switchValue,t.switchValueSourceSpan);return new vm("ng-container",[r],n,t.sourceSpan,t.sourceSpan,t.sourceSpan)}function Go(t,e){var n=t.cases.map(function(t){var n=Ko(t.expression);return e.push.apply(e,n.errors),"other"===t.value?new vm("ng-template",[new dm("ngSwitchDefault","",t.valueSourceSpan)],n.nodes,t.sourceSpan,t.sourceSpan,t.sourceSpan):new vm("ng-template",[new dm("ngSwitchCase",""+t.value,t.valueSourceSpan)],n.nodes,t.sourceSpan,t.sourceSpan,t.sourceSpan)}),r=new dm("[ngSwitch]",t.switchValue,t.switchValueSourceSpan);return new vm("ng-container",[r],n,t.sourceSpan,t.sourceSpan,t.sourceSpan)}function Xo(t,e){var n=e.useExisting,r=e.useValue,i=e.deps;return{token:t.token,useClass:t.useClass,useExisting:n,useFactory:t.useFactory,useValue:r,deps:i,multi:t.multi}}function Zo(t,e){var n=e.eager,r=e.providers;return new Ld(t.token,t.multiProvider,t.eager||n,r,t.providerType,t.lifecycleHooks,t.sourceSpan)}function Yo(t,e,n){var r=new Map;t.forEach(function(t){var i={token:{identifier:t.type},useClass:t.type};$o([i],t.isComponent?Fd.Component:Fd.Directive,!0,e,n,r)});var i=t.filter(function(t){return t.isComponent}).concat(t.filter(function(t){return!t.isComponent}));return i.forEach(function(t){$o(t.providers,Fd.PublicService,!1,e,n,r),$o(t.viewProviders,Fd.PrivateService,!1,e,n,r)}),r}function $o(t,e,n,r,i,o){t.forEach(function(t){var s=o.get(ai(t.token));if(null!=s&&!!s.multiProvider!=!!t.multi&&i.push(new Zg("Mixing multi and non multi provider is not possible for token "+si(s.token),r)),s)t.multi||(s.providers.length=0),s.providers.push(t);else{var a=t.token.identifier&&t.token.identifier.lifecycleHooks?t.token.identifier.lifecycleHooks:[],u=!(t.useClass||t.useExisting||t.useFactory);s=new Ld(t.token,t.multi,n||u,[t],e,a,r),o.set(ai(t.token),s)}})}function Jo(t){var e=1,n=new Map;return t.viewQueries&&t.viewQueries.forEach(function(t){return es(n,{meta:t,queryId:e++})}),n}function ts(t,e){var n=t,r=new Map;return e.forEach(function(t){t.queries&&t.queries.forEach(function(t){return es(r,{meta:t,queryId:n++})})}),r}function es(t,e){e.meta.selectors.forEach(function(n){var r=t.get(ai(n));r||(r=[],t.set(ai(n),r)),r.push(e)})}function ns(t){if(null==t||0===t.length||"/"==t[0])return!1;var e=t.match(i_);return null===e||"package"==e[1]||"asset"==e[1]}function rs(t,e,n){var r=[],i=n.replace(r_,"").replace(n_,function(){for(var n=[],i=0;i<arguments.length;i++)n[i]=arguments[i];var o=n[1]||n[2];return ns(o)?(r.push(t.resolve(e,o)),""):n[0]});return new e_(i,r)}function is(t){return"@"==t[0]}function os(t,e,n,r){var i=[];return Gd.parse(e).forEach(function(e){var o=e.element?[e.element]:t.allKnownElementNames(),s=new Set(e.notSelectors.filter(function(t){return t.isElementSelector()}).map(function(t){return t.element})),a=o.filter(function(t){return!s.has(t)});i.push.apply(i,a.map(function(e){return t.securityContext(e,n,r)}))}),0===i.length?[Lf.NONE]:Array.from(new Set(i)).sort()}function ss(t){var e=null,n=null,r=null,i=!1,o=null;t.attrs.forEach(function(t){var s=t.name.toLowerCase();s==d_?e=t.value:s==g_?n=t.value:s==m_?r=t.value:t.name==E_?i=!0:t.name==C_&&t.value.length>0&&(o=t.value)}),e=as(e);var s=t.name.toLowerCase(),a=x_.OTHER;return Hr(s)[1]==v_?a=x_.NG_CONTENT:s==b_?a=x_.STYLE:s==w_?a=x_.SCRIPT:s==y_&&r==__&&(a=x_.STYLESHEET),new S_(a,e,n,i,o)}function as(t){return null===t||0===t.length?"*":t}function us(t){return function(e){return-1!==t.indexOf(e.msg)?(W_[e.msg]=(W_[e.msg]||0)+1,W_[e.msg]<=1):!0}}function cs(t){return t.trim().split(/\s+/g)}function ps(t,e){var n=new Gd,r=Hr(t)[1];n.setElement(r);for(var i=0;i<e.length;i++){var o=e[i][0],s=Hr(o)[1],a=e[i][1];if(n.addAttribute(s,a),o.toLowerCase()==U_){var u=cs(a);u.forEach(function(t){return n.addClassName(t)})}}return n}function ls(t){return t instanceof lm&&0==t.value.trim().length}function hs(t){var e=new Map;return t.forEach(function(t){e.get(t.type.reference)||e.set(t.type.reference,t)}),Array.from(e.values())}function fs(t){return t instanceof Uv&&(t=t.ast),t instanceof Ev}function ds(t,e,n){var r=Hr(t.name)[1];return r===F_?!0:r.toLowerCase()===V_?e&&r.toLowerCase()===V_?(n(z_,t.sourceSpan),!0):!1:void 0}function vs(t){var e=ms(t);return e&&e[sb.Scheme]||""}function ys(t,e,n,r,i,o,s){var a=[];return null!=t&&a.push(t+":"),null!=n&&(a.push("//"),null!=e&&a.push(e+"@"),a.push(n),null!=r&&a.push(":"+r)),null!=i&&a.push(i),null!=o&&a.push("?"+o),null!=s&&a.push("#"+s),a.join("")}function ms(t){return t.match(ob)}function gs(t){if("/"==t)return"/";for(var e="/"==t[0]?"/":"",n="/"===t[t.length-1]?"/":"",r=t.split("/"),i=[],o=0,s=0;s<r.length;s++){var a=r[s];switch(a){case"":
case".":break;case"..":i.length>0?i.pop():o++;break;default:i.push(a)}}if(""==e){for(;o-->0;)i.unshift("..");0===i.length&&i.push(".")}return e+i.join("/")+n}function _s(t){var e=t[sb.Path];return e=null==e?"":gs(e),t[sb.Path]=e,ys(t[sb.Scheme],t[sb.UserInfo],t[sb.Domain],t[sb.Port],e,t[sb.QueryData],t[sb.Fragment])}function bs(t,e){var n=ms(encodeURI(e)),r=ms(t);if(null!=n[sb.Scheme])return _s(n);n[sb.Scheme]=r[sb.Scheme];for(var i=sb.Scheme;i<=sb.Port;i++)null==n[i]&&(n[i]=r[i]);if("/"==n[sb.Path][0])return _s(n);var o=r[sb.Path];null==o&&(o="/");var s=o.lastIndexOf("/");return o=o.substring(0,s+1)+n[sb.Path],n[sb.Path]=o,_s(n)}function ws(t){return t instanceof ll}function Es(t,e){for(var n=t.length-1;n>=0;n--)if(e(t[n]))return t[n];return null}function Cs(t){var e=xs(t);return e[0]+".ngfactory"+e[1]}function xs(t){if(t.endsWith(".d.ts"))return[t.slice(0,-5),".ts"];var e=t.lastIndexOf(".");return-1!==e?[t.substring(0,e),t.substring(e)]:[t,""]}function Ss(t,e){return Ql.hasLifecycleHook(e,Ts(t))}function Ts(t){switch(t){case Ed.OnInit:return"ngOnInit";case Ed.OnDestroy:return"ngOnDestroy";case Ed.DoCheck:return"ngDoCheck";case Ed.OnChanges:return"ngOnChanges";case Ed.AfterContentInit:return"ngAfterContentInit";case Ed.AfterContentChecked:return"ngAfterContentChecked";case Ed.AfterViewInit:return"ngAfterViewInit";case Ed.AfterViewChecked:return"ngAfterViewChecked"}}function As(t){return t instanceof bl}function Ps(t){return t instanceof fl}function ks(t,e){if(void 0===e&&(e=[]),t)for(var n=0;n<t.length;n++){var r=P(t[n]);Array.isArray(r)?ks(r,e):e.push(r)}return e}function Ms(t){return t?Array.from(new Set(t)):[]}function Os(t){return Ms(ks(t))}function Ns(t){return t instanceof Hd||t instanceof Bl}function Is(t,e,n){if(e instanceof Hd)return t.resourceUri(e);var r=n.moduleId;if("string"==typeof r){var i=vs(r);return i?r:"package:"+r+$d}if(null!==r&&void 0!==r)throw Xr('moduleId should be a string in "'+Ds(e)+"\". See https://goo.gl/wIDDiL for more information.\nIf you're using Webpack you should inline the template and the styles, see https://goo.gl/X2J8zc.");return t.importUri(e)}function Rs(t,e){Gr(t,new yb,e)}function Ds(t){return t instanceof Hd?t.name+" in "+t.filePath:_(t)}function Ls(t){var e=Error("Can't compile synchronously as "+_(t)+" is still being loaded!");return e[Rl]=t,e}function Fs(t){var e=new gw;return e.visitAllStatements(t,null),e.varNames}function Vs(t,e){if(!e)return t;var n=new _w(e);return t.visitStatement(n,null)}function js(t,e){if(!e)return t;var n=new _w(e);return t.visitExpression(n,null)}function Hs(t,e,n){return void 0===e&&(e=null),new Mb(t,e,n)}function Us(t,e,n){return void 0===e&&(e=null),new jb(t,null,e,n)}function Bs(t,e,n){return void 0===e&&(e=null),void 0===n&&(n=null),null!=t?zs(Us(t,e),n):null}function zs(t,e){return void 0===e&&(e=null),null!=t?new wb(t,e):null}function qs(t,e,n){return void 0===e&&(e=null),new Gb(t,e,n)}function Ws(t,e,n){return void 0===e&&(e=null),void 0===n&&(n=!1),new Zb(t.map(function(t){return new Xb(t[0],t[1],n)}),e)}function Ks(t,e){return new Ub(t,e)}function Qs(t,e,n,r){return void 0===n&&(n=null),new qb(t,e,n,r)}function Gs(t,e,n){return void 0===e&&(e=null),new Vb(t,e,n)}function Xs(t){var e=t.parentArgs||[],n=t.parent?[Jb.callFn(e).toStmt()]:[],r=Zs(Array.isArray(t.builders)?t.builders:[t.builders]),i=new pw(null,t.ctorParams||[],n.concat(r.ctorStmts));return new hw(t.name,t.parent,r.fields,r.getters,i,r.methods,t.modifiers||[],t.sourceSpan)}function Zs(t){return{fields:[].concat.apply([],t.map(function(t){return t.fields||[]})),methods:[].concat.apply([],t.map(function(t){return t.methods||[]})),getters:[].concat.apply([],t.map(function(t){return t.getters||[]})),ctorStmts:[].concat.apply([],t.map(function(t){return t.ctorStmts||[]}))}}function Ys(t,e){return void 0===e&&(e=null),Gr(t,new ww,e)}function $s(t){return null!=t.value?Gs(t.value):Us(t.identifier)}function Js(t){var e="";t=$r(t);for(var n=0;n<t.length;){var r=t.charCodeAt(n++),i=t.charCodeAt(n++),o=t.charCodeAt(n++);e+=ea(r>>2),e+=ea((3&r)<<4|(isNaN(i)?0:i>>4)),e+=isNaN(i)?"=":ea((15&i)<<2|o>>6),e+=isNaN(i)||isNaN(o)?"=":ea(63&o)}return e}function ta(t){t=0>t?(-t<<1)+1:t<<1;var e="";do{var n=31&t;t>>=5,t>0&&(n=32|n),e+=ea(n)}while(t>0);return e}function ea(t){if(0>t||t>=64)throw new Error("Can only encode value in the range [0, 63]");return Ow[t]}function na(t,e,n){if(void 0===n&&(n=!0),null==t)return null;var r=t.replace(Nw,function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];return"$"==t[0]?e?"\\$":"$":"\n"==t[0]?"\\n":"\r"==t[0]?"\\r":"\\"+t[0]}),i=n||!Iw.test(r);return i?"'"+r+"'":r}function ra(t){for(var e="",n=0;t>n;n++)e+=Rw;return e}function ia(t){var e=new Uw(Hw,{fileNameToModuleName:function(t){return t},getImportAs:function(){return null},getTypeArity:function(){return null}}),n=Vw.createRoot([]),r=Array.isArray(t)?t:[t];return r.forEach(function(t){if(t instanceof rw)t.visitStatement(e,n);else if(t instanceof Pb)t.visitExpression(e,n);else{if(!(t instanceof gb))throw new Error("Don't know how to print debug info for "+t);t.visitType(e,n)}}),n.toSource()}function oa(t,e){for(var n=0,r=e;n<r.length;n++){var i=r[n];Bw[i.toLowerCase()]=t}}function sa(t){switch(t){case"width":case"height":case"minWidth":case"minHeight":case"maxWidth":case"maxHeight":case"left":case"top":case"bottom":case"right":case"fontSize":case"outlineWidth":case"outlineOffset":case"paddingTop":case"paddingLeft":case"paddingBottom":case"paddingRight":case"marginTop":case"marginLeft":case"marginBottom":case"marginRight":case"borderRadius":case"borderWidth":case"borderTopWidth":case"borderLeftWidth":case"borderRightWidth":case"borderBottomWidth":case"textIndent":return!0;default:return!1}}function aa(t){return t.replace(dE,"")}function ua(t){var e=t.match(vE);return e?e[0]:""}function ca(t,e){var n=pa(t),r=0;return n.escapedString.replace(yE,function(){for(var t=[],i=0;i<arguments.length;i++)t[i]=arguments[i];var o=t[2],s="",a=t[4],u="";a&&a.startsWith("{"+bE)&&(s=n.blocks[r++],a=a.substring(bE.length+1),u="{");var c=e(new wE(o,s));return""+t[1]+c.selector+t[3]+u+c.content+a})}function pa(t){for(var e=t.split(mE),n=[],r=[],i=0,o=[],s=0;s<e.length;s++){var a=e[s];a==_E&&i--,i>0?o.push(a):(o.length>0&&(r.push(o.join("")),n.push(bE),o=[]),n.push(a)),a==gE&&i++}return o.length>0&&(r.push(o.join("")),n.push(bE)),new EE(n.join(""),r)}function la(t){var e="styles";return t&&(e+="_"+ti(t.type)),e}function ha(t,e,n,r){t||(t=new LE);var i=fa({createLiteralArrayConverter:function(){return function(t){return qs(t)}},createLiteralMapConverter:function(t){return function(e){return Ws(t.map(function(t,n){return[t,e[n]]}))}},createPipeConverter:function(t){throw new Error("Illegal State: Actions are not allowed to contain pipes. Pipe: "+t)}},n),o=new DE(t,e,r),s=[];Ea(i.visit(o,IE.Statement),s),ga(o.temporaryCount,r,s);var a=s.length-1,u=null;if(a>=0){var c=s[a],p=Sa(c);p&&(u=xa(r),s[a]=u.set(p.cast(xb).notIdentical(Gs(!1))).toDeclStmt(null,[nw.Final]))}return new OE(s,u)}function fa(t,e){return va(t,e)}function da(t,e,n,r){t||(t=new LE);var i=Ca(r),o=[],s=new DE(t,e,r),a=n.visit(s,IE.Expression);if(s.temporaryCount)for(var u=0;u<s.temporaryCount;u++)o.push(ma(r,u));return o.push(i.set(a).toDeclStmt(null,[nw.Final])),new NE(o,i)}function va(t,e){var n=new RE(t);return e.visit(n)}function ya(t,e){return"tmp_"+t+"_"+e}function ma(t,e){return new iw(ya(t,e),tw)}function ga(t,e,n){for(var r=t-1;r>=0;r--)n.unshift(ma(e,r))}function _a(t,e){if(t!==IE.Statement)throw new Error("Expected a statement, but saw "+e)}function ba(t,e){if(t!==IE.Expression)throw new Error("Expected an expression, but saw "+e)}function wa(t,e){return t===IE.Statement?e.toStmt():e}function Ea(t,e){Array.isArray(t)?t.forEach(function(t){return Ea(t,e)}):e.push(t)}function Ca(t){return Hs("currVal_"+t)}function xa(t){return Hs("pd_"+t)}function Sa(t){return t instanceof sw?t.expr:t instanceof aw?t.value:null}function Ta(t){return t.multiProvider?Aa(t.providers):Pa(t.providerType,t.providers[0])}function Aa(t){function e(t,e){return e.map(function(e,i){var o="p"+t+"_"+i;return r.push(new zb(o,xb)),n.push(Ma(e)),Hs(o)})}var n=[],r=[],i=t.map(function(t,n){var r;if(t.useClass){var i=e(n,t.deps||t.useClass.diDeps);r=Us(t.useClass).instantiate(i)}else if(t.useFactory){var i=e(n,t.deps||t.useFactory.diDeps);r=Us(t.useFactory).callFn(i)}else if(t.useExisting){var i=e(n,[{token:t.useExisting}]);r=i[0]}else r=Ys(t.useValue);return r}),o=Qs(r,[new aw(qs(i))],Sb);return{providerExpr:o,flags:512,depsExpr:qs(n)}}function Pa(t,e){var n,r,i;t===Fd.Directive||t===Fd.Component?(n=Us(e.useClass),r=8192,i=e.deps||e.useClass.diDeps):e.useClass?(n=Us(e.useClass),r=256,i=e.deps||e.useClass.diDeps):e.useFactory?(n=Us(e.useFactory),r=512,i=e.deps||e.useFactory.diDeps):e.useExisting?(n=tw,r=1024,i=[{token:e.useExisting}]):(n=Ys(e.useValue),r=128,i=[]);var o=qs(i.map(function(t){return Ma(t)}));return{providerExpr:n,flags:r,depsExpr:o}}function ka(t){return t.identifier?Us(t.identifier):Gs(t.value)}function Ma(t){var e=t.isValue?Ys(t.value):ka(t.token),n=0;return t.isSkipSelf&&(n|=1),t.isOptional&&(n|=2),t.isValue&&(n|=8),0===n?e:qs([Gs(n),e])}function Oa(t){var e=t[t.length-1];return e instanceof Id?e.hasViewContainer:e instanceof Nd?e.name===UE&&e.children.length?Oa(e.children):e.hasViewContainer:e instanceof Vd}function Na(t){var e=0;switch(t){case Ed.AfterContentChecked:e=1048576;break;case Ed.AfterContentInit:e=524288;break;case Ed.AfterViewChecked:e=4194304;break;case Ed.AfterViewInit:e=2097152;break;case Ed.DoCheck:e=131072;break;case Ed.OnChanges:e=262144;break;case Ed.OnDestroy:e=65536;break;case Ed.OnInit:e=32768}return e}function Ia(t,e){switch(t.type){case jd.Attribute:return qs([Gs(1),Gs(t.name),Gs(t.securityContext)]);case jd.Property:return qs([Gs(8),Gs(t.name),Gs(t.securityContext)]);case jd.Animation:var n=8|(e&&e.directive.isComponent?32:16);return qs([Gs(n),Gs("@"+t.name),Gs(t.securityContext)]);case jd.Class:return qs([Gs(2),Gs(t.name),tw]);case jd.Style:return qs([Gs(4),Gs(t.name),Gs(t.unit)])}}function Ra(t){var e=Object.create(null);t.attrs.forEach(function(t){e[t.name]=t.value}),t.directives.forEach(function(t){Object.keys(t.directive.hostAttributes).forEach(function(n){var r=t.directive.hostAttributes[n],i=e[n];e[n]=null!=i?Da(n,i,r):r})});return qs(Object.keys(e).sort().map(function(t){return qs([Gs(t),Gs(e[t])])}))}function Da(t,e,n){return t==VE||t==jE?e+" "+n:n}function La(t,e){return KE.callFn(e.length>10?[WE,Gs(t),Gs(1),qs(e)]:[WE,Gs(t),Gs(0)].concat(e))}function Fa(t,e,n){return Us(zo(Wg.unwrapValue)).callFn([WE,Gs(t),Gs(e),n])}function Va(t,e){return void 0===e&&(e=new Map),t.forEach(function(t){var n,r=new Set,i=new Set;t instanceof Nd?(Va(t.children,e),t.children.forEach(function(t){var n=e.get(t);n.staticQueryIds.forEach(function(t){return r.add(t)}),n.dynamicQueryIds.forEach(function(t){return i.add(t)})}),n=t.queryMatches):t instanceof Id&&(Va(t.children,e),t.children.forEach(function(t){var n=e.get(t);n.staticQueryIds.forEach(function(t){return i.add(t)}),n.dynamicQueryIds.forEach(function(t){return i.add(t)})}),n=t.queryMatches),n&&n.forEach(function(t){return r.add(t.queryId)}),i.forEach(function(t){return r.delete(t)}),e.set(t,{staticQueryIds:r,dynamicQueryIds:i})}),e}function ja(t){var e=new Set,n=new Set;return Array.from(t.values()).forEach(function(t){t.staticQueryIds.forEach(function(t){return e.add(t)}),t.dynamicQueryIds.forEach(function(t){return n.add(t)})}),n.forEach(function(t){return e.delete(t)}),{staticQueryIds:e,dynamicQueryIds:n}}function Ha(t){var e=t.find(function(t){return t.directive.isComponent});if(e&&e.directive.entryComponents.length){var n=e.directive.entryComponents.map(function(t){return Us({reference:t.componentFactory})}),r=Wo(Wg.ComponentFactoryResolver),i={diDeps:[{isValue:!0,value:qs(n)},{token:r,isSkipSelf:!0,isOptional:!0},{token:Wo(Wg.NgModuleRef)}],lifecycleHooks:[],reference:Bo(Wg.CodegenComponentFactoryResolver)};return new Ld(r,!1,!0,[{token:r,multi:!1,useClass:i}],Fd.PrivateService,[],e.sourceSpan)}return null}function Ua(t,e){return t.isAnimation?{name:"@"+t.name+"."+t.phase,target:e&&e.directive.isComponent?"component":null}:t}function Ba(t,e,n){var r=0;return r|=!n||!t.staticQueryIds.has(e)&&t.dynamicQueryIds.has(e)?268435456:134217728}function za(t,e){var n=t.concat([new aw(qs(e.map(function(t){return Hs(t)})))]),r=new JE(null,null,null,new Map),i=new eC,o=i.visitAllStatements(n,r);return null!=o?o.value:null}function qa(t,e,n,r,i){for(var o=r.createChildWihtLocalVars(),s=0;s<t.length;s++)o.vars.set(t[s],e[s]);var a=i.visitAllStatements(n,o);return a?a.value:null}function Wa(t,e,n){var r={};t.getters.forEach(function(i){r[i.name]={configurable:!1,get:function(){var r=new JE(e,this,t.name,e.vars);return qa([],[],i.body,r,n)}}}),t.methods.forEach(function(i){var o=i.params.map(function(t){return t.name});r[i.name]={writable:!1,configurable:!1,value:function(){for(var r=[],s=0;s<arguments.length;s++)r[s]=arguments[s];var a=new JE(e,this,t.name,e.vars);return qa(o,r,i.body,a,n)}}});var i=t.constructorMethod.params.map(function(t){return t.name}),o=function(){for(var r=this,o=[],s=0;s<arguments.length;s++)o[s]=arguments[s];var a=new JE(e,this,t.name,e.vars);t.fields.forEach(function(t){r[t.name]=void 0}),qa(i,o,t.constructorMethod.body,a,n)},s=t.parent?t.parent.visitExpression(n,e):Object;return o.prototype=Object.create(s.prototype,r),o}function Ka(t,e,n,r){return function(){for(var i=[],o=0;o<arguments.length;o++)i[o]=arguments[o];return qa(t,i,e,n,r)}}function Qa(t,e,n){var r=e.toSource()+"\n//# sourceURL="+t,i=[],o=[];for(var s in n)i.push(s),o.push(n[s]);if(yt()){var a=(new(Function.bind.apply(Function,[void 0].concat(i.concat("return null;"))))).toString(),u=a.slice(0,a.indexOf("return null;")).split("\n").length-1;r+="\n"+e.toSourceMapGenerator(t,t,u).toJsComment()}return(new(Function.bind.apply(Function,[void 0].concat(i.concat(r))))).apply(void 0,o)}function Ga(t,e,n){var r=new oC,i=Vw.createRoot(n),o=new aw(qs(n.map(function(t){return Hs(t)})));return r.visitAllStatements(e.concat([o]),i),Qa(t,i,r.getArgs())}function Xa(t){if(!t.isComponent)throw new Error("Could not compile '"+ti(t.type)+"' because it is not a component.")}function Za(){Ql.reflectionCapabilities=new ql}function Ya(t){return{useJit:$a(t.map(function(t){return t.useJit})),defaultEncapsulation:$a(t.map(function(t){return t.defaultEncapsulation})),providers:Ja(t.map(function(t){return t.providers})),missingTranslation:$a(t.map(function(t){return t.missingTranslation}))}}function $a(t){for(var e=t.length-1;e>=0;e--)if(void 0!==t[e])return t[e];return void 0}function Ja(t){var e=[];return t.forEach(function(t){return t&&e.push.apply(e,t)}),e}function tu(t,e){return t&&e.startsWith(t)?e.substring(t.length):e}function eu(t){return t.replace(/\/index.html$/,"")}function nu(t,e,n){var r="="+t;if(e.indexOf(r)>-1)return r;if(r=n.getPluralCategory(t),e.indexOf(r)>-1)return r;if(e.indexOf("other")>-1)return"other";throw new Error('No plural message found for value "'+t+'"')}function ru(t,e){"string"==typeof e&&(e=parseInt(e,10));var n=e,r=n.toString().replace(/^[^.]*\.?/,""),i=Math.floor(Math.abs(n)),o=r.length,s=parseInt(r,10),a=parseInt(n.toString().replace(/^[^.]*\.?|0+$/g,""),10)||0,u=t.split("-")[0].toLowerCase();switch(u){case"af":case"asa":case"az":case"bem":case"bez":case"bg":case"brx":case"ce":case"cgg":case"chr":case"ckb":case"ee":case"el":case"eo":case"es":case"eu":case"fo":case"fur":case"gsw":case"ha":case"haw":case"hu":case"jgo":case"jmc":case"ka":case"kk":case"kkj":case"kl":case"ks":case"ksb":case"ky":case"lb":case"lg":case"mas":case"mgo":case"ml":case"mn":case"nb":case"nd":case"ne":case"nn":case"nnh":case"nyn":case"om":case"or":case"os":case"ps":case"rm":case"rof":case"rwk":case"saq":case"seh":case"sn":case"so":case"sq":case"ta":case"te":case"teo":case"tk":case"tr":case"ug":case"uz":case"vo":case"vun":case"wae":case"xog":return 1===n?CC.One:CC.Other;case"agq":case"bas":case"cu":case"dav":case"dje":case"dua":case"dyo":case"ebu":case"ewo":case"guz":case"kam":case"khq":case"ki":case"kln":case"kok":case"ksf":case"lrc":case"lu":case"luo":case"luy":case"mer":case"mfe":case"mgh":case"mua":case"mzn":case"nmg":case"nus":case"qu":case"rn":case"rw":case"sbp":case"twq":case"vai":case"yav":case"yue":case"zgh":case"ak":case"ln":case"mg":case"pa":case"ti":return n===Math.floor(n)&&n>=0&&1>=n?CC.One:CC.Other;case"am":case"as":case"bn":case"fa":case"gu":case"hi":case"kn":case"mr":case"zu":return 0===i||1===n?CC.One:CC.Other;case"ar":return 0===n?CC.Zero:1===n?CC.One:2===n?CC.Two:n%100===Math.floor(n%100)&&n%100>=3&&10>=n%100?CC.Few:n%100===Math.floor(n%100)&&n%100>=11&&99>=n%100?CC.Many:CC.Other;case"ast":case"ca":case"de":case"en":case"et":case"fi":case"fy":case"gl":case"it":case"nl":case"sv":case"sw":case"ur":case"yi":return 1===i&&0===o?CC.One:CC.Other;case"be":return n%10===1&&n%100!==11?CC.One:n%10===Math.floor(n%10)&&n%10>=2&&4>=n%10&&!(n%100>=12&&14>=n%100)?CC.Few:n%10===0||n%10===Math.floor(n%10)&&n%10>=5&&9>=n%10||n%100===Math.floor(n%100)&&n%100>=11&&14>=n%100?CC.Many:CC.Other;case"br":return n%10===1&&n%100!==11&&n%100!==71&&n%100!==91?CC.One:n%10===2&&n%100!==12&&n%100!==72&&n%100!==92?CC.Two:n%10===Math.floor(n%10)&&(n%10>=3&&4>=n%10||n%10===9)&&!(n%100>=10&&19>=n%100||n%100>=70&&79>=n%100||n%100>=90&&99>=n%100)?CC.Few:0!==n&&n%1e6===0?CC.Many:CC.Other;case"bs":case"hr":case"sr":return 0===o&&i%10===1&&i%100!==11||s%10===1&&s%100!==11?CC.One:0===o&&i%10===Math.floor(i%10)&&i%10>=2&&4>=i%10&&!(i%100>=12&&14>=i%100)||s%10===Math.floor(s%10)&&s%10>=2&&4>=s%10&&!(s%100>=12&&14>=s%100)?CC.Few:CC.Other;case"cs":case"sk":return 1===i&&0===o?CC.One:i===Math.floor(i)&&i>=2&&4>=i&&0===o?CC.Few:0!==o?CC.Many:CC.Other;case"cy":return 0===n?CC.Zero:1===n?CC.One:2===n?CC.Two:3===n?CC.Few:6===n?CC.Many:CC.Other;case"da":return 1===n||0!==a&&(0===i||1===i)?CC.One:CC.Other;case"dsb":case"hsb":return 0===o&&i%100===1||s%100===1?CC.One:0===o&&i%100===2||s%100===2?CC.Two:0===o&&i%100===Math.floor(i%100)&&i%100>=3&&4>=i%100||s%100===Math.floor(s%100)&&s%100>=3&&4>=s%100?CC.Few:CC.Other;case"ff":case"fr":case"hy":case"kab":return 0===i||1===i?CC.One:CC.Other;case"fil":return 0===o&&(1===i||2===i||3===i)||0===o&&i%10!==4&&i%10!==6&&i%10!==9||0!==o&&s%10!==4&&s%10!==6&&s%10!==9?CC.One:CC.Other;case"ga":return 1===n?CC.One:2===n?CC.Two:n===Math.floor(n)&&n>=3&&6>=n?CC.Few:n===Math.floor(n)&&n>=7&&10>=n?CC.Many:CC.Other;case"gd":return 1===n||11===n?CC.One:2===n||12===n?CC.Two:n===Math.floor(n)&&(n>=3&&10>=n||n>=13&&19>=n)?CC.Few:CC.Other;case"gv":return 0===o&&i%10===1?CC.One:0===o&&i%10===2?CC.Two:0!==o||i%100!==0&&i%100!==20&&i%100!==40&&i%100!==60&&i%100!==80?0!==o?CC.Many:CC.Other:CC.Few;case"he":return 1===i&&0===o?CC.One:2===i&&0===o?CC.Two:0!==o||n>=0&&10>=n||n%10!==0?CC.Other:CC.Many;case"is":return 0===a&&i%10===1&&i%100!==11||0!==a?CC.One:CC.Other;case"ksh":return 0===n?CC.Zero:1===n?CC.One:CC.Other;case"kw":case"naq":case"se":case"smn":return 1===n?CC.One:2===n?CC.Two:CC.Other;case"lag":return 0===n?CC.Zero:0!==i&&1!==i||0===n?CC.Other:CC.One;case"lt":return n%10!==1||n%100>=11&&19>=n%100?n%10===Math.floor(n%10)&&n%10>=2&&9>=n%10&&!(n%100>=11&&19>=n%100)?CC.Few:0!==s?CC.Many:CC.Other:CC.One;case"lv":case"prg":return n%10===0||n%100===Math.floor(n%100)&&n%100>=11&&19>=n%100||2===o&&s%100===Math.floor(s%100)&&s%100>=11&&19>=s%100?CC.Zero:n%10===1&&n%100!==11||2===o&&s%10===1&&s%100!==11||2!==o&&s%10===1?CC.One:CC.Other;case"mk":return 0===o&&i%10===1||s%10===1?CC.One:CC.Other;case"mt":return 1===n?CC.One:0===n||n%100===Math.floor(n%100)&&n%100>=2&&10>=n%100?CC.Few:n%100===Math.floor(n%100)&&n%100>=11&&19>=n%100?CC.Many:CC.Other;case"pl":return 1===i&&0===o?CC.One:0===o&&i%10===Math.floor(i%10)&&i%10>=2&&4>=i%10&&!(i%100>=12&&14>=i%100)?CC.Few:0===o&&1!==i&&i%10===Math.floor(i%10)&&i%10>=0&&1>=i%10||0===o&&i%10===Math.floor(i%10)&&i%10>=5&&9>=i%10||0===o&&i%100===Math.floor(i%100)&&i%100>=12&&14>=i%100?CC.Many:CC.Other;case"pt":return n===Math.floor(n)&&n>=0&&2>=n&&2!==n?CC.One:CC.Other;case"ro":return 1===i&&0===o?CC.One:0!==o||0===n||1!==n&&n%100===Math.floor(n%100)&&n%100>=1&&19>=n%100?CC.Few:CC.Other;case"ru":case"uk":return 0===o&&i%10===1&&i%100!==11?CC.One:0===o&&i%10===Math.floor(i%10)&&i%10>=2&&4>=i%10&&!(i%100>=12&&14>=i%100)?CC.Few:0===o&&i%10===0||0===o&&i%10===Math.floor(i%10)&&i%10>=5&&9>=i%10||0===o&&i%100===Math.floor(i%100)&&i%100>=11&&14>=i%100?CC.Many:CC.Other;case"shi":return 0===i||1===n?CC.One:n===Math.floor(n)&&n>=2&&10>=n?CC.Few:CC.Other;case"si":return 0===n||1===n||0===i&&1===s?CC.One:CC.Other;case"sl":return 0===o&&i%100===1?CC.One:0===o&&i%100===2?CC.Two:0===o&&i%100===Math.floor(i%100)&&i%100>=3&&4>=i%100||0!==o?CC.Few:CC.Other;case"tzm":return n===Math.floor(n)&&n>=0&&1>=n||n===Math.floor(n)&&n>=11&&99>=n?CC.One:CC.Other;default:return CC.Other}}function iu(t){return t.name||typeof t}function ou(t,e){return Error("InvalidPipeArgument: '"+e+"' for pipe '"+_(t)+"'")}function su(t){return t?t[0].toUpperCase()+t.substr(1).toLowerCase():t}function au(t){return function(e,n){var r=t(e,n);return 1==r.length?"0"+r:r}}function uu(t){return function(e,n){return t(e,n).split(" ")[1]}}function cu(t){return function(e,n){return t(e,n).split(" ")[0]}}function pu(t,e,n){return new Intl.DateTimeFormat(e,n).format(t).replace(/[\u200e\u200f]/g,"")}function lu(t){var e={hour:"2-digit",hour12:!1,timeZoneName:t};return function(t,n){var r=pu(t,n,e);return r?r.substring(3):""}}function hu(t,e){return t.hour12=e,t}function fu(t,e){var n={};return n[t]=2===e?"2-digit":"numeric",n}function du(t,e){var n={};return n[t]=4>e?e>1?"short":"narrow":"long",n}function vu(t){return Object.assign.apply(Object,[{}].concat(t))}function yu(t){return function(e,n){return pu(e,n,t)}}function mu(t,e,n){var r=YC[t];if(r)return r(e,n);var i=t,o=JC.get(i);if(!o){o=[];var s=void 0;for(ZC.exec(t);t;)s=ZC.exec(t),s?(o=o.concat(s.slice(1)),t=o.pop()):(o.push(t),t=null);JC.set(i,o)}return o.reduce(function(t,r){var i=$C[r];return t+(i?i(e,n):gu(r))},"")}function gu(t){return"''"===t?"'":t.replace(/(^'|'$)/g,"").replace(/''/g,"'")}function _u(t,e,n,r,i,o,s){if(void 0===o&&(o=null),void 0===s&&(s=!1),null==n)return null;if(n="string"==typeof n&&wu(n)?+n:n,"number"!=typeof n)throw ou(t,n);var a,u,c;if(r!==GC.Currency&&(a=1,u=0,c=3),i){var p=i.match(ex);if(null===p)throw new Error(i+" is not a valid digit info for number pipes");null!=p[1]&&(a=bu(p[1])),null!=p[3]&&(u=bu(p[3])),null!=p[5]&&(c=bu(p[5]))}return XC.format(n,e,r,{minimumIntegerDigits:a,minimumFractionDigits:u,maximumFractionDigits:c,currency:o,currencyAsSymbol:s})}function bu(t){var e=parseInt(t);if(isNaN(e))throw new Error("Invalid integer literal when parsing "+t);return e}function wu(t){return!isNaN(t-parseFloat(t))}function Eu(t){return null==t||""===t}function Cu(t){return t instanceof Date&&!isNaN(t.valueOf())}function xu(t){var e=new Date(0),n=0,r=0,i=t[8]?e.setUTCFullYear:e.setFullYear,o=t[8]?e.setUTCHours:e.setHours;t[9]&&(n=Su(t[9]+t[10]),r=Su(t[9]+t[11])),i.call(e,Su(t[1]),Su(t[2])-1,Su(t[3]));var s=Su(t[4]||"0")-n,a=Su(t[5]||"0")-r,u=Su(t[6]||"0"),c=Math.round(1e3*parseFloat("0."+(t[7]||0)));return o.call(e,s,a,u,c),e}function Su(t){return parseInt(t,10)}function Tu(){return mx}function Au(t){mx||(mx=t)}function Pu(){return Tx||(Tx=document.querySelector("base"))?Tx.getAttribute("href"):null}function ku(t){return xx||(xx=document.createElement("a")),xx.setAttribute("href",t),"/"===xx.pathname.charAt(0)?xx.pathname:"/"+xx.pathname}function Mu(t,e){e=encodeURIComponent(e);for(var n=0,r=t.split(";");n<r.length;n++){var i=r[n],o=i.indexOf("="),s=-1==o?[i,""]:[i.slice(0,o),i.slice(o+1)],a=s[0],u=s[1];if(a.trim()===e)return decodeURIComponent(u)}return null}function Ou(t,e,n){for(var r=e.split("."),i=t;r.length>1;){var o=r.shift();i=i.hasOwnProperty(o)&&null!=i[o]?i[o]:i[o]={}}(void 0===i||null===i)&&(i={}),i[r.shift()]=n}function Nu(){return!!window.history.pushState}function Iu(t,e){var n=function(){var n=Tu(),r=Array.prototype.slice.apply(n.querySelectorAll(e,"style[ng-transition]"));r.filter(function(e){return n.getAttribute(e,"ng-transition")===t}).forEach(function(t){return n.remove(t)})};return n}function Ru(t){return Pt(t)}function Du(t,e){var n=(t||[]).concat(e||[]);return Tu().setGlobalVar(Lx,Ru),Tu().setGlobalVar(Fx,Rx({},Dx,Lu(n||[]))),function(){return Ru}}function Lu(t){return t.reduce(function(t,e){return t[e.name]=e.token,t},{})}function Fu(t){return Xx.replace(Kx,t)}function Vu(t){return Gx.replace(Kx,t)}function ju(t,e,n){for(var r=0;r<e.length;r++){var i=e[r];Array.isArray(i)?ju(t,i,n):(i=i.replace(Kx,t),n.push(i))}return n}function Hu(t){return function(e){var n=t(e);n===!1&&(e.preventDefault(),e.returnValue=!1)}}function Uu(t,e){if(t.charCodeAt(0)===$x)throw new Error("Found the synthetic "+e+" "+t+'. Please include either "BrowserAnimationsModule" or "NoopAnimationsModule" in your application.')}function Bu(t){return t=String(t),t.match(cS)||t.match(pS)?t:(yt()&&Tu().log("WARNING: sanitizing unsafe URL value "+t+" (see http://g.co/ng/security#xss)"),"unsafe:"+t)}function zu(t){return t=String(t),t.split(",").map(function(t){return Bu(t.trim())}).join(", ")}function qu(){if(lS)return lS;hS=Tu();var t=hS.createElement("template");if("content"in t)return t;var e=hS.createHtmlDocument();if(lS=hS.querySelector(e,"body"),null==lS){var n=hS.createElement("html",e);lS=hS.createElement("body",e),hS.appendChild(n,lS),hS.appendChild(e,n)}return lS}function Wu(t){for(var e={},n=0,r=t.split(",");n<r.length;n++){var i=r[n];e[i]=!0}return e}function Ku(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];for(var n={},r=0,i=t;r<i.length;r++){var o=i[r];for(var s in o)o.hasOwnProperty(s)&&(n[s]=!0)}return n}function Qu(t,e){if(e&&hS.contains(t,e))throw new Error("Failed to sanitize html because the element is clobbered: "+hS.getOuterHTML(t));return e}function Gu(t){return t.replace(/&/g,"&").replace(SS,function(t){var e=t.charCodeAt(0),n=t.charCodeAt(1);return"&#"+(1024*(e-55296)+(n-56320)+65536)+";"}).replace(TS,function(t){return"&#"+t.charCodeAt(0)+";"}).replace(/</g,"<").replace(/>/g,">")}function Xu(t){hS.attributeMap(t).forEach(function(e,n){("xmlns:ns1"===n||0===n.indexOf("ns1:"))&&hS.removeAttribute(t,n)});for(var e=0,n=hS.childNodesAsList(t);e<n.length;e++){var r=n[e];hS.isElementNode(r)&&Xu(r)}}function Zu(t,e){try{var n=qu(),r=e?String(e):"",i=5,o=r;do{if(0===i)throw new Error("Failed to sanitize html because the input is unstable");i--,r=o,hS.setInnerHTML(n,r),t.documentMode&&Xu(n),o=hS.getInnerHTML(n)}while(r!==o);for(var s=new xS,a=s.sanitizeChildren(hS.getTemplateContent(n)||n),u=hS.getTemplateContent(n)||n,c=0,p=hS.childNodesAsList(u);c<p.length;c++){var l=p[c];hS.removeChild(u,l)}return yt()&&s.sanitizedSomething&&hS.log("WARNING: sanitizing HTML stripped some content (see http://g.co/ng/security#xss)."),a}catch(t){throw lS=null,t}}function Yu(t){for(var e=!0,n=!0,r=0;r<t.length;r++){var i=t.charAt(r);"'"===i&&n?e=!e:'"'===i&&e&&(n=!n)}return e&&n}function $u(t){if(t=String(t).trim(),!t)return"";var e=t.match(RS);return e&&Bu(e[1])===e[1]||t.match(IS)&&Yu(t)?t:(yt()&&Tu().log("WARNING: sanitizing unsafe style value "+t+" (see http://g.co/ng/security#xss)."),"unsafe")}function Ju(){Sx.makeCurrent(),Nx.init()}function tc(){return new Vl}function ec(){return document}var nc,rc="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},ic=t(function(t,e){if(e.root="object"==typeof window&&window.window===window&&window||"object"==typeof self&&self.self===self&&self||"object"==typeof rc&&rc.global===rc&&rc,!e.root)throw new Error("RxJS could not find any global context (window, self, global)")}),oc=e,sc={isFunction:oc},ac=Array.isArray||function(t){return t&&"number"==typeof t.length},uc={isArray:ac},cc=n,pc={isObject:cc},lc={e:{}},hc={errorObject:lc},fc=i,dc={tryCatch:fc},vc=rc&&rc.__extends||function(t,e){function n(){this.constructor=t}for(var r in e)e.hasOwnProperty(r)&&(t[r]=e[r]);t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)},yc=function(t){function e(e){t.call(this),this.errors=e;var n=Error.call(this,e?e.length+" errors occurred during unsubscription:\n "+e.map(function(t,e){return e+1+") "+t.toString()}).join("\n "):"");this.name=n.name="UnsubscriptionError",this.stack=n.stack,this.message=n.message}return vc(e,t),e}(Error),mc=yc,gc={UnsubscriptionError:mc},_c=function(){function t(t){this.closed=!1,this._parent=null,this._parents=null,this._subscriptions=null,t&&(this._unsubscribe=t)}return t.prototype.unsubscribe=function(){var t,e=!1;if(!this.closed){var n=this,r=n._parent,i=n._parents,s=n._unsubscribe,a=n._subscriptions;this.closed=!0,this._parent=null,this._parents=null,this._subscriptions=null;for(var u=-1,c=i?i.length:0;r;)r.remove(this),r=++u<c&&i[u]||null;if(sc.isFunction(s)){var p=dc.tryCatch(s).call(this);p===hc.errorObject&&(e=!0,t=t||(hc.errorObject.e instanceof gc.UnsubscriptionError?o(hc.errorObject.e.errors):[hc.errorObject.e]))}if(uc.isArray(a))for(u=-1,c=a.length;++u<c;){var l=a[u];if(pc.isObject(l)){var p=dc.tryCatch(l.unsubscribe).call(l);if(p===hc.errorObject){e=!0,t=t||[];var h=hc.errorObject.e;h instanceof gc.UnsubscriptionError?t=t.concat(o(h.errors)):t.push(h)}}}if(e)throw new gc.UnsubscriptionError(t)}},t.prototype.add=function(e){if(!e||e===t.EMPTY)return t.EMPTY;if(e===this)return this;var n=e;switch(typeof e){case"function":n=new t(e);case"object":if(n.closed||"function"!=typeof n.unsubscribe)return n;if(this.closed)return n.unsubscribe(),n;if("function"!=typeof n._addParent){var r=n;n=new t,n._subscriptions=[r]}break;default:throw new Error("unrecognized teardown "+e+" added to Subscription.")}var i=this._subscriptions||(this._subscriptions=[]);return i.push(n),n._addParent(this),n},t.prototype.remove=function(t){var e=this._subscriptions;if(e){var n=e.indexOf(t);-1!==n&&e.splice(n,1)}},t.prototype._addParent=function(t){var e=this,n=e._parent,r=e._parents;n&&n!==t?r?-1===r.indexOf(t)&&r.push(t):this._parents=[t]:this._parent=t},t.EMPTY=function(t){return t.closed=!0,t}(new t),t}(),bc=_c,wc={Subscription:bc},Ec={closed:!0,next:function(){},error:function(t){throw t},complete:function(){}},Cc={empty:Ec},xc=t(function(t,e){var n=ic.root.Symbol;e.rxSubscriber="function"==typeof n&&"function"==typeof n.for?n.for("rxSubscriber"):"@@rxSubscriber",e.$$rxSubscriber=e.rxSubscriber}),Sc=rc&&rc.__extends||function(t,e){function n(){this.constructor=t}for(var r in e)e.hasOwnProperty(r)&&(t[r]=e[r]);t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)},Tc=function(t){function e(n,r,i){switch(t.call(this),this.syncErrorValue=null,this.syncErrorThrown=!1,this.syncErrorThrowable=!1,this.isStopped=!1,arguments.length){case 0:this.destination=Cc.empty;break;case 1:if(!n){this.destination=Cc.empty;break}if("object"==typeof n){n instanceof e?(this.destination=n,this.destination.add(this)):(this.syncErrorThrowable=!0,this.destination=new Pc(this,n));break}default:this.syncErrorThrowable=!0,this.destination=new Pc(this,n,r,i)}}return Sc(e,t),e.prototype[xc.rxSubscriber]=function(){return this},e.create=function(t,n,r){var i=new e(t,n,r);return i.syncErrorThrowable=!1,i},e.prototype.next=function(t){this.isStopped||this._next(t)},e.prototype.error=function(t){this.isStopped||(this.isStopped=!0,this._error(t))},e.prototype.complete=function(){this.isStopped||(this.isStopped=!0,this._complete())},e.prototype.unsubscribe=function(){this.closed||(this.isStopped=!0,t.prototype.unsubscribe.call(this))},e.prototype._next=function(t){this.destination.next(t)},e.prototype._error=function(t){this.destination.error(t),this.unsubscribe()},e.prototype._complete=function(){this.destination.complete(),this.unsubscribe()},e.prototype._unsubscribeAndRecycle=function(){var t=this,e=t._parent,n=t._parents;return this._parent=null,this._parents=null,this.unsubscribe(),this.closed=!1,this.isStopped=!1,this._parent=e,this._parents=n,
this},e}(wc.Subscription),Ac=Tc,Pc=function(t){function e(e,n,r,i){t.call(this),this._parentSubscriber=e;var o,s=this;sc.isFunction(n)?o=n:n&&(o=n.next,r=n.error,i=n.complete,n!==Cc.empty&&(s=Object.create(n),sc.isFunction(s.unsubscribe)&&this.add(s.unsubscribe.bind(s)),s.unsubscribe=this.unsubscribe.bind(this))),this._context=s,this._next=o,this._error=r,this._complete=i}return Sc(e,t),e.prototype.next=function(t){if(!this.isStopped&&this._next){var e=this._parentSubscriber;e.syncErrorThrowable?this.__tryOrSetError(e,this._next,t)&&this.unsubscribe():this.__tryOrUnsub(this._next,t)}},e.prototype.error=function(t){if(!this.isStopped){var e=this._parentSubscriber;if(this._error)e.syncErrorThrowable?(this.__tryOrSetError(e,this._error,t),this.unsubscribe()):(this.__tryOrUnsub(this._error,t),this.unsubscribe());else{if(!e.syncErrorThrowable)throw this.unsubscribe(),t;e.syncErrorValue=t,e.syncErrorThrown=!0,this.unsubscribe()}}},e.prototype.complete=function(){if(!this.isStopped){var t=this._parentSubscriber;this._complete?t.syncErrorThrowable?(this.__tryOrSetError(t,this._complete),this.unsubscribe()):(this.__tryOrUnsub(this._complete),this.unsubscribe()):this.unsubscribe()}},e.prototype.__tryOrUnsub=function(t,e){try{t.call(this._context,e)}catch(t){throw this.unsubscribe(),t}},e.prototype.__tryOrSetError=function(t,e,n){try{e.call(this._context,n)}catch(e){return t.syncErrorValue=e,t.syncErrorThrown=!0,!0}return!1},e.prototype._unsubscribe=function(){var t=this._parentSubscriber;this._context=null,this._parentSubscriber=null,t.unsubscribe()},e}(Tc),kc={Subscriber:Ac},Mc=s,Oc={toSubscriber:Mc},Nc=t(function(t,e){function n(t){var e,n=t.Symbol;return"function"==typeof n?n.observable?e=n.observable:(e=n("observable"),n.observable=e):e="@@observable",e}e.getSymbolObservable=n,e.observable=n(ic.root),e.$$observable=e.observable}),Ic=function(){function t(t){this._isScalar=!1,t&&(this._subscribe=t)}return t.prototype.lift=function(e){var n=new t;return n.source=this,n.operator=e,n},t.prototype.subscribe=function(t,e,n){var r=this.operator,i=Oc.toSubscriber(t,e,n);if(r?r.call(i,this.source):i.add(this._trySubscribe(i)),i.syncErrorThrowable&&(i.syncErrorThrowable=!1,i.syncErrorThrown))throw i.syncErrorValue;return i},t.prototype._trySubscribe=function(t){try{return this._subscribe(t)}catch(e){t.syncErrorThrown=!0,t.syncErrorValue=e,t.error(e)}},t.prototype.forEach=function(t,e){var n=this;if(e||(ic.root.Rx&&ic.root.Rx.config&&ic.root.Rx.config.Promise?e=ic.root.Rx.config.Promise:ic.root.Promise&&(e=ic.root.Promise)),!e)throw new Error("no Promise impl found");return new e(function(e,r){var i;i=n.subscribe(function(e){if(i)try{t(e)}catch(t){r(t),i.unsubscribe()}else t(e)},r,e)})},t.prototype._subscribe=function(t){return this.source.subscribe(t)},t.prototype[Nc.observable]=function(){return this},t.create=function(e){return new t(e)},t}(),Rc=Ic,Dc={Observable:Rc},Lc=rc&&rc.__extends||function(t,e){function n(){this.constructor=t}for(var r in e)e.hasOwnProperty(r)&&(t[r]=e[r]);t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)},Fc=function(t){function e(e,n){t.call(this),this.value=e,this.scheduler=n,this._isScalar=!0,n&&(this._isScalar=!1)}return Lc(e,t),e.create=function(t,n){return new e(t,n)},e.dispatch=function(t){var e=t.done,n=t.value,r=t.subscriber;return e?void r.complete():(r.next(n),void(r.closed||(t.done=!0,this.schedule(t))))},e.prototype._subscribe=function(t){var n=this.value,r=this.scheduler;return r?r.schedule(e.dispatch,0,{done:!1,value:n,subscriber:t}):(t.next(n),void(t.closed||t.complete()))},e}(Dc.Observable),Vc=Fc,jc={ScalarObservable:Vc},Hc=rc&&rc.__extends||function(t,e){function n(){this.constructor=t}for(var r in e)e.hasOwnProperty(r)&&(t[r]=e[r]);t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)},Uc=function(t){function e(e){t.call(this),this.scheduler=e}return Hc(e,t),e.create=function(t){return new e(t)},e.dispatch=function(t){var e=t.subscriber;e.complete()},e.prototype._subscribe=function(t){var n=this.scheduler;return n?n.schedule(e.dispatch,0,{subscriber:t}):void t.complete()},e}(Dc.Observable),Bc=Uc,zc={EmptyObservable:Bc},qc=a,Wc={isScheduler:qc},Kc=rc&&rc.__extends||function(t,e){function n(){this.constructor=t}for(var r in e)e.hasOwnProperty(r)&&(t[r]=e[r]);t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)},Qc=function(t){function e(e,n){t.call(this),this.array=e,this.scheduler=n,n||1!==e.length||(this._isScalar=!0,this.value=e[0])}return Kc(e,t),e.create=function(t,n){return new e(t,n)},e.of=function(){for(var t=[],n=0;n<arguments.length;n++)t[n-0]=arguments[n];var r=t[t.length-1];Wc.isScheduler(r)?t.pop():r=null;var i=t.length;return i>1?new e(t,r):1===i?new jc.ScalarObservable(t[0],r):new zc.EmptyObservable(r)},e.dispatch=function(t){var e=t.array,n=t.index,r=t.count,i=t.subscriber;return n>=r?void i.complete():(i.next(e[n]),void(i.closed||(t.index=n+1,this.schedule(t))))},e.prototype._subscribe=function(t){var n=0,r=this.array,i=r.length,o=this.scheduler;if(o)return o.schedule(e.dispatch,0,{array:r,index:n,count:i,subscriber:t});for(var s=0;i>s&&!t.closed;s++)t.next(r[s]);t.complete()},e}(Dc.Observable),Gc=Qc,Xc={ArrayObservable:Gc},Zc=rc&&rc.__extends||function(t,e){function n(){this.constructor=t}for(var r in e)e.hasOwnProperty(r)&&(t[r]=e[r]);t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)},Yc=function(t){function e(){t.apply(this,arguments)}return Zc(e,t),e.prototype.notifyNext=function(t,e){this.destination.next(e)},e.prototype.notifyError=function(t){this.destination.error(t)},e.prototype.notifyComplete=function(){this.destination.complete()},e}(kc.Subscriber),$c=Yc,Jc={OuterSubscriber:$c},tp=function(t){return t&&"number"==typeof t.length},ep={isArrayLike:tp},np=u,rp={isPromise:np},ip=t(function(t,e){function n(t){var e=t.Symbol;if("function"==typeof e)return e.iterator||(e.iterator=e("iterator polyfill")),e.iterator;var n=t.Set;if(n&&"function"==typeof(new n)["@@iterator"])return"@@iterator";var r=t.Map;if(r)for(var i=Object.getOwnPropertyNames(r.prototype),o=0;o<i.length;++o){var s=i[o];if("entries"!==s&&"size"!==s&&r.prototype[s]===r.prototype.entries)return s}return"@@iterator"}e.symbolIteratorPonyfill=n,e.iterator=n(ic.root),e.$$iterator=e.iterator}),op=rc&&rc.__extends||function(t,e){function n(){this.constructor=t}for(var r in e)e.hasOwnProperty(r)&&(t[r]=e[r]);t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)},sp=function(t){function e(e,n,r){t.call(this),this.parent=e,this.outerValue=n,this.outerIndex=r,this.index=0}return op(e,t),e.prototype._next=function(t){this.parent.notifyNext(this.outerValue,t,this.outerIndex,this.index++,this)},e.prototype._error=function(t){this.parent.notifyError(t,this),this.unsubscribe()},e.prototype._complete=function(){this.parent.notifyComplete(this),this.unsubscribe()},e}(kc.Subscriber),ap=sp,up={InnerSubscriber:ap},cp=c,pp={subscribeToResult:cp},lp=rc&&rc.__extends||function(t,e){function n(){this.constructor=t}for(var r in e)e.hasOwnProperty(r)&&(t[r]=e[r]);t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)},hp=p,fp=function(){function t(t){this.concurrent=t}return t.prototype.call=function(t,e){return e.subscribe(new vp(t,this.concurrent))},t}(),dp=fp,vp=function(t){function e(e,n){t.call(this,e),this.concurrent=n,this.hasCompleted=!1,this.buffer=[],this.active=0}return lp(e,t),e.prototype._next=function(t){this.active<this.concurrent?(this.active++,this.add(pp.subscribeToResult(this,t))):this.buffer.push(t)},e.prototype._complete=function(){this.hasCompleted=!0,0===this.active&&0===this.buffer.length&&this.destination.complete()},e.prototype.notifyComplete=function(t){var e=this.buffer;this.remove(t),this.active--,e.length>0?this._next(e.shift()):0===this.active&&this.hasCompleted&&this.destination.complete()},e}(Jc.OuterSubscriber),yp=vp,mp={mergeAll:hp,MergeAllOperator:dp,MergeAllSubscriber:yp},gp=l,_p=h,bp={merge:gp,mergeStatic:_p},wp=bp.mergeStatic,Ep=rc&&rc.__extends||function(t,e){function n(){this.constructor=t}for(var r in e)e.hasOwnProperty(r)&&(t[r]=e[r]);t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)},Cp=function(t){function e(){var e=t.call(this,"object unsubscribed");this.name=e.name="ObjectUnsubscribedError",this.stack=e.stack,this.message=e.message}return Ep(e,t),e}(Error),xp=Cp,Sp={ObjectUnsubscribedError:xp},Tp=rc&&rc.__extends||function(t,e){function n(){this.constructor=t}for(var r in e)e.hasOwnProperty(r)&&(t[r]=e[r]);t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)},Ap=function(t){function e(e,n){t.call(this),this.subject=e,this.subscriber=n,this.closed=!1}return Tp(e,t),e.prototype.unsubscribe=function(){if(!this.closed){this.closed=!0;var t=this.subject,e=t.observers;if(this.subject=null,e&&0!==e.length&&!t.isStopped&&!t.closed){var n=e.indexOf(this.subscriber);-1!==n&&e.splice(n,1)}}},e}(wc.Subscription),Pp=Ap,kp={SubjectSubscription:Pp},Mp=rc&&rc.__extends||function(t,e){function n(){this.constructor=t}for(var r in e)e.hasOwnProperty(r)&&(t[r]=e[r]);t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)},Op=function(t){function e(e){t.call(this,e),this.destination=e}return Mp(e,t),e}(kc.Subscriber),Np=Op,Ip=function(t){function e(){t.call(this),this.observers=[],this.closed=!1,this.isStopped=!1,this.hasError=!1,this.thrownError=null}return Mp(e,t),e.prototype[xc.rxSubscriber]=function(){return new Op(this)},e.prototype.lift=function(t){var e=new Dp(this,this);return e.operator=t,e},e.prototype.next=function(t){if(this.closed)throw new Sp.ObjectUnsubscribedError;if(!this.isStopped)for(var e=this.observers,n=e.length,r=e.slice(),i=0;n>i;i++)r[i].next(t)},e.prototype.error=function(t){if(this.closed)throw new Sp.ObjectUnsubscribedError;this.hasError=!0,this.thrownError=t,this.isStopped=!0;for(var e=this.observers,n=e.length,r=e.slice(),i=0;n>i;i++)r[i].error(t);this.observers.length=0},e.prototype.complete=function(){if(this.closed)throw new Sp.ObjectUnsubscribedError;this.isStopped=!0;for(var t=this.observers,e=t.length,n=t.slice(),r=0;e>r;r++)n[r].complete();this.observers.length=0},e.prototype.unsubscribe=function(){this.isStopped=!0,this.closed=!0,this.observers=null},e.prototype._trySubscribe=function(e){if(this.closed)throw new Sp.ObjectUnsubscribedError;return t.prototype._trySubscribe.call(this,e)},e.prototype._subscribe=function(t){if(this.closed)throw new Sp.ObjectUnsubscribedError;return this.hasError?(t.error(this.thrownError),wc.Subscription.EMPTY):this.isStopped?(t.complete(),wc.Subscription.EMPTY):(this.observers.push(t),new kp.SubjectSubscription(this,t))},e.prototype.asObservable=function(){var t=new Dc.Observable;return t.source=this,t},e.create=function(t,e){return new Dp(t,e)},e}(Dc.Observable),Rp=Ip,Dp=function(t){function e(e,n){t.call(this),this.destination=e,this.source=n}return Mp(e,t),e.prototype.next=function(t){var e=this.destination;e&&e.next&&e.next(t)},e.prototype.error=function(t){var e=this.destination;e&&e.error&&this.destination.error(t)},e.prototype.complete=function(){var t=this.destination;t&&t.complete&&this.destination.complete()},e.prototype._subscribe=function(t){var e=this.source;return e?this.source.subscribe(t):wc.Subscription.EMPTY},e}(Ip),Lp=Dp,Fp={SubjectSubscriber:Np,Subject:Rp,AnonymousSubject:Lp},Vp=rc&&rc.__extends||function(t,e){function n(){this.constructor=t}for(var r in e)e.hasOwnProperty(r)&&(t[r]=e[r]);t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)},jp=function(t){function e(e,n){t.call(this),this.source=e,this.subjectFactory=n,this._refCount=0}return Vp(e,t),e.prototype._subscribe=function(t){return this.getSubject().subscribe(t)},e.prototype.getSubject=function(){var t=this._subject;return(!t||t.isStopped)&&(this._subject=this.subjectFactory()),this._subject},e.prototype.connect=function(){var t=this._connection;return t||(t=this._connection=new wc.Subscription,t.add(this.source.subscribe(new Bp(this.getSubject(),this))),t.closed?(this._connection=null,t=wc.Subscription.EMPTY):this._connection=t),t},e.prototype.refCount=function(){return this.lift(new zp(this))},e}(Dc.Observable),Hp=jp,Up={operator:{value:null},_refCount:{value:0,writable:!0},_subject:{value:null,writable:!0},_connection:{value:null,writable:!0},_subscribe:{value:jp.prototype._subscribe},getSubject:{value:jp.prototype.getSubject},connect:{value:jp.prototype.connect},refCount:{value:jp.prototype.refCount}},Bp=function(t){function e(e,n){t.call(this,e),this.connectable=n}return Vp(e,t),e.prototype._error=function(e){this._unsubscribe(),t.prototype._error.call(this,e)},e.prototype._complete=function(){this._unsubscribe(),t.prototype._complete.call(this)},e.prototype._unsubscribe=function(){var t=this.connectable;if(t){this.connectable=null;var e=t._connection;t._refCount=0,t._subject=null,t._connection=null,e&&e.unsubscribe()}},e}(Fp.SubjectSubscriber),zp=function(){function t(t){this.connectable=t}return t.prototype.call=function(t,e){var n=this.connectable;n._refCount++;var r=new qp(t,n),i=e.subscribe(r);return r.closed||(r.connection=n.connect()),i},t}(),qp=function(t){function e(e,n){t.call(this,e),this.connectable=n}return Vp(e,t),e.prototype._unsubscribe=function(){var t=this.connectable;if(!t)return void(this.connection=null);this.connectable=null;var e=t._refCount;if(0>=e)return void(this.connection=null);if(t._refCount=e-1,e>1)return void(this.connection=null);var n=this.connection,r=t._connection;this.connection=null,!r||n&&r!==n||r.unsubscribe()},e}(kc.Subscriber),Wp={ConnectableObservable:Hp,connectableObservableDescriptor:Up},Kp=f,Qp=function(){function t(t,e){this.subjectFactory=t,this.selector=e}return t.prototype.call=function(t,e){var n=this.selector,r=this.subjectFactory(),i=n(r).subscribe(t);return i.add(e.subscribe(r)),i},t}(),Gp=Qp,Xp={multicast:Kp,MulticastOperator:Gp},Zp=v,Yp=void 0||function(t,e){function n(){this.constructor=t}for(var r in e)e.hasOwnProperty(r)&&(t[r]=e[r]);t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)},$p=function(){function t(t){this._desc=t}return t.prototype.toString=function(){return"Token "+this._desc},t}(),Jp=function(t){function e(e){return t.call(this,e)||this}return Yp(e,t),e.prototype.toString=function(){return"InjectionToken "+this._desc},e}($p),tl="undefined"!=typeof window&&window,el="undefined"!=typeof self&&"undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope&&self,nl="undefined"!=typeof global&&global,rl=tl||nl||el,il=null,ol=0,sl=rl.Reflect,al=new Jp("AnalyzeForEntryComponents"),ul=S("Attribute",[["attributeName",void 0]]),cl=function(){function t(){}return t}(),pl=(T("ContentChildren",[["selector",void 0],{first:!1,isViewQuery:!1,descendants:!1,read:void 0}],cl),T("ContentChild",[["selector",void 0],{first:!0,isViewQuery:!1,descendants:!0,read:void 0}],cl),T("ViewChildren",[["selector",void 0],{first:!1,isViewQuery:!0,descendants:!0,read:void 0}],cl),T("ViewChild",[["selector",void 0],{first:!0,isViewQuery:!0,descendants:!0,read:void 0}],cl),{});pl.OnPush=0,pl.Default=1,pl[pl.OnPush]="OnPush",pl[pl.Default]="Default";var ll=C("Directive",{selector:void 0,inputs:void 0,outputs:void 0,host:void 0,providers:void 0,exportAs:void 0,queries:void 0}),hl=C("Component",{selector:void 0,inputs:void 0,outputs:void 0,host:void 0,exportAs:void 0,moduleId:void 0,providers:void 0,viewProviders:void 0,changeDetection:pl.Default,queries:void 0,templateUrl:void 0,template:void 0,styleUrls:void 0,styles:void 0,animations:void 0,encapsulation:void 0,interpolation:void 0,entryComponents:void 0},ll),fl=C("Pipe",{name:void 0,pure:!0}),dl=T("Input",[["bindingPropertyName",void 0]]),vl=T("Output",[["bindingPropertyName",void 0]]),yl=T("HostBinding",[["hostPropertyName",void 0]]),ml=T("HostListener",[["eventName",void 0],["args",[]]]),gl={name:"custom-elements"},_l={name:"no-errors-schema"},bl=C("NgModule",{providers:void 0,declarations:void 0,imports:void 0,exports:void 0,entryComponents:void 0,bootstrap:void 0,schemas:void 0,id:void 0}),wl={};wl.Emulated=0,wl.Native=1,wl.None=2,wl[wl.Emulated]="Emulated",wl[wl.Native]="Native",wl[wl.None]="None";var El=function(){function t(t){this.full=t}return Object.defineProperty(t.prototype,"major",{get:function(){return this.full.split(".")[0]},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"minor",{get:function(){return this.full.split(".")[1]},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"patch",{get:function(){return this.full.split(".").slice(2).join(".")},enumerable:!0,configurable:!0}),t}(),Cl=new El("4.0.2"),xl=S("Inject",[["token",void 0]]),Sl=S("Optional",[]),Tl=C("Injectable",[]),Al=S("Self",[]),Pl=S("SkipSelf",[]),kl=S("Host",[]),Ml=new Object,Ol=Ml,Nl=function(){function t(){}return t.prototype.get=function(t,e){if(void 0===e&&(e=Ml),e===Ml)throw new Error("No provider for "+_(t)+"!");return e},t}(),Il=function(){function t(){}return t.prototype.get=function(){},t.prototype.get=function(){},t}();Il.THROW_IF_NOT_FOUND=Ml,Il.NULL=new Nl;var Rl="ngComponentType",Dl="ngDebugContext",Ll="ngOriginalError",Fl="ngErrorLogger",Vl=function(){function t(){this._console=console}return t.prototype.handleError=function(t){var e=this._findOriginalError(t),n=this._findContext(t),r=O(t);r(this._console,"ERROR",t),e&&r(this._console,"ORIGINAL ERROR",e),n&&r(this._console,"ERROR CONTEXT",n)},t.prototype._findContext=function(t){return t?k(t)?k(t):this._findContext(M(t)):null},t.prototype._findOriginalError=function(t){for(var e=M(t);e&&M(e);)e=M(e);return e},t}(),jl=function(){function t(t,e){if(this.token=t,this.id=e,!t)throw new Error("Token must be defined!")}return Object.defineProperty(t.prototype,"displayName",{get:function(){return _(this.token)},enumerable:!0,configurable:!0}),t.get=function(t){return Ul.get(P(t))},Object.defineProperty(t,"numberOfKeys",{get:function(){return Ul.numberOfKeys},enumerable:!0,configurable:!0}),t}(),Hl=function(){function t(){this._allKeys=new Map}return t.prototype.get=function(t){if(t instanceof jl)return t;if(this._allKeys.has(t))return this._allKeys.get(t);var e=new jl(t,jl.numberOfKeys);return this._allKeys.set(t,e),e},Object.defineProperty(t.prototype,"numberOfKeys",{get:function(){return this._allKeys.size},enumerable:!0,configurable:!0}),t}(),Ul=new Hl,Bl=Function,zl=/^function\s+\S+\(\)\s*{[\s\S]+\.apply\(this,\s*arguments\)/,ql=function(){function t(t){this._reflect=t||rl.Reflect}return t.prototype.isReflectionEnabled=function(){return!0},t.prototype.factory=function(t){return function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];return new(t.bind.apply(t,[void 0].concat(e)))}},t.prototype._zipTypesAndAnnotations=function(t,e){var n;n=new Array("undefined"==typeof t?e.length:t.length);for(var r=0;r<n.length;r++)n[r]="undefined"==typeof t?[]:t[r]!=Object?[t[r]]:[],e&&null!=e[r]&&(n[r]=n[r].concat(e[r]));return n},t.prototype._ownParameters=function(t,e){if(zl.exec(t.toString()))return null;if(t.parameters&&t.parameters!==e.parameters)return t.parameters;var n=t.ctorParameters;if(n&&n!==e.ctorParameters){var r="function"==typeof n?n():n,i=r.map(function(t){return t&&t.type}),o=r.map(function(t){return t&&K(t.decorators)});return this._zipTypesAndAnnotations(i,o)}if(null!=this._reflect&&null!=this._reflect.getOwnMetadata){var o=this._reflect.getOwnMetadata("parameters",t),i=this._reflect.getOwnMetadata("design:paramtypes",t);if(i||o)return this._zipTypesAndAnnotations(i,o)}return new Array(t.length).fill(void 0)},t.prototype.parameters=function(t){if(!W(t))return[];var e=Q(t),n=this._ownParameters(t,e);return n||e===Object||(n=this.parameters(e)),n||[]},t.prototype._ownAnnotations=function(t,e){if(t.annotations&&t.annotations!==e.annotations){var n=t.annotations;return"function"==typeof n&&n.annotations&&(n=n.annotations),n}return t.decorators&&t.decorators!==e.decorators?K(t.decorators):this._reflect&&this._reflect.getOwnMetadata?this._reflect.getOwnMetadata("annotations",t):null},t.prototype.annotations=function(t){if(!W(t))return[];var e=Q(t),n=this._ownAnnotations(t,e)||[],r=e!==Object?this.annotations(e):[];return r.concat(n)},t.prototype._ownPropMetadata=function(t,e){if(t.propMetadata&&t.propMetadata!==e.propMetadata){var n=t.propMetadata;return"function"==typeof n&&n.propMetadata&&(n=n.propMetadata),n}if(t.propDecorators&&t.propDecorators!==e.propDecorators){var r=t.propDecorators,i={};return Object.keys(r).forEach(function(t){i[t]=K(r[t])}),i}return this._reflect&&this._reflect.getOwnMetadata?this._reflect.getOwnMetadata("propMetadata",t):null},t.prototype.propMetadata=function(t){if(!W(t))return{};var e=Q(t),n={};if(e!==Object){var r=this.propMetadata(e);Object.keys(r).forEach(function(t){n[t]=r[t]})}var i=this._ownPropMetadata(t,e);return i&&Object.keys(i).forEach(function(t){var e=[];n.hasOwnProperty(t)&&e.push.apply(e,n[t]),e.push.apply(e,i[t]),n[t]=e}),n},t.prototype.hasLifecycleHook=function(t,e){return t instanceof Bl&&e in t.prototype},t.prototype.getter=function(t){return new Function("o","return o."+t+";")},t.prototype.setter=function(t){return new Function("o","v","return o."+t+" = v;")},t.prototype.method=function(t){var e="if (!o."+t+") throw new Error('\""+t+"\" is undefined');\n return o."+t+".apply(o, args);";return new Function("o","args",e)},t.prototype.importUri=function(t){return"object"==typeof t&&t.filePath?t.filePath:"./"+_(t)},t.prototype.resourceUri=function(t){return"./"+_(t)},t.prototype.resolveIdentifier=function(t,e,n,r){return r},t.prototype.resolveEnum=function(t,e){return t[e]},t}(),Wl=function(){function t(){}return t.prototype.parameters=function(){},t.prototype.annotations=function(){},t.prototype.propMetadata=function(){},t.prototype.importUri=function(){},t.prototype.resourceUri=function(){},t.prototype.resolveIdentifier=function(){},t.prototype.resolveEnum=function(){},t}(),Kl=function(t){function e(e){var n=t.call(this)||this;return n.reflectionCapabilities=e,n}return Yp(e,t),e.prototype.updateCapabilities=function(t){this.reflectionCapabilities=t},e.prototype.factory=function(t){return this.reflectionCapabilities.factory(t)},e.prototype.parameters=function(t){return this.reflectionCapabilities.parameters(t)},e.prototype.annotations=function(t){return this.reflectionCapabilities.annotations(t)},e.prototype.propMetadata=function(t){return this.reflectionCapabilities.propMetadata(t)},e.prototype.hasLifecycleHook=function(t,e){return this.reflectionCapabilities.hasLifecycleHook(t,e)},e.prototype.getter=function(t){return this.reflectionCapabilities.getter(t)},e.prototype.setter=function(t){return this.reflectionCapabilities.setter(t)},e.prototype.method=function(t){return this.reflectionCapabilities.method(t)},e.prototype.importUri=function(t){return this.reflectionCapabilities.importUri(t)},e.prototype.resourceUri=function(t){return this.reflectionCapabilities.resourceUri(t)},e.prototype.resolveIdentifier=function(t,e,n,r){return this.reflectionCapabilities.resolveIdentifier(t,e,n,r)},e.prototype.resolveEnum=function(t,e){return this.reflectionCapabilities.resolveEnum(t,e)},e}(Wl),Ql=new Kl(new ql),Gl=function(){function t(t,e,n){this.key=t,this.optional=e,this.visibility=n}return t.fromKey=function(e){return new t(e,!1,null)},t}(),Xl=[],Zl=function(){function t(t,e,n){this.key=t,this.resolvedFactories=e,this.multiProvider=n}return Object.defineProperty(t.prototype,"resolvedFactory",{get:function(){return this.resolvedFactories[0]},enumerable:!0,configurable:!0}),t}(),Yl=function(){function t(t,e){this.factory=t,this.dependencies=e}return t}(),$l=new Object,Jl=function(){function t(){}return t.resolve=function(t){return Z(t)},t.resolveAndCreate=function(e,n){var r=t.resolve(e);return t.fromResolvedProviders(r,n)},t.fromResolvedProviders=function(t,e){return new th(t,e)},t.prototype.parent=function(){},t.prototype.resolveAndCreateChild=function(){},t.prototype.createChildFromResolved=function(){},t.prototype.resolveAndInstantiate=function(){},t.prototype.instantiateResolved=function(){},t.prototype.get=function(){},t}(),th=function(){function t(t,e){this._constructionCounter=0,this._providers=t,this._parent=e||null;var n=t.length;this.keyIds=new Array(n),this.objs=new Array(n);for(var r=0;n>r;r++)this.keyIds[r]=t[r].key.id,this.objs[r]=$l}return t.prototype.get=function(t,e){return void 0===e&&(e=Ol),this._getByKey(jl.get(t),null,e)},Object.defineProperty(t.prototype,"parent",{get:function(){return this._parent},enumerable:!0,configurable:!0}),t.prototype.resolveAndCreateChild=function(t){var e=Jl.resolve(t);return this.createChildFromResolved(e)},t.prototype.createChildFromResolved=function(e){var n=new t(e);return n._parent=this,n},t.prototype.resolveAndInstantiate=function(t){return this.instantiateResolved(Jl.resolve([t])[0])},t.prototype.instantiateResolved=function(t){return this._instantiateProvider(t)},t.prototype.getProviderAtIndex=function(t){if(0>t||t>=this._providers.length)throw z(t);return this._providers[t]},t.prototype._new=function(t){if(this._constructionCounter++>this._getMaxNumberOfObjects())throw j(this,t.key);return this._instantiateProvider(t)},t.prototype._getMaxNumberOfObjects=function(){return this.objs.length},t.prototype._instantiateProvider=function(t){if(t.multiProvider){for(var e=new Array(t.resolvedFactories.length),n=0;n<t.resolvedFactories.length;++n)e[n]=this._instantiate(t,t.resolvedFactories[n]);return e}return this._instantiate(t,t.resolvedFactories[0])},t.prototype._instantiate=function(t,e){var n,r=this,i=e.factory;try{n=e.dependencies.map(function(t){return r._getByReflectiveDependency(t)})}catch(e){throw e.addKey&&e.addKey(this,t.key),e}var o;try{o=i.apply(void 0,n)}catch(e){throw H(this,e,e.stack,t.key)}return o},t.prototype._getByReflectiveDependency=function(t){return this._getByKey(t.key,t.visibility,t.optional?null:Ol)},t.prototype._getByKey=function(t,e,n){return t===eh?this:e instanceof Al?this._getByKeySelf(t,n):this._getByKeyDefault(t,n,e)},t.prototype._getObjByKeyId=function(t){for(var e=0;e<this.keyIds.length;e++)if(this.keyIds[e]===t)return this.objs[e]===$l&&(this.objs[e]=this._new(this._providers[e])),this.objs[e];return $l},t.prototype._throwOrNull=function(t,e){if(e!==Ol)return e;throw V(this,t)},t.prototype._getByKeySelf=function(t,e){var n=this._getObjByKeyId(t.id);return n!==$l?n:this._throwOrNull(t,e)},t.prototype._getByKeyDefault=function(e,n,r){var i;for(i=r instanceof Pl?this._parent:this;i instanceof t;){var o=i,s=o._getObjByKeyId(e.id);if(s!==$l)return s;i=o._parent}return null!==i?i.get(e.token,n):this._throwOrNull(e,n)},Object.defineProperty(t.prototype,"displayName",{get:function(){var t=rt(this,function(t){return' "'+t.key.displayName+'" '}).join(", ");return"ReflectiveInjector(providers: ["+t+"])"},enumerable:!0,configurable:!0}),t.prototype.toString=function(){return this.displayName},t}(),eh=jl.get(Il),nh=new Jp("Application Initializer"),rh=function(){function t(t){var e=this;this._done=!1;var n=[];if(t)for(var r=0;r<t.length;r++){var i=t[r]();it(i)&&n.push(i)}this._donePromise=Promise.all(n).then(function(){e._done=!0}),0===n.length&&(this._done=!0)}return Object.defineProperty(t.prototype,"done",{get:function(){return this._done},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"donePromise",{get:function(){return this._donePromise},enumerable:!0,configurable:!0}),t}();rh.decorators=[{type:Tl}],rh.ctorParameters=function(){return[{type:Array,decorators:[{type:xl,args:[nh]},{type:Sl}]}]};var ih=new Jp("AppId"),oh={provide:ih,useFactory:st,deps:[]},sh=new Jp("Platform Initializer"),ah=new Jp("Platform ID"),uh=new Jp("appBootstrapListener"),ch=new Jp("Application Packages Root URL"),ph=function(){function t(){}return t.prototype.log=function(t){console.log(t)},t.prototype.warn=function(t){console.warn(t)},t}();ph.decorators=[{type:Tl}],ph.ctorParameters=function(){return[]};var lh=function(){function t(t,e){this.ngModuleFactory=t,this.componentFactories=e}return t}(),hh=function(){function t(){}return t.prototype.compileModuleSync=function(){throw ut()},t.prototype.compileModuleAsync=function(){throw ut()},t.prototype.compileModuleAndAllComponentsSync=function(){throw ut()},t.prototype.compileModuleAndAllComponentsAsync=function(){throw ut()},t.prototype.getNgContentSelectors=function(){throw ut()},t.prototype.clearCache=function(){},t.prototype.clearCacheFor=function(){},t}();hh.decorators=[{type:Tl}],hh.ctorParameters=function(){return[]};var fh=new Jp("compilerOptions"),dh=function(){function t(){}return t.prototype.createCompiler=function(){},t}(),vh=function(){function t(){}return t.prototype.location=function(){},t.prototype.injector=function(){},t.prototype.instance=function(){},t.prototype.hostView=function(){},t.prototype.changeDetectorRef=function(){},t.prototype.componentType=function(){},t.prototype.destroy=function(){},t.prototype.onDestroy=function(){},t}(),yh=function(){function t(){}return t.prototype.selector=function(){},t.prototype.componentType=function(){},t.prototype.ngContentSelectors=function(){},t.prototype.inputs=function(){},t.prototype.outputs=function(){},t.prototype.create=function(){},t}(),mh="ngComponent",gh=function(){function t(){}return t.prototype.resolveComponentFactory=function(t){throw ct(t)},t}(),_h=function(){function t(){}return t.prototype.resolveComponentFactory=function(){},t}();_h.NULL=new gh;var bh,wh,Eh=function(){function t(t,e,n){this._parent=e,this._ngModule=n,this._factories=new Map;for(var r=0;r<t.length;r++){var i=t[r];this._factories.set(i.componentType,i)}}return t.prototype.resolveComponentFactory=function(t){var e=this._factories.get(t)||this._parent.resolveComponentFactory(t);return new Ch(e,this._ngModule)},t}(),Ch=function(t){function e(e,n){var r=t.call(this)||this;return r.factory=e,r.ngModule=n,r}return Yp(e,t),Object.defineProperty(e.prototype,"selector",{get:function(){return this.factory.selector},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"componentType",{get:function(){return this.factory.componentType},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"ngContentSelectors",{get:function(){return this.factory.ngContentSelectors},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"inputs",{get:function(){return this.factory.inputs},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"outputs",{get:function(){return this.factory.outputs},enumerable:!0,configurable:!0}),e.prototype.create=function(t,e,n,r){return this.factory.create(t,e,n,r||this.ngModule)},e}(yh),xh=function(){function t(){}return t.prototype.injector=function(){},t.prototype.componentFactoryResolver=function(){},t.prototype.instance=function(){},t.prototype.destroy=function(){},t.prototype.onDestroy=function(){},t}(),Sh=function(){function t(t,e){this._injectorClass=t,this._moduleType=e}return Object.defineProperty(t.prototype,"moduleType",{get:function(){return this._moduleType},enumerable:!0,configurable:!0}),t.prototype.create=function(t){var e=new this._injectorClass(t||Il.NULL);return e.create(),e},t}(),Th=new Object,Ah=function(){function t(t,e,n){var r=this;this.parent=t,this._destroyListeners=[],this._destroyed=!1,this.bootstrapFactories=n.map(function(t){return new Ch(t,r)}),this._cmpFactoryResolver=new Eh(e,t.get(_h,_h.NULL),this)}return t.prototype.create=function(){this.instance=this.createInternal()},t.prototype.createInternal=function(){},t.prototype.get=function(t,e){if(void 0===e&&(e=Ol),t===Il||t===xh)return this;if(t===_h)return this._cmpFactoryResolver;var n=this.getInternal(t,Th);return n===Th?this.parent.get(t,e):n},t.prototype.getInternal=function(){},Object.defineProperty(t.prototype,"injector",{get:function(){return this},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"componentFactoryResolver",{get:function(){return this._cmpFactoryResolver},enumerable:!0,configurable:!0}),t.prototype.destroy=function(){if(this._destroyed)throw new Error("The ng module "+_(this.instance.constructor)+" has already been destroyed.");
this._destroyed=!0,this.destroyInternal(),this._destroyListeners.forEach(function(t){return t()})},t.prototype.onDestroy=function(t){this._destroyListeners.push(t)},t.prototype.destroyInternal=function(){},t}(),Ph=pt(),kh=Ph?lt:function(){return ft},Mh=Ph?ht:function(t,e){return e},Oh=function(t){function e(e){void 0===e&&(e=!1);var n=t.call(this)||this;return n.__isAsync=e,n}return Yp(e,t),e.prototype.emit=function(e){t.prototype.next.call(this,e)},e.prototype.subscribe=function(e,n,r){var i,o=function(){return null},s=function(){return null};return e&&"object"==typeof e?(i=this.__isAsync?function(t){setTimeout(function(){return e.next(t)})}:function(t){e.next(t)},e.error&&(o=this.__isAsync?function(t){setTimeout(function(){return e.error(t)})}:function(t){e.error(t)}),e.complete&&(s=this.__isAsync?function(){setTimeout(function(){return e.complete()})}:function(){e.complete()})):(i=this.__isAsync?function(t){setTimeout(function(){return e(t)})}:function(t){e(t)},n&&(o=this.__isAsync?function(t){setTimeout(function(){return n(t)})}:function(t){n(t)}),r&&(s=this.__isAsync?function(){setTimeout(function(){return r()})}:function(){r()})),t.prototype.subscribe.call(this,i,o,s)},e}(Rp),Nh=function(){function t(t){var e=t.enableLongStackTrace,n=void 0===e?!1:e;if(this._hasPendingMicrotasks=!1,this._hasPendingMacrotasks=!1,this._isStable=!0,this._nesting=0,this._onUnstable=new Oh(!1),this._onMicrotaskEmpty=new Oh(!1),this._onStable=new Oh(!1),this._onErrorEvents=new Oh(!1),"undefined"==typeof Zone)throw new Error("Angular requires Zone.js prolyfill.");Zone.assertZonePatched(),this.outer=this.inner=Zone.current,Zone.wtfZoneSpec&&(this.inner=this.inner.fork(Zone.wtfZoneSpec)),n&&Zone.longStackTraceZoneSpec&&(this.inner=this.inner.fork(Zone.longStackTraceZoneSpec)),this.forkInnerZoneWithAngularBehavior()}return t.isInAngularZone=function(){return Zone.current.get("isAngularZone")===!0},t.assertInAngularZone=function(){if(!t.isInAngularZone())throw new Error("Expected to be in Angular Zone, but it is not!")},t.assertNotInAngularZone=function(){if(t.isInAngularZone())throw new Error("Expected to not be in Angular Zone, but it is!")},t.prototype.run=function(t){return this.inner.run(t)},t.prototype.runGuarded=function(t){return this.inner.runGuarded(t)},t.prototype.runOutsideAngular=function(t){return this.outer.run(t)},Object.defineProperty(t.prototype,"onUnstable",{get:function(){return this._onUnstable},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"onMicrotaskEmpty",{get:function(){return this._onMicrotaskEmpty},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"onStable",{get:function(){return this._onStable},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"onError",{get:function(){return this._onErrorEvents},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"isStable",{get:function(){return this._isStable},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"hasPendingMicrotasks",{get:function(){return this._hasPendingMicrotasks},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"hasPendingMacrotasks",{get:function(){return this._hasPendingMacrotasks},enumerable:!0,configurable:!0}),t.prototype.checkStable=function(){var t=this;if(0==this._nesting&&!this._hasPendingMicrotasks&&!this._isStable)try{this._nesting++,this._onMicrotaskEmpty.emit(null)}finally{if(this._nesting--,!this._hasPendingMicrotasks)try{this.runOutsideAngular(function(){return t._onStable.emit(null)})}finally{this._isStable=!0}}},t.prototype.forkInnerZoneWithAngularBehavior=function(){var t=this;this.inner=this.inner.fork({name:"angular",properties:{isAngularZone:!0},onInvokeTask:function(e,n,r,i,o,s){try{return t.onEnter(),e.invokeTask(r,i,o,s)}finally{t.onLeave()}},onInvoke:function(e,n,r,i,o,s,a){try{return t.onEnter(),e.invoke(r,i,o,s,a)}finally{t.onLeave()}},onHasTask:function(e,n,r,i){e.hasTask(r,i),n===r&&("microTask"==i.change?t.setHasMicrotask(i.microTask):"macroTask"==i.change&&t.setHasMacrotask(i.macroTask))},onHandleError:function(e,n,r,i){return e.handleError(r,i),t.triggerError(i),!1}})},t.prototype.onEnter=function(){this._nesting++,this._isStable&&(this._isStable=!1,this._onUnstable.emit(null))},t.prototype.onLeave=function(){this._nesting--,this.checkStable()},t.prototype.setHasMicrotask=function(t){this._hasPendingMicrotasks=t,this.checkStable()},t.prototype.setHasMacrotask=function(t){this._hasPendingMacrotasks=t},t.prototype.triggerError=function(t){this._onErrorEvents.emit(t)},t}(),Ih=function(){function t(t){this._ngZone=t,this._pendingCount=0,this._isZoneStable=!0,this._didWork=!1,this._callbacks=[],this._watchAngularEvents()}return t.prototype._watchAngularEvents=function(){var t=this;this._ngZone.onUnstable.subscribe({next:function(){t._didWork=!0,t._isZoneStable=!1}}),this._ngZone.runOutsideAngular(function(){t._ngZone.onStable.subscribe({next:function(){Nh.assertNotInAngularZone(),m(function(){t._isZoneStable=!0,t._runCallbacksIfReady()})}})})},t.prototype.increasePendingRequestCount=function(){return this._pendingCount+=1,this._didWork=!0,this._pendingCount},t.prototype.decreasePendingRequestCount=function(){if(this._pendingCount-=1,this._pendingCount<0)throw new Error("pending async requests below zero");return this._runCallbacksIfReady(),this._pendingCount},t.prototype.isStable=function(){return this._isZoneStable&&0==this._pendingCount&&!this._ngZone.hasPendingMacrotasks},t.prototype._runCallbacksIfReady=function(){var t=this;this.isStable()?m(function(){for(;0!==t._callbacks.length;)t._callbacks.pop()(t._didWork);t._didWork=!1}):this._didWork=!0},t.prototype.whenStable=function(t){this._callbacks.push(t),this._runCallbacksIfReady()},t.prototype.getPendingRequestCount=function(){return this._pendingCount},t.prototype.findBindings=function(){return[]},t.prototype.findProviders=function(){return[]},t}();Ih.decorators=[{type:Tl}],Ih.ctorParameters=function(){return[{type:Nh}]};var Rh=function(){function t(){this._applications=new Map,Fh.addToWindow(this)}return t.prototype.registerApplication=function(t,e){this._applications.set(t,e)},t.prototype.getTestability=function(t){return this._applications.get(t)||null},t.prototype.getAllTestabilities=function(){return Array.from(this._applications.values())},t.prototype.getAllRootElements=function(){return Array.from(this._applications.keys())},t.prototype.findTestabilityInTree=function(t,e){return void 0===e&&(e=!0),Fh.findTestabilityInTree(this,t,e)},t}();Rh.decorators=[{type:Tl}],Rh.ctorParameters=function(){return[]};var Dh,Lh=function(){function t(){}return t.prototype.addToWindow=function(){},t.prototype.findTestabilityInTree=function(){return null},t}(),Fh=new Lh,Vh=!0,jh=!1,Hh=new Jp("AllowMultipleToken"),Uh=function(){function t(t,e){this.name=t,this.token=e}return t}(),Bh=function(){function t(){}return t.prototype.bootstrapModuleFactory=function(){},t.prototype.bootstrapModule=function(){},t.prototype.onDestroy=function(){},t.prototype.injector=function(){},t.prototype.destroy=function(){},t.prototype.destroyed=function(){},t}(),zh=function(t){function e(e){var n=t.call(this)||this;return n._injector=e,n._modules=[],n._destroyListeners=[],n._destroyed=!1,n}return Yp(e,t),e.prototype.onDestroy=function(t){this._destroyListeners.push(t)},Object.defineProperty(e.prototype,"injector",{get:function(){return this._injector},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"destroyed",{get:function(){return this._destroyed},enumerable:!0,configurable:!0}),e.prototype.destroy=function(){if(this._destroyed)throw new Error("The platform has already been destroyed!");this._modules.slice().forEach(function(t){return t.destroy()}),this._destroyListeners.forEach(function(t){return t()}),this._destroyed=!0},e.prototype.bootstrapModuleFactory=function(t){return this._bootstrapModuleFactoryWithZone(t)},e.prototype._bootstrapModuleFactoryWithZone=function(t,e){var n=this;return e||(e=new Nh({enableLongStackTrace:yt()})),e.run(function(){var r=Jl.resolveAndCreate([{provide:Nh,useValue:e}],n.injector),i=t.create(r),o=i.injector.get(Vl,null);if(!o)throw new Error("No ErrorHandler. Is platform module (BrowserModule) included?");return i.onDestroy(function(){return Et(n._modules,i)}),e.onError.subscribe({next:function(t){o.handleError(t)}}),wt(o,function(){var t=i.injector.get(rh);return t.donePromise.then(function(){return n._moduleDoBootstrap(i),i})})})},e.prototype.bootstrapModule=function(t,e){return void 0===e&&(e=[]),this._bootstrapModuleWithZone(t,e)},e.prototype._bootstrapModuleWithZone=function(t,e,n){var r=this;void 0===e&&(e=[]);var i=this.injector.get(dh),o=i.createCompiler(Array.isArray(e)?e:[e]);return o.compileModuleAsync(t).then(function(t){return r._bootstrapModuleFactoryWithZone(t,n)})},e.prototype._moduleDoBootstrap=function(t){var e=t.injector.get(qh);if(t.bootstrapFactories.length>0)t.bootstrapFactories.forEach(function(t){return e.bootstrap(t)});else{if(!t.instance.ngDoBootstrap)throw new Error("The module "+_(t.instance.constructor)+' was bootstrapped, but it does not declare "@NgModule.bootstrap" components nor a "ngDoBootstrap" method. Please define one of these.');t.instance.ngDoBootstrap(e)}this._modules.push(t)},e}(Bh);zh.decorators=[{type:Tl}],zh.ctorParameters=function(){return[{type:Il}]};var qh=function(){function t(){}return t.prototype.bootstrap=function(){},t.prototype.tick=function(){},t.prototype.componentTypes=function(){},t.prototype.components=function(){},t.prototype.attachView=function(){},t.prototype.detachView=function(){},t.prototype.viewCount=function(){},t.prototype.isStable=function(){},t}(),Wh=function(t){function e(e,n,r,i,o,s){var a=t.call(this)||this;a._zone=e,a._console=n,a._injector=r,a._exceptionHandler=i,a._componentFactoryResolver=o,a._initStatus=s,a._bootstrapListeners=[],a._rootComponents=[],a._rootComponentTypes=[],a._views=[],a._runningTick=!1,a._enforceNoNewChanges=!1,a._stable=!0,a._enforceNoNewChanges=yt(),a._zone.onMicrotaskEmpty.subscribe({next:function(){a._zone.run(function(){a.tick()})}});var u=new Rc(function(t){a._stable=a._zone.isStable&&!a._zone.hasPendingMacrotasks&&!a._zone.hasPendingMicrotasks,a._zone.runOutsideAngular(function(){t.next(a._stable),t.complete()})}),c=new Rc(function(t){var e=a._zone.onStable.subscribe(function(){Nh.assertNotInAngularZone(),m(function(){a._stable||a._zone.hasPendingMacrotasks||a._zone.hasPendingMicrotasks||(a._stable=!0,t.next(!0))})}),n=a._zone.onUnstable.subscribe(function(){Nh.assertInAngularZone(),a._stable&&(a._stable=!1,a._zone.runOutsideAngular(function(){t.next(!1)}))});return function(){e.unsubscribe(),n.unsubscribe()}});return a._isStable=wp(u,Zp.call(c)),a}return Yp(e,t),e.prototype.attachView=function(t){var e=t;this._views.push(e),e.attachToAppRef(this)},e.prototype.detachView=function(t){var e=t;Et(this._views,e),e.detachFromAppRef()},e.prototype.bootstrap=function(t){var e=this;if(!this._initStatus.done)throw new Error("Cannot bootstrap as there are still asynchronous initializers running. Bootstrap components in the `ngDoBootstrap` method of the root module.");var n;n=t instanceof yh?t:this._componentFactoryResolver.resolveComponentFactory(t),this._rootComponentTypes.push(n.componentType);var r=n instanceof Ch?null:this._injector.get(xh),i=n.create(Il.NULL,[],n.selector,r);i.onDestroy(function(){e._unloadComponent(i)});var o=i.injector.get(Ih,null);return o&&i.injector.get(Rh).registerApplication(i.location.nativeElement,o),this._loadComponent(i),yt()&&this._console.log("Angular is running in the development mode. Call enableProdMode() to enable the production mode."),i},e.prototype._loadComponent=function(t){this.attachView(t.hostView),this.tick(),this._rootComponents.push(t);var e=this._injector.get(uh,[]).concat(this._bootstrapListeners);e.forEach(function(e){return e(t)})},e.prototype._unloadComponent=function(t){this.detachView(t.hostView),Et(this._rootComponents,t)},e.prototype.tick=function(){if(this._runningTick)throw new Error("ApplicationRef.tick is called recursively");var t=e._tickScope();try{this._runningTick=!0,this._views.forEach(function(t){return t.detectChanges()}),this._enforceNoNewChanges&&this._views.forEach(function(t){return t.checkNoChanges()})}finally{this._runningTick=!1,Mh(t)}},e.prototype.ngOnDestroy=function(){this._views.slice().forEach(function(t){return t.destroy()})},Object.defineProperty(e.prototype,"viewCount",{get:function(){return this._views.length},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"componentTypes",{get:function(){return this._rootComponentTypes},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"components",{get:function(){return this._rootComponents},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"isStable",{get:function(){return this._isStable},enumerable:!0,configurable:!0}),e}(qh);Wh._tickScope=kh("ApplicationRef#tick()"),Wh.decorators=[{type:Tl}],Wh.ctorParameters=function(){return[{type:Nh},{type:ph},{type:Il},{type:Vl},{type:_h},{type:rh}]};var Kh=function(){function t(){}return t.prototype.selectRootElement=function(){},t.prototype.createElement=function(){},t.prototype.createViewRoot=function(){},t.prototype.createTemplateAnchor=function(){},t.prototype.createText=function(){},t.prototype.projectNodes=function(){},t.prototype.attachViewAfter=function(){},t.prototype.detachView=function(){},t.prototype.destroyView=function(){},t.prototype.listen=function(){},t.prototype.listenGlobal=function(){},t.prototype.setElementProperty=function(){},t.prototype.setElementAttribute=function(){},t.prototype.setBindingDebugInfo=function(){},t.prototype.setElementClass=function(){},t.prototype.setElementStyle=function(){},t.prototype.invokeElementMethod=function(){},t.prototype.setText=function(){},t.prototype.animate=function(){},t}(),Qh=(new Jp("Renderer2Interceptor"),function(){function t(){}return t.prototype.createRenderer=function(){},t}()),Gh={};Gh.Important=1,Gh.DashCase=2,Gh[Gh.Important]="Important",Gh[Gh.DashCase]="DashCase";var Xh=function(){function t(){}return t.prototype.data=function(){},t.prototype.destroy=function(){},t.prototype.createElement=function(){},t.prototype.createComment=function(){},t.prototype.createText=function(){},t.prototype.appendChild=function(){},t.prototype.insertBefore=function(){},t.prototype.removeChild=function(){},t.prototype.selectRootElement=function(){},t.prototype.parentNode=function(){},t.prototype.nextSibling=function(){},t.prototype.setAttribute=function(){},t.prototype.removeAttribute=function(){},t.prototype.addClass=function(){},t.prototype.removeClass=function(){},t.prototype.setStyle=function(){},t.prototype.removeStyle=function(){},t.prototype.setProperty=function(){},t.prototype.setValue=function(){},t.prototype.listen=function(){},t}(),Zh=function(){function t(t){this.nativeElement=t}return t}(),Yh=new Map,$h=function(){function t(){this._dirty=!0,this._results=[],this._emitter=new Oh}return Object.defineProperty(t.prototype,"changes",{get:function(){return this._emitter},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"length",{get:function(){return this._results.length},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"first",{get:function(){return this._results[0]},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"last",{get:function(){return this._results[this.length-1]},enumerable:!0,configurable:!0}),t.prototype.map=function(t){return this._results.map(t)},t.prototype.filter=function(t){return this._results.filter(t)},t.prototype.find=function(t){return this._results.find(t)},t.prototype.reduce=function(t,e){return this._results.reduce(t,e)},t.prototype.forEach=function(t){this._results.forEach(t)},t.prototype.some=function(t){return this._results.some(t)},t.prototype.toArray=function(){return this._results.slice()},t.prototype[y()]=function(){return this._results[y()]()},t.prototype.toString=function(){return this._results.toString()},t.prototype.reset=function(t){this._results=xt(t),this._dirty=!1},t.prototype.notifyOnChanges=function(){this._emitter.emit(this)},t.prototype.setDirty=function(){this._dirty=!0},Object.defineProperty(t.prototype,"dirty",{get:function(){return this._dirty},enumerable:!0,configurable:!0}),t}(),Jh="#",tf="NgFactory",ef=function(){function t(){}return t}(),nf={factoryPathPrefix:"",factoryPathSuffix:".ngfactory"},rf=function(){function t(t,e){this._compiler=t,this._config=e||nf}return t.prototype.load=function(t){var e=this._compiler instanceof hh;return e?this.loadFactory(t):this.loadAndCompile(t)},t.prototype.loadAndCompile=function(t){var e=this,n=t.split(Jh),r=n[0],i=n[1];return void 0===i&&(i="default"),System.import(r).then(function(t){return t[i]}).then(function(t){return St(t,r,i)}).then(function(t){return e._compiler.compileModuleAsync(t)})},t.prototype.loadFactory=function(t){var e=t.split(Jh),n=e[0],r=e[1],i=tf;return void 0===r&&(r="default",i=""),System.import(this._config.factoryPathPrefix+n+this._config.factoryPathSuffix).then(function(t){return t[r+i]}).then(function(t){return St(t,n,r)})},t}();rf.decorators=[{type:Tl}],rf.ctorParameters=function(){return[{type:hh},{type:ef,decorators:[{type:Sl}]}]};var of=function(){function t(){}return t.prototype.elementRef=function(){},t.prototype.createEmbeddedView=function(){},t}(),sf=function(){function t(){}return t.prototype.element=function(){},t.prototype.injector=function(){},t.prototype.parentInjector=function(){},t.prototype.clear=function(){},t.prototype.get=function(){},t.prototype.length=function(){},t.prototype.createEmbeddedView=function(){},t.prototype.createComponent=function(){},t.prototype.insert=function(){},t.prototype.move=function(){},t.prototype.indexOf=function(){},t.prototype.remove=function(){},t.prototype.detach=function(){},t}(),af=function(){function t(){}return t.prototype.markForCheck=function(){},t.prototype.detach=function(){},t.prototype.detectChanges=function(){},t.prototype.checkNoChanges=function(){},t.prototype.reattach=function(){},t}(),uf=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return Yp(e,t),e.prototype.destroy=function(){},e.prototype.destroyed=function(){},e.prototype.onDestroy=function(){},e}(af),cf=(function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return Yp(e,t),e.prototype.context=function(){},e.prototype.rootNodes=function(){},e}(uf),function(){function t(t,e){this.name=t,this.callback=e}return t}()),pf=function(){function t(t,e,n){this._debugContext=n,this.nativeNode=t,e&&e instanceof lf?e.addChild(this):this.parent=null,this.listeners=[]}return Object.defineProperty(t.prototype,"injector",{get:function(){return this._debugContext.injector},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"componentInstance",{get:function(){return this._debugContext.component},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"context",{get:function(){return this._debugContext.context},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"references",{get:function(){return this._debugContext.references},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"providerTokens",{get:function(){return this._debugContext.providerTokens},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"source",{get:function(){return"Deprecated since v4"},enumerable:!0,configurable:!0}),t}(),lf=function(t){function e(e,n,r){var i=t.call(this,e,n,r)||this;return i.properties={},i.attributes={},i.classes={},i.styles={},i.childNodes=[],i.nativeElement=e,i}return Yp(e,t),e.prototype.addChild=function(t){t&&(this.childNodes.push(t),t.parent=this)},e.prototype.removeChild=function(t){var e=this.childNodes.indexOf(t);-1!==e&&(t.parent=null,this.childNodes.splice(e,1))},e.prototype.insertChildrenAfter=function(t,e){var n=this,r=this.childNodes.indexOf(t);-1!==r&&((i=this.childNodes).splice.apply(i,[r+1,0].concat(e)),e.forEach(function(t){t.parent&&t.parent.removeChild(t),t.parent=n}));var i},e.prototype.insertBefore=function(t,e){var n=this.childNodes.indexOf(t);-1===n?this.addChild(e):(e.parent&&e.parent.removeChild(e),e.parent=this,this.childNodes.splice(n,0,e))},e.prototype.query=function(t){var e=this.queryAll(t);return e[0]||null},e.prototype.queryAll=function(t){var e=[];return Tt(this,t,e),e},e.prototype.queryAllNodes=function(t){var e=[];return At(this,t,e),e},Object.defineProperty(e.prototype,"children",{get:function(){return this.childNodes.filter(function(t){return t instanceof e})},enumerable:!0,configurable:!0}),e.prototype.triggerEventHandler=function(t,e){this.listeners.forEach(function(n){n.name==t&&n.callback(e)})},e}(pf),hf=new Map,ff=function(){function t(t){this.wrapped=t}return t.wrap=function(e){return new t(e)},t}(),df=function(){function t(t,e,n){this.previousValue=t,this.currentValue=e,this.firstChange=n}return t.prototype.isFirstChange=function(){return this.firstChange},t}(),vf=function(){function t(){}return t.prototype.supports=function(t){return Nt(t)},t.prototype.create=function(t,e){return new mf(e||t)},t}(),yf=function(t,e){return e},mf=function(){function t(t){this._length=0,this._collection=null,this._linkedRecords=null,this._unlinkedRecords=null,this._previousItHead=null,this._itHead=null,this._itTail=null,this._additionsHead=null,this._additionsTail=null,this._movesHead=null,this._movesTail=null,this._removalsHead=null,this._removalsTail=null,this._identityChangesHead=null,this._identityChangesTail=null,this._trackByFn=t||yf}return Object.defineProperty(t.prototype,"collection",{get:function(){return this._collection},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"length",{get:function(){return this._length},enumerable:!0,configurable:!0}),t.prototype.forEachItem=function(t){var e;for(e=this._itHead;null!==e;e=e._next)t(e)},t.prototype.forEachOperation=function(t){for(var e=this._itHead,n=this._removalsHead,r=0,i=null;e||n;){var o=!n||e&&e.currentIndex<Lt(n,r,i)?e:n,s=Lt(o,r,i),a=o.currentIndex;if(o===n)r--,n=n._nextRemoved;else if(e=e._next,null==o.previousIndex)r++;else{i||(i=[]);var u=s-r,c=a-r;if(u!=c){for(var p=0;u>p;p++){var l=p<i.length?i[p]:i[p]=0,h=l+p;h>=c&&u>h&&(i[p]=l+1)}var f=o.previousIndex;i[f]=c-u}}s!==a&&t(o,s,a)}},t.prototype.forEachPreviousItem=function(t){var e;for(e=this._previousItHead;null!==e;e=e._nextPrevious)t(e)},t.prototype.forEachAddedItem=function(t){var e;for(e=this._additionsHead;null!==e;e=e._nextAdded)t(e)},t.prototype.forEachMovedItem=function(t){var e;for(e=this._movesHead;null!==e;e=e._nextMoved)t(e)},t.prototype.forEachRemovedItem=function(t){var e;for(e=this._removalsHead;null!==e;e=e._nextRemoved)t(e)},t.prototype.forEachIdentityChange=function(t){var e;for(e=this._identityChangesHead;null!==e;e=e._nextIdentityChange)t(e)},t.prototype.diff=function(t){if(null==t&&(t=[]),!Nt(t))throw new Error("Error trying to diff '"+_(t)+"'. Only arrays and iterables are allowed");return this.check(t)?this:null},t.prototype.onDestroy=function(){},t.prototype.check=function(t){var e=this;this._reset();var n,r,i,o=this._itHead,s=!1;if(Array.isArray(t)){this._length=t.length;for(var a=0;a<this._length;a++)r=t[a],i=this._trackByFn(a,r),null!==o&&g(o.trackById,i)?(s&&(o=this._verifyReinsertion(o,r,i,a)),g(o.item,r)||this._addIdentityChange(o,r)):(o=this._mismatch(o,r,i,a),s=!0),o=o._next}else n=0,Rt(t,function(t){i=e._trackByFn(n,t),null!==o&&g(o.trackById,i)?(s&&(o=e._verifyReinsertion(o,t,i,n)),g(o.item,t)||e._addIdentityChange(o,t)):(o=e._mismatch(o,t,i,n),s=!0),o=o._next,n++}),this._length=n;return this._truncate(o),this._collection=t,this.isDirty},Object.defineProperty(t.prototype,"isDirty",{get:function(){return null!==this._additionsHead||null!==this._movesHead||null!==this._removalsHead||null!==this._identityChangesHead},enumerable:!0,configurable:!0}),t.prototype._reset=function(){if(this.isDirty){var t=void 0,e=void 0;for(t=this._previousItHead=this._itHead;null!==t;t=t._next)t._nextPrevious=t._next;for(t=this._additionsHead;null!==t;t=t._nextAdded)t.previousIndex=t.currentIndex;for(this._additionsHead=this._additionsTail=null,t=this._movesHead;null!==t;t=e)t.previousIndex=t.currentIndex,e=t._nextMoved;this._movesHead=this._movesTail=null,this._removalsHead=this._removalsTail=null,this._identityChangesHead=this._identityChangesTail=null}},t.prototype._mismatch=function(t,e,n,r){var i;return null===t?i=this._itTail:(i=t._prev,this._remove(t)),t=null===this._linkedRecords?null:this._linkedRecords.get(n,r),null!==t?(g(t.item,e)||this._addIdentityChange(t,e),this._moveAfter(t,i,r)):(t=null===this._unlinkedRecords?null:this._unlinkedRecords.get(n,null),null!==t?(g(t.item,e)||this._addIdentityChange(t,e),this._reinsertAfter(t,i,r)):t=this._addAfter(new gf(e,n),i,r)),t},t.prototype._verifyReinsertion=function(t,e,n,r){var i=null===this._unlinkedRecords?null:this._unlinkedRecords.get(n,null);return null!==i?t=this._reinsertAfter(i,t._prev,r):t.currentIndex!=r&&(t.currentIndex=r,this._addToMoves(t,r)),t},t.prototype._truncate=function(t){for(;null!==t;){var e=t._next;this._addToRemovals(this._unlink(t)),t=e}null!==this._unlinkedRecords&&this._unlinkedRecords.clear(),null!==this._additionsTail&&(this._additionsTail._nextAdded=null),null!==this._movesTail&&(this._movesTail._nextMoved=null),null!==this._itTail&&(this._itTail._next=null),null!==this._removalsTail&&(this._removalsTail._nextRemoved=null),null!==this._identityChangesTail&&(this._identityChangesTail._nextIdentityChange=null)},t.prototype._reinsertAfter=function(t,e,n){null!==this._unlinkedRecords&&this._unlinkedRecords.remove(t);var r=t._prevRemoved,i=t._nextRemoved;return null===r?this._removalsHead=i:r._nextRemoved=i,null===i?this._removalsTail=r:i._prevRemoved=r,this._insertAfter(t,e,n),this._addToMoves(t,n),t},t.prototype._moveAfter=function(t,e,n){return this._unlink(t),this._insertAfter(t,e,n),this._addToMoves(t,n),t},t.prototype._addAfter=function(t,e,n){return this._insertAfter(t,e,n),this._additionsTail=null===this._additionsTail?this._additionsHead=t:this._additionsTail._nextAdded=t,t},t.prototype._insertAfter=function(t,e,n){var r=null===e?this._itHead:e._next;return t._next=r,t._prev=e,null===r?this._itTail=t:r._prev=t,null===e?this._itHead=t:e._next=t,null===this._linkedRecords&&(this._linkedRecords=new bf),this._linkedRecords.put(t),t.currentIndex=n,t},t.prototype._remove=function(t){return this._addToRemovals(this._unlink(t))},t.prototype._unlink=function(t){null!==this._linkedRecords&&this._linkedRecords.remove(t);var e=t._prev,n=t._next;return null===e?this._itHead=n:e._next=n,null===n?this._itTail=e:n._prev=e,t},t.prototype._addToMoves=function(t,e){return t.previousIndex===e?t:(this._movesTail=null===this._movesTail?this._movesHead=t:this._movesTail._nextMoved=t,t)},t.prototype._addToRemovals=function(t){return null===this._unlinkedRecords&&(this._unlinkedRecords=new bf),this._unlinkedRecords.put(t),t.currentIndex=null,t._nextRemoved=null,null===this._removalsTail?(this._removalsTail=this._removalsHead=t,t._prevRemoved=null):(t._prevRemoved=this._removalsTail,this._removalsTail=this._removalsTail._nextRemoved=t),t},t.prototype._addIdentityChange=function(t,e){return t.item=e,this._identityChangesTail=null===this._identityChangesTail?this._identityChangesHead=t:this._identityChangesTail._nextIdentityChange=t,t},t.prototype.toString=function(){var t=[];this.forEachItem(function(e){return t.push(e)});var e=[];this.forEachPreviousItem(function(t){return e.push(t)});var n=[];this.forEachAddedItem(function(t){return n.push(t)});var r=[];this.forEachMovedItem(function(t){return r.push(t)});var i=[];this.forEachRemovedItem(function(t){return i.push(t)});var o=[];return this.forEachIdentityChange(function(t){return o.push(t)}),"collection: "+t.join(", ")+"\nprevious: "+e.join(", ")+"\nadditions: "+n.join(", ")+"\nmoves: "+r.join(", ")+"\nremovals: "+i.join(", ")+"\nidentityChanges: "+o.join(", ")+"\n"},t}(),gf=function(){function t(t,e){this.item=t,this.trackById=e,this.currentIndex=null,this.previousIndex=null,this._nextPrevious=null,this._prev=null,this._next=null,this._prevDup=null,this._nextDup=null,this._prevRemoved=null,this._nextRemoved=null,this._nextAdded=null,this._nextMoved=null,this._nextIdentityChange=null}return t.prototype.toString=function(){return this.previousIndex===this.currentIndex?_(this.item):_(this.item)+"["+_(this.previousIndex)+"->"+_(this.currentIndex)+"]"},t}(),_f=function(){function t(){this._head=null,this._tail=null}return t.prototype.add=function(t){null===this._head?(this._head=this._tail=t,t._nextDup=null,t._prevDup=null):(this._tail._nextDup=t,t._prevDup=this._tail,t._nextDup=null,this._tail=t)},t.prototype.get=function(t,e){var n;for(n=this._head;null!==n;n=n._nextDup)if((null===e||e<n.currentIndex)&&g(n.trackById,t))return n;return null},t.prototype.remove=function(t){var e=t._prevDup,n=t._nextDup;return null===e?this._head=n:e._nextDup=n,null===n?this._tail=e:n._prevDup=e,null===this._head},t}(),bf=function(){function t(){this.map=new Map}return t.prototype.put=function(t){var e=t.trackById,n=this.map.get(e);n||(n=new _f,this.map.set(e,n)),n.add(t)},t.prototype.get=function(t,e){var n=t,r=this.map.get(n);return r?r.get(t,e):null},t.prototype.remove=function(t){var e=t.trackById,n=this.map.get(e);return n.remove(t)&&this.map.delete(e),t},Object.defineProperty(t.prototype,"isEmpty",{get:function(){return 0===this.map.size},enumerable:!0,configurable:!0}),t.prototype.clear=function(){this.map.clear()},t.prototype.toString=function(){return"_DuplicateMap("+_(this.map)+")"},t}(),wf=function(){function t(){}return t.prototype.supports=function(t){return t instanceof Map||Dt(t)},t.prototype.create=function(){return new Ef},t}(),Ef=function(){function t(){this._records=new Map,this._mapHead=null,this._appendAfter=null,this._previousMapHead=null,this._changesHead=null,this._changesTail=null,this._additionsHead=null,this._additionsTail=null,this._removalsHead=null,this._removalsTail=null}return Object.defineProperty(t.prototype,"isDirty",{get:function(){return null!==this._additionsHead||null!==this._changesHead||null!==this._removalsHead},enumerable:!0,configurable:!0}),t.prototype.forEachItem=function(t){var e;for(e=this._mapHead;null!==e;e=e._next)t(e)},t.prototype.forEachPreviousItem=function(t){var e;for(e=this._previousMapHead;null!==e;e=e._nextPrevious)t(e)},t.prototype.forEachChangedItem=function(t){var e;for(e=this._changesHead;null!==e;e=e._nextChanged)t(e)},t.prototype.forEachAddedItem=function(t){var e;for(e=this._additionsHead;null!==e;e=e._nextAdded)t(e)},t.prototype.forEachRemovedItem=function(t){var e;for(e=this._removalsHead;null!==e;e=e._nextRemoved)t(e)},t.prototype.diff=function(t){if(t){if(!(t instanceof Map||Dt(t)))throw new Error("Error trying to diff '"+_(t)+"'. Only maps and objects are allowed")}else t=new Map;return this.check(t)?this:null},t.prototype.onDestroy=function(){},t.prototype.check=function(t){var e=this;this._reset();var n=this._mapHead;if(this._appendAfter=null,this._forEach(t,function(t,r){if(n&&n.key===r)e._maybeAddToChanges(n,t),e._appendAfter=n,n=n._next;else{var i=e._getOrCreateRecordForKey(r,t);n=e._insertBeforeOrAppend(n,i)}}),n){n._prev&&(n._prev._next=null),this._removalsHead=n,this._removalsTail=n;for(var r=n;null!==r;r=r._nextRemoved)r===this._mapHead&&(this._mapHead=null),this._records.delete(r.key),r._nextRemoved=r._next,r.previousValue=r.currentValue,r.currentValue=null,r._prev=null,r._next=null}return this.isDirty},t.prototype._insertBeforeOrAppend=function(t,e){if(t){var n=t._prev;return e._next=t,e._prev=n,t._prev=e,n&&(n._next=e),t===this._mapHead&&(this._mapHead=e),this._appendAfter=t,t}return this._appendAfter?(this._appendAfter._next=e,e._prev=this._appendAfter):this._mapHead=e,this._appendAfter=e,null},t.prototype._getOrCreateRecordForKey=function(t,e){if(this._records.has(t)){var n=this._records.get(t);this._maybeAddToChanges(n,e);var r=n._prev,i=n._next;return r&&(r._next=i),
i&&(i._prev=r),n._next=null,n._prev=null,n}var o=new Cf(t);return this._records.set(t,o),o.currentValue=e,this._addToAdditions(o),o},t.prototype._reset=function(){if(this.isDirty){var t=void 0;for(this._previousMapHead=this._mapHead,t=this._previousMapHead;null!==t;t=t._next)t._nextPrevious=t._next;for(t=this._changesHead;null!==t;t=t._nextChanged)t.previousValue=t.currentValue;for(t=this._additionsHead;null!=t;t=t._nextAdded)t.previousValue=t.currentValue;this._changesHead=this._changesTail=null,this._additionsHead=this._additionsTail=null,this._removalsHead=this._removalsTail=null}},t.prototype._maybeAddToChanges=function(t,e){g(e,t.currentValue)||(t.previousValue=t.currentValue,t.currentValue=e,this._addToChanges(t))},t.prototype._addToAdditions=function(t){null===this._additionsHead?this._additionsHead=this._additionsTail=t:(this._additionsTail._nextAdded=t,this._additionsTail=t)},t.prototype._addToChanges=function(t){null===this._changesHead?this._changesHead=this._changesTail=t:(this._changesTail._nextChanged=t,this._changesTail=t)},t.prototype.toString=function(){var t,e=[],n=[],r=[],i=[],o=[];for(t=this._mapHead;null!==t;t=t._next)e.push(_(t));for(t=this._previousMapHead;null!==t;t=t._nextPrevious)n.push(_(t));for(t=this._changesHead;null!==t;t=t._nextChanged)r.push(_(t));for(t=this._additionsHead;null!==t;t=t._nextAdded)i.push(_(t));for(t=this._removalsHead;null!==t;t=t._nextRemoved)o.push(_(t));return"map: "+e.join(", ")+"\nprevious: "+n.join(", ")+"\nadditions: "+i.join(", ")+"\nchanges: "+r.join(", ")+"\nremovals: "+o.join(", ")+"\n"},t.prototype._forEach=function(t,e){t instanceof Map?t.forEach(e):Object.keys(t).forEach(function(n){return e(t[n],n)})},t}(),Cf=function(){function t(t){this.key=t,this.previousValue=null,this.currentValue=null,this._nextPrevious=null,this._next=null,this._prev=null,this._nextAdded=null,this._nextRemoved=null,this._nextChanged=null}return t.prototype.toString=function(){return g(this.previousValue,this.currentValue)?_(this.key):_(this.key)+"["+_(this.previousValue)+"->"+_(this.currentValue)+"]"},t}(),xf=function(){function t(t){this.factories=t}return t.create=function(e,n){if(null!=n){var r=n.factories.slice();return e=e.concat(r),new t(e)}return new t(e)},t.extend=function(e){return{provide:t,useFactory:function(n){if(!n)throw new Error("Cannot extend IterableDiffers without a parent injector");return t.create(e,n)},deps:[[t,new Pl,new Sl]]}},t.prototype.find=function(t){var e=this.factories.find(function(e){return e.supports(t)});if(null!=e)return e;throw new Error("Cannot find a differ supporting object '"+t+"' of type '"+Ft(t)+"'")},t}(),Sf=function(){function t(t){this.factories=t}return t.create=function(e,n){if(n){var r=n.factories.slice();e=e.concat(r)}return new t(e)},t.extend=function(e){return{provide:t,useFactory:function(n){if(!n)throw new Error("Cannot extend KeyValueDiffers without a parent injector");return t.create(e,n)},deps:[[t,new Pl,new Sl]]}},t.prototype.find=function(t){var e=this.factories.find(function(e){return e.supports(t)});if(e)return e;throw new Error("Cannot find a differ supporting object '"+t+"'")},t}(),Tf=[new wf],Af=[new vf],Pf=new xf(Af),kf=new Sf(Tf),Mf=[{provide:ah,useValue:"unknown"},zh,{provide:Bh,useExisting:zh},{provide:Kl,useFactory:Vt,deps:[]},{provide:Wl,useExisting:Kl},Rh,ph],Of=gt(null,"core",Mf),Nf=new Jp("LocaleId"),If=new Jp("Translations"),Rf=new Jp("TranslationsFormat"),Df={};Df.Error=0,Df.Warning=1,Df.Ignore=2,Df[Df.Error]="Error",Df[Df.Warning]="Warning",Df[Df.Ignore]="Ignore";var Lf={};Lf.NONE=0,Lf.HTML=1,Lf.STYLE=2,Lf.SCRIPT=3,Lf.URL=4,Lf.RESOURCE_URL=5,Lf[Lf.NONE]="NONE",Lf[Lf.HTML]="HTML",Lf[Lf.STYLE]="STYLE",Lf[Lf.SCRIPT]="SCRIPT",Lf[Lf.URL]="URL",Lf[Lf.RESOURCE_URL]="RESOURCE_URL";var Ff=function(){function t(){}return t.prototype.sanitize=function(){},t}(),Vf={setCurrentNode:void 0,createRootView:void 0,createEmbeddedView:void 0,checkAndUpdateView:void 0,checkNoChangesView:void 0,destroyView:void 0,resolveDep:void 0,createDebugContext:void 0,handleEvent:void 0,updateDirectives:void 0,updateRenderer:void 0,dirtyParentQueries:void 0},jf=function(){},Hf=new Map,Uf="$$undefined",Bf="$$empty",zf=0,qf=new WeakMap,Wf=/^:([^:]+):(.+)$/,Kf=[],Qf={},Gf=new Object,Xf=function(t){function e(e,n,r,i,o,s){var a=t.call(this)||this;return a.selector=e,a.componentType=n,a._inputs=i,a._outputs=o,a.ngContentSelectors=s,a.viewDefFactory=r,a}return Yp(e,t),Object.defineProperty(e.prototype,"inputs",{get:function(){var t=[];for(var e in this._inputs){var n=this._inputs[e];t.push({propName:e,templateName:n})}return t},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"outputs",{get:function(){var t=[];for(var e in this._outputs){var n=this._outputs[e];t.push({propName:e,templateName:n})}return t},enumerable:!0,configurable:!0}),e.prototype.create=function(t,e,n,r){if(!r)throw new Error("ngModule should be provided");var i=de(this.viewDefFactory),o=i.nodes[0].element.componentProvider.index,s=Vf.createRootView(t,e||[],n,i,r,Gf),a=Ut(s,o).instance;return s.renderer.setAttribute(Ht(s,0).renderElement,"ng-version",Cl.full),new Zf(s,new $f(s),a)},e}(yh),Zf=function(t){function e(e,n,r){var i=t.call(this)||this;return i._view=e,i._viewRef=n,i._component=r,i._elDef=i._view.def.nodes[0],i}return Yp(e,t),Object.defineProperty(e.prototype,"location",{get:function(){return new Zh(Ht(this._view,this._elDef.index).renderElement)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"injector",{get:function(){return new td(this._view,this._elDef)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"instance",{get:function(){return this._component},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"hostView",{get:function(){return this._viewRef},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"changeDetectorRef",{get:function(){return this._viewRef},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"componentType",{get:function(){return this._component.constructor},enumerable:!0,configurable:!0}),e.prototype.destroy=function(){this._viewRef.destroy()},e.prototype.onDestroy=function(t){this._viewRef.onDestroy(t)},e}(vh),Yf=function(){function t(t,e,n){this._view=t,this._elDef=e,this._data=n,this._embeddedViews=[]}return Object.defineProperty(t.prototype,"element",{get:function(){return new Zh(this._data.renderElement)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"injector",{get:function(){return new td(this._view,this._elDef)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"parentInjector",{get:function(){for(var t=this._view,e=this._elDef.parent;!e&&t;)e=se(t),t=t.parent;return t?new td(t,e):new td(this._view,null)},enumerable:!0,configurable:!0}),t.prototype.clear=function(){for(var t=this._embeddedViews.length,e=t-1;e>=0;e--){var n=Ue(this._data,e);Vf.destroyView(n)}},t.prototype.get=function(t){var e=this._embeddedViews[t];if(e){var n=new $f(e);return n.attachToViewContainerRef(this),n}return null},Object.defineProperty(t.prototype,"length",{get:function(){return this._embeddedViews.length},enumerable:!0,configurable:!0}),t.prototype.createEmbeddedView=function(t,e,n){var r=t.createEmbeddedView(e||{});return this.insert(r,n),r},t.prototype.createComponent=function(t,e,n,r,i){var o=n||this.parentInjector;i||t instanceof Ch||(i=o.get(xh));var s=t.create(o,r,void 0,i);return this.insert(s.hostView,e),s},t.prototype.insert=function(t,e){var n=t,r=n._view;return He(this._view,this._data,e,r),n.attachToViewContainerRef(this),t},t.prototype.move=function(t,e){var n=this._embeddedViews.indexOf(t._view);return Be(this._data,n,e),t},t.prototype.indexOf=function(t){return this._embeddedViews.indexOf(t._view)},t.prototype.remove=function(t){var e=Ue(this._data,t);e&&Vf.destroyView(e)},t.prototype.detach=function(t){var e=Ue(this._data,t);return e?new $f(e):null},t}(),$f=function(){function t(t){this._view=t,this._viewContainerRef=null,this._appRef=null}return Object.defineProperty(t.prototype,"rootNodes",{get:function(){return ve(this._view)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"context",{get:function(){return this._view.context},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"destroyed",{get:function(){return 0!==(8&this._view.state)},enumerable:!0,configurable:!0}),t.prototype.markForCheck=function(){re(this._view)},t.prototype.detach=function(){this._view.state&=-3},t.prototype.detectChanges=function(){Vf.checkAndUpdateView(this._view)},t.prototype.checkNoChanges=function(){Vf.checkNoChangesView(this._view)},t.prototype.reattach=function(){this._view.state|=2},t.prototype.onDestroy=function(t){this._view.disposables||(this._view.disposables=[]),this._view.disposables.push(t)},t.prototype.destroy=function(){this._appRef?this._appRef.detachView(this):this._viewContainerRef&&this._viewContainerRef.detach(this._viewContainerRef.indexOf(this)),Vf.destroyView(this._view)},t.prototype.detachFromAppRef=function(){this._appRef=null,qe(this._view),Vf.dirtyParentQueries(this._view)},t.prototype.attachToAppRef=function(t){if(this._viewContainerRef)throw new Error("This view is already attached to a ViewContainer!");this._appRef=t},t.prototype.attachToViewContainerRef=function(t){if(this._appRef)throw new Error("This view is already attached directly to the ApplicationRef!");this._viewContainerRef=t},t}(),Jf=function(t){function e(e,n){var r=t.call(this)||this;return r._parentView=e,r._def=n,r}return Yp(e,t),e.prototype.createEmbeddedView=function(t){return new $f(Vf.createEmbeddedView(this._parentView,this._def,t))},Object.defineProperty(e.prototype,"elementRef",{get:function(){return new Zh(Ht(this._parentView,this._def.index).renderElement)},enumerable:!0,configurable:!0}),e}(of),td=function(){function t(t,e){this.view=t,this.elDef=e}return t.prototype.get=function(t,e){void 0===e&&(e=Il.THROW_IF_NOT_FOUND);var n=this.elDef?0!==(16777216&this.elDef.flags):!1;return Vf.resolveDep(this.view,this.elDef,n,{flags:0,token:t,tokenKey:Zt(t)},e)},t}(),ed=function(){function t(t){this.delegate=t}return t.prototype.selectRootElement=function(t){return this.delegate.selectRootElement(t)},t.prototype.createElement=function(t,e){var n=we(e),r=n[0],i=n[1],o=this.delegate.createElement(i,r);return t&&this.delegate.appendChild(t,o),o},t.prototype.createViewRoot=function(t){return t},t.prototype.createTemplateAnchor=function(t){var e=this.delegate.createComment("");return t&&this.delegate.appendChild(t,e),e},t.prototype.createText=function(t,e){var n=this.delegate.createText(e);return t&&this.delegate.appendChild(t,n),n},t.prototype.projectNodes=function(t,e){for(var n=0;n<e.length;n++)this.delegate.appendChild(t,e[n])},t.prototype.attachViewAfter=function(t,e){for(var n=this.delegate.parentNode(t),r=this.delegate.nextSibling(t),i=0;i<e.length;i++)this.delegate.insertBefore(n,e[i],r)},t.prototype.detachView=function(t){for(var e=0;e<t.length;e++){var n=t[e],r=this.delegate.parentNode(n);this.delegate.removeChild(r,n)}},t.prototype.destroyView=function(t,e){for(var n=0;n<e.length;n++)this.delegate.destroyNode(e[n])},t.prototype.listen=function(t,e,n){return this.delegate.listen(t,e,n)},t.prototype.listenGlobal=function(t,e,n){return this.delegate.listen(t,e,n)},t.prototype.setElementProperty=function(t,e,n){this.delegate.setProperty(t,e,n)},t.prototype.setElementAttribute=function(t,e,n){var r=we(e),i=r[0],o=r[1];null!=n?this.delegate.setAttribute(t,o,n,i):this.delegate.removeAttribute(t,o,i)},t.prototype.setBindingDebugInfo=function(){},t.prototype.setElementClass=function(t,e,n){n?this.delegate.addClass(t,e):this.delegate.removeClass(t,e)},t.prototype.setElementStyle=function(t,e,n){null!=n?this.delegate.setStyle(t,e,n):this.delegate.removeStyle(t,e)},t.prototype.invokeElementMethod=function(t,e,n){t[e].apply(t,n)},t.prototype.setText=function(t,e){this.delegate.setValue(t,e)},t.prototype.animate=function(){throw new Error("Renderer.animate is no longer supported!")},t}(),nd=Zt(Kh),rd=Zt(Xh),id=Zt(Zh),od=Zt(sf),sd=Zt(of),ad=Zt(af),ud=Zt(Il),cd=new Object,pd={},ld={};ld.CreateViewNodes=0,ld.CheckNoChanges=1,ld.CheckAndUpdate=2,ld.Destroy=3,ld[ld.CreateViewNodes]="CreateViewNodes",ld[ld.CheckNoChanges]="CheckNoChanges",ld[ld.CheckAndUpdate]="CheckAndUpdate",ld[ld.Destroy]="Destroy";var hd=!1,fd={};fd.create=0,fd.detectChanges=1,fd.checkNoChanges=2,fd.destroy=3,fd.handleEvent=4,fd[fd.create]="create",fd[fd.detectChanges]="detectChanges",fd[fd.checkNoChanges]="checkNoChanges",fd[fd.destroy]="destroy",fd[fd.handleEvent]="handleEvent";var dd,vd,yd,md=/([A-Z])/g,gd=function(){function t(t,e){this.view=t,this.nodeIndex=e,null==e&&(this.nodeIndex=e=0),this.nodeDef=t.def.nodes[e];for(var n=this.nodeDef,r=t;n&&0===(1&n.flags);)n=n.parent;if(!n)for(;!n&&r;)n=se(r),r=r.parent;this.elDef=n,this.elView=r}return Object.defineProperty(t.prototype,"elOrCompView",{get:function(){return Ht(this.elView,this.elDef.index).componentView||this.view},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"injector",{get:function(){return $e(this.elView,this.elDef)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"component",{get:function(){return this.elOrCompView.component},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"context",{get:function(){return this.elOrCompView.context},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"providerTokens",{get:function(){var t=[];if(this.elDef)for(var e=this.elDef.index+1;e<=this.elDef.index+this.elDef.childCount;e++){var n=this.elView.def.nodes[e];10112&n.flags&&t.push(n.provider.token),e+=n.childCount}return t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"references",{get:function(){var t={};if(this.elDef){Nr(this.elView,this.elDef,t);for(var e=this.elDef.index+1;e<=this.elDef.index+this.elDef.childCount;e++){var n=this.elView.def.nodes[e];10112&n.flags&&Nr(this.elView,n,t),e+=n.childCount}}return t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"componentRenderElement",{get:function(){var t=Or(this.elOrCompView);return t?t.renderElement:void 0},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"renderNode",{get:function(){return 2&this.nodeDef.flags?ae(this.view,this.nodeDef):ae(this.elView,this.elDef)},enumerable:!0,configurable:!0}),t.prototype.logError=function(t){for(var e=[],n=1;n<arguments.length;n++)e[n-1]=arguments[n];var r,i;2&this.nodeDef.flags?(r=this.view.def,i=this.nodeDef.index):(r=this.elView.def,i=this.elDef.index);var o=Mr(r,i),s=-1,a=function(){return s++,s===o?(n=t.error).bind.apply(n,[t].concat(e)):jf;var n};r.factory(a),o>s&&(t.error("Illegal state: the ViewDefinitionFactory did not call the logger!"),t.error.apply(t,e))},t}(),_d=function(){function t(t){this.delegate=t}return t.prototype.createRenderer=function(t,e){return new bd(this.delegate.createRenderer(t,e))},t}(),bd=function(){function t(t){this.delegate=t}return Object.defineProperty(t.prototype,"data",{get:function(){return this.delegate.data},enumerable:!0,configurable:!0}),t.prototype.destroyNode=function(t){Mt(Pt(t)),this.delegate.destroyNode&&this.delegate.destroyNode(t)},t.prototype.destroy=function(){this.delegate.destroy()},t.prototype.createElement=function(t,e){var n=this.delegate.createElement(t,e),r=Rr();if(r){var i=new lf(n,null,r);i.name=t,kt(i)}return n},t.prototype.createComment=function(t){var e=this.delegate.createComment(t),n=Rr();return n&&kt(new pf(e,null,n)),e},t.prototype.createText=function(t){var e=this.delegate.createText(t),n=Rr();return n&&kt(new pf(e,null,n)),e},t.prototype.appendChild=function(t,e){var n=Pt(t),r=Pt(e);n&&r&&n instanceof lf&&n.addChild(r),this.delegate.appendChild(t,e)},t.prototype.insertBefore=function(t,e,n){var r=Pt(t),i=Pt(e),o=Pt(n);r&&i&&r instanceof lf&&r.insertBefore(o,i),this.delegate.insertBefore(t,e,n)},t.prototype.removeChild=function(t,e){var n=Pt(t),r=Pt(e);n&&r&&n instanceof lf&&n.removeChild(r),this.delegate.removeChild(t,e)},t.prototype.selectRootElement=function(t){var e=this.delegate.selectRootElement(t),n=Rr();return n&&kt(new lf(e,null,n)),e},t.prototype.setAttribute=function(t,e,n,r){var i=Pt(t);if(i&&i instanceof lf){var o=r?r+":"+e:e;i.attributes[o]=n}this.delegate.setAttribute(t,e,n,r)},t.prototype.removeAttribute=function(t,e,n){var r=Pt(t);if(r&&r instanceof lf){var i=n?n+":"+e:e;r.attributes[i]=null}this.delegate.removeAttribute(t,e,n)},t.prototype.addClass=function(t,e){var n=Pt(t);n&&n instanceof lf&&(n.classes[e]=!0),this.delegate.addClass(t,e)},t.prototype.removeClass=function(t,e){var n=Pt(t);n&&n instanceof lf&&(n.classes[e]=!1),this.delegate.removeClass(t,e)},t.prototype.setStyle=function(t,e,n,r){var i=Pt(t);i&&i instanceof lf&&(i.styles[e]=n),this.delegate.setStyle(t,e,n,r)},t.prototype.removeStyle=function(t,e,n){var r=Pt(t);r&&r instanceof lf&&(r.styles[e]=null),this.delegate.removeStyle(t,e,n)},t.prototype.setProperty=function(t,e,n){var r=Pt(t);r&&r instanceof lf&&(r.properties[e]=n),this.delegate.setProperty(t,e,n)},t.prototype.listen=function(t,e,n){if("string"!=typeof t){var r=Pt(t);r&&r.listeners.push(new cf(e,n))}return this.delegate.listen(t,e,n)},t.prototype.parentNode=function(t){return this.delegate.parentNode(t)},t.prototype.nextSibling=function(t){return this.delegate.nextSibling(t)},t.prototype.setValue=function(t,e){return this.delegate.setValue(t,e)},t}(),wd=function(){function t(){}return t}();wd.decorators=[{type:bl,args:[{providers:[Wh,{provide:qh,useExisting:Wh},rh,hh,oh,{provide:xf,useFactory:Dr},{provide:Sf,useFactory:Lr},{provide:Nf,useFactory:Fr,deps:[[new xl(Nf),new Sl,new Pl]]},{provide:nh,useValue:Vr,multi:!0}]}]}],wd.ctorParameters=function(){return[{type:qh}]};var Ed={};Ed.OnInit=0,Ed.OnDestroy=1,Ed.DoCheck=2,Ed.OnChanges=3,Ed.AfterContentInit=4,Ed.AfterContentChecked=5,Ed.AfterViewInit=6,Ed.AfterViewChecked=7,Ed[Ed.OnInit]="OnInit",Ed[Ed.OnDestroy]="OnDestroy",Ed[Ed.DoCheck]="DoCheck",Ed[Ed.OnChanges]="OnChanges",Ed[Ed.AfterContentInit]="AfterContentInit",Ed[Ed.AfterContentChecked]="AfterContentChecked",Ed[Ed.AfterViewInit]="AfterViewInit",Ed[Ed.AfterViewChecked]="AfterViewChecked";var Cd=[Ed.OnInit,Ed.OnDestroy,Ed.DoCheck,Ed.OnChanges,Ed.AfterContentInit,Ed.AfterContentChecked,Ed.AfterViewInit,Ed.AfterViewChecked],xd=void 0||function(t,e){function n(){this.constructor=t}for(var r in e)e.hasOwnProperty(r)&&(t[r]=e[r]);t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)},Sd=(new El("4.0.2"),function(){function t(t,e,n){this.value=t,this.ngContentIndex=e,this.sourceSpan=n}return t.prototype.visit=function(t,e){return t.visitText(this,e)},t}()),Td=function(){function t(t,e,n){this.value=t,this.ngContentIndex=e,this.sourceSpan=n}return t.prototype.visit=function(t,e){return t.visitBoundText(this,e)},t}(),Ad=function(){function t(t,e,n){this.name=t,this.value=e,this.sourceSpan=n}return t.prototype.visit=function(t,e){return t.visitAttr(this,e)},t}(),Pd=function(){function t(t,e,n,r,i,o){this.name=t,this.type=e,this.securityContext=n,this.value=r,this.unit=i,this.sourceSpan=o}return t.prototype.visit=function(t,e){return t.visitElementProperty(this,e)},Object.defineProperty(t.prototype,"isAnimation",{get:function(){return this.type===jd.Animation},enumerable:!0,configurable:!0}),t}(),kd=function(){function t(t,e,n,r,i){this.name=t,this.target=e,this.phase=n,this.handler=r,this.sourceSpan=i}return t.calcFullName=function(t,e,n){return e?e+":"+t:n?"@"+t+"."+n:t},t.prototype.visit=function(t,e){return t.visitEvent(this,e)},Object.defineProperty(t.prototype,"fullName",{get:function(){return t.calcFullName(this.name,this.target,this.phase)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"isAnimation",{get:function(){return!!this.phase},enumerable:!0,configurable:!0}),t}(),Md=function(){function t(t,e,n){this.name=t,this.value=e,this.sourceSpan=n}return t.prototype.visit=function(t,e){return t.visitReference(this,e)},t}(),Od=function(){function t(t,e,n){this.name=t,this.value=e,this.sourceSpan=n}return t.prototype.visit=function(t,e){return t.visitVariable(this,e)},t}(),Nd=function(){function t(t,e,n,r,i,o,s,a,u,c,p,l,h){this.name=t,this.attrs=e,this.inputs=n,this.outputs=r,this.references=i,this.directives=o,this.providers=s,this.hasViewContainer=a,this.queryMatches=u,this.children=c,this.ngContentIndex=p,this.sourceSpan=l,this.endSourceSpan=h}return t.prototype.visit=function(t,e){return t.visitElement(this,e)},t}(),Id=function(){function t(t,e,n,r,i,o,s,a,u,c,p){this.attrs=t,this.outputs=e,this.references=n,this.variables=r,this.directives=i,this.providers=o,this.hasViewContainer=s,this.queryMatches=a,this.children=u,this.ngContentIndex=c,this.sourceSpan=p}return t.prototype.visit=function(t,e){return t.visitEmbeddedTemplate(this,e)},t}(),Rd=function(){function t(t,e,n,r){this.directiveName=t,this.templateName=e,this.value=n,this.sourceSpan=r}return t.prototype.visit=function(t,e){return t.visitDirectiveProperty(this,e)},t}(),Dd=function(){function t(t,e,n,r,i,o){this.directive=t,this.inputs=e,this.hostProperties=n,this.hostEvents=r,this.contentQueryStartId=i,this.sourceSpan=o}return t.prototype.visit=function(t,e){return t.visitDirective(this,e)},t}(),Ld=function(){function t(t,e,n,r,i,o,s){this.token=t,this.multiProvider=e,this.eager=n,this.providers=r,this.providerType=i,this.lifecycleHooks=o,this.sourceSpan=s}return t.prototype.visit=function(){return null},t}(),Fd={};Fd.PublicService=0,Fd.PrivateService=1,Fd.Component=2,Fd.Directive=3,Fd.Builtin=4,Fd[Fd.PublicService]="PublicService",Fd[Fd.PrivateService]="PrivateService",Fd[Fd.Component]="Component",Fd[Fd.Directive]="Directive",Fd[Fd.Builtin]="Builtin";var Vd=function(){function t(t,e,n){this.index=t,this.ngContentIndex=e,this.sourceSpan=n}return t.prototype.visit=function(t,e){return t.visitNgContent(this,e)},t}(),jd={};jd.Property=0,jd.Attribute=1,jd.Class=2,jd.Style=3,jd.Animation=4,jd[jd.Property]="Property",jd[jd.Attribute]="Attribute",jd[jd.Class]="Class",jd[jd.Style]="Style",jd[jd.Animation]="Animation";var Hd=function(){function t(t,e,n){this.filePath=t,this.name=e,this.members=n}return t.prototype.assertNoMembers=function(){if(this.members.length)throw new Error("Illegal state: symbol without members expected, but got "+JSON.stringify(this)+".")},t}(),Ud=function(){function t(){this.cache=new Map}return t.prototype.get=function(t,e,n){n=n||[];var r=n.length?"."+n.join("."):"",i='"'+t+'".'+e+r,o=this.cache.get(i);return o||(o=new Hd(t,e,n),this.cache.set(i,o)),o},t}(),Bd={};Bd.RAW_TEXT=0,Bd.ESCAPABLE_RAW_TEXT=1,Bd.PARSABLE_DATA=2,Bd[Bd.RAW_TEXT]="RAW_TEXT",Bd[Bd.ESCAPABLE_RAW_TEXT]="ESCAPABLE_RAW_TEXT",Bd[Bd.PARSABLE_DATA]="PARSABLE_DATA";var zd={Aacute:"Á",aacute:"á",Acirc:"Â",acirc:"â",acute:"´",AElig:"Æ",aelig:"æ",Agrave:"À",agrave:"à",alefsym:"ℵ",Alpha:"Α",alpha:"α",amp:"&",and:"∧",ang:"∠",apos:"'",Aring:"Å",aring:"å",asymp:"≈",Atilde:"Ã",atilde:"ã",Auml:"Ä",auml:"ä",bdquo:"„",Beta:"Β",beta:"β",brvbar:"¦",bull:"•",cap:"∩",Ccedil:"Ç",ccedil:"ç",cedil:"¸",cent:"¢",Chi:"Χ",chi:"χ",circ:"ˆ",clubs:"♣",cong:"≅",copy:"©",crarr:"↵",cup:"∪",curren:"¤",dagger:"†",Dagger:"‡",darr:"↓",dArr:"⇓",deg:"°",Delta:"Δ",delta:"δ",diams:"♦",divide:"÷",Eacute:"É",eacute:"é",Ecirc:"Ê",ecirc:"ê",Egrave:"È",egrave:"è",empty:"∅",emsp:" ",ensp:" ",Epsilon:"Ε",epsilon:"ε",equiv:"≡",Eta:"Η",eta:"η",ETH:"Ð",eth:"ð",Euml:"Ë",euml:"ë",euro:"€",exist:"∃",fnof:"ƒ",forall:"∀",frac12:"½",frac14:"¼",frac34:"¾",frasl:"⁄",Gamma:"Γ",gamma:"γ",ge:"≥",gt:">",harr:"↔",hArr:"⇔",hearts:"♥",hellip:"…",Iacute:"Í",iacute:"í",Icirc:"Î",icirc:"î",iexcl:"¡",Igrave:"Ì",igrave:"ì",image:"ℑ",infin:"∞",int:"∫",Iota:"Ι",iota:"ι",iquest:"¿",isin:"∈",Iuml:"Ï",iuml:"ï",Kappa:"Κ",kappa:"κ",Lambda:"Λ",lambda:"λ",lang:"⟨",laquo:"«",larr:"←",lArr:"⇐",lceil:"⌈",ldquo:"“",le:"≤",lfloor:"⌊",lowast:"∗",loz:"◊",lrm:"",lsaquo:"‹",lsquo:"‘",lt:"<",macr:"¯",mdash:"—",micro:"µ",middot:"·",minus:"−",Mu:"Μ",mu:"μ",nabla:"∇",nbsp:" ",ndash:"–",ne:"≠",ni:"∋",not:"¬",notin:"∉",nsub:"⊄",Ntilde:"Ñ",ntilde:"ñ",Nu:"Ν",nu:"ν",Oacute:"Ó",oacute:"ó",Ocirc:"Ô",ocirc:"ô",OElig:"Œ",oelig:"œ",Ograve:"Ò",ograve:"ò",oline:"‾",Omega:"Ω",omega:"ω",Omicron:"Ο",omicron:"ο",oplus:"⊕",or:"∨",ordf:"ª",ordm:"º",Oslash:"Ø",oslash:"ø",Otilde:"Õ",otilde:"õ",otimes:"⊗",Ouml:"Ö",ouml:"ö",para:"¶",permil:"‰",perp:"⊥",Phi:"Φ",phi:"φ",Pi:"Π",pi:"π",piv:"ϖ",plusmn:"±",pound:"£",prime:"′",Prime:"″",prod:"∏",prop:"∝",Psi:"Ψ",psi:"ψ",quot:'"',radic:"√",rang:"⟩",raquo:"»",rarr:"→",rArr:"⇒",rceil:"⌉",rdquo:"”",real:"ℜ",reg:"®",rfloor:"⌋",Rho:"Ρ",rho:"ρ",rlm:"",rsaquo:"›",rsquo:"’",sbquo:"‚",Scaron:"Š",scaron:"š",sdot:"⋅",sect:"§",shy:"",Sigma:"Σ",sigma:"σ",sigmaf:"ς",sim:"∼",spades:"♠",sub:"⊂",sube:"⊆",sum:"∑",sup:"⊃",sup1:"¹",sup2:"²",sup3:"³",supe:"⊇",szlig:"ß",Tau:"Τ",tau:"τ",there4:"∴",Theta:"Θ",theta:"θ",thetasym:"ϑ",thinsp:" ",THORN:"Þ",thorn:"þ",tilde:"˜",times:"×",trade:"™",Uacute:"Ú",uacute:"ú",uarr:"↑",uArr:"⇑",Ucirc:"Û",ucirc:"û",Ugrave:"Ù",ugrave:"ù",uml:"¨",upsih:"ϒ",Upsilon:"Υ",upsilon:"υ",Uuml:"Ü",uuml:"ü",weierp:"℘",Xi:"Ξ",xi:"ξ",Yacute:"Ý",yacute:"ý",yen:"¥",yuml:"ÿ",Yuml:"Ÿ",Zeta:"Ζ",zeta:"ζ",zwj:"",zwnj:""},qd=function(){function t(t){var e=void 0===t?{}:t,n=e.closedByChildren,r=e.requiredParents,i=e.implicitNamespacePrefix,o=e.contentType,s=void 0===o?Bd.PARSABLE_DATA:o,a=e.closedByParent,u=void 0===a?!1:a,c=e.isVoid,p=void 0===c?!1:c,l=e.ignoreFirstLf,h=void 0===l?!1:l,f=this;this.closedByChildren={},this.closedByParent=!1,this.canSelfClose=!1,n&&n.length>0&&n.forEach(function(t){return f.closedByChildren[t]=!0}),this.isVoid=p,this.closedByParent=u||p,r&&r.length>0&&(this.requiredParents={},this.parentToAdd=r[0],r.forEach(function(t){return f.requiredParents[t]=!0})),this.implicitNamespacePrefix=i,this.contentType=s,this.ignoreFirstLf=h}return t.prototype.requireExtraParent=function(t){if(!this.requiredParents)return!1;if(!t)return!0;var e=t.toLowerCase(),n="template"===e||"ng-template"===t;return!n&&1!=this.requiredParents[e]},t.prototype.isClosedByChild=function(t){return this.isVoid||t.toLowerCase()in this.closedByChildren},t}(),Wd={base:new qd({isVoid:!0}),meta:new qd({isVoid:!0}),area:new qd({isVoid:!0}),embed:new qd({isVoid:!0}),link:new qd({isVoid:!0}),img:new qd({isVoid:!0}),input:new qd({isVoid:!0}),param:new qd({isVoid:!0}),hr:new qd({isVoid:!0}),br:new qd({isVoid:!0}),source:new qd({isVoid:!0}),track:new qd({isVoid:!0}),wbr:new qd({isVoid:!0}),p:new qd({closedByChildren:["address","article","aside","blockquote","div","dl","fieldset","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","hr","main","nav","ol","p","pre","section","table","ul"],closedByParent:!0}),thead:new qd({closedByChildren:["tbody","tfoot"]}),tbody:new qd({closedByChildren:["tbody","tfoot"],closedByParent:!0}),tfoot:new qd({closedByChildren:["tbody"],closedByParent:!0}),tr:new qd({closedByChildren:["tr"],requiredParents:["tbody","tfoot","thead"],closedByParent:!0}),td:new qd({closedByChildren:["td","th"],closedByParent:!0}),th:new qd({closedByChildren:["td","th"],closedByParent:!0}),col:new qd({requiredParents:["colgroup"],isVoid:!0}),svg:new qd({implicitNamespacePrefix:"svg"}),math:new qd({implicitNamespacePrefix:"math"}),li:new qd({closedByChildren:["li"],closedByParent:!0}),dt:new qd({closedByChildren:["dt","dd"]}),dd:new qd({closedByChildren:["dt","dd"],closedByParent:!0}),rb:new qd({closedByChildren:["rb","rt","rtc","rp"],closedByParent:!0}),rt:new qd({closedByChildren:["rb","rt","rtc","rp"],closedByParent:!0}),rtc:new qd({closedByChildren:["rb","rtc","rp"],closedByParent:!0}),rp:new qd({closedByChildren:["rb","rt","rtc","rp"],closedByParent:!0}),optgroup:new qd({closedByChildren:["optgroup"],closedByParent:!0}),option:new qd({closedByChildren:["option","optgroup"],closedByParent:!0}),pre:new qd({ignoreFirstLf:!0}),listing:new qd({ignoreFirstLf:!0}),style:new qd({contentType:Bd.RAW_TEXT}),script:new qd({contentType:Bd.RAW_TEXT}),title:new qd({contentType:Bd.ESCAPABLE_RAW_TEXT}),textarea:new qd({contentType:Bd.ESCAPABLE_RAW_TEXT,ignoreFirstLf:!0})},Kd=new qd,Qd=new RegExp("(\\:not\\()|([-\\w]+)|(?:\\.([-\\w]+))|(?:\\[([-.\\w*]+)(?:=([\"']?)([^\\]\"']*)\\5)?\\])|(\\))|(\\s*,\\s*)","g"),Gd=function(){function t(){this.element=null,this.classNames=[],this.attrs=[],this.notSelectors=[]}return t.parse=function(e){var n,r=[],i=function(t,e){e.notSelectors.length>0&&!e.element&&0==e.classNames.length&&0==e.attrs.length&&(e.element="*"),t.push(e)},o=new t,s=o,a=!1;for(Qd.lastIndex=0;n=Qd.exec(e);){if(n[1]){if(a)throw new Error("Nesting :not is not allowed in a selector");a=!0,s=new t,o.notSelectors.push(s)}if(n[2]&&s.setElement(n[2]),n[3]&&s.addClassName(n[3]),n[4]&&s.addAttribute(n[4],n[6]),n[7]&&(a=!1,s=o),n[8]){if(a)throw new Error("Multiple selectors in :not are not supported");i(r,o),o=s=new t}}return i(r,o),r},t.prototype.isElementSelector=function(){return this.hasElementSelector()&&0==this.classNames.length&&0==this.attrs.length&&0===this.notSelectors.length},t.prototype.hasElementSelector=function(){return!!this.element},t.prototype.setElement=function(t){void 0===t&&(t=null),this.element=t},t.prototype.getMatchingElementTemplate=function(){for(var t=this.element||"div",e=this.classNames.length>0?' class="'+this.classNames.join(" ")+'"':"",n="",r=0;r<this.attrs.length;r+=2){var i=this.attrs[r],o=""!==this.attrs[r+1]?'="'+this.attrs[r+1]+'"':"";n+=" "+i+o}return zr(t).isVoid?"<"+t+e+n+"/>":"<"+t+e+n+"></"+t+">"},t.prototype.addAttribute=function(t,e){void 0===e&&(e=""),this.attrs.push(t,e&&e.toLowerCase()||"")},t.prototype.addClassName=function(t){this.classNames.push(t.toLowerCase())},t.prototype.toString=function(){var t=this.element||"";if(this.classNames&&this.classNames.forEach(function(e){return t+="."+e}),this.attrs)for(var e=0;e<this.attrs.length;e+=2){var n=this.attrs[e],r=this.attrs[e+1];t+="["+n+(r?"="+r:"")+"]"}return this.notSelectors.forEach(function(e){return t+=":not("+e+")"}),t},t}(),Xd=function(){function t(){this._elementMap=new Map,this._elementPartialMap=new Map,this._classMap=new Map,this._classPartialMap=new Map,this._attrValueMap=new Map,this._attrValuePartialMap=new Map,this._listContexts=[]}return t.createNotMatcher=function(e){var n=new t;return n.addSelectables(e,null),n},t.prototype.addSelectables=function(t,e){var n=null;t.length>1&&(n=new Zd(t),this._listContexts.push(n));for(var r=0;r<t.length;r++)this._addSelectable(t[r],e,n)},t.prototype._addSelectable=function(t,e,n){var r=this,i=t.element,o=t.classNames,s=t.attrs,a=new Yd(t,e,n);if(i){var u=0===s.length&&0===o.length;u?this._addTerminal(r._elementMap,i,a):r=this._addPartial(r._elementPartialMap,i)}if(o)for(var c=0;c<o.length;c++){var u=0===s.length&&c===o.length-1,p=o[c];u?this._addTerminal(r._classMap,p,a):r=this._addPartial(r._classPartialMap,p)}if(s)for(var c=0;c<s.length;c+=2){var u=c===s.length-2,l=s[c],h=s[c+1];if(u){var f=r._attrValueMap,d=f.get(l);d||(d=new Map,f.set(l,d)),this._addTerminal(d,h,a)}else{var v=r._attrValuePartialMap,y=v.get(l);y||(y=new Map,v.set(l,y)),r=this._addPartial(y,h)}}},t.prototype._addTerminal=function(t,e,n){var r=t.get(e);r||(r=[],t.set(e,r)),r.push(n)},t.prototype._addPartial=function(e,n){var r=e.get(n);return r||(r=new t,e.set(n,r)),r},t.prototype.match=function(t,e){for(var n=!1,r=t.element,i=t.classNames,o=t.attrs,s=0;s<this._listContexts.length;s++)this._listContexts[s].alreadyMatched=!1;if(n=this._matchTerminal(this._elementMap,r,t,e)||n,n=this._matchPartial(this._elementPartialMap,r,t,e)||n,i)for(var s=0;s<i.length;s++){var a=i[s];n=this._matchTerminal(this._classMap,a,t,e)||n,n=this._matchPartial(this._classPartialMap,a,t,e)||n}if(o)for(var s=0;s<o.length;s+=2){var u=o[s],c=o[s+1],p=this._attrValueMap.get(u);c&&(n=this._matchTerminal(p,"",t,e)||n),n=this._matchTerminal(p,c,t,e)||n;var l=this._attrValuePartialMap.get(u);c&&(n=this._matchPartial(l,"",t,e)||n),n=this._matchPartial(l,c,t,e)||n}return n},t.prototype._matchTerminal=function(t,e,n,r){if(!t||"string"!=typeof e)return!1;var i=t.get(e)||[],o=t.get("*");
if(o&&(i=i.concat(o)),0===i.length)return!1;for(var s,a=!1,u=0;u<i.length;u++)s=i[u],a=s.finalize(n,r)||a;return a},t.prototype._matchPartial=function(t,e,n,r){if(!t||"string"!=typeof e)return!1;var i=t.get(e);return i?i.match(n,r):!1},t}(),Zd=function(){function t(t){this.selectors=t,this.alreadyMatched=!1}return t}(),Yd=function(){function t(t,e,n){this.selector=t,this.cbContext=e,this.listContext=n,this.notSelectors=t.notSelectors}return t.prototype.finalize=function(t,e){var n=!0;if(this.notSelectors.length>0&&(!this.listContext||!this.listContext.alreadyMatched)){var r=Xd.createNotMatcher(this.notSelectors);n=!r.match(t,null)}return!n||!e||this.listContext&&this.listContext.alreadyMatched||(this.listContext&&(this.listContext.alreadyMatched=!0),e(this.selector,this.cbContext)),n},t}(),$d="",Jd=/-+([a-z0-9])/g,tv=function(){function t(){}return t.prototype.visitArray=function(t,e){var n=this;return t.map(function(t){return Gr(t,n,e)})},t.prototype.visitStringMap=function(t,e){var n=this,r={};return Object.keys(t).forEach(function(i){r[i]=Gr(t[i],n,e)}),r},t.prototype.visitPrimitive=function(t){return t},t.prototype.visitOther=function(t){return t},t}(),ev=function(){function t(t,e){void 0===e&&(e=null),this.syncResult=t,this.asyncResult=e,e||(this.asyncResult=Promise.resolve(t))}return t}(),nv="ngSyntaxError",rv=Object.getPrototypeOf({}),iv=/^(?:(?:\[([^\]]+)\])|(?:\(([^\)]+)\)))|(\@[-\w]+)$/,ov=function(){function t(){}return t}(),sv=(function(t){function e(e,n){var r=t.call(this)||this;return r.stateNameExpr=e,r.styles=n,r}return xd(e,t),e}(ov),function(t){function e(e,n){var r=t.call(this)||this;return r.stateChangeExpr=e,r.steps=n,r}return xd(e,t),e}(ov),function(){function t(){}return t}()),av=(function(t){function e(e){void 0===e&&(e=[]);var n=t.call(this)||this;return n.steps=e,n}return xd(e,t),e}(sv),function(t){function e(e,n){void 0===n&&(n=null);var r=t.call(this)||this;return r.offset=e,r.styles=n,r}return xd(e,t),e}(sv),function(t){function e(e,n){void 0===e&&(e=0),void 0===n&&(n=null);var r=t.call(this)||this;return r.timings=e,r.styles=n,r}return xd(e,t),e}(sv),function(t){function e(e){void 0===e&&(e=null);var n=t.call(this)||this;return n.steps=e,n}return xd(e,t),e}(sv)),uv=(function(t){function e(e){return void 0===e&&(e=null),t.call(this,e)||this}return xd(e,t),e}(av),function(t){function e(e){return void 0===e&&(e=null),t.call(this,e)||this}return xd(e,t),e}(av),0),cv={};cv.Pipe=0,cv.Directive=1,cv.NgModule=2,cv.Injectable=3,cv[cv.Pipe]="Pipe",cv[cv.Directive]="Directive",cv[cv.NgModule]="NgModule",cv[cv.Injectable]="Injectable";var pv=function(){function t(t){var e=void 0===t?{}:t,n=e.moduleUrl,r=e.styles,i=e.styleUrls;this.moduleUrl=n,this.styles=ci(r),this.styleUrls=ci(i)}return t}(),lv=function(){function t(t){var e=void 0===t?{}:t,n=e.encapsulation,r=e.template,i=e.templateUrl,o=e.styles,s=e.styleUrls,a=e.externalStylesheets,u=e.animations,c=e.ngContentSelectors,p=e.interpolation,l=e.isInline;if(this.encapsulation=n,this.template=r,this.templateUrl=i,this.styles=ci(o),this.styleUrls=ci(s),this.externalStylesheets=ci(a),this.animations=u?pi(u):[],this.ngContentSelectors=c||[],p&&2!=p.length)throw new Error("'interpolation' should have a start and an end symbol.");this.interpolation=p,this.isInline=l}return t.prototype.toSummary=function(){return{animations:this.animations.map(function(t){return t.name}),ngContentSelectors:this.ngContentSelectors,encapsulation:this.encapsulation}},t}(),hv=function(){function t(t){var e=void 0===t?{}:t,n=e.isHost,r=e.type,i=e.isComponent,o=e.selector,s=e.exportAs,a=e.changeDetection,u=e.inputs,c=e.outputs,p=e.hostListeners,l=e.hostProperties,h=e.hostAttributes,f=e.providers,d=e.viewProviders,v=e.queries,y=e.viewQueries,m=e.entryComponents,g=e.template,_=e.componentViewType,b=e.rendererType,w=e.componentFactory;this.isHost=!!n,this.type=r,this.isComponent=i,this.selector=o,this.exportAs=s,this.changeDetection=a,this.inputs=u,this.outputs=c,this.hostListeners=p,this.hostProperties=l,this.hostAttributes=h,this.providers=ci(f),this.viewProviders=ci(d),this.queries=ci(v),this.viewQueries=ci(y),this.entryComponents=ci(m),this.template=g,this.componentViewType=_,this.rendererType=b,this.componentFactory=w}return t.create=function(e){var n=void 0===e?{}:e,r=n.isHost,i=n.type,o=n.isComponent,s=n.selector,a=n.exportAs,u=n.changeDetection,c=n.inputs,p=n.outputs,l=n.host,h=n.providers,f=n.viewProviders,d=n.queries,v=n.viewQueries,y=n.entryComponents,m=n.template,g=n.componentViewType,_=n.rendererType,b=n.componentFactory,w={},E={},C={};null!=l&&Object.keys(l).forEach(function(t){var e=l[t],n=t.match(iv);null===n?C[t]=e:null!=n[1]?E[n[1]]=e:null!=n[2]&&(w[n[2]]=e)});var x={};null!=c&&c.forEach(function(t){var e=Wr(t,[t,t]);x[e[0]]=e[1]});var S={};return null!=p&&p.forEach(function(t){var e=Wr(t,[t,t]);S[e[0]]=e[1]}),new t({isHost:r,type:i,isComponent:!!o,selector:s,exportAs:a,changeDetection:u,inputs:x,outputs:S,hostListeners:w,hostProperties:E,hostAttributes:C,providers:h,viewProviders:f,queries:d,viewQueries:v,entryComponents:y,template:m,componentViewType:g,rendererType:_,componentFactory:b})},t.prototype.toSummary=function(){return{summaryKind:cv.Directive,type:this.type,isComponent:this.isComponent,selector:this.selector,exportAs:this.exportAs,inputs:this.inputs,outputs:this.outputs,hostListeners:this.hostListeners,hostProperties:this.hostProperties,hostAttributes:this.hostAttributes,providers:this.providers,viewProviders:this.viewProviders,queries:this.queries,viewQueries:this.viewQueries,entryComponents:this.entryComponents,changeDetection:this.changeDetection,template:this.template&&this.template.toSummary(),componentViewType:this.componentViewType,rendererType:this.rendererType,componentFactory:this.componentFactory}},t}(),fv=function(){function t(t){var e=void 0===t?{}:t,n=e.type,r=e.name,i=e.pure;this.type=n,this.name=r,this.pure=!!i}return t.prototype.toSummary=function(){return{summaryKind:cv.Pipe,type:this.type,name:this.name,pure:this.pure}},t}(),dv=function(){function t(t){var e=void 0===t?{}:t,n=e.type,r=e.providers,i=e.declaredDirectives,o=e.exportedDirectives,s=e.declaredPipes,a=e.exportedPipes,u=e.entryComponents,c=e.bootstrapComponents,p=e.importedModules,l=e.exportedModules,h=e.schemas,f=e.transitiveModule,d=e.id;this.type=n,this.declaredDirectives=ci(i),this.exportedDirectives=ci(o),this.declaredPipes=ci(s),this.exportedPipes=ci(a),this.providers=ci(r),this.entryComponents=ci(u),this.bootstrapComponents=ci(c),this.importedModules=ci(p),this.exportedModules=ci(l),this.schemas=ci(h),this.id=d,this.transitiveModule=f}return t.prototype.toSummary=function(){return{summaryKind:cv.NgModule,type:this.type,entryComponents:this.transitiveModule.entryComponents,providers:this.transitiveModule.providers,modules:this.transitiveModule.modules,exportedDirectives:this.transitiveModule.exportedDirectives,exportedPipes:this.transitiveModule.exportedPipes}},t}(),vv=function(){function t(){this.directivesSet=new Set,this.directives=[],this.exportedDirectivesSet=new Set,this.exportedDirectives=[],this.pipesSet=new Set,this.pipes=[],this.exportedPipesSet=new Set,this.exportedPipes=[],this.modulesSet=new Set,this.modules=[],this.entryComponentsSet=new Set,this.entryComponents=[],this.providers=[]}return t.prototype.addProvider=function(t,e){this.providers.push({provider:t,module:e})},t.prototype.addDirective=function(t){this.directivesSet.has(t.reference)||(this.directivesSet.add(t.reference),this.directives.push(t))},t.prototype.addExportedDirective=function(t){this.exportedDirectivesSet.has(t.reference)||(this.exportedDirectivesSet.add(t.reference),this.exportedDirectives.push(t))},t.prototype.addPipe=function(t){this.pipesSet.has(t.reference)||(this.pipesSet.add(t.reference),this.pipes.push(t))},t.prototype.addExportedPipe=function(t){this.exportedPipesSet.has(t.reference)||(this.exportedPipesSet.add(t.reference),this.exportedPipes.push(t))},t.prototype.addModule=function(t){this.modulesSet.has(t.reference)||(this.modulesSet.add(t.reference),this.modules.push(t))},t.prototype.addEntryComponent=function(t){this.entryComponentsSet.has(t.componentType)||(this.entryComponentsSet.add(t.componentType),this.entryComponents.push(t))},t}(),yv=function(){function t(t,e){var n=e.useClass,r=e.useValue,i=e.useExisting,o=e.useFactory,s=e.deps,a=e.multi;this.token=t,this.useClass=n,this.useValue=r,this.useExisting=i,this.useFactory=o,this.dependencies=s,this.multi=!!a}return t}(),mv=function(){function t(t){var e=void 0===t?{}:t,n=e.defaultEncapsulation,r=void 0===n?wl.Emulated:n,i=e.useJit,o=void 0===i?!0:i,s=e.missingTranslation,a=e.enableLegacyTemplate;this.defaultEncapsulation=r,this.useJit=o,this.missingTranslation=s,this.enableLegacyTemplate=a!==!1}return t}(),gv=function(){function t(t,e,n,r){this.input=e,this.errLocation=n,this.ctxLocation=r,this.message="Parser Error: "+t+" "+n+" ["+e+"] in "+r}return t}(),_v=function(){function t(t,e){this.start=t,this.end=e}return t}(),bv=function(){function t(t){this.span=t}return t.prototype.visit=function(t,e){return void 0===e&&(e=null),null},t.prototype.toString=function(){return"AST"},t}(),wv=function(t){function e(e,n,r,i){var o=t.call(this,e)||this;return o.prefix=n,o.uninterpretedExpression=r,o.location=i,o}return xd(e,t),e.prototype.visit=function(t,e){return void 0===e&&(e=null),t.visitQuote(this,e)},e.prototype.toString=function(){return"Quote"},e}(bv),Ev=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return xd(e,t),e.prototype.visit=function(t,e){void 0===e&&(e=null)},e}(bv),Cv=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return xd(e,t),e.prototype.visit=function(t,e){return void 0===e&&(e=null),t.visitImplicitReceiver(this,e)},e}(bv),xv=function(t){function e(e,n){var r=t.call(this,e)||this;return r.expressions=n,r}return xd(e,t),e.prototype.visit=function(t,e){return void 0===e&&(e=null),t.visitChain(this,e)},e}(bv),Sv=function(t){function e(e,n,r,i){var o=t.call(this,e)||this;return o.condition=n,o.trueExp=r,o.falseExp=i,o}return xd(e,t),e.prototype.visit=function(t,e){return void 0===e&&(e=null),t.visitConditional(this,e)},e}(bv),Tv=function(t){function e(e,n,r){var i=t.call(this,e)||this;return i.receiver=n,i.name=r,i}return xd(e,t),e.prototype.visit=function(t,e){return void 0===e&&(e=null),t.visitPropertyRead(this,e)},e}(bv),Av=function(t){function e(e,n,r,i){var o=t.call(this,e)||this;return o.receiver=n,o.name=r,o.value=i,o}return xd(e,t),e.prototype.visit=function(t,e){return void 0===e&&(e=null),t.visitPropertyWrite(this,e)},e}(bv),Pv=function(t){function e(e,n,r){var i=t.call(this,e)||this;return i.receiver=n,i.name=r,i}return xd(e,t),e.prototype.visit=function(t,e){return void 0===e&&(e=null),t.visitSafePropertyRead(this,e)},e}(bv),kv=function(t){function e(e,n,r){var i=t.call(this,e)||this;return i.obj=n,i.key=r,i}return xd(e,t),e.prototype.visit=function(t,e){return void 0===e&&(e=null),t.visitKeyedRead(this,e)},e}(bv),Mv=function(t){function e(e,n,r,i){var o=t.call(this,e)||this;return o.obj=n,o.key=r,o.value=i,o}return xd(e,t),e.prototype.visit=function(t,e){return void 0===e&&(e=null),t.visitKeyedWrite(this,e)},e}(bv),Ov=function(t){function e(e,n,r,i){var o=t.call(this,e)||this;return o.exp=n,o.name=r,o.args=i,o}return xd(e,t),e.prototype.visit=function(t,e){return void 0===e&&(e=null),t.visitPipe(this,e)},e}(bv),Nv=function(t){function e(e,n){var r=t.call(this,e)||this;return r.value=n,r}return xd(e,t),e.prototype.visit=function(t,e){return void 0===e&&(e=null),t.visitLiteralPrimitive(this,e)},e}(bv),Iv=function(t){function e(e,n){var r=t.call(this,e)||this;return r.expressions=n,r}return xd(e,t),e.prototype.visit=function(t,e){return void 0===e&&(e=null),t.visitLiteralArray(this,e)},e}(bv),Rv=function(t){function e(e,n,r){var i=t.call(this,e)||this;return i.keys=n,i.values=r,i}return xd(e,t),e.prototype.visit=function(t,e){return void 0===e&&(e=null),t.visitLiteralMap(this,e)},e}(bv),Dv=function(t){function e(e,n,r){var i=t.call(this,e)||this;return i.strings=n,i.expressions=r,i}return xd(e,t),e.prototype.visit=function(t,e){return void 0===e&&(e=null),t.visitInterpolation(this,e)},e}(bv),Lv=function(t){function e(e,n,r,i){var o=t.call(this,e)||this;return o.operation=n,o.left=r,o.right=i,o}return xd(e,t),e.prototype.visit=function(t,e){return void 0===e&&(e=null),t.visitBinary(this,e)},e}(bv),Fv=function(t){function e(e,n){var r=t.call(this,e)||this;return r.expression=n,r}return xd(e,t),e.prototype.visit=function(t,e){return void 0===e&&(e=null),t.visitPrefixNot(this,e)},e}(bv),Vv=function(t){function e(e,n,r,i){var o=t.call(this,e)||this;return o.receiver=n,o.name=r,o.args=i,o}return xd(e,t),e.prototype.visit=function(t,e){return void 0===e&&(e=null),t.visitMethodCall(this,e)},e}(bv),jv=function(t){function e(e,n,r,i){var o=t.call(this,e)||this;return o.receiver=n,o.name=r,o.args=i,o}return xd(e,t),e.prototype.visit=function(t,e){return void 0===e&&(e=null),t.visitSafeMethodCall(this,e)},e}(bv),Hv=function(t){function e(e,n,r){var i=t.call(this,e)||this;return i.target=n,i.args=r,i}return xd(e,t),e.prototype.visit=function(t,e){return void 0===e&&(e=null),t.visitFunctionCall(this,e)},e}(bv),Uv=function(t){function e(e,n,r,i){var o=t.call(this,new _v(0,null==n?0:n.length))||this;return o.ast=e,o.source=n,o.location=r,o.errors=i,o}return xd(e,t),e.prototype.visit=function(t,e){return void 0===e&&(e=null),this.ast.visit(t,e)},e.prototype.toString=function(){return this.source+" in "+this.location},e}(bv),Bv=function(){function t(t,e,n,r,i){this.span=t,this.key=e,this.keyIsVar=n,this.name=r,this.expression=i}return t}(),zv=function(){function t(){}return t.prototype.visitBinary=function(t){return t.left.visit(this),t.right.visit(this),null},t.prototype.visitChain=function(t,e){return this.visitAll(t.expressions,e)},t.prototype.visitConditional=function(t){return t.condition.visit(this),t.trueExp.visit(this),t.falseExp.visit(this),null},t.prototype.visitPipe=function(t,e){return t.exp.visit(this),this.visitAll(t.args,e),null},t.prototype.visitFunctionCall=function(t,e){return t.target.visit(this),this.visitAll(t.args,e),null},t.prototype.visitImplicitReceiver=function(){return null},t.prototype.visitInterpolation=function(t,e){return this.visitAll(t.expressions,e)},t.prototype.visitKeyedRead=function(t){return t.obj.visit(this),t.key.visit(this),null},t.prototype.visitKeyedWrite=function(t){return t.obj.visit(this),t.key.visit(this),t.value.visit(this),null},t.prototype.visitLiteralArray=function(t,e){return this.visitAll(t.expressions,e)},t.prototype.visitLiteralMap=function(t,e){return this.visitAll(t.values,e)},t.prototype.visitLiteralPrimitive=function(){return null},t.prototype.visitMethodCall=function(t,e){return t.receiver.visit(this),this.visitAll(t.args,e)},t.prototype.visitPrefixNot=function(t){return t.expression.visit(this),null},t.prototype.visitPropertyRead=function(t){return t.receiver.visit(this),null},t.prototype.visitPropertyWrite=function(t){return t.receiver.visit(this),t.value.visit(this),null},t.prototype.visitSafePropertyRead=function(t){return t.receiver.visit(this),null},t.prototype.visitSafeMethodCall=function(t,e){return t.receiver.visit(this),this.visitAll(t.args,e)},t.prototype.visitAll=function(t,e){var n=this;return t.forEach(function(t){return t.visit(n,e)}),null},t.prototype.visitQuote=function(){return null},t}(),qv=function(){function t(){}return t.prototype.visitImplicitReceiver=function(t){return t},t.prototype.visitInterpolation=function(t){return new Dv(t.span,t.strings,this.visitAll(t.expressions))},t.prototype.visitLiteralPrimitive=function(t){return new Nv(t.span,t.value)},t.prototype.visitPropertyRead=function(t){return new Tv(t.span,t.receiver.visit(this),t.name)},t.prototype.visitPropertyWrite=function(t){return new Av(t.span,t.receiver.visit(this),t.name,t.value.visit(this))},t.prototype.visitSafePropertyRead=function(t){return new Pv(t.span,t.receiver.visit(this),t.name)},t.prototype.visitMethodCall=function(t){return new Vv(t.span,t.receiver.visit(this),t.name,this.visitAll(t.args))},t.prototype.visitSafeMethodCall=function(t){return new jv(t.span,t.receiver.visit(this),t.name,this.visitAll(t.args))},t.prototype.visitFunctionCall=function(t){return new Hv(t.span,t.target.visit(this),this.visitAll(t.args))},t.prototype.visitLiteralArray=function(t){return new Iv(t.span,this.visitAll(t.expressions))},t.prototype.visitLiteralMap=function(t){return new Rv(t.span,t.keys,this.visitAll(t.values))},t.prototype.visitBinary=function(t){return new Lv(t.span,t.operation,t.left.visit(this),t.right.visit(this))},t.prototype.visitPrefixNot=function(t){return new Fv(t.span,t.expression.visit(this))},t.prototype.visitConditional=function(t){return new Sv(t.span,t.condition.visit(this),t.trueExp.visit(this),t.falseExp.visit(this))},t.prototype.visitPipe=function(t){return new Ov(t.span,t.exp.visit(this),t.name,this.visitAll(t.args))},t.prototype.visitKeyedRead=function(t){return new kv(t.span,t.obj.visit(this),t.key.visit(this))},t.prototype.visitKeyedWrite=function(t){return new Mv(t.span,t.obj.visit(this),t.key.visit(this),t.value.visit(this))},t.prototype.visitAll=function(t){for(var e=new Array(t.length),n=0;n<t.length;++n)e[n]=t[n].visit(this);return e},t.prototype.visitChain=function(t){return new xv(t.span,this.visitAll(t.expressions))},t.prototype.visitQuote=function(t){return new wv(t.span,t.prefix,t.uninterpretedExpression,t.location)},t}(),Wv=0,Kv=9,Qv=10,Gv=11,Xv=12,Zv=13,Yv=32,$v=33,Jv=34,ty=35,ey=36,ny=37,ry=38,iy=39,oy=40,sy=41,ay=42,uy=43,cy=44,py=45,ly=46,hy=47,fy=58,dy=59,vy=60,yy=61,my=62,gy=63,_y=48,by=57,wy=65,Ey=69,Cy=70,xy=88,Sy=90,Ty=91,Ay=92,Py=93,ky=94,My=95,Oy=97,Ny=101,Iy=102,Ry=110,Dy=114,Ly=116,Fy=117,Vy=118,jy=120,Hy=122,Uy=123,By=124,zy=125,qy=160,Wy=96,Ky=[/^\s*$/,/[<>]/,/^[{}]$/,/&(#|[a-z])/i,/^\/\//],Qy=function(){function t(t,e){this.start=t,this.end=e}return t.fromArray=function(e){return e?(Ei("interpolation",e),new t(e[0],e[1])):Gy},t}(),Gy=new Qy("{{","}}"),Xy={};Xy.Character=0,Xy.Identifier=1,Xy.Keyword=2,Xy.String=3,Xy.Operator=4,Xy.Number=5,Xy.Error=6,Xy[Xy.Character]="Character",Xy[Xy.Identifier]="Identifier",Xy[Xy.Keyword]="Keyword",Xy[Xy.String]="String",Xy[Xy.Operator]="Operator",Xy[Xy.Number]="Number",Xy[Xy.Error]="Error";var Zy=["var","let","as","null","undefined","true","false","if","else","this"],Yy=function(){function t(){}return t.prototype.tokenize=function(t){for(var e=new tm(t),n=[],r=e.scanToken();null!=r;)n.push(r),r=e.scanToken();return n},t}();Yy.decorators=[{type:bi}],Yy.ctorParameters=function(){return[]};var $y=function(){function t(t,e,n,r){this.index=t,this.type=e,this.numValue=n,this.strValue=r}return t.prototype.isCharacter=function(t){return this.type==Xy.Character&&this.numValue==t},t.prototype.isNumber=function(){return this.type==Xy.Number},t.prototype.isString=function(){return this.type==Xy.String},t.prototype.isOperator=function(t){return this.type==Xy.Operator&&this.strValue==t},t.prototype.isIdentifier=function(){return this.type==Xy.Identifier},t.prototype.isKeyword=function(){return this.type==Xy.Keyword},t.prototype.isKeywordLet=function(){return this.type==Xy.Keyword&&"let"==this.strValue},t.prototype.isKeywordAs=function(){return this.type==Xy.Keyword&&"as"==this.strValue},t.prototype.isKeywordNull=function(){return this.type==Xy.Keyword&&"null"==this.strValue},t.prototype.isKeywordUndefined=function(){return this.type==Xy.Keyword&&"undefined"==this.strValue},t.prototype.isKeywordTrue=function(){return this.type==Xy.Keyword&&"true"==this.strValue},t.prototype.isKeywordFalse=function(){return this.type==Xy.Keyword&&"false"==this.strValue},t.prototype.isKeywordThis=function(){return this.type==Xy.Keyword&&"this"==this.strValue},t.prototype.isError=function(){return this.type==Xy.Error},t.prototype.toNumber=function(){return this.type==Xy.Number?this.numValue:-1},t.prototype.toString=function(){switch(this.type){case Xy.Character:case Xy.Identifier:case Xy.Keyword:case Xy.Operator:case Xy.String:case Xy.Error:return this.strValue;case Xy.Number:return this.numValue.toString();default:return null}},t}(),Jy=new $y(-1,Xy.Character,0,""),tm=function(){function t(t){this.input=t,this.peek=0,this.index=-1,this.length=t.length,this.advance()}return t.prototype.advance=function(){this.peek=++this.index>=this.length?Wv:this.input.charCodeAt(this.index)},t.prototype.scanToken=function(){for(var t=this.input,e=this.length,n=this.peek,r=this.index;Yv>=n;){if(++r>=e){n=Wv;break}n=t.charCodeAt(r)}if(this.peek=n,this.index=r,r>=e)return null;if(Mi(n))return this.scanIdentifier();if(mi(n))return this.scanNumber(r);var i=r;switch(n){case ly:return this.advance(),mi(this.peek)?this.scanNumber(i):Ci(i,ly);case oy:case sy:case Uy:case zy:case Ty:case Py:case cy:case fy:case dy:return this.scanCharacter(i,n);case iy:case Jv:return this.scanString();case ty:case uy:case py:case ay:case hy:case ny:case ky:return this.scanOperator(i,String.fromCharCode(n));case gy:return this.scanComplexOperator(i,"?",ly,".");case vy:case my:return this.scanComplexOperator(i,String.fromCharCode(n),yy,"=");case $v:case yy:return this.scanComplexOperator(i,String.fromCharCode(n),yy,"=",yy,"=");case ry:return this.scanComplexOperator(i,"&",ry,"&");case By:return this.scanComplexOperator(i,"|",By,"|");case qy:for(;yi(this.peek);)this.advance();return this.scanToken()}return this.advance(),this.error("Unexpected character ["+String.fromCharCode(n)+"]",0)},t.prototype.scanCharacter=function(t,e){return this.advance(),Ci(t,e)},t.prototype.scanOperator=function(t,e){return this.advance(),Ti(t,e)},t.prototype.scanComplexOperator=function(t,e,n,r,i,o){this.advance();var s=e;return this.peek==n&&(this.advance(),s+=r),null!=i&&this.peek==i&&(this.advance(),s+=o),Ti(t,s)},t.prototype.scanIdentifier=function(){var t=this.index;for(this.advance();Ni(this.peek);)this.advance();var e=this.input.substring(t,this.index);return Zy.indexOf(e)>-1?Si(t,e):xi(t,e)},t.prototype.scanNumber=function(t){var e=this.index===t;for(this.advance();;){if(mi(this.peek));else if(this.peek==ly)e=!1;else{if(!Ii(this.peek))break;if(this.advance(),Ri(this.peek)&&this.advance(),!mi(this.peek))return this.error("Invalid exponent",-1);e=!1}this.advance()}var n=this.input.substring(t,this.index),r=e?Fi(n):parseFloat(n);return Pi(t,r)},t.prototype.scanString=function(){var t=this.index,e=this.peek;this.advance();for(var n="",r=this.index,i=this.input;this.peek!=e;)if(this.peek==Ay){n+=i.substring(r,this.index),this.advance();var o=void 0;if(this.peek=this.peek,this.peek==Fy){var s=i.substring(this.index+1,this.index+5);if(!/^[0-9a-f]+$/i.test(s))return this.error("Invalid unicode escape [\\u"+s+"]",0);o=parseInt(s,16);for(var a=0;5>a;a++)this.advance()}else o=Li(this.peek),this.advance();n+=String.fromCharCode(o),r=this.index}else{if(this.peek==Wv)return this.error("Unterminated quote",0);this.advance()}var u=i.substring(r,this.index);return this.advance(),Ai(t,n+u)},t.prototype.error=function(t,e){var n=this.index+e;return ki(n,"Lexer Error: "+t+" at column "+n+" in expression ["+this.input+"]")},t}(),em=function(){function t(t,e,n){this.strings=t,this.expressions=e,this.offsets=n}return t}(),nm=function(){function t(t,e,n){this.templateBindings=t,this.warnings=e,this.errors=n}return t}(),rm=function(){function t(t){this._lexer=t,this.errors=[]}return t.prototype.parseAction=function(t,e,n){void 0===n&&(n=Gy),this._checkNoInterpolation(t,e,n);var r=this._stripComments(t),i=this._lexer.tokenize(this._stripComments(t)),o=new im(t,e,i,r.length,!0,this.errors,t.length-r.length).parseChain();return new Uv(o,t,e,this.errors)},t.prototype.parseBinding=function(t,e,n){void 0===n&&(n=Gy);var r=this._parseBindingAst(t,e,n);return new Uv(r,t,e,this.errors)},t.prototype.parseSimpleBinding=function(t,e,n){void 0===n&&(n=Gy);var r=this._parseBindingAst(t,e,n),i=om.check(r);return i.length>0&&this._reportError("Host binding expression cannot contain "+i.join(" "),t,e),new Uv(r,t,e,this.errors)},t.prototype._reportError=function(t,e,n,r){this.errors.push(new gv(t,e,n,r))},t.prototype._parseBindingAst=function(t,e,n){var r=this._parseQuote(t,e);if(null!=r)return r;this._checkNoInterpolation(t,e,n);var i=this._stripComments(t),o=this._lexer.tokenize(i);return new im(t,e,o,i.length,!1,this.errors,t.length-i.length).parseChain()},t.prototype._parseQuote=function(t,e){if(null==t)return null;var n=t.indexOf(":");if(-1==n)return null;var r=t.substring(0,n).trim();if(!Oi(r))return null;var i=t.substring(n+1);return new wv(new _v(0,t.length),r,i,e)},t.prototype.parseTemplateBindings=function(t,e,n){var r=this._lexer.tokenize(e);if(t){var i=this._lexer.tokenize(t).map(function(t){return t.index=0,t});r.unshift.apply(r,i)}return new im(e,n,r,e.length,!1,this.errors,0).parseTemplateBindings()},t.prototype.parseInterpolation=function(t,e,n){void 0===n&&(n=Gy);var r=this.splitInterpolation(t,e,n);if(null==r)return null;for(var i=[],o=0;o<r.expressions.length;++o){var s=r.expressions[o],a=this._stripComments(s),u=this._lexer.tokenize(this._stripComments(r.expressions[o])),c=new im(t,e,u,a.length,!1,this.errors,r.offsets[o]+(s.length-a.length)).parseChain();i.push(c)}return new Uv(new Dv(new _v(0,null==t?0:t.length),r.strings,i),t,e,this.errors)},t.prototype.splitInterpolation=function(t,e,n){void 0===n&&(n=Gy);var r=Vi(n),i=t.split(r);if(i.length<=1)return null;for(var o=[],s=[],a=[],u=0,c=0;c<i.length;c++){var p=i[c];c%2===0?(o.push(p),u+=p.length):p.trim().length>0?(u+=n.start.length,s.push(p),a.push(u),u+=p.length+n.end.length):(this._reportError("Blank expressions are not allowed in interpolated strings",t,"at column "+this._findInterpolationErrorColumn(i,c,n)+" in",e),s.push("$implict"),a.push(u))}return new em(o,s,a)},t.prototype.wrapLiteralPrimitive=function(t,e){return new Uv(new Nv(new _v(0,null==t?0:t.length),t),t,e,this.errors)},t.prototype._stripComments=function(t){var e=this._commentStart(t);return null!=e?t.substring(0,e).trim():t},t.prototype._commentStart=function(t){for(var e=null,n=0;n<t.length-1;n++){var r=t.charCodeAt(n),i=t.charCodeAt(n+1);if(r===hy&&i==hy&&null==e)return n;e===r?e=null:null==e&&Di(r)&&(e=r)}return null},t.prototype._checkNoInterpolation=function(t,e,n){var r=Vi(n),i=t.split(r);i.length>1&&this._reportError("Got interpolation ("+n.start+n.end+") where expression was expected",t,"at column "+this._findInterpolationErrorColumn(i,1,n)+" in",e)},t.prototype._findInterpolationErrorColumn=function(t,e,n){for(var r="",i=0;e>i;i++)r+=i%2===0?t[i]:""+n.start+t[i]+n.end;return r.length},t}();rm.decorators=[{type:bi}],rm.ctorParameters=function(){return[{type:Yy}]};var im=function(){function t(t,e,n,r,i,o,s){this.input=t,this.location=e,this.tokens=n,this.inputLength=r,this.parseAction=i,this.errors=o,this.offset=s,this.rparensExpected=0,this.rbracketsExpected=0,this.rbracesExpected=0,this.index=0}return t.prototype.peek=function(t){var e=this.index+t;return e<this.tokens.length?this.tokens[e]:Jy},Object.defineProperty(t.prototype,"next",{get:function(){return this.peek(0)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"inputIndex",{get:function(){return this.index<this.tokens.length?this.next.index+this.offset:this.inputLength+this.offset},enumerable:!0,configurable:!0}),t.prototype.span=function(t){return new _v(t,this.inputIndex)},t.prototype.advance=function(){this.index++},t.prototype.optionalCharacter=function(t){return this.next.isCharacter(t)?(this.advance(),!0):!1},t.prototype.peekKeywordLet=function(){return this.next.isKeywordLet()},t.prototype.peekKeywordAs=function(){return this.next.isKeywordAs()},t.prototype.expectCharacter=function(t){this.optionalCharacter(t)||this.error("Missing expected "+String.fromCharCode(t))},t.prototype.optionalOperator=function(t){return this.next.isOperator(t)?(this.advance(),!0):!1},t.prototype.expectOperator=function(t){this.optionalOperator(t)||this.error("Missing expected operator "+t)},t.prototype.expectIdentifierOrKeyword=function(){var t=this.next;return t.isIdentifier()||t.isKeyword()?(this.advance(),t.toString()):(this.error("Unexpected token "+t+", expected identifier or keyword"),"")},t.prototype.expectIdentifierOrKeywordOrString=function(){var t=this.next;return t.isIdentifier()||t.isKeyword()||t.isString()?(this.advance(),t.toString()):(this.error("Unexpected token "+t+", expected identifier, keyword, or string"),"")},t.prototype.parseChain=function(){for(var t=[],e=this.inputIndex;this.index<this.tokens.length;){var n=this.parsePipe();if(t.push(n),this.optionalCharacter(dy))for(this.parseAction||this.error("Binding expression cannot contain chained expression");this.optionalCharacter(dy););else this.index<this.tokens.length&&this.error("Unexpected token '"+this.next+"'")}return 0==t.length?new Ev(this.span(e)):1==t.length?t[0]:new xv(this.span(e),t)},t.prototype.parsePipe=function(){var t=this.parseExpression();if(this.optionalOperator("|")){this.parseAction&&this.error("Cannot have a pipe in an action expression");do{for(var e=this.expectIdentifierOrKeyword(),n=[];this.optionalCharacter(fy);)n.push(this.parseExpression());t=new Ov(this.span(t.span.start),t,e,n)}while(this.optionalOperator("|"))}return t},t.prototype.parseExpression=function(){return this.parseConditional()},t.prototype.parseConditional=function(){var t=this.inputIndex,e=this.parseLogicalOr();if(this.optionalOperator("?")){var n=this.parsePipe(),r=void 0;if(this.optionalCharacter(fy))r=this.parsePipe();else{var i=this.inputIndex,o=this.input.substring(t,i);this.error("Conditional expression "+o+" requires all 3 expressions"),r=new Ev(this.span(t))}return new Sv(this.span(t),e,n,r)}return e},t.prototype.parseLogicalOr=function(){for(var t=this.parseLogicalAnd();this.optionalOperator("||");){var e=this.parseLogicalAnd();t=new Lv(this.span(t.span.start),"||",t,e)}return t},t.prototype.parseLogicalAnd=function(){for(var t=this.parseEquality();this.optionalOperator("&&");){var e=this.parseEquality();t=new Lv(this.span(t.span.start),"&&",t,e)}return t},t.prototype.parseEquality=function(){for(var t=this.parseRelational();this.next.type==Xy.Operator;){var e=this.next.strValue;switch(e){case"==":case"===":case"!=":case"!==":this.advance();var n=this.parseRelational();t=new Lv(this.span(t.span.start),e,t,n);continue}break}return t},t.prototype.parseRelational=function(){for(var t=this.parseAdditive();this.next.type==Xy.Operator;){var e=this.next.strValue;switch(e){case"<":case">":case"<=":case">=":this.advance();var n=this.parseAdditive();t=new Lv(this.span(t.span.start),e,t,n);continue}break}return t},t.prototype.parseAdditive=function(){for(var t=this.parseMultiplicative();this.next.type==Xy.Operator;){var e=this.next.strValue;switch(e){case"+":case"-":this.advance();var n=this.parseMultiplicative();t=new Lv(this.span(t.span.start),e,t,n);continue}break}return t},t.prototype.parseMultiplicative=function(){for(var t=this.parsePrefix();this.next.type==Xy.Operator;){var e=this.next.strValue;switch(e){case"*":case"%":case"/":this.advance();var n=this.parsePrefix();t=new Lv(this.span(t.span.start),e,t,n);continue}break}return t},t.prototype.parsePrefix=function(){if(this.next.type==Xy.Operator){var t=this.inputIndex,e=this.next.strValue,n=void 0;switch(e){case"+":return this.advance(),this.parsePrefix();case"-":return this.advance(),n=this.parsePrefix(),new Lv(this.span(t),e,new Nv(new _v(t,t),0),n);case"!":return this.advance(),n=this.parsePrefix(),new Fv(this.span(t),n)}}return this.parseCallChain()},t.prototype.parseCallChain=function(){for(var t=this.parsePrimary();;)if(this.optionalCharacter(ly))t=this.parseAccessMemberOrMethodCall(t,!1);else if(this.optionalOperator("?."))t=this.parseAccessMemberOrMethodCall(t,!0);else if(this.optionalCharacter(Ty)){this.rbracketsExpected++;var e=this.parsePipe();if(this.rbracketsExpected--,this.expectCharacter(Py),this.optionalOperator("=")){var n=this.parseConditional();t=new Mv(this.span(t.span.start),t,e,n)}else t=new kv(this.span(t.span.start),t,e);
}else{if(!this.optionalCharacter(oy))return t;this.rparensExpected++;var r=this.parseCallArguments();this.rparensExpected--,this.expectCharacter(sy),t=new Hv(this.span(t.span.start),t,r)}},t.prototype.parsePrimary=function(){var t=this.inputIndex;if(this.optionalCharacter(oy)){this.rparensExpected++;var e=this.parsePipe();return this.rparensExpected--,this.expectCharacter(sy),e}if(this.next.isKeywordNull())return this.advance(),new Nv(this.span(t),null);if(this.next.isKeywordUndefined())return this.advance(),new Nv(this.span(t),void 0);if(this.next.isKeywordTrue())return this.advance(),new Nv(this.span(t),!0);if(this.next.isKeywordFalse())return this.advance(),new Nv(this.span(t),!1);if(this.next.isKeywordThis())return this.advance(),new Cv(this.span(t));if(this.optionalCharacter(Ty)){this.rbracketsExpected++;var n=this.parseExpressionList(Py);return this.rbracketsExpected--,this.expectCharacter(Py),new Iv(this.span(t),n)}if(this.next.isCharacter(Uy))return this.parseLiteralMap();if(this.next.isIdentifier())return this.parseAccessMemberOrMethodCall(new Cv(this.span(t)),!1);if(this.next.isNumber()){var r=this.next.toNumber();return this.advance(),new Nv(this.span(t),r)}if(this.next.isString()){var i=this.next.toString();return this.advance(),new Nv(this.span(t),i)}return this.index>=this.tokens.length?(this.error("Unexpected end of expression: "+this.input),new Ev(this.span(t))):(this.error("Unexpected token "+this.next),new Ev(this.span(t)))},t.prototype.parseExpressionList=function(t){var e=[];if(!this.next.isCharacter(t))do e.push(this.parsePipe());while(this.optionalCharacter(cy));return e},t.prototype.parseLiteralMap=function(){var t=[],e=[],n=this.inputIndex;if(this.expectCharacter(Uy),!this.optionalCharacter(zy)){this.rbracesExpected++;do{var r=this.expectIdentifierOrKeywordOrString();t.push(r),this.expectCharacter(fy),e.push(this.parsePipe())}while(this.optionalCharacter(cy));this.rbracesExpected--,this.expectCharacter(zy)}return new Rv(this.span(n),t,e)},t.prototype.parseAccessMemberOrMethodCall=function(t,e){void 0===e&&(e=!1);var n=t.span.start,r=this.expectIdentifierOrKeyword();if(this.optionalCharacter(oy)){this.rparensExpected++;var i=this.parseCallArguments();this.expectCharacter(sy),this.rparensExpected--;var o=this.span(n);return e?new jv(o,t,r,i):new Vv(o,t,r,i)}if(e)return this.optionalOperator("=")?(this.error("The '?.' operator cannot be used in the assignment"),new Ev(this.span(n))):new Pv(this.span(n),t,r);if(this.optionalOperator("=")){if(!this.parseAction)return this.error("Bindings cannot contain assignments"),new Ev(this.span(n));var s=this.parseConditional();return new Av(this.span(n),t,r,s)}return new Tv(this.span(n),t,r)},t.prototype.parseCallArguments=function(){if(this.next.isCharacter(sy))return[];var t=[];do t.push(this.parsePipe());while(this.optionalCharacter(cy));return t},t.prototype.expectTemplateBindingKey=function(){var t="",e=!1;do t+=this.expectIdentifierOrKeywordOrString(),e=this.optionalOperator("-"),e&&(t+="-");while(e);return t.toString()},t.prototype.parseTemplateBindings=function(){for(var t=[],e=null,n=[];this.index<this.tokens.length;){var r=this.inputIndex,i=this.peekKeywordLet();i&&this.advance();var o=this.expectTemplateBindingKey(),s=o;i||(null==e?e=s:s=e+s[0].toUpperCase()+s.substring(1)),this.optionalCharacter(fy);var a=null,u=null;if(i)a=this.optionalOperator("=")?this.expectTemplateBindingKey():"$implicit";else if(this.peekKeywordAs()){var c=this.inputIndex;this.advance(),a=o,s=this.expectTemplateBindingKey(),i=!0}else if(this.next!==Jy&&!this.peekKeywordLet()){var p=this.inputIndex,l=this.parsePipe(),h=this.input.substring(p-this.offset,this.inputIndex-this.offset);u=new Uv(l,h,this.location,this.errors)}if(t.push(new Bv(this.span(r),s,i,a,u)),this.peekKeywordAs()&&!i){var c=this.inputIndex;this.advance();var f=this.expectTemplateBindingKey();t.push(new Bv(this.span(c),f,!0,s,null))}this.optionalCharacter(dy)||this.optionalCharacter(cy)}return new nm(t,n,this.errors)},t.prototype.error=function(t,e){void 0===e&&(e=null),this.errors.push(new gv(t,this.input,this.locationText(e),this.location)),this.skip()},t.prototype.locationText=function(t){return void 0===t&&(t=null),null==t&&(t=this.index),t<this.tokens.length?"at column "+(this.tokens[t].index+1)+" in":"at the end of the expression"},t.prototype.skip=function(){for(var t=this.next;this.index<this.tokens.length&&!t.isCharacter(dy)&&(this.rparensExpected<=0||!t.isCharacter(sy))&&(this.rbracesExpected<=0||!t.isCharacter(zy))&&(this.rbracketsExpected<=0||!t.isCharacter(Py));)this.next.isError()&&this.errors.push(new gv(this.next.toString(),this.input,this.locationText(),this.location)),this.advance(),t=this.next},t}(),om=function(){function t(){this.errors=[]}return t.check=function(e){var n=new t;return e.visit(n),n.errors},t.prototype.visitImplicitReceiver=function(){},t.prototype.visitInterpolation=function(){},t.prototype.visitLiteralPrimitive=function(){},t.prototype.visitPropertyRead=function(){},t.prototype.visitPropertyWrite=function(){},t.prototype.visitSafePropertyRead=function(){},t.prototype.visitMethodCall=function(){},t.prototype.visitSafeMethodCall=function(){},t.prototype.visitFunctionCall=function(){},t.prototype.visitLiteralArray=function(t){this.visitAll(t.expressions)},t.prototype.visitLiteralMap=function(t){this.visitAll(t.values)},t.prototype.visitBinary=function(){},t.prototype.visitPrefixNot=function(){},t.prototype.visitConditional=function(){},t.prototype.visitPipe=function(){this.errors.push("pipes")},t.prototype.visitKeyedRead=function(){},t.prototype.visitKeyedWrite=function(){},t.prototype.visitAll=function(t){var e=this;return t.map(function(t){return t.visit(e)})},t.prototype.visitChain=function(){},t.prototype.visitQuote=function(){},t}(),sm=function(){function t(t,e,n,r){this.file=t,this.offset=e,this.line=n,this.col=r}return t.prototype.toString=function(){return null!=this.offset?this.file.url+"@"+this.line+":"+this.col:this.file.url},t.prototype.moveBy=function(e){for(var n=this.file.content,r=n.length,i=this.offset,o=this.line,s=this.col;i>0&&0>e;){i--,e++;var a=n.charCodeAt(i);if(a==Qv){o--;var u=n.substr(0,i-1).lastIndexOf(String.fromCharCode(Qv));s=u>0?i-u:i}else s--}for(;r>i&&e>0;){var a=n.charCodeAt(i);i++,e--,a==Qv?(o++,s=0):s++}return new t(this.file,i,o,s)},t.prototype.getContext=function(t,e){var n=this.file.content,r=this.offset;if(null!=r){r>n.length-1&&(r=n.length-1);for(var i=r,o=0,s=0;t>o&&r>0&&(r--,o++,"\n"!=n[r]||++s!=e););for(o=0,s=0;t>o&&i<n.length-1&&(i++,o++,"\n"!=n[i]||++s!=e););return{before:n.substring(r,this.offset),after:n.substring(this.offset,i+1)}}return null},t}(),am=function(){function t(t,e){this.content=t,this.url=e}return t}(),um=function(){function t(t,e,n){void 0===n&&(n=null),this.start=t,this.end=e,this.details=n}return t.prototype.toString=function(){return this.start.file.content.substring(this.start.offset,this.end.offset)},t}(),cm={};cm.WARNING=0,cm.ERROR=1,cm[cm.WARNING]="WARNING",cm[cm.ERROR]="ERROR";var pm=function(){function t(t,e,n){void 0===n&&(n=cm.ERROR),this.span=t,this.msg=e,this.level=n}return t.prototype.toString=function(){var t=this.span.start.getContext(100,3),e=t?' ("'+t.before+"["+cm[this.level]+" ->]"+t.after+'")':"",n=this.span.details?", "+this.span.details:"";return""+this.msg+e+": "+this.span.start+n},t}(),lm=function(){function t(t,e){this.value=t,this.sourceSpan=e}return t.prototype.visit=function(t,e){return t.visitText(this,e)},t}(),hm=function(){function t(t,e,n,r,i){this.switchValue=t,this.type=e,this.cases=n,this.sourceSpan=r,this.switchValueSourceSpan=i}return t.prototype.visit=function(t,e){return t.visitExpansion(this,e)},t}(),fm=function(){function t(t,e,n,r,i){this.value=t,this.expression=e,this.sourceSpan=n,this.valueSourceSpan=r,this.expSourceSpan=i}return t.prototype.visit=function(t,e){return t.visitExpansionCase(this,e)},t}(),dm=function(){function t(t,e,n,r){this.name=t,this.value=e,this.sourceSpan=n,this.valueSpan=r}return t.prototype.visit=function(t,e){return t.visitAttribute(this,e)},t}(),vm=function(){function t(t,e,n,r,i,o){this.name=t,this.attrs=e,this.children=n,this.sourceSpan=r,this.startSourceSpan=i,this.endSourceSpan=o}return t.prototype.visit=function(t,e){return t.visitElement(this,e)},t}(),ym=function(){function t(t,e){this.value=t,this.sourceSpan=e}return t.prototype.visit=function(t,e){return t.visitComment(this,e)},t}(),mm={};mm.TAG_OPEN_START=0,mm.TAG_OPEN_END=1,mm.TAG_OPEN_END_VOID=2,mm.TAG_CLOSE=3,mm.TEXT=4,mm.ESCAPABLE_RAW_TEXT=5,mm.RAW_TEXT=6,mm.COMMENT_START=7,mm.COMMENT_END=8,mm.CDATA_START=9,mm.CDATA_END=10,mm.ATTR_NAME=11,mm.ATTR_VALUE=12,mm.DOC_TYPE=13,mm.EXPANSION_FORM_START=14,mm.EXPANSION_CASE_VALUE=15,mm.EXPANSION_CASE_EXP_START=16,mm.EXPANSION_CASE_EXP_END=17,mm.EXPANSION_FORM_END=18,mm.EOF=19,mm[mm.TAG_OPEN_START]="TAG_OPEN_START",mm[mm.TAG_OPEN_END]="TAG_OPEN_END",mm[mm.TAG_OPEN_END_VOID]="TAG_OPEN_END_VOID",mm[mm.TAG_CLOSE]="TAG_CLOSE",mm[mm.TEXT]="TEXT",mm[mm.ESCAPABLE_RAW_TEXT]="ESCAPABLE_RAW_TEXT",mm[mm.RAW_TEXT]="RAW_TEXT",mm[mm.COMMENT_START]="COMMENT_START",mm[mm.COMMENT_END]="COMMENT_END",mm[mm.CDATA_START]="CDATA_START",mm[mm.CDATA_END]="CDATA_END",mm[mm.ATTR_NAME]="ATTR_NAME",mm[mm.ATTR_VALUE]="ATTR_VALUE",mm[mm.DOC_TYPE]="DOC_TYPE",mm[mm.EXPANSION_FORM_START]="EXPANSION_FORM_START",mm[mm.EXPANSION_CASE_VALUE]="EXPANSION_CASE_VALUE",mm[mm.EXPANSION_CASE_EXP_START]="EXPANSION_CASE_EXP_START",mm[mm.EXPANSION_CASE_EXP_END]="EXPANSION_CASE_EXP_END",mm[mm.EXPANSION_FORM_END]="EXPANSION_FORM_END",mm[mm.EOF]="EOF";var gm=function(){function t(t,e,n){this.type=t,this.parts=e,this.sourceSpan=n}return t}(),_m=function(t){function e(e,n,r){var i=t.call(this,r,e)||this;return i.tokenType=n,i}return xd(e,t),e}(pm),bm=function(){function t(t,e){this.tokens=t,this.errors=e}return t}(),wm=/\r\n?/g,Em=function(){function t(t){this.error=t}return t}(),Cm=function(){function t(t,e,n,r){void 0===r&&(r=Gy),this._file=t,this._getTagDefinition=e,this._tokenizeIcu=n,this._interpolationConfig=r,this._peek=-1,this._nextPeek=-1,this._index=-1,this._line=0,this._column=-1,this._expansionCaseStack=[],this._inInterpolation=!1,this.tokens=[],this.errors=[],this._input=t.content,this._length=t.content.length,this._advance()}return t.prototype._processCarriageReturns=function(t){return t.replace(wm,"\n")},t.prototype.tokenize=function(){for(;this._peek!==Wv;){var t=this._getLocation();try{this._attemptCharCode(vy)?this._attemptCharCode($v)?this._attemptCharCode(Ty)?this._consumeCdata(t):this._attemptCharCode(py)?this._consumeComment(t):this._consumeDocType(t):this._attemptCharCode(hy)?this._consumeTagClose(t):this._consumeTagOpen(t):this._tokenizeIcu&&this._tokenizeExpansionForm()||this._consumeText()}catch(t){if(!(t instanceof Em))throw t;this.errors.push(t.error)}}return this._beginToken(mm.EOF),this._endToken([]),new bm(Ji(this.tokens),this.errors)},t.prototype._tokenizeExpansionForm=function(){if(Xi(this._input,this._index,this._interpolationConfig))return this._consumeExpansionFormStart(),!0;if(Zi(this._peek)&&this._isInExpansionForm())return this._consumeExpansionCaseStart(),!0;if(this._peek===zy){if(this._isInExpansionCase())return this._consumeExpansionCaseEnd(),!0;if(this._isInExpansionForm())return this._consumeExpansionFormEnd(),!0}return!1},t.prototype._getLocation=function(){return new sm(this._file,this._index,this._line,this._column)},t.prototype._getSpan=function(t,e){return void 0===t&&(t=this._getLocation()),void 0===e&&(e=this._getLocation()),new um(t,e)},t.prototype._beginToken=function(t,e){void 0===e&&(e=this._getLocation()),this._currentTokenStart=e,this._currentTokenType=t},t.prototype._endToken=function(t,e){void 0===e&&(e=this._getLocation());var n=new gm(this._currentTokenType,t,new um(this._currentTokenStart,e));return this.tokens.push(n),this._currentTokenStart=null,this._currentTokenType=null,n},t.prototype._createError=function(t,e){this._isInExpansionForm()&&(t+=' (Do you have an unescaped "{" in your template? Use "{{ \'{\' }}") to escape it.)');var n=new _m(t,this._currentTokenType,e);return this._currentTokenStart=null,this._currentTokenType=null,new Em(n)},t.prototype._advance=function(){if(this._index>=this._length)throw this._createError(Bi(Wv),this._getSpan());this._peek===Qv?(this._line++,this._column=0):this._peek!==Qv&&this._peek!==Zv&&this._column++,this._index++,this._peek=this._index>=this._length?Wv:this._input.charCodeAt(this._index),this._nextPeek=this._index+1>=this._length?Wv:this._input.charCodeAt(this._index+1)},t.prototype._attemptCharCode=function(t){return this._peek===t?(this._advance(),!0):!1},t.prototype._attemptCharCodeCaseInsensitive=function(t){return Yi(this._peek,t)?(this._advance(),!0):!1},t.prototype._requireCharCode=function(t){var e=this._getLocation();if(!this._attemptCharCode(t))throw this._createError(Bi(this._peek),this._getSpan(e,e))},t.prototype._attemptStr=function(t){var e=t.length;if(this._index+e>this._length)return!1;for(var n=this._savePosition(),r=0;e>r;r++)if(!this._attemptCharCode(t.charCodeAt(r)))return this._restorePosition(n),!1;return!0},t.prototype._attemptStrCaseInsensitive=function(t){for(var e=0;e<t.length;e++)if(!this._attemptCharCodeCaseInsensitive(t.charCodeAt(e)))return!1;return!0},t.prototype._requireStr=function(t){var e=this._getLocation();if(!this._attemptStr(t))throw this._createError(Bi(this._peek),this._getSpan(e))},t.prototype._attemptCharCodeUntilFn=function(t){for(;!t(this._peek);)this._advance()},t.prototype._requireCharCodeUntilFn=function(t,e){var n=this._getLocation();if(this._attemptCharCodeUntilFn(t),this._index-n.offset<e)throw this._createError(Bi(this._peek),this._getSpan(n,n))},t.prototype._attemptUntilChar=function(t){for(;this._peek!==t;)this._advance()},t.prototype._readChar=function(t){if(t&&this._peek===ry)return this._decodeEntity();var e=this._index;return this._advance(),this._input[e]},t.prototype._decodeEntity=function(){var t=this._getLocation();if(this._advance(),!this._attemptCharCode(ty)){var e=this._savePosition();if(this._attemptCharCodeUntilFn(Gi),this._peek!=dy)return this._restorePosition(e),"&";this._advance();var n=this._input.substring(t.offset+1,this._index-1),r=zd[n];if(!r)throw this._createError(zi(n),this._getSpan(t));return r}var i=this._attemptCharCode(jy)||this._attemptCharCode(xy),o=this._getLocation().offset;if(this._attemptCharCodeUntilFn(Qi),this._peek!=dy)throw this._createError(Bi(this._peek),this._getSpan());this._advance();var s=this._input.substring(o,this._index-1);try{var a=parseInt(s,i?16:10);return String.fromCharCode(a)}catch(e){var u=this._input.substring(t.offset+1,this._index-1);throw this._createError(zi(u),this._getSpan(t))}},t.prototype._consumeRawText=function(t,e,n){var r,i=this._getLocation();this._beginToken(t?mm.ESCAPABLE_RAW_TEXT:mm.RAW_TEXT,i);for(var o=[];;){if(r=this._getLocation(),this._attemptCharCode(e)&&n())break;for(this._index>r.offset&&o.push(this._input.substring(r.offset,this._index));this._peek!==e;)o.push(this._readChar(t))}return this._endToken([this._processCarriageReturns(o.join(""))],r)},t.prototype._consumeComment=function(t){var e=this;this._beginToken(mm.COMMENT_START,t),this._requireCharCode(py),this._endToken([]);var n=this._consumeRawText(!1,py,function(){return e._attemptStr("->")});this._beginToken(mm.COMMENT_END,n.sourceSpan.end),this._endToken([])},t.prototype._consumeCdata=function(t){var e=this;this._beginToken(mm.CDATA_START,t),this._requireStr("CDATA["),this._endToken([]);var n=this._consumeRawText(!1,Py,function(){return e._attemptStr("]>")});this._beginToken(mm.CDATA_END,n.sourceSpan.end),this._endToken([])},t.prototype._consumeDocType=function(t){this._beginToken(mm.DOC_TYPE,t),this._attemptUntilChar(my),this._advance(),this._endToken([this._input.substring(t.offset+2,this._index-1)])},t.prototype._consumePrefixAndName=function(){for(var t=this._index,e=null;this._peek!==fy&&!Ki(this._peek);)this._advance();var n;this._peek===fy?(this._advance(),e=this._input.substring(t,this._index-1),n=this._index):n=t,this._requireCharCodeUntilFn(Wi,this._index===n?1:0);var r=this._input.substring(n,this._index);return[e,r]},t.prototype._consumeTagOpen=function(t){var e,n,r=this._savePosition();try{if(!gi(this._peek))throw this._createError(Bi(this._peek),this._getSpan());var i=this._index;for(this._consumeTagOpenStart(t),e=this._input.substring(i,this._index),n=e.toLowerCase(),this._attemptCharCodeUntilFn(qi);this._peek!==hy&&this._peek!==my;)this._consumeAttributeName(),this._attemptCharCodeUntilFn(qi),this._attemptCharCode(yy)&&(this._attemptCharCodeUntilFn(qi),this._consumeAttributeValue()),this._attemptCharCodeUntilFn(qi);this._consumeTagOpenEnd()}catch(e){if(e instanceof Em)return this._restorePosition(r),this._beginToken(mm.TEXT,t),void this._endToken(["<"]);throw e}var o=this._getTagDefinition(e).contentType;o===Bd.RAW_TEXT?this._consumeRawTextWithTagClose(n,!1):o===Bd.ESCAPABLE_RAW_TEXT&&this._consumeRawTextWithTagClose(n,!0)},t.prototype._consumeRawTextWithTagClose=function(t,e){var n=this,r=this._consumeRawText(e,vy,function(){return n._attemptCharCode(hy)?(n._attemptCharCodeUntilFn(qi),n._attemptStrCaseInsensitive(t)?(n._attemptCharCodeUntilFn(qi),n._attemptCharCode(my)):!1):!1});this._beginToken(mm.TAG_CLOSE,r.sourceSpan.end),this._endToken([null,t])},t.prototype._consumeTagOpenStart=function(t){this._beginToken(mm.TAG_OPEN_START,t);var e=this._consumePrefixAndName();this._endToken(e)},t.prototype._consumeAttributeName=function(){this._beginToken(mm.ATTR_NAME);var t=this._consumePrefixAndName();this._endToken(t)},t.prototype._consumeAttributeValue=function(){this._beginToken(mm.ATTR_VALUE);var t;if(this._peek===iy||this._peek===Jv){var e=this._peek;this._advance();for(var n=[];this._peek!==e;)n.push(this._readChar(!0));t=n.join(""),this._advance()}else{var r=this._index;this._requireCharCodeUntilFn(Wi,1),t=this._input.substring(r,this._index)}this._endToken([this._processCarriageReturns(t)])},t.prototype._consumeTagOpenEnd=function(){var t=this._attemptCharCode(hy)?mm.TAG_OPEN_END_VOID:mm.TAG_OPEN_END;this._beginToken(t),this._requireCharCode(my),this._endToken([])},t.prototype._consumeTagClose=function(t){this._beginToken(mm.TAG_CLOSE,t),this._attemptCharCodeUntilFn(qi);var e=this._consumePrefixAndName();this._attemptCharCodeUntilFn(qi),this._requireCharCode(my),this._endToken(e)},t.prototype._consumeExpansionFormStart=function(){this._beginToken(mm.EXPANSION_FORM_START,this._getLocation()),this._requireCharCode(Uy),this._endToken([]),this._expansionCaseStack.push(mm.EXPANSION_FORM_START),this._beginToken(mm.RAW_TEXT,this._getLocation());var t=this._readUntil(cy);this._endToken([t],this._getLocation()),this._requireCharCode(cy),this._attemptCharCodeUntilFn(qi),this._beginToken(mm.RAW_TEXT,this._getLocation());var e=this._readUntil(cy);this._endToken([e],this._getLocation()),this._requireCharCode(cy),this._attemptCharCodeUntilFn(qi)},t.prototype._consumeExpansionCaseStart=function(){this._beginToken(mm.EXPANSION_CASE_VALUE,this._getLocation());var t=this._readUntil(Uy).trim();this._endToken([t],this._getLocation()),this._attemptCharCodeUntilFn(qi),this._beginToken(mm.EXPANSION_CASE_EXP_START,this._getLocation()),this._requireCharCode(Uy),this._endToken([],this._getLocation()),this._attemptCharCodeUntilFn(qi),this._expansionCaseStack.push(mm.EXPANSION_CASE_EXP_START)},t.prototype._consumeExpansionCaseEnd=function(){this._beginToken(mm.EXPANSION_CASE_EXP_END,this._getLocation()),this._requireCharCode(zy),this._endToken([],this._getLocation()),this._attemptCharCodeUntilFn(qi),this._expansionCaseStack.pop()},t.prototype._consumeExpansionFormEnd=function(){this._beginToken(mm.EXPANSION_FORM_END,this._getLocation()),this._requireCharCode(zy),this._endToken([]),this._expansionCaseStack.pop()},t.prototype._consumeText=function(){var t=this._getLocation();this._beginToken(mm.TEXT,t);var e=[];do this._interpolationConfig&&this._attemptStr(this._interpolationConfig.start)?(e.push(this._interpolationConfig.start),this._inInterpolation=!0):this._interpolationConfig&&this._inInterpolation&&this._attemptStr(this._interpolationConfig.end)?(e.push(this._interpolationConfig.end),this._inInterpolation=!1):e.push(this._readChar(!0));while(!this._isTextEnd());this._endToken([this._processCarriageReturns(e.join(""))])},t.prototype._isTextEnd=function(){if(this._peek===vy||this._peek===Wv)return!0;if(this._tokenizeIcu&&!this._inInterpolation){if(Xi(this._input,this._index,this._interpolationConfig))return!0;if(this._peek===zy&&this._isInExpansionCase())return!0}return!1},t.prototype._savePosition=function(){return[this._peek,this._index,this._column,this._line,this.tokens.length]},t.prototype._readUntil=function(t){var e=this._index;return this._attemptUntilChar(t),this._input.substring(e,this._index)},t.prototype._restorePosition=function(t){this._peek=t[0],this._index=t[1],this._column=t[2],this._line=t[3];var e=t[4];e<this.tokens.length&&(this.tokens=this.tokens.slice(0,e))},t.prototype._isInExpansionCase=function(){return this._expansionCaseStack.length>0&&this._expansionCaseStack[this._expansionCaseStack.length-1]===mm.EXPANSION_CASE_EXP_START},t.prototype._isInExpansionForm=function(){return this._expansionCaseStack.length>0&&this._expansionCaseStack[this._expansionCaseStack.length-1]===mm.EXPANSION_FORM_START},t}(),xm=function(t){function e(e,n,r){var i=t.call(this,n,r)||this;return i.elementName=e,i}return xd(e,t),e.create=function(t,n,r){return new e(t,n,r)},e}(pm),Sm=function(){function t(t,e){this.rootNodes=t,this.errors=e}return t}(),Tm=function(){function t(t){this.getTagDefinition=t}return t.prototype.parse=function(t,e,n,r){void 0===n&&(n=!1),void 0===r&&(r=Gy);var i=Ui(t,e,this.getTagDefinition,n,r),o=new Am(i.tokens,this.getTagDefinition).build();return new Sm(o.rootNodes,i.errors.concat(o.errors))},t}(),Am=function(){function t(t,e){this.tokens=t,this.getTagDefinition=e,this._index=-1,this._rootNodes=[],this._errors=[],this._elementStack=[],this._advance()}return t.prototype.build=function(){for(;this._peek.type!==mm.EOF;)this._peek.type===mm.TAG_OPEN_START?this._consumeStartTag(this._advance()):this._peek.type===mm.TAG_CLOSE?this._consumeEndTag(this._advance()):this._peek.type===mm.CDATA_START?(this._closeVoidElement(),this._consumeCdata(this._advance())):this._peek.type===mm.COMMENT_START?(this._closeVoidElement(),this._consumeComment(this._advance())):this._peek.type===mm.TEXT||this._peek.type===mm.RAW_TEXT||this._peek.type===mm.ESCAPABLE_RAW_TEXT?(this._closeVoidElement(),this._consumeText(this._advance())):this._peek.type===mm.EXPANSION_FORM_START?this._consumeExpansion(this._advance()):this._advance();return new Sm(this._rootNodes,this._errors)},t.prototype._advance=function(){var t=this._peek;return this._index<this.tokens.length-1&&this._index++,this._peek=this.tokens[this._index],t},t.prototype._advanceIf=function(t){return this._peek.type===t?this._advance():null},t.prototype._consumeCdata=function(){this._consumeText(this._advance()),this._advanceIf(mm.CDATA_END)},t.prototype._consumeComment=function(t){var e=this._advanceIf(mm.RAW_TEXT);this._advanceIf(mm.COMMENT_END);var n=null!=e?e.parts[0].trim():null;this._addToParent(new ym(n,t.sourceSpan))},t.prototype._consumeExpansion=function(t){for(var e=this._advance(),n=this._advance(),r=[];this._peek.type===mm.EXPANSION_CASE_VALUE;){var i=this._parseExpansionCase();if(!i)return;r.push(i)}if(this._peek.type!==mm.EXPANSION_FORM_END)return void this._errors.push(xm.create(null,this._peek.sourceSpan,"Invalid ICU message. Missing '}'."));var o=new um(t.sourceSpan.start,this._peek.sourceSpan.end);this._addToParent(new hm(e.parts[0],n.parts[0],r,o,e.sourceSpan)),this._advance()},t.prototype._parseExpansionCase=function(){var e=this._advance();if(this._peek.type!==mm.EXPANSION_CASE_EXP_START)return this._errors.push(xm.create(null,this._peek.sourceSpan,"Invalid ICU message. Missing '{'.")),null;var n=this._advance(),r=this._collectExpansionExpTokens(n);if(!r)return null;var i=this._advance();r.push(new gm(mm.EOF,[],i.sourceSpan));var o=new t(r,this.getTagDefinition).build();if(o.errors.length>0)return this._errors=this._errors.concat(o.errors),null;var s=new um(e.sourceSpan.start,i.sourceSpan.end),a=new um(n.sourceSpan.start,i.sourceSpan.end);return new fm(e.parts[0],o.rootNodes,s,e.sourceSpan,a)},t.prototype._collectExpansionExpTokens=function(t){for(var e=[],n=[mm.EXPANSION_CASE_EXP_START];;){if((this._peek.type===mm.EXPANSION_FORM_START||this._peek.type===mm.EXPANSION_CASE_EXP_START)&&n.push(this._peek.type),this._peek.type===mm.EXPANSION_CASE_EXP_END){if(!to(n,mm.EXPANSION_CASE_EXP_START))return this._errors.push(xm.create(null,t.sourceSpan,"Invalid ICU message. Missing '}'.")),null;if(n.pop(),0==n.length)return e}if(this._peek.type===mm.EXPANSION_FORM_END){if(!to(n,mm.EXPANSION_FORM_START))return this._errors.push(xm.create(null,t.sourceSpan,"Invalid ICU message. Missing '}'.")),null;n.pop()}if(this._peek.type===mm.EOF)return this._errors.push(xm.create(null,t.sourceSpan,"Invalid ICU message. Missing '}'.")),null;e.push(this._advance())}},t.prototype._consumeText=function(t){var e=t.parts[0];if(e.length>0&&"\n"==e[0]){var n=this._getParentElement();null!=n&&0==n.children.length&&this.getTagDefinition(n.name).ignoreFirstLf&&(e=e.substring(1))}e.length>0&&this._addToParent(new lm(e,t.sourceSpan))},t.prototype._closeVoidElement=function(){if(this._elementStack.length>0){var t=this._elementStack[this._elementStack.length-1];this.getTagDefinition(t.name).isVoid&&this._elementStack.pop()}},t.prototype._consumeStartTag=function(t){for(var e=t.parts[0],n=t.parts[1],r=[];this._peek.type===mm.ATTR_NAME;)r.push(this._consumeAttr(this._advance()));var i=this._getElementFullName(e,n,this._getParentElement()),o=!1;if(this._peek.type===mm.TAG_OPEN_END_VOID){this._advance(),o=!0;var s=this.getTagDefinition(i);s.canSelfClose||null!==Ur(i)||s.isVoid||this._errors.push(xm.create(i,t.sourceSpan,'Only void and foreign elements can be self closed "'+t.parts[1]+'"'))}else this._peek.type===mm.TAG_OPEN_END&&(this._advance(),o=!1);var a=this._peek.sourceSpan.start,u=new um(t.sourceSpan.start,a),c=new vm(i,r,[],u,u,null);this._pushElement(c),o&&(this._popElement(i),c.endSourceSpan=u)},t.prototype._pushElement=function(t){if(this._elementStack.length>0){var e=this._elementStack[this._elementStack.length-1];this.getTagDefinition(e.name).isClosedByChild(t.name)&&this._elementStack.pop()}var n=this.getTagDefinition(t.name),r=this._getParentElementSkippingContainers(),i=r.parent,o=r.container;if(i&&n.requireExtraParent(i.name)){var s=new vm(n.parentToAdd,[],[],t.sourceSpan,t.startSourceSpan,t.endSourceSpan);this._insertBeforeContainer(i,o,s)}this._addToParent(t),this._elementStack.push(t)},t.prototype._consumeEndTag=function(t){var e=this._getElementFullName(t.parts[0],t.parts[1],this._getParentElement());if(this._getParentElement()&&(this._getParentElement().endSourceSpan=t.sourceSpan),this.getTagDefinition(e).isVoid)this._errors.push(xm.create(e,t.sourceSpan,'Void elements do not have end tags "'+t.parts[1]+'"'));else if(!this._popElement(e)){var n='Unexpected closing tag "'+e+'". It may happen when the tag has already been closed by another tag. For more info see https://www.w3.org/TR/html5/syntax.html#closing-elements-that-have-implied-end-tags';this._errors.push(xm.create(e,t.sourceSpan,n))}},t.prototype._popElement=function(t){for(var e=this._elementStack.length-1;e>=0;e--){var n=this._elementStack[e];if(n.name==t)return this._elementStack.splice(e,this._elementStack.length-e),!0;if(!this.getTagDefinition(n.name).closedByParent)return!1}return!1},t.prototype._consumeAttr=function(t){var e,n=Br(t.parts[0],t.parts[1]),r=t.sourceSpan.end,i="";if(this._peek.type===mm.ATTR_VALUE){var o=this._advance();i=o.parts[0],r=o.sourceSpan.end,e=o.sourceSpan}return new dm(n,i,new um(t.sourceSpan.start,r),e)},t.prototype._getParentElement=function(){return this._elementStack.length>0?this._elementStack[this._elementStack.length-1]:null},t.prototype._getParentElementSkippingContainers=function(){for(var t=null,e=this._elementStack.length-1;e>=0;e--){if("ng-container"!==this._elementStack[e].name)return{parent:this._elementStack[e],container:t};t=this._elementStack[e]}return{parent:this._elementStack[this._elementStack.length-1],container:t}},t.prototype._addToParent=function(t){var e=this._getParentElement();null!=e?e.children.push(t):this._rootNodes.push(t)},t.prototype._insertBeforeContainer=function(t,e,n){if(e){if(t){var r=t.children.indexOf(e);t.children[r]=n}else this._rootNodes.push(n);n.children.push(e),this._elementStack.splice(this._elementStack.indexOf(e),0,n)}else this._addToParent(n),this._elementStack.push(n)},t.prototype._getElementFullName=function(t,e,n){return null==t&&(t=this.getTagDefinition(e).implicitNamespacePrefix,null==t&&null!=n&&(t=Ur(n.name))),Br(t,e)},t}(),Pm=function(){function t(t,e,n,r,i,o){this.nodes=t,this.placeholders=e,this.placeholderToMessage=n,this.meaning=r,this.description=i,this.id=o}return t}(),km=function(){function t(t,e){this.value=t,this.sourceSpan=e}return t.prototype.visit=function(t,e){return t.visitText(this,e)},t}(),Mm=function(){function t(t,e){this.children=t,this.sourceSpan=e}return t.prototype.visit=function(t,e){return t.visitContainer(this,e)},t}(),Om=function(){function t(t,e,n,r){this.expression=t,this.type=e,this.cases=n,this.sourceSpan=r}return t.prototype.visit=function(t,e){return t.visitIcu(this,e)},t}(),Nm=function(){function t(t,e,n,r,i,o,s){this.tag=t,this.attrs=e,this.startName=n,this.closeName=r,this.children=i,this.isVoid=o,this.sourceSpan=s}return t.prototype.visit=function(t,e){return t.visitTagPlaceholder(this,e)},t}(),Im=function(){function t(t,e,n){this.value=t,this.name=e,this.sourceSpan=n}return t.prototype.visit=function(t,e){return t.visitPlaceholder(this,e)},t}(),Rm=function(){function t(t,e,n){this.value=t,this.name=e,this.sourceSpan=n}return t.prototype.visit=function(t,e){return t.visitIcuPlaceholder(this,e)},t}(),Dm=function(){function t(){}return t.prototype.visitText=function(t){return new km(t.value,t.sourceSpan)},t.prototype.visitContainer=function(t,e){var n=this,r=t.children.map(function(t){return t.visit(n,e)});return new Mm(r,t.sourceSpan)},t.prototype.visitIcu=function(t,e){var n=this,r={};Object.keys(t.cases).forEach(function(i){return r[i]=t.cases[i].visit(n,e)});var i=new Om(t.expression,t.type,r,t.sourceSpan);return i.expressionPlaceholder=t.expressionPlaceholder,i},t.prototype.visitTagPlaceholder=function(t,e){var n=this,r=t.children.map(function(t){return t.visit(n,e)});return new Nm(t.tag,t.attrs,t.startName,t.closeName,r,t.isVoid,t.sourceSpan)},t.prototype.visitPlaceholder=function(t){return new Im(t.value,t.name,t.sourceSpan)},t.prototype.visitIcuPlaceholder=function(t){return new Rm(t.value,t.name,t.sourceSpan)},t}(),Lm=function(){function t(){}return t.prototype.visitText=function(){},t.prototype.visitContainer=function(t){var e=this;t.children.forEach(function(t){return t.visit(e)})},t.prototype.visitIcu=function(t){var e=this;Object.keys(t.cases).forEach(function(n){t.cases[n].visit(e)})},t.prototype.visitTagPlaceholder=function(t){var e=this;t.children.forEach(function(t){return t.visit(e)})},t.prototype.visitPlaceholder=function(){},t.prototype.visitIcuPlaceholder=function(){},t}(),Fm={A:"LINK",B:"BOLD_TEXT",BR:"LINE_BREAK",EM:"EMPHASISED_TEXT",H1:"HEADING_LEVEL1",H2:"HEADING_LEVEL2",H3:"HEADING_LEVEL3",H4:"HEADING_LEVEL4",H5:"HEADING_LEVEL5",H6:"HEADING_LEVEL6",HR:"HORIZONTAL_RULE",I:"ITALIC_TEXT",LI:"LIST_ITEM",LINK:"MEDIA_LINK",OL:"ORDERED_LIST",P:"PARAGRAPH",Q:"QUOTATION",S:"STRIKETHROUGH_TEXT",SMALL:"SMALL_TEXT",SUB:"SUBSTRIPT",SUP:"SUPERSCRIPT",TBODY:"TABLE_BODY",TD:"TABLE_CELL",TFOOT:"TABLE_FOOTER",TH:"TABLE_HEADER_CELL",THEAD:"TABLE_HEADER",TR:"TABLE_ROW",TT:"MONOSPACED_TEXT",U:"UNDERLINED_TEXT",UL:"UNORDERED_LIST"},Vm=function(){function t(){this._placeHolderNameCounts={},this._signatureToName={}}return t.prototype.getStartTagPlaceholderName=function(t,e,n){
var r=this._hashTag(t,e,n);if(this._signatureToName[r])return this._signatureToName[r];var i=t.toUpperCase(),o=Fm[i]||"TAG_"+i,s=this._generateUniqueName(n?o:"START_"+o);return this._signatureToName[r]=s,s},t.prototype.getCloseTagPlaceholderName=function(t){var e=this._hashClosingTag(t);if(this._signatureToName[e])return this._signatureToName[e];var n=t.toUpperCase(),r=Fm[n]||"TAG_"+n,i=this._generateUniqueName("CLOSE_"+r);return this._signatureToName[e]=i,i},t.prototype.getPlaceholderName=function(t,e){var n=t.toUpperCase(),r="PH: "+n+"="+e;if(this._signatureToName[r])return this._signatureToName[r];var i=this._generateUniqueName(n);return this._signatureToName[r]=i,i},t.prototype.getUniquePlaceholder=function(t){return this._generateUniqueName(t.toUpperCase())},t.prototype._hashTag=function(t,e,n){var r="<"+t,i=Object.keys(e).sort().map(function(t){return" "+t+"="+e[t]}).join(""),o=n?"/>":"></"+t+">";return r+i+o},t.prototype._hashClosingTag=function(t){return this._hashTag("/"+t,{},!1)},t.prototype._generateUniqueName=function(t){var e=this._placeHolderNameCounts.hasOwnProperty(t);if(!e)return this._placeHolderNameCounts[t]=1,t;var n=this._placeHolderNameCounts[t];return this._placeHolderNameCounts[t]=n+1,t+"_"+n},t}(),jm=new rm(new Yy),Hm=function(){function t(t,e){this._expressionParser=t,this._interpolationConfig=e}return t.prototype.toI18nMessage=function(t,e,n,r){this._isIcu=1==t.length&&t[0]instanceof hm,this._icuDepth=0,this._placeholderRegistry=new Vm,this._placeholderToContent={},this._placeholderToMessage={};var i=Hi(this,t,{});return new Pm(i,this._placeholderToContent,this._placeholderToMessage,e,n,r)},t.prototype.visitElement=function(t){var e=Hi(this,t.children),n={};t.attrs.forEach(function(t){n[t.name]=t.value});var r=zr(t.name).isVoid,i=this._placeholderRegistry.getStartTagPlaceholderName(t.name,n,r);this._placeholderToContent[i]=t.sourceSpan.toString();var o="";return r||(o=this._placeholderRegistry.getCloseTagPlaceholderName(t.name),this._placeholderToContent[o]="</"+t.name+">"),new Nm(t.name,n,i,o,e,r,t.sourceSpan)},t.prototype.visitAttribute=function(t){return this._visitTextWithInterpolation(t.value,t.sourceSpan)},t.prototype.visitText=function(t){return this._visitTextWithInterpolation(t.value,t.sourceSpan)},t.prototype.visitComment=function(){return null},t.prototype.visitExpansion=function(e){var n=this;this._icuDepth++;var r={},i=new Om(e.switchValue,e.type,r,e.sourceSpan);if(e.cases.forEach(function(t){r[t.value]=new Mm(t.expression.map(function(t){return t.visit(n,{})}),t.expSourceSpan)}),this._icuDepth--,this._isIcu||this._icuDepth>0){var o=this._placeholderRegistry.getUniquePlaceholder("VAR_"+e.type);return i.expressionPlaceholder=o,this._placeholderToContent[o]=e.switchValue,i}var s=this._placeholderRegistry.getPlaceholderName("ICU",e.sourceSpan.toString()),a=new t(this._expressionParser,this._interpolationConfig);return this._placeholderToMessage[s]=a.toI18nMessage([e],"","",""),new Rm(i,s,e.sourceSpan)},t.prototype.visitExpansionCase=function(){throw new Error("Unreachable code")},t.prototype._visitTextWithInterpolation=function(t,e){var n=this._expressionParser.splitInterpolation(t,e.start.toString(),this._interpolationConfig);if(!n)return new km(t,e);for(var r=[],i=new Mm(r,e),o=this._interpolationConfig,s=o.start,a=o.end,u=0;u<n.strings.length-1;u++){var c=n.expressions[u],p=no(c)||"INTERPOLATION",l=this._placeholderRegistry.getPlaceholderName(p,c);n.strings[u].length&&r.push(new km(n.strings[u],e)),r.push(new Im(c,l,e)),this._placeholderToContent[l]=s+c+a}var h=n.strings.length-1;return n.strings[h].length&&r.push(new km(n.strings[h],e)),i},t}(),Um=/\/\/[\s\S]*i18n[\s\S]*\([\s\S]*ph[\s\S]*=[\s\S]*("|')([\s\S]*?)\1[\s\S]*\)/g,Bm=function(t){function e(e,n){return t.call(this,e,n)||this}return xd(e,t),e}(pm),zm="i18n",qm="i18n-",Wm=/^i18n:?/,Km="|",Qm="@@",Gm=function(){function t(t,e){this.messages=t,this.errors=e}return t}(),Xm={};Xm.Extract=0,Xm.Merge=1,Xm[Xm.Extract]="Extract",Xm[Xm.Merge]="Merge";var Zm=function(){function t(t,e){this._implicitTags=t,this._implicitAttrs=e}return t.prototype.extract=function(t,e){var n=this;return this._init(Xm.Extract,e),t.forEach(function(t){return t.visit(n,null)}),this._inI18nBlock&&this._reportError(t[t.length-1],"Unclosed block"),new Gm(this._messages,this._errors)},t.prototype.merge=function(t,e,n){this._init(Xm.Merge,n),this._translations=e;var r=new vm("wrapper",[],t,null,null,null),i=r.visit(this,null);return this._inI18nBlock&&this._reportError(t[t.length-1],"Unclosed block"),new Sm(i.children,this._errors)},t.prototype.visitExpansionCase=function(t,e){var n=Hi(this,t.expression,e);return this._mode===Xm.Merge?new fm(t.value,n,t.sourceSpan,t.valueSourceSpan,t.expSourceSpan):void 0},t.prototype.visitExpansion=function(t,e){this._mayBeAddBlockChildren(t);var n=this._inIcu;this._inIcu||(this._isInTranslatableSection&&this._addMessage([t]),this._inIcu=!0);var r=Hi(this,t.cases,e);return this._mode===Xm.Merge&&(t=new hm(t.switchValue,t.type,r,t.sourceSpan,t.switchValueSourceSpan)),this._inIcu=n,t},t.prototype.visitComment=function(t){var e=io(t);if(e&&this._isInTranslatableSection)return void this._reportError(t,"Could not start a block inside a translatable section");var n=oo(t);if(n&&!this._inI18nBlock)return void this._reportError(t,"Trying to close an unopened block");if(!this._inI18nNode&&!this._inIcu)if(this._inI18nBlock){if(n){if(this._depth==this._blockStartDepth){this._closeTranslatableSection(t,this._blockChildren),this._inI18nBlock=!1;var r=this._addMessage(this._blockChildren,this._blockMeaningAndDesc),i=this._translateMessage(t,r);return Hi(this,i)}return void this._reportError(t,"I18N blocks should not cross element boundaries")}}else e&&(this._inI18nBlock=!0,this._blockStartDepth=this._depth,this._blockChildren=[],this._blockMeaningAndDesc=t.value.replace(Wm,"").trim(),this._openTranslatableSection(t))},t.prototype.visitText=function(t){return this._isInTranslatableSection&&this._mayBeAddBlockChildren(t),t},t.prototype.visitElement=function(t,e){var n=this;this._mayBeAddBlockChildren(t),this._depth++;var r,i=this._inI18nNode,o=this._inImplicitNode,s=[],a=so(t),u=a?a.value:"",c=this._implicitTags.some(function(e){return t.name===e})&&!this._inIcu&&!this._isInTranslatableSection,p=!o&&c;if(this._inImplicitNode=o||c,this._isInTranslatableSection||this._inIcu)(a||p)&&this._reportError(t,"Could not mark an element as translatable inside a translatable section"),this._mode==Xm.Extract&&Hi(this,t.children);else{if(a||p){this._inI18nNode=!0;var l=this._addMessage(t.children,u);r=this._translateMessage(t,l)}if(this._mode==Xm.Extract){var h=a||p;h&&this._openTranslatableSection(t),Hi(this,t.children),h&&this._closeTranslatableSection(t,t.children)}}if(this._mode===Xm.Merge){var f=r||t.children;f.forEach(function(t){var r=t.visit(n,e);r&&!n._isInTranslatableSection&&(s=s.concat(r))})}if(this._visitAttributesOf(t),this._depth--,this._inI18nNode=i,this._inImplicitNode=o,this._mode===Xm.Merge){var d=this._translateAttributes(t);return new vm(t.name,d,s,t.sourceSpan,t.startSourceSpan,t.endSourceSpan)}},t.prototype.visitAttribute=function(){throw new Error("unreachable code")},t.prototype._init=function(t,e){this._mode=t,this._inI18nBlock=!1,this._inI18nNode=!1,this._depth=0,this._inIcu=!1,this._msgCountAtSectionStart=void 0,this._errors=[],this._messages=[],this._inImplicitNode=!1,this._createI18nMessage=eo(e)},t.prototype._visitAttributesOf=function(t){var e=this,n={},r=this._implicitAttrs[t.name]||[];t.attrs.filter(function(t){return t.name.startsWith(qm)}).forEach(function(t){return n[t.name.slice(qm.length)]=t.value}),t.attrs.forEach(function(t){t.name in n?e._addMessage([t],n[t.name]):r.some(function(e){return t.name===e})&&e._addMessage([t])})},t.prototype._addMessage=function(t,e){if(!(0==t.length||1==t.length&&t[0]instanceof dm&&!t[0].value)){var n=ao(e),r=n.meaning,i=n.description,o=n.id,s=this._createI18nMessage(t,r,i,o);return this._messages.push(s),s}},t.prototype._translateMessage=function(t,e){if(e&&this._mode===Xm.Merge){var n=this._translations.get(e);if(n)return n;this._reportError(t,'Translation unavailable for message id="'+this._translations.digest(e)+'"')}return[]},t.prototype._translateAttributes=function(t){var e=this,n=t.attrs,r={};n.forEach(function(t){t.name.startsWith(qm)&&(r[t.name.slice(qm.length)]=ao(t.value))});var i=[];return n.forEach(function(n){if(n.name!==zm&&!n.name.startsWith(qm))if(n.value&&""!=n.value&&r.hasOwnProperty(n.name)){var o=r[n.name],s=o.meaning,a=o.description,u=o.id,c=e._createI18nMessage([n],s,a,u),p=e._translations.get(c);if(p)if(0==p.length)i.push(new dm(n.name,"",n.sourceSpan));else if(p[0]instanceof lm){var l=p[0].value;i.push(new dm(n.name,l,n.sourceSpan))}else e._reportError(t,'Unexpected translation for attribute "'+n.name+'" (id="'+(u||e._translations.digest(c))+'")');else e._reportError(t,'Translation unavailable for attribute "'+n.name+'" (id="'+(u||e._translations.digest(c))+'")')}else i.push(n)}),i},t.prototype._mayBeAddBlockChildren=function(t){this._inI18nBlock&&!this._inIcu&&this._depth==this._blockStartDepth&&this._blockChildren.push(t)},t.prototype._openTranslatableSection=function(t){this._isInTranslatableSection?this._reportError(t,"Unexpected section start"):this._msgCountAtSectionStart=this._messages.length},Object.defineProperty(t.prototype,"_isInTranslatableSection",{get:function(){return void 0!==this._msgCountAtSectionStart},enumerable:!0,configurable:!0}),t.prototype._closeTranslatableSection=function(t,e){if(!this._isInTranslatableSection)return void this._reportError(t,"Unexpected section end");var n=this._msgCountAtSectionStart,r=e.reduce(function(t,e){return t+(e instanceof ym?0:1)},0);if(1==r)for(var i=this._messages.length-1;i>=n;i--){var o=this._messages[i].nodes;if(!(1==o.length&&o[0]instanceof km)){this._messages.splice(i,1);break}}this._msgCountAtSectionStart=void 0},t.prototype._reportError=function(t,e){this._errors.push(new Bm(t.sourceSpan,e))},t}(),Ym=function(){function t(){this.closedByParent=!1,this.contentType=Bd.PARSABLE_DATA,this.isVoid=!1,this.ignoreFirstLf=!1,this.canSelfClose=!0}return t.prototype.requireExtraParent=function(){return!1},t.prototype.isClosedByChild=function(){return!1},t}(),$m=new Ym,Jm=function(t){function e(){return t.call(this,uo)||this}return xd(e,t),e.prototype.parse=function(e,n,r){return void 0===r&&(r=!1),t.prototype.parse.call(this,e,n,r,null)},e}(Tm),tg=function(){function t(){}return t.prototype.visitText=function(t){return t.value},t.prototype.visitContainer=function(t){var e=this;return"["+t.children.map(function(t){return t.visit(e)}).join(", ")+"]"},t.prototype.visitIcu=function(t){var e=this,n=Object.keys(t.cases).map(function(n){return n+" {"+t.cases[n].visit(e)+"}"});return"{"+t.expression+", "+t.type+", "+n.join(", ")+"}"},t.prototype.visitTagPlaceholder=function(t){var e=this;return t.isVoid?'<ph tag name="'+t.startName+'"/>':'<ph tag name="'+t.startName+'">'+t.children.map(function(t){return t.visit(e)}).join(", ")+'</ph name="'+t.closeName+'">'},t.prototype.visitPlaceholder=function(t){return t.value?'<ph name="'+t.name+'">'+t.value+"</ph>":'<ph name="'+t.name+'"/>'},t.prototype.visitIcuPlaceholder=function(t){return'<ph icu name="'+t.name+'">'+t.value.visit(this)+"</ph>"},t}(),eg=new tg,ng=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return xd(e,t),e.prototype.visitIcu=function(t){var e=this,n=Object.keys(t.cases).map(function(n){return n+" {"+t.cases[n].visit(e)+"}"});return"{"+t.type+", "+n.join(", ")+"}"},e}(tg),rg={};rg.Little=0,rg.Big=1,rg[rg.Little]="Little",rg[rg.Big]="Big";var ig=function(){function t(){}return t.prototype.write=function(){},t.prototype.load=function(){},t.prototype.digest=function(){},t.prototype.createNameMapper=function(){return null},t}(),og=function(t){function e(e,n){var r=t.call(this)||this;return r.mapName=n,r.internalToPublic={},r.publicToNextId={},r.publicToInternal={},e.nodes.forEach(function(t){return t.visit(r)}),r}return xd(e,t),e.prototype.toPublicName=function(t){return this.internalToPublic.hasOwnProperty(t)?this.internalToPublic[t]:null},e.prototype.toInternalName=function(t){return this.publicToInternal.hasOwnProperty(t)?this.publicToInternal[t]:null},e.prototype.visitText=function(){return null},e.prototype.visitTagPlaceholder=function(e,n){this.visitPlaceholderName(e.startName),t.prototype.visitTagPlaceholder.call(this,e,n),this.visitPlaceholderName(e.closeName)},e.prototype.visitPlaceholder=function(t){this.visitPlaceholderName(t.name)},e.prototype.visitIcuPlaceholder=function(t){this.visitPlaceholderName(t.name)},e.prototype.visitPlaceholderName=function(t){if(t&&!this.internalToPublic.hasOwnProperty(t)){var e=this.mapName(t);if(this.publicToInternal.hasOwnProperty(e)){var n=this.publicToNextId[e];this.publicToNextId[e]=n+1,e=e+"_"+n}else this.publicToNextId[e]=1;this.internalToPublic[t]=e,this.publicToInternal[e]=t}},e}(Lm),sg=function(){function t(){}return t.prototype.visitTag=function(t){var e=this,n=this._serializeAttributes(t.attrs);if(0==t.children.length)return"<"+t.name+n+"/>";var r=t.children.map(function(t){return t.visit(e)});return"<"+t.name+n+">"+r.join("")+"</"+t.name+">"},t.prototype.visitText=function(t){return t.value},t.prototype.visitDeclaration=function(t){return"<?xml"+this._serializeAttributes(t.attrs)+" ?>"},t.prototype._serializeAttributes=function(t){var e=Object.keys(t).map(function(e){return e+'="'+t[e]+'"'}).join(" ");return e.length>0?" "+e:""},t.prototype.visitDoctype=function(t){return"<!DOCTYPE "+t.rootTag+" [\n"+t.dtd+"\n]>"},t}(),ag=new sg,ug=function(){function t(t){var e=this;this.attrs={},Object.keys(t).forEach(function(n){e.attrs[n]=Do(t[n])})}return t.prototype.visit=function(t){return t.visitDeclaration(this)},t}(),cg=function(){function t(t,e){this.rootTag=t,this.dtd=e}return t.prototype.visit=function(t){return t.visitDoctype(this)},t}(),pg=function(){function t(t,e,n){void 0===e&&(e={}),void 0===n&&(n=[]);var r=this;this.name=t,this.children=n,this.attrs={},Object.keys(e).forEach(function(t){r.attrs[t]=Do(e[t])})}return t.prototype.visit=function(t){return t.visitTag(this)},t}(),lg=function(){function t(t){this.value=Do(t)}return t.prototype.visit=function(t){return t.visitText(this)},t}(),hg=function(t){function e(e){return void 0===e&&(e=0),t.call(this,"\n"+new Array(e+1).join(" "))||this}return xd(e,t),e}(lg),fg=[[/&/g,"&"],[/"/g,"""],[/'/g,"'"],[/</g,"<"],[/>/g,">"]],dg="1.2",vg="urn:oasis:names:tc:xliff:document:1.2",yg="en",mg="x",gg="file",_g="source",bg="target",wg="trans-unit",Eg=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return xd(e,t),e.prototype.write=function(t,e){var n=new Cg,r=[];t.forEach(function(t){var e=new pg(wg,{id:t.id,datatype:"html"});e.children.push(new hg(8),new pg(_g,{},n.serialize(t.nodes)),new hg(8),new pg(bg)),t.description&&e.children.push(new hg(8),new pg("note",{priority:"1",from:"description"},[new lg(t.description)])),t.meaning&&e.children.push(new hg(8),new pg("note",{priority:"1",from:"meaning"},[new lg(t.meaning)])),e.children.push(new hg(6)),r.push(new hg(6),e)});var i=new pg("body",{},r.concat([new hg(4)])),o=new pg("file",{"source-language":e||yg,datatype:"plaintext",original:"ng2.template"},[new hg(4),i,new hg(2)]),s=new pg("xliff",{version:dg,xmlns:vg},[new hg(2),o,new hg]);return Ro([new ug({version:"1.0",encoding:"UTF-8"}),new hg,s,new hg])},e.prototype.load=function(t,e){var n=new xg,r=n.parse(t,e),i=r.locale,o=r.mlNodesByMsgId,s=r.errors,a={},u=new Sg;if(Object.keys(o).forEach(function(t){var e=u.convert(o[t]),n=e.i18nNodes,r=e.errors;s.push.apply(s,r),a[t]=n}),s.length)throw new Error("xliff parse errors:\n"+s.join("\n"));return{locale:i,i18nNodesByMsgId:a}},e.prototype.digest=function(t){return co(t)},e}(ig),Cg=function(){function t(){}return t.prototype.visitText=function(t){return[new lg(t.value)]},t.prototype.visitContainer=function(t){var e=this,n=[];return t.children.forEach(function(t){return n.push.apply(n,t.visit(e))}),n},t.prototype.visitIcu=function(){if(this._isInIcu)throw new Error("xliff does not support nested ICU messages");this._isInIcu=!0;var t=[];return this._isInIcu=!1,t},t.prototype.visitTagPlaceholder=function(t){var e=Lo(t.tag),n=new pg(mg,{id:t.startName,ctype:e});if(t.isVoid)return[n];var r=new pg(mg,{id:t.closeName,ctype:e});return[n].concat(this.serialize(t.children),[r])},t.prototype.visitPlaceholder=function(t){return[new pg(mg,{id:t.name})]},t.prototype.visitIcuPlaceholder=function(t){return[new pg(mg,{id:t.name})]},t.prototype.serialize=function(t){var e=this;return this._isInIcu=!1,[].concat.apply([],t.map(function(t){return t.visit(e)}))},t}(),xg=function(){function t(){this._locale=null}return t.prototype.parse=function(t,e){this._unitMlNodes=[],this._mlNodesByMsgId={};var n=(new Jm).parse(t,e,!1);return this._errors=n.errors,Hi(this,n.rootNodes,null),{mlNodesByMsgId:this._mlNodesByMsgId,errors:this._errors,locale:this._locale}},t.prototype.visitElement=function(t){switch(t.name){case wg:this._unitMlNodes=null;var e=t.attrs.find(function(t){return"id"===t.name});if(e){var n=e.value;this._mlNodesByMsgId.hasOwnProperty(n)?this._addError(t,"Duplicated translations for msg "+n):(Hi(this,t.children,null),this._unitMlNodes?this._mlNodesByMsgId[n]=this._unitMlNodes:this._addError(t,"Message "+n+" misses a translation"))}else this._addError(t,"<"+wg+'> misses the "id" attribute');break;case _g:break;case bg:this._unitMlNodes=t.children;break;case gg:var r=t.attrs.find(function(t){return"target-language"===t.name});r&&(this._locale=r.value),Hi(this,t.children,null);break;default:Hi(this,t.children,null)}},t.prototype.visitAttribute=function(){},t.prototype.visitText=function(){},t.prototype.visitComment=function(){},t.prototype.visitExpansion=function(){},t.prototype.visitExpansionCase=function(){},t.prototype._addError=function(t,e){this._errors.push(new Bm(t.sourceSpan,e))},t}(),Sg=function(){function t(){}return t.prototype.convert=function(t){return this._errors=[],{i18nNodes:Hi(this,t),errors:this._errors}},t.prototype.visitText=function(t){return new km(t.value,t.sourceSpan)},t.prototype.visitElement=function(t){if(t.name===mg){var e=t.attrs.find(function(t){return"id"===t.name});if(e)return new Im("",e.value,t.sourceSpan);this._addError(t,"<"+mg+'> misses the "id" attribute')}else this._addError(t,"Unexpected tag")},t.prototype.visitExpansion=function(){},t.prototype.visitExpansionCase=function(){},t.prototype.visitComment=function(){},t.prototype.visitAttribute=function(){},t.prototype._addError=function(t,e){this._errors.push(new Bm(t.sourceSpan,e))},t}(),Tg="messagebundle",Ag="msg",Pg="ph",kg="ex",Mg='<!ELEMENT messagebundle (msg)*>\n<!ATTLIST messagebundle class CDATA #IMPLIED>\n\n<!ELEMENT msg (#PCDATA|ph|source)*>\n<!ATTLIST msg id CDATA #IMPLIED>\n<!ATTLIST msg seq CDATA #IMPLIED>\n<!ATTLIST msg name CDATA #IMPLIED>\n<!ATTLIST msg desc CDATA #IMPLIED>\n<!ATTLIST msg meaning CDATA #IMPLIED>\n<!ATTLIST msg obsolete (obsolete) #IMPLIED>\n<!ATTLIST msg xml:space (default|preserve) "default">\n<!ATTLIST msg is_hidden CDATA #IMPLIED>\n\n<!ELEMENT source (#PCDATA)>\n\n<!ELEMENT ph (#PCDATA|ex)*>\n<!ATTLIST ph name CDATA #REQUIRED>\n\n<!ELEMENT ex (#PCDATA)>',Og=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return xd(e,t),e.prototype.write=function(t){var e=new Ig,n=new Ng,r=new pg(Tg);return t.forEach(function(t){var e={id:t.id};t.description&&(e.desc=t.description),t.meaning&&(e.meaning=t.meaning),r.children.push(new hg(2),new pg(Ag,e,n.serialize(t.nodes)))}),r.children.push(new hg),Ro([new ug({version:"1.0",encoding:"UTF-8"}),new hg,new cg(Tg,Mg),new hg,e.addDefaultExamples(r),new hg])},e.prototype.load=function(){throw new Error("Unsupported")},e.prototype.digest=function(t){return Fo(t)},e.prototype.createNameMapper=function(t){return new og(t,Vo)},e}(ig),Ng=function(){function t(){}return t.prototype.visitText=function(t){return[new lg(t.value)]},t.prototype.visitContainer=function(t){var e=this,n=[];return t.children.forEach(function(t){return n.push.apply(n,t.visit(e))}),n},t.prototype.visitIcu=function(t){var e=this,n=[new lg("{"+t.expressionPlaceholder+", "+t.type+", ")];return Object.keys(t.cases).forEach(function(r){n.push.apply(n,[new lg(r+" {")].concat(t.cases[r].visit(e),[new lg("} ")]))}),n.push(new lg("}")),n},t.prototype.visitTagPlaceholder=function(t){var e=new pg(kg,{},[new lg("<"+t.tag+">")]),n=new pg(Pg,{name:t.startName},[e]);if(t.isVoid)return[n];var r=new pg(kg,{},[new lg("</"+t.tag+">")]),i=new pg(Pg,{name:t.closeName},[r]);return[n].concat(this.serialize(t.children),[i])},t.prototype.visitPlaceholder=function(t){return[new pg(Pg,{name:t.name})]},t.prototype.visitIcuPlaceholder=function(t){return[new pg(Pg,{name:t.name})]},t.prototype.serialize=function(t){var e=this;return[].concat.apply([],t.map(function(t){return t.visit(e)}))},t}(),Ig=function(){function t(){}return t.prototype.addDefaultExamples=function(t){return t.visit(this),t},t.prototype.visitTag=function(t){var e=this;if(t.name===Pg){if(!t.children||0==t.children.length){var n=new lg(t.attrs.name||"...");t.children=[new pg(kg,{},[n])]}}else t.children&&t.children.forEach(function(t){return t.visit(e)})},t.prototype.visitText=function(){},t.prototype.visitDeclaration=function(){},t.prototype.visitDoctype=function(){},t}(),Rg="translationbundle",Dg="translation",Lg="ph",Fg=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return xd(e,t),e.prototype.write=function(){throw new Error("Unsupported")},e.prototype.load=function(t,e){var n=new Vg,r=n.parse(t,e),i=r.locale,o=r.msgIdToHtml,s=r.errors,a={},u=new jg;if(Object.keys(o).forEach(function(t){var n=function(){var n=u.convert(o[t],e),r=n.i18nNodes,i=n.errors;if(i.length)throw new Error("xtb parse errors:\n"+i.join("\n"));return r};jo(a,t,n)}),s.length)throw new Error("xtb parse errors:\n"+s.join("\n"));return{locale:i,i18nNodesByMsgId:a}},e.prototype.digest=function(t){return Fo(t)},e.prototype.createNameMapper=function(t){return new og(t,Vo)},e}(ig),Vg=function(){function t(){this._locale=null}return t.prototype.parse=function(t,e){this._bundleDepth=0,this._msgIdToHtml={};var n=(new Jm).parse(t,e,!1);return this._errors=n.errors,Hi(this,n.rootNodes),{msgIdToHtml:this._msgIdToHtml,errors:this._errors,locale:this._locale}},t.prototype.visitElement=function(t){switch(t.name){case Rg:this._bundleDepth++,this._bundleDepth>1&&this._addError(t,"<"+Rg+"> elements can not be nested");var e=t.attrs.find(function(t){return"lang"===t.name});e&&(this._locale=e.value),Hi(this,t.children,null),this._bundleDepth--;break;case Dg:var n=t.attrs.find(function(t){return"id"===t.name});if(n){var r=n.value;if(this._msgIdToHtml.hasOwnProperty(r))this._addError(t,"Duplicated translations for msg "+r);else{var i=t.startSourceSpan.end.offset,o=t.endSourceSpan.start.offset,s=t.startSourceSpan.start.file.content,a=s.slice(i,o);this._msgIdToHtml[r]=a}}else this._addError(t,"<"+Dg+'> misses the "id" attribute');break;default:this._addError(t,"Unexpected tag")}},t.prototype.visitAttribute=function(){},t.prototype.visitText=function(){},t.prototype.visitComment=function(){},t.prototype.visitExpansion=function(){},t.prototype.visitExpansionCase=function(){},t.prototype._addError=function(t,e){this._errors.push(new Bm(t.sourceSpan,e))},t}(),jg=function(){function t(){}return t.prototype.convert=function(t,e){var n=(new Jm).parse(t,e,!0);this._errors=n.errors;var r=this._errors.length>0||0==n.rootNodes.length?[]:Hi(this,n.rootNodes);return{i18nNodes:r,errors:this._errors}},t.prototype.visitText=function(t){return new km(t.value,t.sourceSpan)},t.prototype.visitExpansion=function(t){var e={};return Hi(this,t.cases).forEach(function(n){e[n.value]=new Mm(n.nodes,t.sourceSpan)}),new Om(t.switchValue,t.type,e,t.sourceSpan)},t.prototype.visitExpansionCase=function(t){return{value:t.value,nodes:Hi(this,t.expression)}},t.prototype.visitElement=function(t){if(t.name===Lg){var e=t.attrs.find(function(t){return"name"===t.name});if(e)return new Im("",e.value,t.sourceSpan);this._addError(t,"<"+Lg+'> misses the "name" attribute')}else this._addError(t,"Unexpected tag")},t.prototype.visitComment=function(){},t.prototype.visitAttribute=function(){},t.prototype._addError=function(t,e){this._errors.push(new Bm(t.sourceSpan,e))},t}(),Hg=function(t){function e(){return t.call(this,zr)||this}return xd(e,t),e.prototype.parse=function(e,n,r,i){return void 0===r&&(r=!1),void 0===i&&(i=Gy),t.prototype.parse.call(this,e,n,r,i)},e}(Tm);Hg.decorators=[{type:bi}],Hg.ctorParameters=function(){return[]};var Ug=function(){function t(t,e,n,r,i,o){void 0===t&&(t={}),void 0===i&&(i=Df.Warning),this._i18nNodesByMsgId=t,this.digest=n,this.mapperFactory=r,this._i18nToHtml=new Bg(t,e,n,r,i,o)}return t.load=function(e,n,r,i,o){var s=r.load(e,n),a=s.locale,u=s.i18nNodesByMsgId,c=function(t){return r.digest(t)},p=function(t){return r.createNameMapper(t)};return new t(u,a,c,p,i,o)},t.prototype.get=function(t){var e=this._i18nToHtml.convert(t);if(e.errors.length)throw new Error(e.errors.join("\n"));return e.nodes},t.prototype.has=function(t){return this.digest(t)in this._i18nNodesByMsgId},t}(),Bg=function(){function t(t,e,n,r,i,o){void 0===t&&(t={}),this._i18nNodesByMsgId=t,this._locale=e,this._digest=n,this._mapperFactory=r,this._missingTranslationStrategy=i,this._console=o,this._contextStack=[],this._errors=[]}return t.prototype.convert=function(t){this._contextStack.length=0,this._errors.length=0;var e=this._convertToText(t),n=t.nodes[0].sourceSpan.start.file.url,r=(new Hg).parse(e,n,!0);return{nodes:r.rootNodes,errors:this._errors.concat(r.errors)}},t.prototype.visitText=function(t){return t.value},t.prototype.visitContainer=function(t){var e=this;return t.children.map(function(t){return t.visit(e)}).join("")},t.prototype.visitIcu=function(t){var e=this,n=Object.keys(t.cases).map(function(n){return n+" {"+t.cases[n].visit(e)+"}"}),r=this._srcMsg.placeholders.hasOwnProperty(t.expression)?this._srcMsg.placeholders[t.expression]:t.expression;return"{"+r+", "+t.type+", "+n.join(" ")+"}"},t.prototype.visitPlaceholder=function(t){var e=this._mapper(t.name);return this._srcMsg.placeholders.hasOwnProperty(e)?this._srcMsg.placeholders[e]:this._srcMsg.placeholderToMessage.hasOwnProperty(e)?this._convertToText(this._srcMsg.placeholderToMessage[e]):(this._addError(t,'Unknown placeholder "'+t.name+'"'),"")},t.prototype.visitTagPlaceholder=function(t){var e=this,n=""+t.tag,r=Object.keys(t.attrs).map(function(e){return e+'="'+t.attrs[e]+'"'}).join(" ");if(t.isVoid)return"<"+n+" "+r+"/>";var i=t.children.map(function(t){return t.visit(e)}).join("");return"<"+n+" "+r+">"+i+"</"+n+">"},t.prototype.visitIcuPlaceholder=function(t){return this._convertToText(this._srcMsg.placeholderToMessage[t.name])},t.prototype._convertToText=function(t){var e,n=this,r=this._digest(t),i=this._mapperFactory?this._mapperFactory(t):null;if(this._contextStack.push({msg:this._srcMsg,mapper:this._mapper}),this._srcMsg=t,this._i18nNodesByMsgId.hasOwnProperty(r))e=this._i18nNodesByMsgId[r],this._mapper=function(t){return i?i.toInternalName(t):t};else{if(this._missingTranslationStrategy===Df.Error){var o=this._locale?' for locale "'+this._locale+'"':"";this._addError(t.nodes[0],'Missing translation for message "'+r+'"'+o)}else if(this._console&&this._missingTranslationStrategy===Df.Warning){var o=this._locale?' for locale "'+this._locale+'"':"";this._console.warn('Missing translation for message "'+r+'"'+o)}e=t.nodes,this._mapper=function(t){return t}}var s=e.map(function(t){return t.visit(n)}).join(""),a=this._contextStack.pop();return this._srcMsg=a.msg,this._mapper=a.mapper,s},t.prototype._addError=function(t,e){this._errors.push(new Bm(t.sourceSpan,e))},t}(),zg=function(){function t(t,e,n,r,i){if(void 0===r&&(r=Df.Warning),this._htmlParser=t,e){var o=Ho(n);this._translationBundle=Ug.load(e,"i18n",o,r,i)}}return t.prototype.parse=function(t,e,n,r){void 0===n&&(n=!1),void 0===r&&(r=Gy);var i=this._htmlParser.parse(t,e,n,r);return this._translationBundle?i.errors.length?new Sm(i.rootNodes,i.errors):ro(i.rootNodes,this._translationBundle,r,[],{}):i},t}(),qg=Uo("core"),Wg=function(){function t(){}return t}();Wg.ANALYZE_FOR_ENTRY_COMPONENTS={name:"ANALYZE_FOR_ENTRY_COMPONENTS",moduleUrl:qg,runtime:al},Wg.ElementRef={name:"ElementRef",moduleUrl:qg,runtime:Zh},Wg.NgModuleRef={name:"NgModuleRef",moduleUrl:qg,runtime:xh},Wg.ViewContainerRef={name:"ViewContainerRef",moduleUrl:qg,runtime:sf},Wg.ChangeDetectorRef={name:"ChangeDetectorRef",moduleUrl:qg,runtime:af},Wg.QueryList={name:"QueryList",moduleUrl:qg,runtime:$h},Wg.TemplateRef={name:"TemplateRef",moduleUrl:qg,runtime:of},Wg.CodegenComponentFactoryResolver={name:"ɵCodegenComponentFactoryResolver",moduleUrl:qg,runtime:Eh},Wg.ComponentFactoryResolver={name:"ComponentFactoryResolver",moduleUrl:qg,runtime:_h},Wg.ComponentFactory={name:"ComponentFactory",moduleUrl:qg,runtime:yh},Wg.ComponentRef={name:"ComponentRef",moduleUrl:qg,runtime:vh},Wg.NgModuleFactory={name:"NgModuleFactory",moduleUrl:qg,runtime:Sh},Wg.NgModuleInjector={name:"ɵNgModuleInjector",moduleUrl:qg,runtime:Ah},Wg.RegisterModuleFactoryFn={name:"ɵregisterModuleFactory",moduleUrl:qg,runtime:Ct},Wg.Injector={name:"Injector",moduleUrl:qg,runtime:Il},Wg.ViewEncapsulation={name:"ViewEncapsulation",moduleUrl:qg,runtime:wl},Wg.ChangeDetectionStrategy={name:"ChangeDetectionStrategy",moduleUrl:qg,runtime:pl},Wg.SecurityContext={name:"SecurityContext",moduleUrl:qg,runtime:Lf},Wg.LOCALE_ID={name:"LOCALE_ID",moduleUrl:qg,runtime:Nf},Wg.TRANSLATIONS_FORMAT={name:"TRANSLATIONS_FORMAT",moduleUrl:qg,runtime:Rf},Wg.inlineInterpolate={name:"ɵinlineInterpolate",moduleUrl:qg,runtime:xe},Wg.interpolate={name:"ɵinterpolate",moduleUrl:qg,runtime:Ce},Wg.EMPTY_ARRAY={name:"ɵEMPTY_ARRAY",moduleUrl:qg,runtime:Kf},Wg.EMPTY_MAP={name:"ɵEMPTY_MAP",moduleUrl:qg,runtime:Qf},Wg.Renderer={name:"Renderer",moduleUrl:qg,runtime:Kh},Wg.viewDef={name:"ɵvid",moduleUrl:qg,runtime:jn},Wg.elementDef={name:"ɵeld",moduleUrl:qg,runtime:Ae},Wg.anchorDef={name:"ɵand",moduleUrl:qg,runtime:Te},Wg.textDef={name:"ɵted",moduleUrl:qg,runtime:Rn},Wg.directiveDef={name:"ɵdid",moduleUrl:qg,runtime:en},Wg.providerDef={name:"ɵprd",moduleUrl:qg,runtime:rn},Wg.queryDef={name:"ɵqud",moduleUrl:qg,runtime:Pn},Wg.pureArrayDef={name:"ɵpad",moduleUrl:qg,runtime:En},Wg.pureObjectDef={name:"ɵpod",moduleUrl:qg,runtime:Cn},Wg.purePipeDef={name:"ɵppd",moduleUrl:qg,runtime:wn},Wg.pipeDef={name:"ɵpid",moduleUrl:qg,runtime:nn},Wg.nodeValue={name:"ɵnov",moduleUrl:qg,runtime:Je},Wg.ngContentDef={name:"ɵncd",moduleUrl:qg,runtime:Ve},Wg.unwrapValue={name:"ɵunv",moduleUrl:qg,runtime:Yt},Wg.createRendererType2={name:"ɵcrt",moduleUrl:qg,runtime:$t},Wg.RendererType2={name:"RendererType2",moduleUrl:qg,runtime:null},Wg.ViewDefinition={name:"ɵViewDefinition",moduleUrl:qg,runtime:null},Wg.createComponentFactory={name:"ɵccf",moduleUrl:qg,runtime:Qe};var Kg=["zero","one","two","few","many","other"],Qg=function(){function t(t,e,n){this.nodes=t,this.expanded=e,this.errors=n}return t}(),Gg=function(t){function e(e,n){return t.call(this,e,n)||this}return xd(e,t),e}(pm),Xg=function(){function t(){this.isExpanded=!1,this.errors=[]}return t.prototype.visitElement=function(t){return new vm(t.name,t.attrs,Hi(this,t.children),t.sourceSpan,t.startSourceSpan,t.endSourceSpan)},t.prototype.visitAttribute=function(t){return t},t.prototype.visitText=function(t){return t},t.prototype.visitComment=function(t){return t},t.prototype.visitExpansion=function(t){return this.isExpanded=!0,"plural"==t.type?Qo(t,this.errors):Go(t,this.errors)},t.prototype.visitExpansionCase=function(){throw new Error("Should not be reached")},t}(),Zg=function(t){function e(e,n){return t.call(this,n,e)||this}return xd(e,t),e}(pm),Yg=function(){function t(t){var e=this;this.component=t,this.errors=[],this.viewQueries=Jo(t),this.viewProviders=new Map,t.viewProviders.forEach(function(t){
null==e.viewProviders.get(ai(t.token))&&e.viewProviders.set(ai(t.token),!0)})}return t}(),$g=function(){function t(t,e,n,r,i,o,s,a,u){var c=this;this.viewContext=t,this._parent=e,this._isViewRoot=n,this._directiveAsts=r,this._sourceSpan=u,this._transformedProviders=new Map,this._seenProviders=new Map,this._hasViewContainer=!1,this._queriedTokens=new Map,this._attrs={},i.forEach(function(t){return c._attrs[t.name]=t.value});var p=r.map(function(t){return t.directive});if(this._allProviders=Yo(p,u,t.errors),this._contentQueries=ts(a,p),Array.from(this._allProviders.values()).forEach(function(t){c._addQueryReadsTo(t.token,t.token,c._queriedTokens)}),s){var l=Wo(Wg.TemplateRef);this._addQueryReadsTo(l,l,this._queriedTokens)}o.forEach(function(t){var e=t.value||Wo(Wg.ElementRef);c._addQueryReadsTo({value:t.name},e,c._queriedTokens)}),this._queriedTokens.get(Bo(Wg.ViewContainerRef))&&(this._hasViewContainer=!0),Array.from(this._allProviders.values()).forEach(function(t){var e=t.eager||c._queriedTokens.get(ai(t.token));e&&c._getOrCreateLocalProvider(t.providerType,t.token,!0)})}return t.prototype.afterElement=function(){var t=this;Array.from(this._allProviders.values()).forEach(function(e){t._getOrCreateLocalProvider(e.providerType,e.token,!1)})},Object.defineProperty(t.prototype,"transformProviders",{get:function(){return Array.from(this._transformedProviders.values())},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"transformedDirectiveAsts",{get:function(){var t=this.transformProviders.map(function(t){return t.token.identifier}),e=this._directiveAsts.slice();return e.sort(function(e,n){return t.indexOf(e.directive.type)-t.indexOf(n.directive.type)}),e},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"transformedHasViewContainer",{get:function(){return this._hasViewContainer},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"queryMatches",{get:function(){var t=[];return this._queriedTokens.forEach(function(e){t.push.apply(t,e)}),t},enumerable:!0,configurable:!0}),t.prototype._addQueryReadsTo=function(t,e,n){this._getQueriesFor(t).forEach(function(t){var r=t.meta.read||e,i=ai(r),o=n.get(i);o||(o=[],n.set(i,o)),o.push({queryId:t.queryId,value:r})})},t.prototype._getQueriesFor=function(t){for(var e,n=[],r=this,i=0;null!==r;)e=r._contentQueries.get(ai(t)),e&&n.push.apply(n,e.filter(function(t){return t.meta.descendants||1>=i})),r._directiveAsts.length>0&&i++,r=r._parent;return e=this.viewContext.viewQueries.get(ai(t)),e&&n.push.apply(n,e),n},t.prototype._getOrCreateLocalProvider=function(t,e,n){var r=this,i=this._allProviders.get(ai(e));if(!i||(t===Fd.Directive||t===Fd.PublicService)&&i.providerType===Fd.PrivateService||(t===Fd.PrivateService||t===Fd.PublicService)&&i.providerType===Fd.Builtin)return null;var o=this._transformedProviders.get(ai(e));if(o)return o;if(null!=this._seenProviders.get(ai(e)))return this.viewContext.errors.push(new Zg("Cannot instantiate cyclic dependency! "+si(e),this._sourceSpan)),null;this._seenProviders.set(ai(e),!0);var s=i.providers.map(function(t){var e,o=t.useValue,s=t.useExisting;if(null!=t.useExisting){var a=r._getDependency(i.providerType,{token:t.useExisting},n);null!=a.token?s=a.token:(s=null,o=a.value)}else if(t.useFactory){var u=t.deps||t.useFactory.diDeps;e=u.map(function(t){return r._getDependency(i.providerType,t,n)})}else if(t.useClass){var u=t.deps||t.useClass.diDeps;e=u.map(function(t){return r._getDependency(i.providerType,t,n)})}return Xo(t,{useExisting:s,useValue:o,deps:e})});return o=Zo(i,{eager:n,providers:s}),this._transformedProviders.set(ai(e),o),o},t.prototype._getLocalDependency=function(t,e,n){if(void 0===n&&(n=null),e.isAttribute){var r=this._attrs[e.token.value];return{isValue:!0,value:null==r?null:r}}if(null!=e.token){if(t===Fd.Directive||t===Fd.Component){if(ai(e.token)===Bo(Wg.Renderer)||ai(e.token)===Bo(Wg.ElementRef)||ai(e.token)===Bo(Wg.ChangeDetectorRef)||ai(e.token)===Bo(Wg.TemplateRef))return e;ai(e.token)===Bo(Wg.ViewContainerRef)&&(this._hasViewContainer=!0)}if(ai(e.token)===Bo(Wg.Injector))return e;if(null!=this._getOrCreateLocalProvider(t,e.token,n))return e}return null},t.prototype._getDependency=function(t,e,n){void 0===n&&(n=null);var r=this,i=n,o=null;if(e.isSkipSelf||(o=this._getLocalDependency(t,e,n)),e.isSelf)!o&&e.isOptional&&(o={isValue:!0,value:null});else{for(;!o&&r._parent;){var s=r;r=r._parent,s._isViewRoot&&(i=!1),o=r._getLocalDependency(Fd.PublicService,e,i)}o||(o=!e.isHost||this.viewContext.component.isHost||this.viewContext.component.type.reference===ai(e.token)||null!=this.viewContext.viewProviders.get(ai(e.token))?e:e.isOptional?o={isValue:!0,value:null}:null)}return o||this.viewContext.errors.push(new Zg("No provider for "+si(e.token),this._sourceSpan)),o},t}(),Jg=function(){function t(t,e,n){var r=this;this._transformedProviders=new Map,this._seenProviders=new Map,this._errors=[],this._allProviders=new Map,t.transitiveModule.modules.forEach(function(t){var e={token:{identifier:t},useClass:t};$o([e],Fd.PublicService,!0,n,r._errors,r._allProviders)}),$o(t.transitiveModule.providers.map(function(t){return t.provider}).concat(e),Fd.PublicService,!1,n,this._errors,this._allProviders)}return t.prototype.parse=function(){var t=this;if(Array.from(this._allProviders.values()).forEach(function(e){t._getOrCreateLocalProvider(e.token,e.eager)}),this._errors.length>0){var e=this._errors.join("\n");throw new Error("Provider parse errors:\n"+e)}return Array.from(this._transformedProviders.values())},t.prototype._getOrCreateLocalProvider=function(t,e){var n=this,r=this._allProviders.get(ai(t));if(!r)return null;var i=this._transformedProviders.get(ai(t));if(i)return i;if(null!=this._seenProviders.get(ai(t)))return this._errors.push(new Zg("Cannot instantiate cyclic dependency! "+si(t),r.sourceSpan)),null;this._seenProviders.set(ai(t),!0);var o=r.providers.map(function(t){var i,o=t.useValue,s=t.useExisting;if(null!=t.useExisting){var a=n._getDependency({token:t.useExisting},e,r.sourceSpan);null!=a.token?s=a.token:(s=null,o=a.value)}else if(t.useFactory){var u=t.deps||t.useFactory.diDeps;i=u.map(function(t){return n._getDependency(t,e,r.sourceSpan)})}else if(t.useClass){var u=t.deps||t.useClass.diDeps;i=u.map(function(t){return n._getDependency(t,e,r.sourceSpan)})}return Xo(t,{useExisting:s,useValue:o,deps:i})});return i=Zo(r,{eager:e,providers:o}),this._transformedProviders.set(ai(t),i),i},t.prototype._getDependency=function(t,e,n){void 0===e&&(e=null);var r=!1;t.isSkipSelf||null==t.token||(ai(t.token)===Bo(Wg.Injector)||ai(t.token)===Bo(Wg.ComponentFactoryResolver)?r=!0:null!=this._getOrCreateLocalProvider(t.token,e)&&(r=!0));var i=t;return t.isSelf&&!r&&(t.isOptional?i={isValue:!0,value:null}:this._errors.push(new Zg("No provider for "+si(t.token),n))),i},t}(),t_=function(){function t(){}return t.prototype.hasProperty=function(){},t.prototype.hasElement=function(){},t.prototype.securityContext=function(){},t.prototype.allKnownElementNames=function(){},t.prototype.getMappedPropName=function(){},t.prototype.getDefaultComponentElementName=function(){},t.prototype.validateProperty=function(){},t.prototype.validateAttribute=function(){},t.prototype.normalizeAnimationStyleProperty=function(){},t.prototype.normalizeAnimationStyleValue=function(){},t}(),e_=function(){function t(t,e){this.style=t,this.styleUrls=e}return t}(),n_=/@import\s+(?:url\()?\s*(?:(?:['"]([^'"]*))|([^;\)\s]*))[^;]*;?/g,r_=/\/\*.+?\*\//g,i_=/^([^:\/?#]+):/,o_=".",s_="attr",a_="class",u_="style",c_="animate-",p_={};p_.DEFAULT=0,p_.LITERAL_ATTR=1,p_.ANIMATION=2,p_[p_.DEFAULT]="DEFAULT",p_[p_.LITERAL_ATTR]="LITERAL_ATTR",p_[p_.ANIMATION]="ANIMATION";var l_=function(){function t(t,e,n,r){this.name=t,this.expression=e,this.type=n,this.sourceSpan=r}return Object.defineProperty(t.prototype,"isLiteral",{get:function(){return this.type===p_.LITERAL_ATTR},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"isAnimation",{get:function(){return this.type===p_.ANIMATION},enumerable:!0,configurable:!0}),t}(),h_=function(){function t(t,e,n,r,i){var o=this;this._exprParser=t,this._interpolationConfig=e,this._schemaRegistry=n,this._targetErrors=i,this.pipesByName=new Map,this._usedPipes=new Map,r.forEach(function(t){return o.pipesByName.set(t.name,t)})}return t.prototype.getUsedPipes=function(){return Array.from(this._usedPipes.values())},t.prototype.createDirectiveHostPropertyAsts=function(t,e,n){var r=this;if(t.hostProperties){var i=[];return Object.keys(t.hostProperties).forEach(function(e){var o=t.hostProperties[e];"string"==typeof o?r.parsePropertyBinding(e,o,!0,n,[],i):r._reportError('Value of the host property binding "'+e+'" needs to be a string representing an expression but got "'+o+'" ('+typeof o+")",n)}),i.map(function(t){return r.createElementPropertyAst(e,t)})}},t.prototype.createDirectiveHostEventAsts=function(t,e){var n=this;if(t.hostListeners){var r=[];return Object.keys(t.hostListeners).forEach(function(i){var o=t.hostListeners[i];"string"==typeof o?n.parseEvent(i,o,e,[],r):n._reportError('Value of the host listener "'+i+'" needs to be a string representing an expression but got "'+o+'" ('+typeof o+")",e)}),r}},t.prototype.parseInterpolation=function(t,e){var n=e.start.toString();try{var r=this._exprParser.parseInterpolation(t,n,this._interpolationConfig);return r&&this._reportExpressionParserErrors(r.errors,e),this._checkPipes(r,e),r}catch(t){return this._reportError(""+t,e),this._exprParser.wrapLiteralPrimitive("ERROR",n)}},t.prototype.parseInlineTemplateBinding=function(t,e,n,r,i,o){for(var s=this._parseTemplateBindings(t,e,n),a=0;a<s.length;a++){var u=s[a];u.keyIsVar?o.push(new Od(u.key,u.name,n)):u.expression?this._parsePropertyAst(u.key,u.expression,n,r,i):(r.push([u.key,""]),this.parseLiteralAttr(u.key,null,n,r,i))}},t.prototype._parseTemplateBindings=function(t,e,n){var r=this,i=n.start.toString();try{var o=this._exprParser.parseTemplateBindings(t,e,i);return this._reportExpressionParserErrors(o.errors,n),o.templateBindings.forEach(function(t){t.expression&&r._checkPipes(t.expression,n)}),o.warnings.forEach(function(t){r._reportError(t,n,cm.WARNING)}),o.templateBindings}catch(t){return this._reportError(""+t,n),[]}},t.prototype.parseLiteralAttr=function(t,e,n,r,i){is(t)?(t=t.substring(1),e&&this._reportError('Assigning animation triggers via @prop="exp" attributes with an expression is invalid. Use property bindings (e.g. [@prop]="exp") or use an attribute without a value (e.g. @prop) instead.',n,cm.ERROR),this._parseAnimation(t,e,n,r,i)):i.push(new l_(t,this._exprParser.wrapLiteralPrimitive(e,""),p_.LITERAL_ATTR,n))},t.prototype.parsePropertyBinding=function(t,e,n,r,i,o){var s=!1;t.startsWith(c_)?(s=!0,t=t.substring(c_.length)):is(t)&&(s=!0,t=t.substring(1)),s?this._parseAnimation(t,e,r,i,o):this._parsePropertyAst(t,this._parseBinding(e,n,r),r,i,o)},t.prototype.parsePropertyInterpolation=function(t,e,n,r,i){var o=this.parseInterpolation(e,n);return o?(this._parsePropertyAst(t,o,n,r,i),!0):!1},t.prototype._parsePropertyAst=function(t,e,n,r,i){r.push([t,e.source]),i.push(new l_(t,e,p_.DEFAULT,n))},t.prototype._parseAnimation=function(t,e,n,r,i){var o=this._parseBinding(e||"null",!1,n);r.push([t,o.source]),i.push(new l_(t,o,p_.ANIMATION,n))},t.prototype._parseBinding=function(t,e,n){var r=n.start.toString();try{var i=e?this._exprParser.parseSimpleBinding(t,r,this._interpolationConfig):this._exprParser.parseBinding(t,r,this._interpolationConfig);return i&&this._reportExpressionParserErrors(i.errors,n),this._checkPipes(i,n),i}catch(t){return this._reportError(""+t,n),this._exprParser.wrapLiteralPrimitive("ERROR",r)}},t.prototype.createElementPropertyAst=function(t,e){if(e.isAnimation)return new Pd(e.name,jd.Animation,Lf.NONE,e.expression,null,e.sourceSpan);var n,r,i=null,o=null,s=e.name.split(o_);if(s.length>1)if(s[0]==s_){o=s[1],this._validatePropertyOrAttributeName(o,e.sourceSpan,!0),r=os(this._schemaRegistry,t,o,!0);var a=o.indexOf(":");if(a>-1){var u=o.substring(0,a),c=o.substring(a+1);o=Br(u,c)}n=jd.Attribute}else s[0]==a_?(o=s[1],n=jd.Class,r=[Lf.NONE]):s[0]==u_&&(i=s.length>2?s[2]:null,o=s[1],n=jd.Style,r=[Lf.STYLE]);return null===o&&(o=this._schemaRegistry.getMappedPropName(e.name),r=os(this._schemaRegistry,t,o,!1),n=jd.Property,this._validatePropertyOrAttributeName(o,e.sourceSpan,!1)),new Pd(o,n,r[0],e.expression,i,e.sourceSpan)},t.prototype.parseEvent=function(t,e,n,r,i){is(t)?(t=t.substr(1),this._parseAnimationEvent(t,e,n,i)):this._parseEvent(t,e,n,r,i)},t.prototype._parseAnimationEvent=function(t,e,n,r){var i=Kr(t,[t,""]),o=i[0],s=i[1].toLowerCase();if(s)switch(s){case"start":case"done":var a=this._parseAction(e,n);r.push(new kd(o,null,s,a,n));break;default:this._reportError('The provided animation output phase value "'+s+'" for "@'+o+'" is not supported (use start or done)',n)}else this._reportError("The animation trigger output event (@"+o+") is missing its phase value name (start or done are currently supported)",n)},t.prototype._parseEvent=function(t,e,n,r,i){var o=Wr(t,[null,t]),s=o[0],a=o[1],u=this._parseAction(e,n);r.push([t,u.source]),i.push(new kd(a,s,null,u,n))},t.prototype._parseAction=function(t,e){var n=e.start.toString();try{var r=this._exprParser.parseAction(t,n,this._interpolationConfig);return r&&this._reportExpressionParserErrors(r.errors,e),!r||r.ast instanceof Ev?(this._reportError("Empty expressions are not allowed",e),this._exprParser.wrapLiteralPrimitive("ERROR",n)):(this._checkPipes(r,e),r)}catch(t){return this._reportError(""+t,e),this._exprParser.wrapLiteralPrimitive("ERROR",n)}},t.prototype._reportError=function(t,e,n){void 0===n&&(n=cm.ERROR),this._targetErrors.push(new pm(e,t,n))},t.prototype._reportExpressionParserErrors=function(t,e){for(var n=0,r=t;n<r.length;n++){var i=r[n];this._reportError(i.message,e)}},t.prototype._checkPipes=function(t,e){var n=this;if(t){var r=new f_;t.visit(r),r.pipes.forEach(function(t,r){var i=n.pipesByName.get(r);i?n._usedPipes.set(r,i):n._reportError("The pipe '"+r+"' could not be found",new um(e.start.moveBy(t.span.start),e.start.moveBy(t.span.end)))})}},t.prototype._validatePropertyOrAttributeName=function(t,e,n){var r=n?this._schemaRegistry.validateAttribute(t):this._schemaRegistry.validateProperty(t);r.error&&this._reportError(r.msg,e,cm.ERROR)},t}(),f_=function(t){function e(){var e=t.apply(this,arguments)||this;return e.pipes=new Map,e}return xd(e,t),e.prototype.visitPipe=function(t,e){return this.pipes.set(t.name,t),t.exp.visit(this),this.visitAll(t.args,e),null},e}(zv),d_="select",v_="ng-content",y_="link",m_="rel",g_="href",__="stylesheet",b_="style",w_="script",E_="ngNonBindable",C_="ngProjectAs",x_={};x_.NG_CONTENT=0,x_.STYLE=1,x_.STYLESHEET=2,x_.SCRIPT=3,x_.OTHER=4,x_[x_.NG_CONTENT]="NG_CONTENT",x_[x_.STYLE]="STYLE",x_[x_.STYLESHEET]="STYLESHEET",x_[x_.SCRIPT]="SCRIPT",x_[x_.OTHER]="OTHER";var S_=function(){function t(t,e,n,r,i){this.type=t,this.selectAttr=e,this.hrefAttr=n,this.nonBindable=r,this.projectAs=i}return t}(),T_=/^(?:(?:(?:(bind-)|(let-)|(ref-|#)|(on-)|(bindon-)|(@))(.+))|\[\(([^\)]+)\)\]|\[([^\]]+)\]|\(([^\)]+)\))$/,A_=1,P_=2,k_=3,M_=4,O_=5,N_=6,I_=7,R_=8,D_=9,L_=10,F_="ng-template",V_="template",j_="template",H_="*",U_="class",B_=Gd.parse("*")[0],z_="The <template> element is deprecated. Use <ng-template> instead",q_="The template attribute is deprecated. Use an ng-template element instead.",W_={},K_=new Jp("TemplateTransforms"),Q_=function(t){function e(e,n,r){return t.call(this,n,e,r)||this}return xd(e,t),e}(pm),G_=function(){function t(t,e,n){this.templateAst=t,this.usedPipes=e,this.errors=n}return t}(),X_=function(){function t(t,e,n,r,i,o){this._config=t,this._exprParser=e,this._schemaRegistry=n,this._htmlParser=r,this._console=i,this.transforms=o}return t.prototype.parse=function(t,e,n,r,i,o){var s=this.tryParse(t,e,n,r,i,o),a=s.errors.filter(function(t){return t.level===cm.WARNING}).filter(us([q_,z_])),u=s.errors.filter(function(t){return t.level===cm.ERROR});if(a.length>0&&this._console.warn("Template parse warnings:\n"+a.join("\n")),u.length>0){var c=u.join("\n");throw Xr("Template parse errors:\n"+c)}return{template:s.templateAst,pipes:s.usedPipes}},t.prototype.tryParse=function(t,e,n,r,i,o){return this.tryParseHtml(this.expandHtml(this._htmlParser.parse(e,o,!0,this.getInterpolationConfig(t))),t,e,n,r,i,o)},t.prototype.tryParseHtml=function(t,e,n,r,i,o){var s,a=t.errors,u=[];if(t.rootNodes.length>0){var c=hs(r),p=hs(i),l=new Yg(e),h=void 0;e.template&&e.template.interpolation&&(h={start:e.template.interpolation[0],end:e.template.interpolation[1]});var f=new h_(this._exprParser,h,this._schemaRegistry,p,a),d=new Z_(this._config,l,c,f,this._schemaRegistry,o,a);s=Hi(d,t.rootNodes,tb),a.push.apply(a,l.errors),u.push.apply(u,f.getUsedPipes())}else s=[];return this._assertNoReferenceDuplicationOnTemplate(s,a),a.length>0?new G_(s,u,a):(this.transforms&&this.transforms.forEach(function(t){s=jr(t,s)}),new G_(s,u,a))},t.prototype.expandHtml=function(t,e){void 0===e&&(e=!1);var n=t.errors;if(0==n.length||e){var r=Ko(t.rootNodes);n.push.apply(n,r.errors),t=new Sm(r.nodes,n)}return t},t.prototype.getInterpolationConfig=function(t){return t.template?Qy.fromArray(t.template.interpolation):void 0},t.prototype._assertNoReferenceDuplicationOnTemplate=function(t,e){var n=[];t.filter(function(t){return!!t.references}).forEach(function(t){return t.references.forEach(function(t){var r=t.name;if(n.indexOf(r)<0)n.push(r);else{var i=new Q_('Reference "#'+r+'" is defined several times',t.sourceSpan,cm.ERROR);e.push(i)}})})},t}();X_.decorators=[{type:bi}],X_.ctorParameters=function(){return[{type:mv},{type:rm},{type:t_},{type:zg},{type:ph},{type:Array,decorators:[{type:Sl},{type:xl,args:[K_]}]}]};var Z_=function(){function t(t,e,n,r,i,o,s){var a=this;this.config=t,this.providerViewContext=e,this._bindingParser=r,this._schemaRegistry=i,this._schemas=o,this._targetErrors=s,this.selectorMatcher=new Xd,this.directivesIndex=new Map,this.ngContentCount=0,this.contentQueryStartId=e.component.viewQueries.length+1,n.forEach(function(t,e){var n=Gd.parse(t.selector);a.selectorMatcher.addSelectables(n,t),a.directivesIndex.set(t,e)})}return t.prototype.visitExpansion=function(){return null},t.prototype.visitExpansionCase=function(){return null},t.prototype.visitText=function(t,e){var n=e.findNgContentIndex(B_),r=this._bindingParser.parseInterpolation(t.value,t.sourceSpan);return r?new Td(r,n,t.sourceSpan):new Sd(t.value,n,t.sourceSpan)},t.prototype.visitAttribute=function(t){return new Ad(t.name,t.value,t.sourceSpan)},t.prototype.visitComment=function(){return null},t.prototype.visitElement=function(t,e){var n=this,r=this.contentQueryStartId,i=t.name,o=ss(t);if(o.type===x_.SCRIPT||o.type===x_.STYLE)return null;if(o.type===x_.STYLESHEET&&ns(o.hrefAttr))return null;var s=[],a=[],u=[],c=[],p=[],l=[],h=[],f=[],d=!1,v=[],y=ds(t,this.config.enableLegacyTemplate,function(t,e){return n._reportError(t,e,cm.WARNING)});t.attrs.forEach(function(t){var e,r,i=n._parseAttr(y,t,s,a,p,u,c),o=n._normalizeAttributeName(t.name);n.config.enableLegacyTemplate&&o==j_?(n._reportError(q_,t.sourceSpan,cm.WARNING),e=t.value):o.startsWith(H_)&&(e=t.value,r=o.substring(H_.length)+":");var m=null!=e;m&&(d&&n._reportError("Can't have multiple template bindings on one element. Use only one attribute named 'template' or prefixed with *",t.sourceSpan),d=!0,n._bindingParser.parseInlineTemplateBinding(r,e,t.sourceSpan,h,l,f)),i||m||(v.push(n.visitAttribute(t,null)),s.push([t.name,t.value]))});var m=ps(i,s),g=this._parseDirectives(this.selectorMatcher,m),_=g.directives,b=g.matchElement,w=[],E=new Set,C=this._createDirectiveAsts(y,t.name,_,a,u,t.sourceSpan,w,E),x=this._createElementPropertyAsts(t.name,a,E),S=e.isTemplateElement||d,T=new $g(this.providerViewContext,e.providerContext,S,C,v,w,y,r,t.sourceSpan),A=Hi(o.nonBindable?eb:this,t.children,J_.create(y,C,y?e.providerContext:T));T.afterElement();var P,k=null!=o.projectAs?Gd.parse(o.projectAs)[0]:m,M=e.findNgContentIndex(k);if(o.type===x_.NG_CONTENT)t.children&&!t.children.every(ls)&&this._reportError("<ng-content> element cannot have content.",t.sourceSpan),P=new Vd(this.ngContentCount++,d?null:M,t.sourceSpan);else if(y)this._assertAllEventsPublishedByDirectives(C,p),this._assertNoComponentsNorElementBindingsOnTemplate(C,x,t.sourceSpan),P=new Id(v,p,w,c,T.transformedDirectiveAsts,T.transformProviders,T.transformedHasViewContainer,T.queryMatches,A,d?null:M,t.sourceSpan);else{this._assertElementExists(b,t),this._assertOnlyOneComponent(C,t.sourceSpan);var O=d?null:e.findNgContentIndex(k);P=new Nd(i,v,x,p,w,T.transformedDirectiveAsts,T.transformProviders,T.transformedHasViewContainer,T.queryMatches,A,d?null:O,t.sourceSpan,t.endSourceSpan)}if(d){var N=this.contentQueryStartId,I=ps(V_,h),R=this._parseDirectives(this.selectorMatcher,I).directives,D=new Set,L=this._createDirectiveAsts(!0,t.name,R,l,[],t.sourceSpan,[],D),F=this._createElementPropertyAsts(t.name,l,D);this._assertNoComponentsNorElementBindingsOnTemplate(L,F,t.sourceSpan);var V=new $g(this.providerViewContext,e.providerContext,e.isTemplateElement,L,[],[],!0,N,t.sourceSpan);V.afterElement(),P=new Id([],[],[],f,V.transformedDirectiveAsts,V.transformProviders,V.transformedHasViewContainer,V.queryMatches,[P],M,t.sourceSpan)}return P},t.prototype._parseAttr=function(t,e,n,r,i,o,s){var a=this._normalizeAttributeName(e.name),u=e.value,c=e.sourceSpan,p=a.match(T_),l=!1;if(null!==p)if(l=!0,null!=p[A_])this._bindingParser.parsePropertyBinding(p[I_],u,!1,c,n,r);else if(p[P_])if(t){var h=p[I_];this._parseVariable(h,u,c,s)}else this._reportError('"let-" is only supported on template elements.',c);else if(p[k_]){var h=p[I_];this._parseReference(h,u,c,o)}else p[M_]?this._bindingParser.parseEvent(p[I_],u,c,n,i):p[O_]?(this._bindingParser.parsePropertyBinding(p[I_],u,!1,c,n,r),this._parseAssignmentEvent(p[I_],u,c,n,i)):p[N_]?this._bindingParser.parseLiteralAttr(a,u,c,n,r):p[R_]?(this._bindingParser.parsePropertyBinding(p[R_],u,!1,c,n,r),this._parseAssignmentEvent(p[R_],u,c,n,i)):p[D_]?this._bindingParser.parsePropertyBinding(p[D_],u,!1,c,n,r):p[L_]&&this._bindingParser.parseEvent(p[L_],u,c,n,i);else l=this._bindingParser.parsePropertyInterpolation(a,u,c,n,r);return l||this._bindingParser.parseLiteralAttr(a,u,c,n,r),l},t.prototype._normalizeAttributeName=function(t){return/^data-/i.test(t)?t.substring(5):t},t.prototype._parseVariable=function(t,e,n,r){t.indexOf("-")>-1&&this._reportError('"-" is not allowed in variable names',n),r.push(new Od(t,e,n))},t.prototype._parseReference=function(t,e,n,r){t.indexOf("-")>-1&&this._reportError('"-" is not allowed in reference names',n),r.push(new $_(t,e,n))},t.prototype._parseAssignmentEvent=function(t,e,n,r,i){this._bindingParser.parseEvent(t+"Change",e+"=$event",n,r,i)},t.prototype._parseDirectives=function(t,e){var n=this,r=new Array(this.directivesIndex.size),i=!1;return t.match(e,function(t,e){r[n.directivesIndex.get(e)]=e,i=i||t.hasElementSelector()}),{directives:r.filter(function(t){return!!t}),matchElement:i}},t.prototype._createDirectiveAsts=function(t,e,n,r,i,o,s,a){var u=this,c=new Set,p=null,l=n.map(function(t){var n=new um(o.start,o.end,"Directive "+ti(t.type));t.isComponent&&(p=t);var l=[],h=u._bindingParser.createDirectiveHostPropertyAsts(t,e,n);h=u._checkPropertiesInSchema(e,h);var f=u._bindingParser.createDirectiveHostEventAsts(t,n);u._createDirectivePropertyAsts(t.inputs,r,l,a),i.forEach(function(e){(0===e.value.length&&t.isComponent||t.exportAs==e.value)&&(s.push(new Md(e.name,qo(t.type),e.sourceSpan)),c.add(e.name))});var d=u.contentQueryStartId;return u.contentQueryStartId+=t.queries.length,new Dd(t,l,h,f,d,n)});return i.forEach(function(e){if(e.value.length>0)c.has(e.name)||u._reportError('There is no directive with "exportAs" set to "'+e.value+'"',e.sourceSpan);else if(!p){var n=null;t&&(n=Wo(Wg.TemplateRef)),s.push(new Md(e.name,n,e.sourceSpan))}}),l},t.prototype._createDirectivePropertyAsts=function(t,e,n,r){if(t){var i=new Map;e.forEach(function(t){var e=i.get(t.name);(!e||e.isLiteral)&&i.set(t.name,t)}),Object.keys(t).forEach(function(e){var o=t[e],s=i.get(o);s&&(r.add(s.name),fs(s.expression)||n.push(new Rd(e,s.name,s.expression,s.sourceSpan)))})}},t.prototype._createElementPropertyAsts=function(t,e,n){var r=this,i=[];return e.forEach(function(e){e.isLiteral||n.has(e.name)||i.push(r._bindingParser.createElementPropertyAst(t,e))}),this._checkPropertiesInSchema(t,i)},t.prototype._findComponentDirectives=function(t){return t.filter(function(t){return t.directive.isComponent})},t.prototype._findComponentDirectiveNames=function(t){return this._findComponentDirectives(t).map(function(t){return ti(t.directive.type)})},t.prototype._assertOnlyOneComponent=function(t,e){var n=this._findComponentDirectiveNames(t);n.length>1&&this._reportError("More than one component matched on this element.\nMake sure that only one component's selector can match a given element.\nConflicting components: "+n.join(","),e)},t.prototype._assertElementExists=function(t,e){var n=e.name.replace(/^:xhtml:/,"");if(!t&&!this._schemaRegistry.hasElement(n,this._schemas)){var r="'"+n+"' is not a known element:\n";r+="1. If '"+n+"' is an Angular component, then verify that it is part of this module.\n",r+=n.indexOf("-")>-1?"2. If '"+n+"' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.":"2. To allow any element add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component.",this._reportError(r,e.sourceSpan)}},t.prototype._assertNoComponentsNorElementBindingsOnTemplate=function(t,e,n){var r=this,i=this._findComponentDirectiveNames(t);i.length>0&&this._reportError("Components on an embedded template: "+i.join(","),n),e.forEach(function(t){r._reportError("Property binding "+t.name+' not used by any directive on an embedded template. Make sure that the property name is spelled correctly and all directives are listed in the "@NgModule.declarations".',n)})},t.prototype._assertAllEventsPublishedByDirectives=function(t,e){var n=this,r=new Set;t.forEach(function(t){Object.keys(t.directive.outputs).forEach(function(e){var n=t.directive.outputs[e];r.add(n)})}),e.forEach(function(t){null==t.target&&r.has(t.name)||n._reportError("Event binding "+t.fullName+' not emitted by any directive on an embedded template. Make sure that the event name is spelled correctly and all directives are listed in the "@NgModule.declarations".',t.sourceSpan)})},t.prototype._checkPropertiesInSchema=function(t,e){var n=this;return e.filter(function(e){if(e.type===jd.Property&&!n._schemaRegistry.hasProperty(t,e.name,n._schemas)){var r="Can't bind to '"+e.name+"' since it isn't a known property of '"+t+"'.";t.startsWith("ng-")?r+="\n1. If '"+e.name+"' is an Angular directive, then add 'CommonModule' to the '@NgModule.imports' of this component.\n2. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component.":t.indexOf("-")>-1&&(r+="\n1. If '"+t+"' is an Angular component and it has '"+e.name+"' input, then verify that it is part of this module."+("\n2. If '"+t+"' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.")+"\n3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component."),n._reportError(r,e.sourceSpan)}return!fs(e.value)})},t.prototype._reportError=function(t,e,n){void 0===n&&(n=cm.ERROR),this._targetErrors.push(new pm(e,t,n))},t}(),Y_=function(){function t(){}return t.prototype.visitElement=function(t,e){var n=ss(t);if(n.type===x_.SCRIPT||n.type===x_.STYLE||n.type===x_.STYLESHEET)return null;var r=t.attrs.map(function(t){return[t.name,t.value]}),i=ps(t.name,r),o=e.findNgContentIndex(i),s=Hi(this,t.children,tb);return new Nd(t.name,Hi(this,t.attrs),[],[],[],[],[],!1,[],s,o,t.sourceSpan,t.endSourceSpan)},t.prototype.visitComment=function(){return null},t.prototype.visitAttribute=function(t){return new Ad(t.name,t.value,t.sourceSpan)},t.prototype.visitText=function(t,e){var n=e.findNgContentIndex(B_);return new Sd(t.value,n,t.sourceSpan)},t.prototype.visitExpansion=function(t){return t},t.prototype.visitExpansionCase=function(t){return t},t}(),$_=function(){function t(t,e,n){this.name=t,this.value=e,this.sourceSpan=n}return t}(),J_=function(){function t(t,e,n,r){this.isTemplateElement=t,this._ngContentIndexMatcher=e,this._wildcardNgContentIndex=n,this.providerContext=r}return t.create=function(e,n,r){var i=new Xd,o=null,s=n.find(function(t){return t.directive.isComponent});if(s)for(var a=s.directive.template.ngContentSelectors,u=0;u<a.length;u++){var c=a[u];"*"===c?o=u:i.addSelectables(Gd.parse(a[u]),u)}return new t(e,i,o,r)},t.prototype.findNgContentIndex=function(t){var e=[];return this._ngContentIndexMatcher.match(t,function(t,n){e.push(n)}),e.sort(),null!=this._wildcardNgContentIndex&&e.push(this._wildcardNgContentIndex),e.length>0?e[0]:null},t}(),tb=new J_(!0,new Xd,null,null),eb=new Y_,nb=function(){function t(){}return t.prototype.get=function(){return null},t}(),rb={provide:ch,useValue:"/"},ib=function(){function t(t){void 0===t&&(t=null),this._packagePrefix=t}return t.prototype.resolve=function(t,e){var n=e;null!=t&&t.length>0&&(n=bs(t,n));var r=ms(n),i=this._packagePrefix;if(null!=i&&null!=r&&"package"==r[sb.Scheme]){var o=r[sb.Path];return i=i.replace(/\/+$/,""),o=o.replace(/^\/+/,""),i+"/"+o}return n},t}();ib.decorators=[{type:bi}],ib.ctorParameters=function(){return[{type:void 0,decorators:[{type:xl,args:[ch]}]}]};var ob=new RegExp("^(?:([^:/?#.]+):)?(?://(?:([^/?#]*)@)?([\\w\\d\\-\\u0100-\\uffff.%]*)(?::([0-9]+))?)?([^?#]+)?(?:\\?([^#]*))?(?:#(.*))?$"),sb={};sb.Scheme=1,sb.UserInfo=2,sb.Domain=3,sb.Port=4,sb.Path=5,sb.QueryData=6,sb.Fragment=7,sb[sb.Scheme]="Scheme",sb[sb.UserInfo]="UserInfo",sb[sb.Domain]="Domain",sb[sb.Port]="Port",sb[sb.Path]="Path",sb[sb.QueryData]="QueryData",sb[sb.Fragment]="Fragment";var ab=function(){function t(t,e,n,r){this._resourceLoader=t,this._urlResolver=e,this._htmlParser=n,this._config=r,this._resourceLoaderCache=new Map}return t.prototype.clearCache=function(){this._resourceLoaderCache.clear()},t.prototype.clearCacheFor=function(t){var e=this;t.isComponent&&(this._resourceLoaderCache.delete(t.template.templateUrl),t.template.externalStylesheets.forEach(function(t){e._resourceLoaderCache.delete(t.moduleUrl)}))},t.prototype._fetch=function(t){var e=this._resourceLoaderCache.get(t);return e||(e=this._resourceLoader.get(t),this._resourceLoaderCache.set(t,e)),e},t.prototype.normalizeTemplate=function(t){var e,n=this,r=null;if(null!=t.template){if(null!=t.templateUrl)throw Xr("'"+_(t.componentType)+"' component cannot define both template and templateUrl");if("string"!=typeof t.template)throw Xr("The template specified for component "+_(t.componentType)+" is not a string");r=this.normalizeTemplateSync(t),e=Promise.resolve(r)}else{if(!t.templateUrl)throw Xr("No template specified for component "+_(t.componentType));if("string"!=typeof t.templateUrl)throw Xr("The templateUrl specified for component "+_(t.componentType)+" is not a string");e=this.normalizeTemplateAsync(t)}return r&&0===r.styleUrls.length?new ev(r):new ev(null,e.then(function(t){return n.normalizeExternalStylesheets(t)}))},t.prototype.normalizeTemplateSync=function(t){return this.normalizeLoadedTemplate(t,t.template,t.moduleUrl)},t.prototype.normalizeTemplateAsync=function(t){var e=this,n=this._urlResolver.resolve(t.moduleUrl,t.templateUrl);return this._fetch(n).then(function(r){return e.normalizeLoadedTemplate(t,r,n)})},t.prototype.normalizeLoadedTemplate=function(t,e,n){var r=!!t.template,i=Qy.fromArray(t.interpolation),o=this._htmlParser.parse(e,hi({reference:t.ngModuleType},{type:{reference:t.componentType}},{isInline:r,templateUrl:n}),!0,i);if(o.errors.length>0){var s=o.errors.join("\n");throw Xr("Template parse errors:\n"+s)}var a=this.normalizeStylesheet(new pv({styles:t.styles,styleUrls:t.styleUrls,moduleUrl:t.moduleUrl})),u=new ub;Hi(u,o.rootNodes);
var c=this.normalizeStylesheet(new pv({styles:u.styles,styleUrls:u.styleUrls,moduleUrl:n})),p=t.encapsulation;null==p&&(p=this._config.defaultEncapsulation);var l=a.styles.concat(c.styles),h=a.styleUrls.concat(c.styleUrls);return p===wl.Emulated&&0===l.length&&0===h.length&&(p=wl.None),new lv({encapsulation:p,template:e,templateUrl:n,styles:l,styleUrls:h,ngContentSelectors:u.ngContentSelectors,animations:t.animations,interpolation:t.interpolation,isInline:r})},t.prototype.normalizeExternalStylesheets=function(t){return this._loadMissingExternalStylesheets(t.styleUrls).then(function(e){return new lv({encapsulation:t.encapsulation,template:t.template,templateUrl:t.templateUrl,styles:t.styles,styleUrls:t.styleUrls,externalStylesheets:e,ngContentSelectors:t.ngContentSelectors,animations:t.animations,interpolation:t.interpolation,isInline:t.isInline})})},t.prototype._loadMissingExternalStylesheets=function(t,e){var n=this;return void 0===e&&(e=new Map),Promise.all(t.filter(function(t){return!e.has(t)}).map(function(t){return n._fetch(t).then(function(r){var i=n.normalizeStylesheet(new pv({styles:[r],moduleUrl:t}));return e.set(t,i),n._loadMissingExternalStylesheets(i.styleUrls,e)})})).then(function(){return Array.from(e.values())})},t.prototype.normalizeStylesheet=function(t){var e=this,n=t.styleUrls.filter(ns).map(function(n){return e._urlResolver.resolve(t.moduleUrl,n)}),r=t.styles.map(function(r){var i=rs(e._urlResolver,t.moduleUrl,r);return n.push.apply(n,i.styleUrls),i.style});return new pv({styles:r,styleUrls:n,moduleUrl:t.moduleUrl})},t}();ab.decorators=[{type:bi}],ab.ctorParameters=function(){return[{type:nb},{type:ib},{type:Hg},{type:mv}]};var ub=function(){function t(){this.ngContentSelectors=[],this.styles=[],this.styleUrls=[],this.ngNonBindableStackCount=0}return t.prototype.visitElement=function(t){var e=ss(t);switch(e.type){case x_.NG_CONTENT:0===this.ngNonBindableStackCount&&this.ngContentSelectors.push(e.selectAttr);break;case x_.STYLE:var n="";t.children.forEach(function(t){t instanceof lm&&(n+=t.value)}),this.styles.push(n);break;case x_.STYLESHEET:this.styleUrls.push(e.hrefAttr)}return e.nonBindable&&this.ngNonBindableStackCount++,Hi(this,t.children),e.nonBindable&&this.ngNonBindableStackCount--,null},t.prototype.visitExpansion=function(t){Hi(this,t.cases)},t.prototype.visitExpansionCase=function(t){Hi(this,t.expression)},t.prototype.visitComment=function(){return null},t.prototype.visitAttribute=function(){return null},t.prototype.visitText=function(){return null},t}(),cb=void 0||Object.assign||function(t){for(var e,n=1,r=arguments.length;r>n;n++){e=arguments[n];for(var i in e)Object.prototype.hasOwnProperty.call(e,i)&&(t[i]=e[i])}return t},pb=function(){function t(t){void 0===t&&(t=Ql),this._reflector=t}return t.prototype.isDirective=function(t){var e=this._reflector.annotations(P(t));return e&&e.some(ws)},t.prototype.resolve=function(t,e){void 0===e&&(e=!0);var n=this._reflector.annotations(P(t));if(n){var r=Es(n,ws);if(r){var i=this._reflector.propMetadata(t);return this._mergeWithPropertyMetadata(r,i,t)}}if(e)throw new Error("No Directive annotation found on "+_(t));return null},t.prototype._mergeWithPropertyMetadata=function(t,e,n){var r=[],i=[],o={},s={};return Object.keys(e).forEach(function(t){var n=Es(e[t],function(t){return t instanceof dl});n&&r.push(n.bindingPropertyName?t+": "+n.bindingPropertyName:t);var a=Es(e[t],function(t){return t instanceof vl});a&&i.push(a.bindingPropertyName?t+": "+a.bindingPropertyName:t);var u=e[t].filter(function(t){return t&&t instanceof yl});u.forEach(function(e){if(e.hostPropertyName){var n=e.hostPropertyName[0];if("("===n)throw new Error("@HostBinding can not bind to events. Use @HostListener instead.");if("["===n)throw new Error("@HostBinding parameter should be a property name, 'class.<name>', or 'attr.<name>'.");o["["+e.hostPropertyName+"]"]=t}else o["["+t+"]"]=t});var c=e[t].filter(function(t){return t&&t instanceof ml});c.forEach(function(e){var n=e.args||[];o["("+e.eventName+")"]=t+"("+n.join(",")+")"});var p=Es(e[t],function(t){return t instanceof cl});p&&(s[t]=p)}),this._merge(t,r,i,o,s,n)},t.prototype._extractPublicName=function(t){return Wr(t,[null,t])[1].trim()},t.prototype._dedupeBindings=function(t){for(var e=new Set,n=[],r=t.length-1;r>=0;r--){var i=t[r],o=this._extractPublicName(i);e.has(o)||(e.add(o),n.push(i))}return n.reverse()},t.prototype._merge=function(t,e,n,r,i){var o=this._dedupeBindings(t.inputs?t.inputs.concat(e):e),s=this._dedupeBindings(t.outputs?t.outputs.concat(n):n),a=t.host?cb({},t.host,r):r,u=t.queries?cb({},t.queries,i):i;return t instanceof hl?new hl({selector:t.selector,inputs:o,outputs:s,host:a,exportAs:t.exportAs,moduleId:t.moduleId,queries:u,changeDetection:t.changeDetection,providers:t.providers,viewProviders:t.viewProviders,entryComponents:t.entryComponents,template:t.template,templateUrl:t.templateUrl,styles:t.styles,styleUrls:t.styleUrls,encapsulation:t.encapsulation,animations:t.animations,interpolation:t.interpolation}):new ll({selector:t.selector,inputs:o,outputs:s,host:a,exportAs:t.exportAs,queries:u,providers:t.providers})},t}();pb.decorators=[{type:bi}],pb.ctorParameters=function(){return[{type:Wl}]};var lb=function(){function t(t){void 0===t&&(t=Ql),this._reflector=t}return t.prototype.isNgModule=function(t){return this._reflector.annotations(t).some(As)},t.prototype.resolve=function(t,e){void 0===e&&(e=!0);var n=Es(this._reflector.annotations(t),As);if(n)return n;if(e)throw new Error("No NgModule metadata found for '"+_(t)+"'.");return null},t}();lb.decorators=[{type:bi}],lb.ctorParameters=function(){return[{type:Wl}]};var hb=function(){function t(t){void 0===t&&(t=Ql),this._reflector=t}return t.prototype.isPipe=function(t){var e=this._reflector.annotations(P(t));return e&&e.some(Ps)},t.prototype.resolve=function(t,e){void 0===e&&(e=!0);var n=this._reflector.annotations(P(t));if(n){var r=Es(n,Ps);if(r)return r}if(e)throw new Error("No Pipe decorator found on "+_(t));return null},t}();hb.decorators=[{type:bi}],hb.ctorParameters=function(){return[{type:Wl}]};var fb=function(){function t(){}return t.prototype.isLibraryFile=function(){return!1},t.prototype.getLibraryFileName=function(){return null},t.prototype.resolveSummary=function(){return null},t.prototype.getSymbolsOf=function(){return[]},t.prototype.getImportAs=function(t){return t},t}();fb.decorators=[{type:bi}],fb.ctorParameters=function(){return[]};var db=new Jp("ErrorCollector"),vb=function(){function t(t,e,n,r,i,o,s,a,u,c,p){void 0===c&&(c=Ql),this._config=t,this._ngModuleResolver=e,this._directiveResolver=n,this._pipeResolver=r,this._summaryResolver=i,this._schemaRegistry=o,this._directiveNormalizer=s,this._console=a,this._staticSymbolCache=u,this._reflector=c,this._errorCollector=p,this._nonNormalizedDirectiveCache=new Map,this._directiveCache=new Map,this._summaryCache=new Map,this._pipeCache=new Map,this._ngModuleCache=new Map,this._ngModuleOfTypes=new Map}return t.prototype.clearCacheFor=function(t){var e=this._directiveCache.get(t);this._directiveCache.delete(t),this._nonNormalizedDirectiveCache.delete(t),this._summaryCache.delete(t),this._pipeCache.delete(t),this._ngModuleOfTypes.delete(t),this._ngModuleCache.clear(),e&&this._directiveNormalizer.clearCacheFor(e)},t.prototype.clearCache=function(){this._directiveCache.clear(),this._nonNormalizedDirectiveCache.clear(),this._summaryCache.clear(),this._pipeCache.clear(),this._ngModuleCache.clear(),this._ngModuleOfTypes.clear(),this._directiveNormalizer.clearCache()},t.prototype._createProxyClass=function(t,e){var n=null,r=function(){if(!n)throw new Error("Illegal state: Class "+e+" for type "+_(t)+" is not compiled yet!");return n.apply(this,arguments)};return r.setDelegate=function(t){n=t,r.prototype=t.prototype},r.overriddenName=e,r},t.prototype.getGeneratedClass=function(t,e){return t instanceof Hd?this._staticSymbolCache.get(Cs(t.filePath),e):this._createProxyClass(t,e)},t.prototype.getComponentViewClass=function(t){return this.getGeneratedClass(t,ni(t,0))},t.prototype.getHostComponentViewClass=function(t){return this.getGeneratedClass(t,ii(t))},t.prototype.getHostComponentType=function(t){var e=ti({reference:t})+"_Host";if(t instanceof Hd)return this._staticSymbolCache.get(t.filePath,e);var n=function(){};return n.overriddenName=e,n},t.prototype.getRendererType=function(t){return t instanceof Hd?this._staticSymbolCache.get(Cs(t.filePath),ri(t)):{}},t.prototype.getComponentFactory=function(t,e,n,r){if(e instanceof Hd)return this._staticSymbolCache.get(Cs(e.filePath),oi(e));var i=this.getHostComponentViewClass(e);return Qe(t,e,i,n,r,[])},t.prototype.initComponentFactory=function(t,e){t instanceof Hd||(n=t.ngContentSelectors).push.apply(n,e);var n},t.prototype._loadSummary=function(t,e){var n=this._summaryCache.get(t);if(!n){var r=this._summaryResolver.resolveSummary(t);n=r?r.type:null,this._summaryCache.set(t,n)}return n&&n.summaryKind===e?n:null},t.prototype._loadDirectiveMetadata=function(t,e,n){var r=this;if(!this._directiveCache.has(e)){e=P(e);var i=this.getNonNormalizedDirectiveMetadata(e),o=i.annotation,s=i.metadata,a=function(t){var n=new hv({type:s.type,isComponent:s.isComponent,selector:s.selector,exportAs:s.exportAs,changeDetection:s.changeDetection,inputs:s.inputs,outputs:s.outputs,hostListeners:s.hostListeners,hostProperties:s.hostProperties,hostAttributes:s.hostAttributes,providers:s.providers,viewProviders:s.viewProviders,queries:s.queries,viewQueries:s.viewQueries,entryComponents:s.entryComponents,componentViewType:s.componentViewType,rendererType:s.rendererType,componentFactory:s.componentFactory,template:t});return t&&r.initComponentFactory(s.componentFactory,t.ngContentSelectors),r._directiveCache.set(e,n),r._summaryCache.set(e,n.toSummary()),n};if(s.isComponent){var u=this._directiveNormalizer.normalizeTemplate({ngModuleType:t,componentType:e,moduleUrl:Is(this._reflector,e,o),encapsulation:s.template.encapsulation,template:s.template.template,templateUrl:s.template.templateUrl,styles:s.template.styles,styleUrls:s.template.styleUrls,animations:s.template.animations,interpolation:s.template.interpolation});return u.syncResult?(a(u.syncResult),null):n?(this._reportError(Ls(e),e),null):u.asyncResult.then(a)}return a(null),null}},t.prototype.getNonNormalizedDirectiveMetadata=function(t){var e=this;if(t=P(t),!t)return null;var n=this._nonNormalizedDirectiveCache.get(t);if(n)return n;var r=this._directiveResolver.resolve(t,!1);if(!r)return null;var i;if(r instanceof hl){wi("styles",r.styles),wi("styleUrls",r.styleUrls),Ei("interpolation",r.interpolation);var o=r.animations;i=new lv({encapsulation:r.encapsulation,template:r.template,templateUrl:r.templateUrl,styles:r.styles,styleUrls:r.styleUrls,animations:o,interpolation:r.interpolation,isInline:!!r.template})}var s=null,a=[],u=[],c=r.selector;r instanceof hl?(s=r.changeDetection,r.viewProviders&&(a=this._getProvidersMetadata(r.viewProviders,u,'viewProviders for "'+Ds(t)+'"',[],t)),r.entryComponents&&(u=Os(r.entryComponents).map(function(t){return e._getEntryComponentMetadata(t)}).concat(u)),c||(c=this._schemaRegistry.getDefaultComponentElementName())):c||(this._reportError(Xr("Directive "+Ds(t)+" has no selector, please add it!"),t),c="error");var p=[];null!=r.providers&&(p=this._getProvidersMetadata(r.providers,u,'providers for "'+Ds(t)+'"',[],t));var l=[],h=[];null!=r.queries&&(l=this._getQueriesMetadata(r.queries,!1,t),h=this._getQueriesMetadata(r.queries,!0,t));var f=hv.create({selector:c,exportAs:r.exportAs,isComponent:!!i,type:this._getTypeMetadata(t),template:i,changeDetection:s,inputs:r.inputs,outputs:r.outputs,host:r.host,providers:p,viewProviders:a,queries:l,viewQueries:h,entryComponents:u,componentViewType:i?this.getComponentViewClass(t):void 0,rendererType:i?this.getRendererType(t):void 0,componentFactory:void 0});return i&&(f.componentFactory=this.getComponentFactory(c,t,f.inputs,f.outputs)),n={metadata:f,annotation:r},this._nonNormalizedDirectiveCache.set(t,n),n},t.prototype.getDirectiveMetadata=function(t){var e=this._directiveCache.get(t);return e||this._reportError(Xr("Illegal state: getDirectiveMetadata can only be called after loadNgModuleDirectiveAndPipeMetadata for a module that declares it. Directive "+Ds(t)+"."),t),e},t.prototype.getDirectiveSummary=function(t){var e=this._loadSummary(t,cv.Directive);return e||this._reportError(Xr("Illegal state: Could not load the summary for directive "+Ds(t)+"."),t),e},t.prototype.isDirective=function(t){return this._directiveResolver.isDirective(t)},t.prototype.isPipe=function(t){return this._pipeResolver.isPipe(t)},t.prototype.getNgModuleSummary=function(t){var e=this._loadSummary(t,cv.NgModule);if(!e){var n=this.getNgModuleMetadata(t,!1);e=n?n.toSummary():null,e&&this._summaryCache.set(t,e)}return e},t.prototype.loadNgModuleDirectiveAndPipeMetadata=function(t,e,n){var r=this;void 0===n&&(n=!0);var i=this.getNgModuleMetadata(t,n),o=[];return i&&(i.declaredDirectives.forEach(function(n){var i=r._loadDirectiveMetadata(t,n.reference,e);i&&o.push(i)}),i.declaredPipes.forEach(function(t){return r._loadPipeMetadata(t.reference)})),Promise.all(o)},t.prototype.getNgModuleMetadata=function(t,e){var n=this;void 0===e&&(e=!0),t=P(t);var r=this._ngModuleCache.get(t);if(r)return r;var i=this._ngModuleResolver.resolve(t,e);if(!i)return null;var o=[],s=[],a=[],u=[],c=[],p=[],l=[],h=[],f=[];i.imports&&Os(i.imports).forEach(function(e){var r;if(Ns(e))r=e;else if(e&&e.ngModule){var i=e;r=i.ngModule,i.providers&&p.push.apply(p,n._getProvidersMetadata(i.providers,l,"provider for the NgModule '"+Ds(r)+"'",[],e))}if(!r)return void n._reportError(Xr("Unexpected value '"+Ds(e)+"' imported by the module '"+Ds(t)+"'"),t);if(!n._checkSelfImport(t,r)){var o=n.getNgModuleSummary(r);return o?void u.push(o):void n._reportError(Xr("Unexpected "+n._getTypeDescriptor(e)+" '"+Ds(e)+"' imported by the module '"+Ds(t)+"'. Please add a @NgModule annotation."),t)}}),i.exports&&Os(i.exports).forEach(function(e){if(!Ns(e))return void n._reportError(Xr("Unexpected value '"+Ds(e)+"' exported by the module '"+Ds(t)+"'"),t);var r=n.getNgModuleSummary(e);r?c.push(r):s.push(n._getIdentifierMetadata(e))});var d=this._getTransitiveNgModuleMetadata(u,c);i.declarations&&Os(i.declarations).forEach(function(e){if(!Ns(e))return void n._reportError(Xr("Unexpected value '"+Ds(e)+"' declared by the module '"+Ds(t)+"'"),t);var r=n._getIdentifierMetadata(e);if(n._directiveResolver.isDirective(e))d.addDirective(r),o.push(r),n._addTypeToModule(e,t);else{if(!n._pipeResolver.isPipe(e))return void n._reportError(Xr("Unexpected "+n._getTypeDescriptor(e)+" '"+Ds(e)+"' declared by the module '"+Ds(t)+"'. Please add a @Pipe/@Directive/@Component annotation."),t);d.addPipe(r),d.pipes.push(r),a.push(r),n._addTypeToModule(e,t)}});var v=[],y=[];return s.forEach(function(e){if(d.directivesSet.has(e.reference))v.push(e),d.addExportedDirective(e);else{if(!d.pipesSet.has(e.reference))return void n._reportError(Xr("Can't export "+n._getTypeDescriptor(e.reference)+" "+Ds(e.reference)+" from "+Ds(t)+" as it was neither declared nor imported!"),t);y.push(e),d.addExportedPipe(e)}}),i.providers&&p.push.apply(p,this._getProvidersMetadata(i.providers,l,"provider for the NgModule '"+Ds(t)+"'",[],t)),i.entryComponents&&l.push.apply(l,Os(i.entryComponents).map(function(t){return n._getEntryComponentMetadata(t)})),i.bootstrap&&Os(i.bootstrap).forEach(function(e){return Ns(e)?void h.push(n._getIdentifierMetadata(e)):void n._reportError(Xr("Unexpected value '"+Ds(e)+"' used in the bootstrap property of module '"+Ds(t)+"'"),t)}),l.push.apply(l,h.map(function(t){return n._getEntryComponentMetadata(t.reference)})),i.schemas&&f.push.apply(f,Os(i.schemas)),r=new dv({type:this._getTypeMetadata(t),providers:p,entryComponents:l,bootstrapComponents:h,schemas:f,declaredDirectives:o,exportedDirectives:v,declaredPipes:a,exportedPipes:y,importedModules:u,exportedModules:c,transitiveModule:d,id:i.id}),l.forEach(function(t){return d.addEntryComponent(t)}),p.forEach(function(t){return d.addProvider(t,r.type)}),d.addModule(r.type),this._ngModuleCache.set(t,r),r},t.prototype._checkSelfImport=function(t,e){return t===e?(this._reportError(Xr("'"+Ds(t)+"' module can't import itself"),t),!0):!1},t.prototype._getTypeDescriptor=function(t){return this._directiveResolver.isDirective(t)?"directive":this._pipeResolver.isPipe(t)?"pipe":this._ngModuleResolver.isNgModule(t)?"module":t.provide?"provider":"value"},t.prototype._addTypeToModule=function(t,e){var n=this._ngModuleOfTypes.get(t);return n&&n!==e?void this._reportError(Xr("Type "+Ds(t)+" is part of the declarations of 2 modules: "+Ds(n)+" and "+Ds(e)+"! "+("Please consider moving "+Ds(t)+" to a higher module that imports "+Ds(n)+" and "+Ds(e)+". ")+("You can also create a new NgModule that exports and includes "+Ds(t)+" then import that NgModule in "+Ds(n)+" and "+Ds(e)+".")),e):void this._ngModuleOfTypes.set(t,e)},t.prototype._getTransitiveNgModuleMetadata=function(t,e){var n=new vv,r=new Map;return t.concat(e).forEach(function(t){t.modules.forEach(function(t){return n.addModule(t)}),t.entryComponents.forEach(function(t){return n.addEntryComponent(t)});var e=new Set;t.providers.forEach(function(t){var i=ai(t.provider.token),o=r.get(i);o||(o=new Set,r.set(i,o));var s=t.module.reference;(e.has(i)||!o.has(s))&&(o.add(s),e.add(i),n.addProvider(t.provider,t.module))})}),e.forEach(function(t){t.exportedDirectives.forEach(function(t){return n.addExportedDirective(t)}),t.exportedPipes.forEach(function(t){return n.addExportedPipe(t)})}),t.forEach(function(t){t.exportedDirectives.forEach(function(t){return n.addDirective(t)}),t.exportedPipes.forEach(function(t){return n.addPipe(t)})}),n},t.prototype._getIdentifierMetadata=function(t){return t=P(t),{reference:t}},t.prototype.isInjectable=function(t){var e=this._reflector.annotations(t);return e.some(function(t){return t.constructor===Tl})},t.prototype.getInjectableSummary=function(t){return{summaryKind:cv.Injectable,type:this._getTypeMetadata(t,null,!1)}},t.prototype._getInjectableMetadata=function(t,e){void 0===e&&(e=null);var n=this._loadSummary(t,cv.Injectable);return n?n.type:this._getTypeMetadata(t,e)},t.prototype._getTypeMetadata=function(t,e,n){void 0===e&&(e=null),void 0===n&&(n=!0);var r=this._getIdentifierMetadata(t);return{reference:r.reference,diDeps:this._getDependenciesMetadata(r.reference,e,n),lifecycleHooks:Cd.filter(function(t){return Ss(t,r.reference)})}},t.prototype._getFactoryMetadata=function(t,e){return void 0===e&&(e=null),t=P(t),{reference:t,diDeps:this._getDependenciesMetadata(t,e)}},t.prototype.getPipeMetadata=function(t){var e=this._pipeCache.get(t);return e||this._reportError(Xr("Illegal state: getPipeMetadata can only be called after loadNgModuleDirectiveAndPipeMetadata for a module that declares it. Pipe "+Ds(t)+"."),t),e},t.prototype.getPipeSummary=function(t){var e=this._loadSummary(t,cv.Pipe);return e||this._reportError(Xr("Illegal state: Could not load the summary for pipe "+Ds(t)+"."),t),e},t.prototype.getOrLoadPipeMetadata=function(t){var e=this._pipeCache.get(t);return e||(e=this._loadPipeMetadata(t)),e},t.prototype._loadPipeMetadata=function(t){t=P(t);var e=this._pipeResolver.resolve(t),n=new fv({type:this._getTypeMetadata(t),name:e.name,pure:e.pure});return this._pipeCache.set(t,n),this._summaryCache.set(t,n.toSummary()),n},t.prototype._getDependenciesMetadata=function(t,e,n){var r=this;void 0===n&&(n=!0);var i=!1,o=e||this._reflector.parameters(t)||[],s=o.map(function(t){var e=!1,n=!1,o=!1,s=!1,a=!1,u=null;return Array.isArray(t)?t.forEach(function(t){t instanceof kl?n=!0:t instanceof Al?o=!0:t instanceof Pl?s=!0:t instanceof Sl?a=!0:t instanceof ul?(e=!0,u=t.attributeName):t instanceof xl?u=t.token:t instanceof Jp?u=t:Ns(t)&&null==u&&(u=t)}):u=t,null==u?(i=!0,null):{isAttribute:e,isHost:n,isSelf:o,isSkipSelf:s,isOptional:a,token:r._getTokenMetadata(u)}});if(i){var a=s.map(function(t){return t?Ds(t.token):"?"}).join(", "),u="Can't resolve all parameters for "+Ds(t)+": ("+a+").";n?this._reportError(Xr(u),t):this._console.warn("Warning: "+u+" This will become an error in Angular v5.x")}return s},t.prototype._getTokenMetadata=function(t){t=P(t);var e;return e="string"==typeof t?{value:t}:{identifier:{reference:t}}},t.prototype._getProvidersMetadata=function(t,e,n,r,i){var o=this;return void 0===r&&(r=[]),t.forEach(function(s,a){if(Array.isArray(s))o._getProvidersMetadata(s,e,n,r);else{s=P(s);var u=void 0;if(s&&"object"==typeof s&&s.hasOwnProperty("provide"))o._validateProvider(s),u=new yv(s.provide,s);else{if(!Ns(s)){if(void 0===s)return void o._reportError(Xr("Encountered undefined provider! Usually this means you have a circular dependencies (might be caused by using 'barrel' index.ts files."));var c=t.reduce(function(t,e,n){return a>n?t.push(""+Ds(e)):n==a?t.push("?"+Ds(e)+"?"):n==a+1&&t.push("..."),t},[]).join(", ");return void o._reportError(Xr("Invalid "+(n?n:"provider")+" - only instances of Provider and Type are allowed, got: ["+c+"]"),i)}u=new yv(s,{useClass:s})}u.token===Bo(Wg.ANALYZE_FOR_ENTRY_COMPONENTS)?e.push.apply(e,o._getEntryComponentsFromProvider(u,i)):r.push(o.getProviderMetadata(u))}}),r},t.prototype._validateProvider=function(t){t.hasOwnProperty("useClass")&&null==t.useClass&&this._reportError(Xr("Invalid provider for "+Ds(t.provide)+". useClass cannot be "+t.useClass+".\n Usually it happens when:\n 1. There's a circular dependency (might be caused by using index.ts (barrel) files).\n 2. Class was used before it was declared. Use forwardRef in this case."))},t.prototype._getEntryComponentsFromProvider=function(t,e){var n=this,r=[],i=[];return t.useFactory||t.useExisting||t.useClass?(this._reportError(Xr("The ANALYZE_FOR_ENTRY_COMPONENTS token only supports useValue!"),e),[]):t.multi?(Rs(t.useValue,i),i.forEach(function(t){var e=n._getEntryComponentMetadata(t.reference,!1);e&&r.push(e)}),r):(this._reportError(Xr("The ANALYZE_FOR_ENTRY_COMPONENTS token only supports 'multi = true'!"),e),[])},t.prototype._getEntryComponentMetadata=function(t,e){void 0===e&&(e=!0);var n=this.getNonNormalizedDirectiveMetadata(t);if(n&&n.metadata.isComponent)return{componentType:t,componentFactory:n.metadata.componentFactory};var r=this._loadSummary(t,cv.Directive);if(r&&r.isComponent)return{componentType:t,componentFactory:r.componentFactory};if(e)throw Xr(t.name+" cannot be used as an entry component.")},t.prototype.getProviderMetadata=function(t){var e,n=null,r=null,i=this._getTokenMetadata(t.token);return t.useClass?(n=this._getInjectableMetadata(t.useClass,t.dependencies),e=n.diDeps,t.token===t.useClass&&(i={identifier:n})):t.useFactory&&(r=this._getFactoryMetadata(t.useFactory,t.dependencies),e=r.diDeps),{token:i,useClass:n,useValue:t.useValue,useFactory:r,useExisting:t.useExisting?this._getTokenMetadata(t.useExisting):null,deps:e,multi:t.multi}},t.prototype._getQueriesMetadata=function(t,e,n){var r=this,i=[];return Object.keys(t).forEach(function(o){var s=t[o];s.isViewQuery===e&&i.push(r._getQueryMetadata(s,o,n))}),i},t.prototype._queryVarBindings=function(t){return t.split(/\s*,\s*/)},t.prototype._getQueryMetadata=function(t,e,n){var r,i=this;return"string"==typeof t.selector?r=this._queryVarBindings(t.selector).map(function(t){return i._getTokenMetadata(t)}):t.selector?r=[this._getTokenMetadata(t.selector)]:(this._reportError(Xr("Can't construct a query for the property \""+e+'" of "'+Ds(n)+"\" since the query selector wasn't defined."),n),r=[]),{selectors:r,first:t.first,descendants:t.descendants,propertyName:e,read:t.read?this._getTokenMetadata(t.read):null}},t.prototype._reportError=function(t,e,n){if(!this._errorCollector)throw t;this._errorCollector(t,e),n&&this._errorCollector(t,n)},t}();vb.decorators=[{type:bi}],vb.ctorParameters=function(){return[{type:mv},{type:lb},{type:pb},{type:hb},{type:fb},{type:t_},{type:ab},{type:ph},{type:Ud,decorators:[{type:Sl}]},{type:Wl},{type:void 0,decorators:[{type:Sl},{type:xl,args:[db]}]}]};var yb=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return xd(e,t),e.prototype.visitOther=function(t,e){e.push({reference:t})},e}(tv),mb={};mb.Const=0,mb[mb.Const]="Const";var gb=function(){function t(t){void 0===t&&(t=null),this.modifiers=t,t||(this.modifiers=[])}return t.prototype.visitType=function(){},t.prototype.hasModifier=function(t){return-1!==this.modifiers.indexOf(t)},t}(),_b={};_b.Dynamic=0,_b.Bool=1,_b.String=2,_b.Int=3,_b.Number=4,_b.Function=5,_b.Inferred=6,_b[_b.Dynamic]="Dynamic",_b[_b.Bool]="Bool",_b[_b.String]="String",_b[_b.Int]="Int",_b[_b.Number]="Number",_b[_b.Function]="Function",_b[_b.Inferred]="Inferred";var bb=function(t){function e(e,n){void 0===n&&(n=null);var r=t.call(this,n)||this;return r.name=e,r}return xd(e,t),e.prototype.visitType=function(t,e){return t.visitBuiltintType(this,e)},e}(gb),wb=function(t){function e(e,n){void 0===n&&(n=null);var r=t.call(this,n)||this;return r.value=e,r}return xd(e,t),e.prototype.visitType=function(t,e){return t.visitExpressionType(this,e)},e}(gb),Eb=function(t){function e(e,n){void 0===n&&(n=null);var r=t.call(this,n)||this;return r.of=e,r}return xd(e,t),e.prototype.visitType=function(t,e){return t.visitArrayType(this,e)},e}(gb),Cb=function(t){function e(e,n){void 0===n&&(n=null);var r=t.call(this,n)||this;return r.valueType=e,r}return xd(e,t),e.prototype.visitType=function(t,e){return t.visitMapType(this,e)},e}(gb),xb=new bb(_b.Dynamic),Sb=new bb(_b.Inferred),Tb=new bb(_b.Bool),Ab=(new bb(_b.Int),new bb(_b.Number),new bb(_b.String),new bb(_b.Function),{});Ab.Equals=0,Ab.NotEquals=1,Ab.Identical=2,Ab.NotIdentical=3,Ab.Minus=4,Ab.Plus=5,Ab.Divide=6,Ab.Multiply=7,Ab.Modulo=8,Ab.And=9,Ab.Or=10,Ab.Lower=11,Ab.LowerEquals=12,Ab.Bigger=13,Ab.BiggerEquals=14,Ab[Ab.Equals]="Equals",Ab[Ab.NotEquals]="NotEquals",Ab[Ab.Identical]="Identical",Ab[Ab.NotIdentical]="NotIdentical",Ab[Ab.Minus]="Minus",Ab[Ab.Plus]="Plus",Ab[Ab.Divide]="Divide",Ab[Ab.Multiply]="Multiply",Ab[Ab.Modulo]="Modulo",Ab[Ab.And]="And",Ab[Ab.Or]="Or",Ab[Ab.Lower]="Lower",Ab[Ab.LowerEquals]="LowerEquals",Ab[Ab.Bigger]="Bigger",Ab[Ab.BiggerEquals]="BiggerEquals";var Pb=function(){function t(t,e){this.type=t,this.sourceSpan=e}return t.prototype.visitExpression=function(){},t.prototype.prop=function(t,e){return new Kb(this,t,null,e)},t.prototype.key=function(t,e,n){return void 0===e&&(e=null),new Qb(this,t,e,n)},t.prototype.callMethod=function(t,e,n){return new Db(this,t,e,null,n)},t.prototype.callFn=function(t,e){return new Lb(this,t,null,e)},t.prototype.instantiate=function(t,e,n){return void 0===e&&(e=null),new Fb(this,t,e,n)},t.prototype.conditional=function(t,e,n){return void 0===e&&(e=null),new Hb(this,t,e,null,n)},t.prototype.equals=function(t,e){return new Wb(Ab.Equals,this,t,null,e)},t.prototype.notEquals=function(t,e){return new Wb(Ab.NotEquals,this,t,null,e)},t.prototype.identical=function(t,e){return new Wb(Ab.Identical,this,t,null,e)},t.prototype.notIdentical=function(t,e){return new Wb(Ab.NotIdentical,this,t,null,e)},t.prototype.minus=function(t,e){return new Wb(Ab.Minus,this,t,null,e)},t.prototype.plus=function(t,e){return new Wb(Ab.Plus,this,t,null,e)},t.prototype.divide=function(t,e){return new Wb(Ab.Divide,this,t,null,e)},t.prototype.multiply=function(t,e){return new Wb(Ab.Multiply,this,t,null,e)},t.prototype.modulo=function(t,e){return new Wb(Ab.Modulo,this,t,null,e)},t.prototype.and=function(t,e){return new Wb(Ab.And,this,t,null,e)},t.prototype.or=function(t,e){return new Wb(Ab.Or,this,t,null,e)},t.prototype.lower=function(t,e){return new Wb(Ab.Lower,this,t,null,e)},t.prototype.lowerEquals=function(t,e){return new Wb(Ab.LowerEquals,this,t,null,e)},t.prototype.bigger=function(t,e){return new Wb(Ab.Bigger,this,t,null,e)},t.prototype.biggerEquals=function(t,e){return new Wb(Ab.BiggerEquals,this,t,null,e)},t.prototype.isBlank=function(t){return this.equals(ew,t)},t.prototype.cast=function(t,e){return new Bb(this,t,e)},t.prototype.toStmt=function(){return new sw(this)},t}(),kb={};kb.This=0,kb.Super=1,kb.CatchError=2,kb.CatchStack=3,kb[kb.This]="This",kb[kb.Super]="Super",kb[kb.CatchError]="CatchError",kb[kb.CatchStack]="CatchStack";var Mb=function(t){function e(e,n,r){void 0===n&&(n=null);var i=t.call(this,n,r)||this;return"string"==typeof e?(i.name=e,i.builtin=null):(i.name=null,i.builtin=e),i}return xd(e,t),e.prototype.visitExpression=function(t,e){return t.visitReadVarExpr(this,e)},e.prototype.set=function(t){return new Ob(this.name,t,null,this.sourceSpan)},e}(Pb),Ob=function(t){function e(e,n,r,i){void 0===r&&(r=null);var o=t.call(this,r||n.type,i)||this;return o.name=e,o.value=n,o}return xd(e,t),e.prototype.visitExpression=function(t,e){return t.visitWriteVarExpr(this,e)},e.prototype.toDeclStmt=function(t,e){return void 0===t&&(t=null),void 0===e&&(e=null),new iw(this.name,this.value,t,e,this.sourceSpan)},e}(Pb),Nb=function(t){function e(e,n,r,i,o){void 0===i&&(i=null);var s=t.call(this,i||r.type,o)||this;return s.receiver=e,s.index=n,s.value=r,s}return xd(e,t),e.prototype.visitExpression=function(t,e){return t.visitWriteKeyExpr(this,e)},e}(Pb),Ib=function(t){function e(e,n,r,i,o){void 0===i&&(i=null);var s=t.call(this,i||r.type,o)||this;return s.receiver=e,s.name=n,s.value=r,s}return xd(e,t),e.prototype.visitExpression=function(t,e){return t.visitWritePropExpr(this,e)},e}(Pb),Rb={};Rb.ConcatArray=0,Rb.SubscribeObservable=1,Rb.Bind=2,Rb[Rb.ConcatArray]="ConcatArray",Rb[Rb.SubscribeObservable]="SubscribeObservable",Rb[Rb.Bind]="Bind";var Db=function(t){function e(e,n,r,i,o){void 0===i&&(i=null);var s=t.call(this,i,o)||this;return s.receiver=e,s.args=r,"string"==typeof n?(s.name=n,s.builtin=null):(s.name=null,s.builtin=n),s}return xd(e,t),e.prototype.visitExpression=function(t,e){return t.visitInvokeMethodExpr(this,e)},e}(Pb),Lb=function(t){function e(e,n,r,i){void 0===r&&(r=null);var o=t.call(this,r,i)||this;return o.fn=e,o.args=n,o}return xd(e,t),e.prototype.visitExpression=function(t,e){return t.visitInvokeFunctionExpr(this,e)},e}(Pb),Fb=function(t){function e(e,n,r,i){var o=t.call(this,r,i)||this;return o.classExpr=e,o.args=n,o}return xd(e,t),e.prototype.visitExpression=function(t,e){return t.visitInstantiateExpr(this,e)},e}(Pb),Vb=function(t){function e(e,n,r){void 0===n&&(n=null);var i=t.call(this,n,r)||this;return i.value=e,i}return xd(e,t),e.prototype.visitExpression=function(t,e){return t.visitLiteralExpr(this,e)},e}(Pb),jb=function(t){function e(e,n,r,i){void 0===n&&(n=null),void 0===r&&(r=null);var o=t.call(this,n,i)||this;return o.value=e,o.typeParams=r,o}return xd(e,t),e.prototype.visitExpression=function(t,e){return t.visitExternalExpr(this,e)},e}(Pb),Hb=function(t){function e(e,n,r,i,o){void 0===r&&(r=null),void 0===i&&(i=null);var s=t.call(this,i||n.type,o)||this;return s.condition=e,s.falseCase=r,s.trueCase=n,s}return xd(e,t),e.prototype.visitExpression=function(t,e){return t.visitConditionalExpr(this,e)},e}(Pb),Ub=function(t){function e(e,n){var r=t.call(this,Tb,n)||this;return r.condition=e,r}return xd(e,t),e.prototype.visitExpression=function(t,e){return t.visitNotExpr(this,e)},e}(Pb),Bb=function(t){function e(e,n,r){var i=t.call(this,n,r)||this;return i.value=e,i}return xd(e,t),e.prototype.visitExpression=function(t,e){return t.visitCastExpr(this,e)},e}(Pb),zb=function(){function t(t,e){void 0===e&&(e=null),this.name=t,this.type=e}return t}(),qb=function(t){function e(e,n,r,i){void 0===r&&(r=null);var o=t.call(this,r,i)||this;return o.params=e,o.statements=n,o}return xd(e,t),e.prototype.visitExpression=function(t,e){return t.visitFunctionExpr(this,e)},e.prototype.toDeclStmt=function(t,e){return void 0===e&&(e=null),new ow(t,this.params,this.statements,this.type,e,this.sourceSpan)},e}(Pb),Wb=function(t){function e(e,n,r,i,o){void 0===i&&(i=null);var s=t.call(this,i||n.type,o)||this;return s.operator=e,s.rhs=r,s.lhs=n,s}return xd(e,t),e.prototype.visitExpression=function(t,e){return t.visitBinaryOperatorExpr(this,e)},e}(Pb),Kb=function(t){function e(e,n,r,i){void 0===r&&(r=null);
var o=t.call(this,r,i)||this;return o.receiver=e,o.name=n,o}return xd(e,t),e.prototype.visitExpression=function(t,e){return t.visitReadPropExpr(this,e)},e.prototype.set=function(t){return new Ib(this.receiver,this.name,t,null,this.sourceSpan)},e}(Pb),Qb=function(t){function e(e,n,r,i){void 0===r&&(r=null);var o=t.call(this,r,i)||this;return o.receiver=e,o.index=n,o}return xd(e,t),e.prototype.visitExpression=function(t,e){return t.visitReadKeyExpr(this,e)},e.prototype.set=function(t){return new Nb(this.receiver,this.index,t,null,this.sourceSpan)},e}(Pb),Gb=function(t){function e(e,n,r){void 0===n&&(n=null);var i=t.call(this,n,r)||this;return i.entries=e,i}return xd(e,t),e.prototype.visitExpression=function(t,e){return t.visitLiteralArrayExpr(this,e)},e}(Pb),Xb=function(){function t(t,e,n){void 0===n&&(n=!1),this.key=t,this.value=e,this.quoted=n}return t}(),Zb=function(t){function e(e,n,r){void 0===n&&(n=null);var i=t.call(this,n,r)||this;return i.entries=e,i.valueType=null,n&&(i.valueType=n.valueType),i}return xd(e,t),e.prototype.visitExpression=function(t,e){return t.visitLiteralMapExpr(this,e)},e}(Pb),Yb=function(t){function e(e,n){var r=t.call(this,e[e.length-1].type,n)||this;return r.parts=e,r}return xd(e,t),e.prototype.visitExpression=function(t,e){return t.visitCommaExpr(this,e)},e}(Pb),$b=new Mb(kb.This),Jb=new Mb(kb.Super),tw=(new Mb(kb.CatchError),new Mb(kb.CatchStack),new Vb(null,null)),ew=new Vb(null,Sb),nw={};nw.Final=0,nw.Private=1,nw[nw.Final]="Final",nw[nw.Private]="Private";var rw=function(){function t(t,e){void 0===t&&(t=null),this.modifiers=t,this.sourceSpan=e,t||(this.modifiers=[])}return t.prototype.visitStatement=function(){},t.prototype.hasModifier=function(t){return-1!==this.modifiers.indexOf(t)},t}(),iw=function(t){function e(e,n,r,i,o){void 0===r&&(r=null),void 0===i&&(i=null);var s=t.call(this,i,o)||this;return s.name=e,s.value=n,s.type=r||n.type,s}return xd(e,t),e.prototype.visitStatement=function(t,e){return t.visitDeclareVarStmt(this,e)},e}(rw),ow=function(t){function e(e,n,r,i,o,s){void 0===i&&(i=null),void 0===o&&(o=null);var a=t.call(this,o,s)||this;return a.name=e,a.params=n,a.statements=r,a.type=i,a}return xd(e,t),e.prototype.visitStatement=function(t,e){return t.visitDeclareFunctionStmt(this,e)},e}(rw),sw=function(t){function e(e,n){var r=t.call(this,null,n)||this;return r.expr=e,r}return xd(e,t),e.prototype.visitStatement=function(t,e){return t.visitExpressionStmt(this,e)},e}(rw),aw=function(t){function e(e,n){var r=t.call(this,null,n)||this;return r.value=e,r}return xd(e,t),e.prototype.visitStatement=function(t,e){return t.visitReturnStmt(this,e)},e}(rw),uw=function(){function t(t,e){void 0===t&&(t=null),this.type=t,this.modifiers=e,e||(this.modifiers=[])}return t.prototype.hasModifier=function(t){return-1!==this.modifiers.indexOf(t)},t}(),cw=function(t){function e(e,n,r){void 0===n&&(n=null),void 0===r&&(r=null);var i=t.call(this,n,r)||this;return i.name=e,i}return xd(e,t),e}(uw),pw=function(t){function e(e,n,r,i,o){void 0===i&&(i=null),void 0===o&&(o=null);var s=t.call(this,i,o)||this;return s.name=e,s.params=n,s.body=r,s}return xd(e,t),e}(uw),lw=function(t){function e(e,n,r,i){void 0===r&&(r=null),void 0===i&&(i=null);var o=t.call(this,r,i)||this;return o.name=e,o.body=n,o}return xd(e,t),e}(uw),hw=function(t){function e(e,n,r,i,o,s,a,u){void 0===a&&(a=null);var c=t.call(this,a,u)||this;return c.name=e,c.parent=n,c.fields=r,c.getters=i,c.constructorMethod=o,c.methods=s,c}return xd(e,t),e.prototype.visitStatement=function(t,e){return t.visitDeclareClassStmt(this,e)},e}(rw),fw=function(t){function e(e,n,r,i){void 0===r&&(r=[]);var o=t.call(this,null,i)||this;return o.condition=e,o.trueCase=n,o.falseCase=r,o}return xd(e,t),e.prototype.visitStatement=function(t,e){return t.visitIfStmt(this,e)},e}(rw),dw=function(t){function e(e,n,r){var i=t.call(this,null,r)||this;return i.bodyStmts=e,i.catchStmts=n,i}return xd(e,t),e.prototype.visitStatement=function(t,e){return t.visitTryCatchStmt(this,e)},e}(rw),vw=function(t){function e(e,n){var r=t.call(this,null,n)||this;return r.error=e,r}return xd(e,t),e.prototype.visitStatement=function(t,e){return t.visitThrowStmt(this,e)},e}(rw),yw=function(){function t(){}return t.prototype.transformExpr=function(t){return t},t.prototype.transformStmt=function(t){return t},t.prototype.visitReadVarExpr=function(t,e){return this.transformExpr(t,e)},t.prototype.visitWriteVarExpr=function(t,e){return this.transformExpr(new Ob(t.name,t.value.visitExpression(this,e),t.type,t.sourceSpan),e)},t.prototype.visitWriteKeyExpr=function(t,e){return this.transformExpr(new Nb(t.receiver.visitExpression(this,e),t.index.visitExpression(this,e),t.value.visitExpression(this,e),t.type,t.sourceSpan),e)},t.prototype.visitWritePropExpr=function(t,e){return this.transformExpr(new Ib(t.receiver.visitExpression(this,e),t.name,t.value.visitExpression(this,e),t.type,t.sourceSpan),e)},t.prototype.visitInvokeMethodExpr=function(t,e){var n=t.builtin||t.name;return this.transformExpr(new Db(t.receiver.visitExpression(this,e),n,this.visitAllExpressions(t.args,e),t.type,t.sourceSpan),e)},t.prototype.visitInvokeFunctionExpr=function(t,e){return this.transformExpr(new Lb(t.fn.visitExpression(this,e),this.visitAllExpressions(t.args,e),t.type,t.sourceSpan),e)},t.prototype.visitInstantiateExpr=function(t,e){return this.transformExpr(new Fb(t.classExpr.visitExpression(this,e),this.visitAllExpressions(t.args,e),t.type,t.sourceSpan),e)},t.prototype.visitLiteralExpr=function(t,e){return this.transformExpr(t,e)},t.prototype.visitExternalExpr=function(t,e){return this.transformExpr(t,e)},t.prototype.visitConditionalExpr=function(t,e){return this.transformExpr(new Hb(t.condition.visitExpression(this,e),t.trueCase.visitExpression(this,e),t.falseCase.visitExpression(this,e),t.type,t.sourceSpan),e)},t.prototype.visitNotExpr=function(t,e){return this.transformExpr(new Ub(t.condition.visitExpression(this,e),t.sourceSpan),e)},t.prototype.visitCastExpr=function(t,e){return this.transformExpr(new Bb(t.value.visitExpression(this,e),t.type,t.sourceSpan),e)},t.prototype.visitFunctionExpr=function(t,e){return this.transformExpr(new qb(t.params,this.visitAllStatements(t.statements,e),t.type,t.sourceSpan),e)},t.prototype.visitBinaryOperatorExpr=function(t,e){return this.transformExpr(new Wb(t.operator,t.lhs.visitExpression(this,e),t.rhs.visitExpression(this,e),t.type,t.sourceSpan),e)},t.prototype.visitReadPropExpr=function(t,e){return this.transformExpr(new Kb(t.receiver.visitExpression(this,e),t.name,t.type,t.sourceSpan),e)},t.prototype.visitReadKeyExpr=function(t,e){return this.transformExpr(new Qb(t.receiver.visitExpression(this,e),t.index.visitExpression(this,e),t.type,t.sourceSpan),e)},t.prototype.visitLiteralArrayExpr=function(t,e){return this.transformExpr(new Gb(this.visitAllExpressions(t.entries,e),t.type,t.sourceSpan),e)},t.prototype.visitLiteralMapExpr=function(t,e){var n=this,r=t.entries.map(function(t){return new Xb(t.key,t.value.visitExpression(n,e),t.quoted)}),i=new Cb(t.valueType);return this.transformExpr(new Zb(r,i,t.sourceSpan),e)},t.prototype.visitCommaExpr=function(t,e){return this.transformExpr(new Yb(this.visitAllExpressions(t.parts,e),t.sourceSpan),e)},t.prototype.visitAllExpressions=function(t,e){var n=this;return t.map(function(t){return t.visitExpression(n,e)})},t.prototype.visitDeclareVarStmt=function(t,e){return this.transformStmt(new iw(t.name,t.value.visitExpression(this,e),t.type,t.modifiers,t.sourceSpan),e)},t.prototype.visitDeclareFunctionStmt=function(t,e){return this.transformStmt(new ow(t.name,t.params,this.visitAllStatements(t.statements,e),t.type,t.modifiers,t.sourceSpan),e)},t.prototype.visitExpressionStmt=function(t,e){return this.transformStmt(new sw(t.expr.visitExpression(this,e),t.sourceSpan),e)},t.prototype.visitReturnStmt=function(t,e){return this.transformStmt(new aw(t.value.visitExpression(this,e),t.sourceSpan),e)},t.prototype.visitDeclareClassStmt=function(t,e){var n=this,r=t.parent.visitExpression(this,e),i=t.getters.map(function(t){return new lw(t.name,n.visitAllStatements(t.body,e),t.type,t.modifiers)}),o=t.constructorMethod&&new pw(t.constructorMethod.name,t.constructorMethod.params,this.visitAllStatements(t.constructorMethod.body,e),t.constructorMethod.type,t.constructorMethod.modifiers),s=t.methods.map(function(t){return new pw(t.name,t.params,n.visitAllStatements(t.body,e),t.type,t.modifiers)});return this.transformStmt(new hw(t.name,r,t.fields,i,o,s,t.modifiers,t.sourceSpan),e)},t.prototype.visitIfStmt=function(t,e){return this.transformStmt(new fw(t.condition.visitExpression(this,e),this.visitAllStatements(t.trueCase,e),this.visitAllStatements(t.falseCase,e),t.sourceSpan),e)},t.prototype.visitTryCatchStmt=function(t,e){return this.transformStmt(new dw(this.visitAllStatements(t.bodyStmts,e),this.visitAllStatements(t.catchStmts,e),t.sourceSpan),e)},t.prototype.visitThrowStmt=function(t,e){return this.transformStmt(new vw(t.error.visitExpression(this,e),t.sourceSpan),e)},t.prototype.visitCommentStmt=function(t,e){return this.transformStmt(t,e)},t.prototype.visitAllStatements=function(t,e){var n=this;return t.map(function(t){return t.visitStatement(n,e)})},t}(),mw=function(){function t(){}return t.prototype.visitReadVarExpr=function(t){return t},t.prototype.visitWriteVarExpr=function(t,e){return t.value.visitExpression(this,e),t},t.prototype.visitWriteKeyExpr=function(t,e){return t.receiver.visitExpression(this,e),t.index.visitExpression(this,e),t.value.visitExpression(this,e),t},t.prototype.visitWritePropExpr=function(t,e){return t.receiver.visitExpression(this,e),t.value.visitExpression(this,e),t},t.prototype.visitInvokeMethodExpr=function(t,e){return t.receiver.visitExpression(this,e),this.visitAllExpressions(t.args,e),t},t.prototype.visitInvokeFunctionExpr=function(t,e){return t.fn.visitExpression(this,e),this.visitAllExpressions(t.args,e),t},t.prototype.visitInstantiateExpr=function(t,e){return t.classExpr.visitExpression(this,e),this.visitAllExpressions(t.args,e),t},t.prototype.visitLiteralExpr=function(t){return t},t.prototype.visitExternalExpr=function(t){return t},t.prototype.visitConditionalExpr=function(t,e){return t.condition.visitExpression(this,e),t.trueCase.visitExpression(this,e),t.falseCase.visitExpression(this,e),t},t.prototype.visitNotExpr=function(t,e){return t.condition.visitExpression(this,e),t},t.prototype.visitCastExpr=function(t,e){return t.value.visitExpression(this,e),t},t.prototype.visitFunctionExpr=function(t,e){return this.visitAllStatements(t.statements,e),t},t.prototype.visitBinaryOperatorExpr=function(t,e){return t.lhs.visitExpression(this,e),t.rhs.visitExpression(this,e),t},t.prototype.visitReadPropExpr=function(t,e){return t.receiver.visitExpression(this,e),t},t.prototype.visitReadKeyExpr=function(t,e){return t.receiver.visitExpression(this,e),t.index.visitExpression(this,e),t},t.prototype.visitLiteralArrayExpr=function(t,e){return this.visitAllExpressions(t.entries,e),t},t.prototype.visitLiteralMapExpr=function(t,e){var n=this;return t.entries.forEach(function(t){return t.value.visitExpression(n,e)}),t},t.prototype.visitCommaExpr=function(t,e){this.visitAllExpressions(t.parts,e)},t.prototype.visitAllExpressions=function(t,e){var n=this;t.forEach(function(t){return t.visitExpression(n,e)})},t.prototype.visitDeclareVarStmt=function(t,e){return t.value.visitExpression(this,e),t},t.prototype.visitDeclareFunctionStmt=function(t,e){return this.visitAllStatements(t.statements,e),t},t.prototype.visitExpressionStmt=function(t,e){return t.expr.visitExpression(this,e),t},t.prototype.visitReturnStmt=function(t,e){return t.value.visitExpression(this,e),t},t.prototype.visitDeclareClassStmt=function(t,e){var n=this;return t.parent.visitExpression(this,e),t.getters.forEach(function(t){return n.visitAllStatements(t.body,e)}),t.constructorMethod&&this.visitAllStatements(t.constructorMethod.body,e),t.methods.forEach(function(t){return n.visitAllStatements(t.body,e)}),t},t.prototype.visitIfStmt=function(t,e){return t.condition.visitExpression(this,e),this.visitAllStatements(t.trueCase,e),this.visitAllStatements(t.falseCase,e),t},t.prototype.visitTryCatchStmt=function(t,e){return this.visitAllStatements(t.bodyStmts,e),this.visitAllStatements(t.catchStmts,e),t},t.prototype.visitThrowStmt=function(t,e){return t.error.visitExpression(this,e),t},t.prototype.visitCommentStmt=function(t){return t},t.prototype.visitAllStatements=function(t,e){var n=this;t.forEach(function(t){return t.visitStatement(n,e)})},t}(),gw=function(t){function e(){var e=t.apply(this,arguments)||this;return e.varNames=new Set,e}return xd(e,t),e.prototype.visitDeclareFunctionStmt=function(t){return t},e.prototype.visitDeclareClassStmt=function(t){return t},e.prototype.visitReadVarExpr=function(t){return this.varNames.add(t.name),null},e}(mw),_w=function(t){function e(e){var n=t.call(this)||this;return n.sourceSpan=e,n}return xd(e,t),e.prototype._clone=function(t){var e=Object.create(t.constructor.prototype);for(var n in t)e[n]=t[n];return e},e.prototype.transformExpr=function(t){return t.sourceSpan||(t=this._clone(t),t.sourceSpan=this.sourceSpan),t},e.prototype.transformStmt=function(t){return t.sourceSpan||(t=this._clone(t),t.sourceSpan=this.sourceSpan),t},e}(yw),bw="$quoted$",ww=function(){function t(){}return t.prototype.visitArray=function(t,e){var n=this;return qs(t.map(function(t){return Gr(t,n,null)}),e)},t.prototype.visitStringMap=function(t,e){var n=this,r=[],i=new Set(t&&t[bw]);return Object.keys(t).forEach(function(e){r.push(new Xb(e,Gr(t[e],n,null),i.has(e)))}),new Zb(r,e)},t.prototype.visitPrimitive=function(t,e){return Gs(t,e)},t.prototype.visitOther=function(t){return t instanceof Pb?t:Us({reference:t})},t}(),Ew=function(){function t(t){this.compType=t}return t}(),Cw=function(){function t(t,e,n){this.statements=t,this.ngModuleFactoryVar=e,this.dependencies=n}return t}(),xw=function(){function t(){}return t.prototype.compile=function(t,e){var n=ji("NgModule",t.type),r=[],i=[],o=t.transitiveModule.entryComponents.map(function(e){return t.bootstrapComponents.some(function(t){return t.reference===e.componentType})&&i.push({reference:e.componentFactory}),r.push(new Ew(e.componentType)),{reference:e.componentFactory}}),s=new Sw(t,o,i,n),a=new Jg(t,e,n);a.parse().forEach(function(t){return s.addProvider(t)});var u=s.build(),c=ti(t.type)+"NgFactory",p=Hs(c).set(Us(zo(Wg.NgModuleFactory)).instantiate([Hs(u.name),Us(t.type)],Bs(zo(Wg.NgModuleFactory),[Bs(t.type)],[mb.Const]))).toDeclStmt(null,[nw.Final]),l=[u,p];if(t.id){var h=Us(zo(Wg.RegisterModuleFactoryFn)).callFn([Gs(t.id),Hs(c)]).toStmt();l.push(h)}return new Cw(l,c,r)},t}();xw.decorators=[{type:bi}],xw.ctorParameters=function(){return[]};var Sw=function(){function t(t,e,n,r){this._ngModuleMeta=t,this._entryComponentFactories=e,this._bootstrapComponentFactories=n,this._sourceSpan=r,this.fields=[],this.getters=[],this.methods=[],this.ctorStmts=[],this._lazyProps=new Map,this._tokens=[],this._instances=new Map,this._createStmts=[],this._destroyStmts=[]}return t.prototype.addProvider=function(t){var e=this,n=t.providers.map(function(t){return e._getProviderValue(t)}),r="_"+si(t.token)+"_"+this._instances.size,i=this._createProviderProperty(r,t,n,t.multiProvider,t.eager);if(-1!==t.lifecycleHooks.indexOf(Ed.OnDestroy)){var o=i.callMethod("ngOnDestroy",[]);t.eager||(o=this._lazyProps.get(i.name).and(o)),this._destroyStmts.push(o.toStmt())}this._tokens.push(t.token),this._instances.set(ai(t.token),i)},t.prototype.build=function(){var t=this,e=this._tokens.map(function(e){var n=t._instances.get(ai(e));return new fw(Aw.token.identical($s(e)),[new aw(n)])}),n=[new pw("createInternal",[],this._createStmts.concat(new aw(this._instances.get(this._ngModuleMeta.type.reference))),Bs(this._ngModuleMeta.type)),new pw("getInternal",[new zb(Aw.token.name,xb),new zb(Aw.notFoundResult.name,xb)],e.concat([new aw(Aw.notFoundResult)]),xb),new pw("destroyInternal",[],this._destroyStmts)],r=[Hs(Tw.parent.name),qs(this._entryComponentFactories.map(function(t){return Us(t)})),qs(this._bootstrapComponentFactories.map(function(t){return Us(t)}))],i=ti(this._ngModuleMeta.type)+"Injector";return Xs({name:i,ctorParams:[new zb(Tw.parent.name,Bs(zo(Wg.Injector)))],parent:Us(zo(Wg.NgModuleInjector),[Bs(this._ngModuleMeta.type)]),parentArgs:r,builders:[{methods:n},this]})},t.prototype._getProviderValue=function(t){var e,n=this;if(null!=t.useExisting)e=this._getDependency({token:t.useExisting});else if(null!=t.useFactory){var r=t.deps||t.useFactory.diDeps,i=r.map(function(t){return n._getDependency(t)});e=Us(t.useFactory).callFn(i)}else if(null!=t.useClass){var r=t.deps||t.useClass.diDeps,i=r.map(function(t){return n._getDependency(t)});e=Us(t.useClass).instantiate(i,Bs(t.useClass))}else e=Ys(t.useValue);return e},t.prototype._createProviderProperty=function(t,e,n,r,i){var o,s;if(r?(o=qs(n),s=new Eb(xb)):(o=n[0],s=n[0].type),s||(s=xb),i)this.fields.push(new cw(t,s)),this._createStmts.push($b.prop(t).set(o).toStmt());else{var a=$b.prop("_"+t);this.fields.push(new cw(a.name,s));var u=[new fw(a.isBlank(),[a.set(o).toStmt()]),new aw(a)];this.getters.push(new lw(t,u,s)),this._lazyProps.set(t,a)}return $b.prop(t)},t.prototype._getDependency=function(t){var e=null;if(t.isValue&&(e=Gs(t.value)),t.isSkipSelf||(t.token&&(ai(t.token)===Bo(Wg.Injector)?e=$b:ai(t.token)===Bo(Wg.ComponentFactoryResolver)&&(e=$b.prop("componentFactoryResolver"))),e||(e=this._instances.get(ai(t.token)))),!e){var n=[$s(t.token)];t.isOptional&&n.push(tw),e=Tw.parent.callMethod("get",n)}return e},t}(),Tw=function(){function t(){}return t}();Tw.parent=$b.prop("parent");var Aw=function(){function t(){}return t}();Aw.token=Hs("token"),Aw.notFoundResult=Hs("notFoundResult");var Pw=3,kw="# sourceMappingURL=data:application/json;base64,",Mw=function(){function t(t){void 0===t&&(t=null),this.file=t,this.sourcesContent=new Map,this.lines=[],this.lastCol0=0,this.hasMappings=!1}return t.prototype.addSource=function(t,e){return void 0===e&&(e=null),this.sourcesContent.has(t)||this.sourcesContent.set(t,e),this},t.prototype.addLine=function(){return this.lines.push([]),this.lastCol0=0,this},t.prototype.addMapping=function(t,e,n,r){if(!this.currentLine)throw new Error("A line must be added before mappings can be added");if(null!=e&&!this.sourcesContent.has(e))throw new Error('Unknown source file "'+e+'"');if(null==t)throw new Error("The column in the generated code must be provided");if(t<this.lastCol0)throw new Error("Mapping should be added in output order");if(e&&(null==n||null==r))throw new Error("The source location must be provided when a source url is provided");return this.hasMappings=!0,this.lastCol0=t,this.currentLine.push({col0:t,sourceUrl:e,sourceLine0:n,sourceCol0:r}),this},Object.defineProperty(t.prototype,"currentLine",{get:function(){return this.lines.slice(-1)[0]},enumerable:!0,configurable:!0}),t.prototype.toJSON=function(){var t=this;if(!this.hasMappings)return null;var e=new Map,n=[],r=[];Array.from(this.sourcesContent.keys()).forEach(function(i,o){e.set(i,o),n.push(i),r.push(t.sourcesContent.get(i)||null)});var i="",o=0,s=0,a=0,u=0;return this.lines.forEach(function(t){o=0,i+=t.map(function(t){var n=ta(t.col0-o);return o=t.col0,null!=t.sourceUrl&&(n+=ta(e.get(t.sourceUrl)-s),s=e.get(t.sourceUrl),n+=ta(t.sourceLine0-a),a=t.sourceLine0,n+=ta(t.sourceCol0-u),u=t.sourceCol0),n}).join(","),i+=";"}),i=i.slice(0,-1),{file:this.file||"",version:Pw,sourceRoot:"",sources:n,sourcesContent:r,mappings:i}},t.prototype.toJsComment=function(){return this.hasMappings?"//"+kw+Js(JSON.stringify(this,null,0)):""},t}(),Ow="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Nw=/'|\\|\n|\r|\$/g,Iw=/^[$A-Z_][0-9A-Z_$]*$/i,Rw=" ",Dw=Hs("error"),Lw=Hs("stack"),Fw=function(){function t(t){this.indent=t,this.parts=[],this.srcSpans=[]}return t}(),Vw=function(){function t(t,e){this._exportedVars=t,this._indent=e,this._classes=[],this._lines=[new Fw(e)]}return t.createRoot=function(e){return new t(e,0)},Object.defineProperty(t.prototype,"_currentLine",{get:function(){return this._lines[this._lines.length-1]},enumerable:!0,configurable:!0}),t.prototype.isExportedVar=function(t){return-1!==this._exportedVars.indexOf(t)},t.prototype.println=function(t,e){void 0===e&&(e=""),this.print(t,e,!0)},t.prototype.lineIsEmpty=function(){return 0===this._currentLine.parts.length},t.prototype.print=function(t,e,n){void 0===n&&(n=!1),e.length>0&&(this._currentLine.parts.push(e),this._currentLine.srcSpans.push(t&&t.sourceSpan||null)),n&&this._lines.push(new Fw(this._indent))},t.prototype.removeEmptyLastLine=function(){this.lineIsEmpty()&&this._lines.pop()},t.prototype.incIndent=function(){this._indent++,this._currentLine.indent=this._indent},t.prototype.decIndent=function(){this._indent--,this._currentLine.indent=this._indent},t.prototype.pushClass=function(t){this._classes.push(t)},t.prototype.popClass=function(){return this._classes.pop()},Object.defineProperty(t.prototype,"currentClass",{get:function(){return this._classes.length>0?this._classes[this._classes.length-1]:null},enumerable:!0,configurable:!0}),t.prototype.toSource=function(){return this.sourceLines.map(function(t){return t.parts.length>0?ra(t.indent)+t.parts.join(""):""}).join("\n")},t.prototype.toSourceMapGenerator=function(t,e,n){void 0===n&&(n=0);for(var r=new Mw(e),i=!1,o=function(){i||(r.addSource(t," ").addMapping(0,t,0,0),i=!0)},s=0;n>s;s++)r.addLine(),o();return this.sourceLines.forEach(function(t,e){r.addLine();for(var n=t.srcSpans,s=t.parts,a=t.indent*Rw.length,u=0;u<n.length&&!n[u];)a+=s[u].length,u++;for(u<n.length&&0===e&&0===a?i=!0:o();u<n.length;){var c=n[u],p=c.start.file,l=c.start.line,h=c.start.col;for(r.addSource(p.url,p.content).addMapping(a,p.url,l,h),a+=s[u].length,u++;u<n.length&&(c===n[u]||!n[u]);)a+=s[u].length,u++}}),r},Object.defineProperty(t.prototype,"sourceLines",{get:function(){return this._lines.length&&0===this._lines[this._lines.length-1].parts.length?this._lines.slice(0,-1):this._lines},enumerable:!0,configurable:!0}),t}(),jw=function(){function t(t){this._escapeDollarInStrings=t}return t.prototype.visitExpressionStmt=function(t,e){return t.expr.visitExpression(this,e),e.println(t,";"),null},t.prototype.visitReturnStmt=function(t,e){return e.print(t,"return "),t.value.visitExpression(this,e),e.println(t,";"),null},t.prototype.visitCastExpr=function(){},t.prototype.visitDeclareClassStmt=function(){},t.prototype.visitIfStmt=function(t,e){e.print(t,"if ("),t.condition.visitExpression(this,e),e.print(t,") {");var n=null!=t.falseCase&&t.falseCase.length>0;return t.trueCase.length<=1&&!n?(e.print(t," "),this.visitAllStatements(t.trueCase,e),e.removeEmptyLastLine(),e.print(t," ")):(e.println(),e.incIndent(),this.visitAllStatements(t.trueCase,e),e.decIndent(),n&&(e.println(t,"} else {"),e.incIndent(),this.visitAllStatements(t.falseCase,e),e.decIndent())),e.println(t,"}"),null},t.prototype.visitTryCatchStmt=function(){},t.prototype.visitThrowStmt=function(t,e){return e.print(t,"throw "),t.error.visitExpression(this,e),e.println(t,";"),null},t.prototype.visitCommentStmt=function(t,e){var n=t.comment.split("\n");return n.forEach(function(n){e.println(t,"// "+n)}),null},t.prototype.visitDeclareVarStmt=function(){},t.prototype.visitWriteVarExpr=function(t,e){var n=e.lineIsEmpty();return n||e.print(t,"("),e.print(t,t.name+" = "),t.value.visitExpression(this,e),n||e.print(t,")"),null},t.prototype.visitWriteKeyExpr=function(t,e){var n=e.lineIsEmpty();return n||e.print(t,"("),t.receiver.visitExpression(this,e),e.print(t,"["),t.index.visitExpression(this,e),e.print(t,"] = "),t.value.visitExpression(this,e),n||e.print(t,")"),null},t.prototype.visitWritePropExpr=function(t,e){var n=e.lineIsEmpty();return n||e.print(t,"("),t.receiver.visitExpression(this,e),e.print(t,"."+t.name+" = "),t.value.visitExpression(this,e),n||e.print(t,")"),null},t.prototype.visitInvokeMethodExpr=function(t,e){t.receiver.visitExpression(this,e);var n=t.name;return null!=t.builtin&&(n=this.getBuiltinMethodName(t.builtin),null==n)?null:(e.print(t,"."+n+"("),this.visitAllExpressions(t.args,e,","),e.print(t,")"),null)},t.prototype.getBuiltinMethodName=function(){},t.prototype.visitInvokeFunctionExpr=function(t,e){return t.fn.visitExpression(this,e),e.print(t,"("),this.visitAllExpressions(t.args,e,","),e.print(t,")"),null},t.prototype.visitReadVarExpr=function(t,e){var n=t.name;if(null!=t.builtin)switch(t.builtin){case kb.Super:n="super";break;case kb.This:n="this";break;case kb.CatchError:n=Dw.name;break;case kb.CatchStack:n=Lw.name;break;default:throw new Error("Unknown builtin variable "+t.builtin)}return e.print(t,n),null},t.prototype.visitInstantiateExpr=function(t,e){return e.print(t,"new "),t.classExpr.visitExpression(this,e),e.print(t,"("),this.visitAllExpressions(t.args,e,","),e.print(t,")"),null},t.prototype.visitLiteralExpr=function(t,e){var n=t.value;return"string"==typeof n?e.print(t,na(n,this._escapeDollarInStrings)):e.print(t,""+n),null},t.prototype.visitExternalExpr=function(){},t.prototype.visitConditionalExpr=function(t,e){return e.print(t,"("),t.condition.visitExpression(this,e),e.print(t,"? "),t.trueCase.visitExpression(this,e),e.print(t,": "),t.falseCase.visitExpression(this,e),e.print(t,")"),null},t.prototype.visitNotExpr=function(t,e){return e.print(t,"!"),t.condition.visitExpression(this,e),null},t.prototype.visitFunctionExpr=function(){},t.prototype.visitDeclareFunctionStmt=function(){},t.prototype.visitBinaryOperatorExpr=function(t,e){var n;switch(t.operator){case Ab.Equals:n="==";break;case Ab.Identical:n="===";break;case Ab.NotEquals:n="!=";break;case Ab.NotIdentical:n="!==";break;case Ab.And:n="&&";break;case Ab.Or:n="||";break;case Ab.Plus:n="+";break;case Ab.Minus:n="-";break;case Ab.Divide:n="/";break;case Ab.Multiply:n="*";break;case Ab.Modulo:n="%";break;case Ab.Lower:n="<";break;case Ab.LowerEquals:n="<=";break;case Ab.Bigger:n=">";break;case Ab.BiggerEquals:n=">=";break;default:throw new Error("Unknown operator "+t.operator)}return e.print(t,"("),t.lhs.visitExpression(this,e),e.print(t," "+n+" "),t.rhs.visitExpression(this,e),e.print(t,")"),null},t.prototype.visitReadPropExpr=function(t,e){return t.receiver.visitExpression(this,e),e.print(t,"."),e.print(t,t.name),null},t.prototype.visitReadKeyExpr=function(t,e){return t.receiver.visitExpression(this,e),e.print(t,"["),t.index.visitExpression(this,e),e.print(t,"]"),null},t.prototype.visitLiteralArrayExpr=function(t,e){var n=t.entries.length>1;return e.print(t,"[",n),e.incIndent(),this.visitAllExpressions(t.entries,e,",",n),e.decIndent(),e.print(t,"]",n),null},t.prototype.visitLiteralMapExpr=function(t,e){var n=this,r=t.entries.length>1;return e.print(t,"{",r),e.incIndent(),this.visitAllObjects(function(r){e.print(t,na(r.key,n._escapeDollarInStrings,r.quoted)+": "),r.value.visitExpression(n,e)},t.entries,e,",",r),e.decIndent(),e.print(t,"}",r),null},t.prototype.visitCommaExpr=function(t,e){return e.print(t,"("),this.visitAllExpressions(t.parts,e,","),e.print(t,")"),null},t.prototype.visitAllExpressions=function(t,e,n,r){var i=this;void 0===r&&(r=!1),this.visitAllObjects(function(t){return t.visitExpression(i,e)},t,e,n,r)},t.prototype.visitAllObjects=function(t,e,n,r,i){void 0===i&&(i=!1);for(var o=0;o<e.length;o++)o>0&&n.print(null,r,i),t(e[o]);i&&n.println()},t.prototype.visitAllStatements=function(t,e){var n=this;t.forEach(function(t){return t.visitStatement(n,e)})},t}(),Hw="/debug/lib",Uw=function(t){function e(e,n){var r=t.call(this,!1)||this;return r._genFilePath=e,r._importResolver=n,r.typeExpression=0,r.importsWithPrefixes=new Map,r.reexports=new Map,r}return xd(e,t),e.prototype.visitType=function(t,e,n){void 0===n&&(n="any"),null!=t?(this.typeExpression++,t.visitType(this,e),this.typeExpression--):e.print(null,n)},e.prototype.visitLiteralExpr=function(e,n){var r=e.value;return null==r&&e.type!=Sb?(n.print(e,"("+r+" as any)"),null):t.prototype.visitLiteralExpr.call(this,e,n)},e.prototype.visitLiteralArrayExpr=function(e,n){0===e.entries.length&&n.print(e,"(");var r=t.prototype.visitLiteralArrayExpr.call(this,e,n);return 0===e.entries.length&&n.print(e," as any[])"),r},e.prototype.visitExternalExpr=function(t,e){return this._visitIdentifier(t.value,t.typeParams,e),null},e.prototype.visitDeclareVarStmt=function(t,e){if(e.isExportedVar(t.name)&&t.value instanceof jb&&!t.type){var n=this._resolveStaticSymbol(t.value.value),r=n.name,i=n.filePath,o=n.members;if(0===o.length&&i!==this._genFilePath){var s=this.reexports.get(i);return s||(s=[],this.reexports.set(i,s)),s.push({name:r,as:t.name}),null}}return e.isExportedVar(t.name)&&e.print(t,"export "),t.hasModifier(nw.Final)?e.print(t,"const"):e.print(t,"var"),e.print(t," "+t.name),this._printColonType(t.type,e),e.print(t," = "),t.value.visitExpression(this,e),e.println(t,";"),null},e.prototype.visitCastExpr=function(t,e){return e.print(t,"(<"),t.type.visitType(this,e),e.print(t,">"),t.value.visitExpression(this,e),e.print(t,")"),null},e.prototype.visitInstantiateExpr=function(t,e){return e.print(t,"new "),this.typeExpression++,t.classExpr.visitExpression(this,e),this.typeExpression--,e.print(t,"("),this.visitAllExpressions(t.args,e,","),e.print(t,")"),null},e.prototype.visitDeclareClassStmt=function(t,e){var n=this;return e.pushClass(t),e.isExportedVar(t.name)&&e.print(t,"export "),e.print(t,"class "+t.name),null!=t.parent&&(e.print(t," extends "),this.typeExpression++,t.parent.visitExpression(this,e),this.typeExpression--),e.println(t," {"),e.incIndent(),t.fields.forEach(function(t){return n._visitClassField(t,e)}),null!=t.constructorMethod&&this._visitClassConstructor(t,e),t.getters.forEach(function(t){return n._visitClassGetter(t,e)}),t.methods.forEach(function(t){return n._visitClassMethod(t,e)}),e.decIndent(),e.println(t,"}"),e.popClass(),null},e.prototype._visitClassField=function(t,e){t.hasModifier(nw.Private)&&e.print(null,"/*private*/ "),e.print(null,t.name),this._printColonType(t.type,e),e.println(null,";")},e.prototype._visitClassGetter=function(t,e){t.hasModifier(nw.Private)&&e.print(null,"private "),e.print(null,"get "+t.name+"()"),this._printColonType(t.type,e),e.println(null," {"),e.incIndent(),this.visitAllStatements(t.body,e),e.decIndent(),e.println(null,"}")},e.prototype._visitClassConstructor=function(t,e){e.print(t,"constructor("),this._visitParams(t.constructorMethod.params,e),e.println(t,") {"),e.incIndent(),this.visitAllStatements(t.constructorMethod.body,e),e.decIndent(),e.println(t,"}")},e.prototype._visitClassMethod=function(t,e){t.hasModifier(nw.Private)&&e.print(null,"private "),e.print(null,t.name+"("),this._visitParams(t.params,e),e.print(null,")"),this._printColonType(t.type,e,"void"),e.println(null," {"),e.incIndent(),this.visitAllStatements(t.body,e),e.decIndent(),e.println(null,"}")},e.prototype.visitFunctionExpr=function(t,e){return e.print(t,"("),this._visitParams(t.params,e),e.print(t,")"),this._printColonType(t.type,e,"void"),e.println(t," => {"),e.incIndent(),this.visitAllStatements(t.statements,e),e.decIndent(),e.print(t,"}"),null},e.prototype.visitDeclareFunctionStmt=function(t,e){return e.isExportedVar(t.name)&&e.print(t,"export "),e.print(t,"function "+t.name+"("),this._visitParams(t.params,e),e.print(t,")"),this._printColonType(t.type,e,"void"),e.println(t," {"),e.incIndent(),this.visitAllStatements(t.statements,e),e.decIndent(),e.println(t,"}"),null},e.prototype.visitTryCatchStmt=function(t,e){e.println(t,"try {"),e.incIndent(),this.visitAllStatements(t.bodyStmts,e),e.decIndent(),e.println(t,"} catch ("+Dw.name+") {"),e.incIndent();var n=[Lw.set(Dw.prop("stack")).toDeclStmt(null,[nw.Final])].concat(t.catchStmts);return this.visitAllStatements(n,e),e.decIndent(),e.println(t,"}"),null},e.prototype.visitBuiltintType=function(t,e){var n;switch(t.name){case _b.Bool:n="boolean";break;case _b.Dynamic:n="any";break;case _b.Function:n="Function";break;case _b.Number:n="number";break;case _b.Int:n="number";break;case _b.String:n="string";break;default:throw new Error("Unsupported builtin type "+t.name);
}return e.print(null,n),null},e.prototype.visitExpressionType=function(t,e){return t.value.visitExpression(this,e),null},e.prototype.visitArrayType=function(t,e){return this.visitType(t.of,e),e.print(null,"[]"),null},e.prototype.visitMapType=function(t,e){return e.print(null,"{[key: string]:"),this.visitType(t.valueType,e),e.print(null,"}"),null},e.prototype.getBuiltinMethodName=function(t){var e;switch(t){case Rb.ConcatArray:e="concat";break;case Rb.SubscribeObservable:e="subscribe";break;case Rb.Bind:e="bind";break;default:throw new Error("Unknown builtin method: "+t)}return e},e.prototype._visitParams=function(t,e){var n=this;this.visitAllObjects(function(t){e.print(null,t.name),n._printColonType(t.type,e)},t,e,",")},e.prototype._resolveStaticSymbol=function(t){var e=t.reference;if(!(e instanceof Hd))throw new Error("Internal error: unknown identifier "+JSON.stringify(t));var n=this._importResolver.getTypeArity(e)||void 0,r=this._importResolver.getImportAs(e)||e;return{name:r.name,filePath:r.filePath,members:r.members,arity:n}},e.prototype._visitIdentifier=function(t,e,n){var r=this,i=this._resolveStaticSymbol(t),o=i.name,s=i.filePath,a=i.members,u=i.arity;if(s!=this._genFilePath){var c=this.importsWithPrefixes.get(s);null==c&&(c="import"+this.importsWithPrefixes.size,this.importsWithPrefixes.set(s,c)),n.print(null,c+".")}if(a.length?(n.print(null,o),n.print(null,"."),n.print(null,a.join("."))):n.print(null,o),this.typeExpression>0){var p=e&&e.length||0,l=(u||0)-p;if(p>0||l>0){if(n.print(null,"<"),p>0&&this.visitAllObjects(function(t){return t.visitType(r,n)},e,n,","),l>0)for(var h=0;l>h;h++)(h>0||p>0)&&n.print(null,","),n.print(null,"any");n.print(null,">")}}},e.prototype._printColonType=function(t,e,n){t!==Sb&&(e.print(null,":"),this.visitType(t,e,n))},e}(jw),Bw={};oa(Lf.HTML,["iframe|srcdoc","*|innerHTML","*|outerHTML"]),oa(Lf.STYLE,["*|style"]),oa(Lf.URL,["*|formAction","area|href","area|ping","audio|src","a|href","a|ping","blockquote|cite","body|background","del|cite","form|action","img|src","img|srcset","input|src","ins|cite","q|cite","source|src","source|srcset","track|src","video|poster","video|src"]),oa(Lf.RESOURCE_URL,["applet|code","applet|codebase","base|href","embed|src","frame|src","head|profile","html|manifest","iframe|src","link|href","media|src","object|codebase","object|data","script|src"]);var zw="boolean",qw="number",Ww="string",Kw="object",Qw=["[Element]|textContent,%classList,className,id,innerHTML,*beforecopy,*beforecut,*beforepaste,*copy,*cut,*paste,*search,*selectstart,*webkitfullscreenchange,*webkitfullscreenerror,*wheel,outerHTML,#scrollLeft,#scrollTop","[HTMLElement]^[Element]|accessKey,contentEditable,dir,!draggable,!hidden,innerText,lang,*abort,*beforecopy,*beforecut,*beforepaste,*blur,*cancel,*canplay,*canplaythrough,*change,*click,*close,*contextmenu,*copy,*cuechange,*cut,*dblclick,*drag,*dragend,*dragenter,*dragleave,*dragover,*dragstart,*drop,*durationchange,*emptied,*ended,*error,*focus,*input,*invalid,*keydown,*keypress,*keyup,*load,*loadeddata,*loadedmetadata,*loadstart,*message,*mousedown,*mouseenter,*mouseleave,*mousemove,*mouseout,*mouseover,*mouseup,*mousewheel,*mozfullscreenchange,*mozfullscreenerror,*mozpointerlockchange,*mozpointerlockerror,*paste,*pause,*play,*playing,*progress,*ratechange,*reset,*resize,*scroll,*search,*seeked,*seeking,*select,*selectstart,*show,*stalled,*submit,*suspend,*timeupdate,*toggle,*volumechange,*waiting,*webglcontextcreationerror,*webglcontextlost,*webglcontextrestored,*webkitfullscreenchange,*webkitfullscreenerror,*wheel,outerText,!spellcheck,%style,#tabIndex,title,!translate","abbr,address,article,aside,b,bdi,bdo,cite,code,dd,dfn,dt,em,figcaption,figure,footer,header,i,kbd,main,mark,nav,noscript,rb,rp,rt,rtc,ruby,s,samp,section,small,strong,sub,sup,u,var,wbr^[HTMLElement]|accessKey,contentEditable,dir,!draggable,!hidden,innerText,lang,*abort,*beforecopy,*beforecut,*beforepaste,*blur,*cancel,*canplay,*canplaythrough,*change,*click,*close,*contextmenu,*copy,*cuechange,*cut,*dblclick,*drag,*dragend,*dragenter,*dragleave,*dragover,*dragstart,*drop,*durationchange,*emptied,*ended,*error,*focus,*input,*invalid,*keydown,*keypress,*keyup,*load,*loadeddata,*loadedmetadata,*loadstart,*message,*mousedown,*mouseenter,*mouseleave,*mousemove,*mouseout,*mouseover,*mouseup,*mousewheel,*mozfullscreenchange,*mozfullscreenerror,*mozpointerlockchange,*mozpointerlockerror,*paste,*pause,*play,*playing,*progress,*ratechange,*reset,*resize,*scroll,*search,*seeked,*seeking,*select,*selectstart,*show,*stalled,*submit,*suspend,*timeupdate,*toggle,*volumechange,*waiting,*webglcontextcreationerror,*webglcontextlost,*webglcontextrestored,*webkitfullscreenchange,*webkitfullscreenerror,*wheel,outerText,!spellcheck,%style,#tabIndex,title,!translate","media^[HTMLElement]|!autoplay,!controls,%crossOrigin,#currentTime,!defaultMuted,#defaultPlaybackRate,!disableRemotePlayback,!loop,!muted,*encrypted,#playbackRate,preload,src,%srcObject,#volume",":svg:^[HTMLElement]|*abort,*blur,*cancel,*canplay,*canplaythrough,*change,*click,*close,*contextmenu,*cuechange,*dblclick,*drag,*dragend,*dragenter,*dragleave,*dragover,*dragstart,*drop,*durationchange,*emptied,*ended,*error,*focus,*input,*invalid,*keydown,*keypress,*keyup,*load,*loadeddata,*loadedmetadata,*loadstart,*mousedown,*mouseenter,*mouseleave,*mousemove,*mouseout,*mouseover,*mouseup,*mousewheel,*pause,*play,*playing,*progress,*ratechange,*reset,*resize,*scroll,*seeked,*seeking,*select,*show,*stalled,*submit,*suspend,*timeupdate,*toggle,*volumechange,*waiting,%style,#tabIndex",":svg:graphics^:svg:|",":svg:animation^:svg:|*begin,*end,*repeat",":svg:geometry^:svg:|",":svg:componentTransferFunction^:svg:|",":svg:gradient^:svg:|",":svg:textContent^:svg:graphics|",":svg:textPositioning^:svg:textContent|","a^[HTMLElement]|charset,coords,download,hash,host,hostname,href,hreflang,name,password,pathname,ping,port,protocol,referrerPolicy,rel,rev,search,shape,target,text,type,username","area^[HTMLElement]|alt,coords,hash,host,hostname,href,!noHref,password,pathname,ping,port,protocol,referrerPolicy,search,shape,target,username","audio^media|","br^[HTMLElement]|clear","base^[HTMLElement]|href,target","body^[HTMLElement]|aLink,background,bgColor,link,*beforeunload,*blur,*error,*focus,*hashchange,*languagechange,*load,*message,*offline,*online,*pagehide,*pageshow,*popstate,*rejectionhandled,*resize,*scroll,*storage,*unhandledrejection,*unload,text,vLink","button^[HTMLElement]|!autofocus,!disabled,formAction,formEnctype,formMethod,!formNoValidate,formTarget,name,type,value","canvas^[HTMLElement]|#height,#width","content^[HTMLElement]|select","dl^[HTMLElement]|!compact","datalist^[HTMLElement]|","details^[HTMLElement]|!open","dialog^[HTMLElement]|!open,returnValue","dir^[HTMLElement]|!compact","div^[HTMLElement]|align","embed^[HTMLElement]|align,height,name,src,type,width","fieldset^[HTMLElement]|!disabled,name","font^[HTMLElement]|color,face,size","form^[HTMLElement]|acceptCharset,action,autocomplete,encoding,enctype,method,name,!noValidate,target","frame^[HTMLElement]|frameBorder,longDesc,marginHeight,marginWidth,name,!noResize,scrolling,src","frameset^[HTMLElement]|cols,*beforeunload,*blur,*error,*focus,*hashchange,*languagechange,*load,*message,*offline,*online,*pagehide,*pageshow,*popstate,*rejectionhandled,*resize,*scroll,*storage,*unhandledrejection,*unload,rows","hr^[HTMLElement]|align,color,!noShade,size,width","head^[HTMLElement]|","h1,h2,h3,h4,h5,h6^[HTMLElement]|align","html^[HTMLElement]|version","iframe^[HTMLElement]|align,!allowFullscreen,frameBorder,height,longDesc,marginHeight,marginWidth,name,referrerPolicy,%sandbox,scrolling,src,srcdoc,width","img^[HTMLElement]|align,alt,border,%crossOrigin,#height,#hspace,!isMap,longDesc,lowsrc,name,referrerPolicy,sizes,src,srcset,useMap,#vspace,#width","input^[HTMLElement]|accept,align,alt,autocapitalize,autocomplete,!autofocus,!checked,!defaultChecked,defaultValue,dirName,!disabled,%files,formAction,formEnctype,formMethod,!formNoValidate,formTarget,#height,!incremental,!indeterminate,max,#maxLength,min,#minLength,!multiple,name,pattern,placeholder,!readOnly,!required,selectionDirection,#selectionEnd,#selectionStart,#size,src,step,type,useMap,value,%valueAsDate,#valueAsNumber,#width","keygen^[HTMLElement]|!autofocus,challenge,!disabled,keytype,name","li^[HTMLElement]|type,#value","label^[HTMLElement]|htmlFor","legend^[HTMLElement]|align","link^[HTMLElement]|as,charset,%crossOrigin,!disabled,href,hreflang,integrity,media,rel,%relList,rev,%sizes,target,type","map^[HTMLElement]|name","marquee^[HTMLElement]|behavior,bgColor,direction,height,#hspace,#loop,#scrollAmount,#scrollDelay,!trueSpeed,#vspace,width","menu^[HTMLElement]|!compact","meta^[HTMLElement]|content,httpEquiv,name,scheme","meter^[HTMLElement]|#high,#low,#max,#min,#optimum,#value","ins,del^[HTMLElement]|cite,dateTime","ol^[HTMLElement]|!compact,!reversed,#start,type","object^[HTMLElement]|align,archive,border,code,codeBase,codeType,data,!declare,height,#hspace,name,standby,type,useMap,#vspace,width","optgroup^[HTMLElement]|!disabled,label","option^[HTMLElement]|!defaultSelected,!disabled,label,!selected,text,value","output^[HTMLElement]|defaultValue,%htmlFor,name,value","p^[HTMLElement]|align","param^[HTMLElement]|name,type,value,valueType","picture^[HTMLElement]|","pre^[HTMLElement]|#width","progress^[HTMLElement]|#max,#value","q,blockquote,cite^[HTMLElement]|","script^[HTMLElement]|!async,charset,%crossOrigin,!defer,event,htmlFor,integrity,src,text,type","select^[HTMLElement]|!autofocus,!disabled,#length,!multiple,name,!required,#selectedIndex,#size,value","shadow^[HTMLElement]|","source^[HTMLElement]|media,sizes,src,srcset,type","span^[HTMLElement]|","style^[HTMLElement]|!disabled,media,type","caption^[HTMLElement]|align","th,td^[HTMLElement]|abbr,align,axis,bgColor,ch,chOff,#colSpan,headers,height,!noWrap,#rowSpan,scope,vAlign,width","col,colgroup^[HTMLElement]|align,ch,chOff,#span,vAlign,width","table^[HTMLElement]|align,bgColor,border,%caption,cellPadding,cellSpacing,frame,rules,summary,%tFoot,%tHead,width","tr^[HTMLElement]|align,bgColor,ch,chOff,vAlign","tfoot,thead,tbody^[HTMLElement]|align,ch,chOff,vAlign","template^[HTMLElement]|","textarea^[HTMLElement]|autocapitalize,!autofocus,#cols,defaultValue,dirName,!disabled,#maxLength,#minLength,name,placeholder,!readOnly,!required,#rows,selectionDirection,#selectionEnd,#selectionStart,value,wrap","title^[HTMLElement]|text","track^[HTMLElement]|!default,kind,label,src,srclang","ul^[HTMLElement]|!compact,type","unknown^[HTMLElement]|","video^media|#height,poster,#width",":svg:a^:svg:graphics|",":svg:animate^:svg:animation|",":svg:animateMotion^:svg:animation|",":svg:animateTransform^:svg:animation|",":svg:circle^:svg:geometry|",":svg:clipPath^:svg:graphics|",":svg:cursor^:svg:|",":svg:defs^:svg:graphics|",":svg:desc^:svg:|",":svg:discard^:svg:|",":svg:ellipse^:svg:geometry|",":svg:feBlend^:svg:|",":svg:feColorMatrix^:svg:|",":svg:feComponentTransfer^:svg:|",":svg:feComposite^:svg:|",":svg:feConvolveMatrix^:svg:|",":svg:feDiffuseLighting^:svg:|",":svg:feDisplacementMap^:svg:|",":svg:feDistantLight^:svg:|",":svg:feDropShadow^:svg:|",":svg:feFlood^:svg:|",":svg:feFuncA^:svg:componentTransferFunction|",":svg:feFuncB^:svg:componentTransferFunction|",":svg:feFuncG^:svg:componentTransferFunction|",":svg:feFuncR^:svg:componentTransferFunction|",":svg:feGaussianBlur^:svg:|",":svg:feImage^:svg:|",":svg:feMerge^:svg:|",":svg:feMergeNode^:svg:|",":svg:feMorphology^:svg:|",":svg:feOffset^:svg:|",":svg:fePointLight^:svg:|",":svg:feSpecularLighting^:svg:|",":svg:feSpotLight^:svg:|",":svg:feTile^:svg:|",":svg:feTurbulence^:svg:|",":svg:filter^:svg:|",":svg:foreignObject^:svg:graphics|",":svg:g^:svg:graphics|",":svg:image^:svg:graphics|",":svg:line^:svg:geometry|",":svg:linearGradient^:svg:gradient|",":svg:mpath^:svg:|",":svg:marker^:svg:|",":svg:mask^:svg:|",":svg:metadata^:svg:|",":svg:path^:svg:geometry|",":svg:pattern^:svg:|",":svg:polygon^:svg:geometry|",":svg:polyline^:svg:geometry|",":svg:radialGradient^:svg:gradient|",":svg:rect^:svg:geometry|",":svg:svg^:svg:graphics|#currentScale,#zoomAndPan",":svg:script^:svg:|type",":svg:set^:svg:animation|",":svg:stop^:svg:|",":svg:style^:svg:|!disabled,media,title,type",":svg:switch^:svg:graphics|",":svg:symbol^:svg:|",":svg:tspan^:svg:textPositioning|",":svg:text^:svg:textPositioning|",":svg:textPath^:svg:textContent|",":svg:title^:svg:|",":svg:use^:svg:graphics|",":svg:view^:svg:|#zoomAndPan","data^[HTMLElement]|value","menuitem^[HTMLElement]|type,label,icon,!disabled,!checked,radiogroup,!default","summary^[HTMLElement]|","time^[HTMLElement]|dateTime"],Gw={class:"className",for:"htmlFor",formaction:"formAction",innerHtml:"innerHTML",readonly:"readOnly",tabindex:"tabIndex"},Xw=function(t){function e(){var e=t.call(this)||this;return e._schema={},Qw.forEach(function(t){var n={},r=t.split("|"),i=r[0],o=r[1],s=o.split(","),a=i.split("^"),u=a[0],c=a[1];u.split(",").forEach(function(t){return e._schema[t.toLowerCase()]=n});var p=c&&e._schema[c.toLowerCase()];p&&Object.keys(p).forEach(function(t){n[t]=p[t]}),s.forEach(function(t){if(t.length>0)switch(t[0]){case"*":break;case"!":n[t.substring(1)]=zw;break;case"#":n[t.substring(1)]=qw;break;case"%":n[t.substring(1)]=Kw;break;default:n[t]=Ww}})}),e}return xd(e,t),e.prototype.hasProperty=function(t,e,n){if(n.some(function(t){return t.name===_l.name}))return!0;if(t.indexOf("-")>-1){if("ng-container"===t||"ng-content"===t)return!1;if(n.some(function(t){return t.name===gl.name}))return!0}var r=this._schema[t.toLowerCase()]||this._schema.unknown;return!!r[e]},e.prototype.hasElement=function(t,e){if(e.some(function(t){return t.name===_l.name}))return!0;if(t.indexOf("-")>-1){if("ng-container"===t||"ng-content"===t)return!0;if(e.some(function(t){return t.name===gl.name}))return!0}return!!this._schema[t.toLowerCase()]},e.prototype.securityContext=function(t,e,n){n&&(e=this.getMappedPropName(e)),t=t.toLowerCase(),e=e.toLowerCase();var r=Bw[t+"|"+e];return r?r:(r=Bw["*|"+e],r?r:Lf.NONE)},e.prototype.getMappedPropName=function(t){return Gw[t]||t},e.prototype.getDefaultComponentElementName=function(){return"ng-component"},e.prototype.validateProperty=function(t){if(t.toLowerCase().startsWith("on")){var e="Binding to event property '"+t+"' is disallowed for security reasons, "+("please use ("+t.slice(2)+")=...")+("\nIf '"+t+"' is a directive input, make sure the directive is imported by the")+" current module.";return{error:!0,msg:e}}return{error:!1}},e.prototype.validateAttribute=function(t){if(t.toLowerCase().startsWith("on")){var e="Binding to event attribute '"+t+"' is disallowed for security reasons, "+("please use ("+t.slice(2)+")=...");return{error:!0,msg:e}}return{error:!1}},e.prototype.allKnownElementNames=function(){return Object.keys(this._schema)},e.prototype.normalizeAnimationStyleProperty=function(t){return qr(t)},e.prototype.normalizeAnimationStyleValue=function(t,e,n){var r="",i=n.toString().trim(),o=null;if(sa(t)&&0!==n&&"0"!==n)if("number"==typeof n)r="px";else{var s=n.match(/^[+-]?[\d\.]+([a-z]*)$/);s&&0==s[1].length&&(o="Please provide a CSS unit value for "+e+":"+n)}return{error:o,value:i+r}},e}(t_);Xw.decorators=[{type:bi}],Xw.ctorParameters=function(){return[]};var Zw=function(){function t(){this.strictStyling=!0}return t.prototype.shimCssText=function(t,e,n){void 0===n&&(n="");var r=ua(t);return t=aa(t),t=this._insertDirectives(t),this._scopeCssText(t,e,n)+r},t.prototype._insertDirectives=function(t){return t=this._insertPolyfillDirectivesInCssText(t),this._insertPolyfillRulesInCssText(t)},t.prototype._insertPolyfillDirectivesInCssText=function(t){return t.replace($w,function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];return t[2]+"{"})},t.prototype._insertPolyfillRulesInCssText=function(t){return t.replace(Jw,function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];var n=t[0].replace(t[1],"").replace(t[2],"");return t[4]+n})},t.prototype._scopeCssText=function(t,e,n){var r=this._extractUnscopedRulesFromCssText(t);return t=this._insertPolyfillHostInCssText(t),t=this._convertColonHost(t),t=this._convertColonHostContext(t),t=this._convertShadowDOMSelectors(t),e&&(t=this._scopeSelectors(t,e,n)),t=t+"\n"+r,t.trim()},t.prototype._extractUnscopedRulesFromCssText=function(t){var e,n="";for(tE.lastIndex=0;null!==(e=tE.exec(t));){var r=e[0].replace(e[2],"").replace(e[1],e[4]);n+=r+"\n\n"}return n},t.prototype._convertColonHost=function(t){return this._convertColonRule(t,iE,this._colonHostPartReplacer)},t.prototype._convertColonHostContext=function(t){return this._convertColonRule(t,oE,this._colonHostContextPartReplacer)},t.prototype._convertColonRule=function(t,e,n){return t.replace(e,function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];if(t[2]){for(var r=t[2].split(","),i=[],o=0;o<r.length;o++){var s=r[o].trim();if(!s)break;i.push(n(sE,s,t[3]))}return i.join(",")}return sE+t[3]})},t.prototype._colonHostContextPartReplacer=function(t,e,n){return e.indexOf(eE)>-1?this._colonHostPartReplacer(t,e,n):t+e+n+", "+e+" "+t+n},t.prototype._colonHostPartReplacer=function(t,e,n){return t+e.replace(eE,"")+n},t.prototype._convertShadowDOMSelectors=function(t){return uE.reduce(function(t,e){return t.replace(e," ")},t)},t.prototype._scopeSelectors=function(t,e,n){var r=this;return ca(t,function(t){var i=t.selector,o=t.content;return"@"!=t.selector[0]?i=r._scopeSelector(t.selector,e,n,r.strictStyling):(t.selector.startsWith("@media")||t.selector.startsWith("@supports")||t.selector.startsWith("@page")||t.selector.startsWith("@document"))&&(o=r._scopeSelectors(t.content,e,n)),new wE(i,o)})},t.prototype._scopeSelector=function(t,e,n,r){var i=this;return t.split(",").map(function(t){return t.trim().split(cE)}).map(function(t){var o=t[0],s=t.slice(1),a=function(t){return i._selectorNeedsScoping(t,e)?r?i._applyStrictSelectorScope(t,e,n):i._applySelectorScope(t,e,n):t};return[a(o)].concat(s).join(" ")}).join(", ")},t.prototype._selectorNeedsScoping=function(t,e){var n=this._makeScopeMatcher(e);return!n.test(t)},t.prototype._makeScopeMatcher=function(t){var e=/\[/g,n=/\]/g;return t=t.replace(e,"\\[").replace(n,"\\]"),new RegExp("^("+t+")"+pE,"m")},t.prototype._applySelectorScope=function(t,e,n){return this._applySimpleSelectorScope(t,e,n)},t.prototype._applySimpleSelectorScope=function(t,e,n){if(lE.lastIndex=0,lE.test(t)){var r=this.strictStyling?"["+n+"]":e;return t.replace(aE,function(t,e){return e.replace(/([^:]*)(:*)(.*)/,function(t,e,n,i){return e+r+n+i})}).replace(lE,r+" ")}return e+" "+t},t.prototype._applyStrictSelectorScope=function(t,e,n){var r=this,i=/\[is=([^\]]*)\]/g;e=e.replace(i,function(){for(var t=[],e=1;e<arguments.length;e++)t[e-1]=arguments[e];return t[0]});var o="["+e+"]",s=function(t){var i=t.trim();if(!i)return"";if(t.indexOf(sE)>-1)i=r._applySimpleSelectorScope(t,e,n);else{var s=t.replace(lE,"");if(s.length>0){var a=s.match(/([^:]*)(:*)(.*)/);a&&(i=a[1]+o+a[2]+a[3])}}return i},a=new Yw(t);t=a.content();for(var u,c="",p=0,l=/( |>|\+|~(?!=))\s*/g,h=t.indexOf(sE);null!==(u=l.exec(t));){var f=u[1],d=t.slice(p,u.index).trim(),v=p>=h?s(d):d;c+=v+" "+f+" ",p=l.lastIndex}return c+=s(t.substring(p)),a.restore(c)},t.prototype._insertPolyfillHostInCssText=function(t){return t.replace(fE,nE).replace(hE,eE)},t}(),Yw=function(){function t(t){var e=this;this.placeholders=[],this.index=0,t=t.replace(/(\[[^\]]*\])/g,function(t,n){var r="__ph-"+e.index+"__";return e.placeholders.push(n),e.index++,r}),this._content=t.replace(/(:nth-[-\w]+)(\([^)]+\))/g,function(t,n,r){var i="__ph-"+e.index+"__";return e.placeholders.push(r),e.index++,n+i})}return t.prototype.restore=function(t){var e=this;return t.replace(/__ph-(\d+)__/g,function(t,n){return e.placeholders[+n]})},t.prototype.content=function(){return this._content},t}(),$w=/polyfill-next-selector[^}]*content:[\s]*?(['"])(.*?)\1[;\s]*}([^{]*?){/gim,Jw=/(polyfill-rule)[^}]*(content:[\s]*(['"])(.*?)\3)[;\s]*[^}]*}/gim,tE=/(polyfill-unscoped-rule)[^}]*(content:[\s]*(['"])(.*?)\3)[;\s]*[^}]*}/gim,eE="-shadowcsshost",nE="-shadowcsscontext",rE=")(?:\\(((?:\\([^)(]*\\)|[^)(]*)+?)\\))?([^,{]*)",iE=new RegExp("("+eE+rE,"gim"),oE=new RegExp("("+nE+rE,"gim"),sE=eE+"-no-combinator",aE=/-shadowcsshost-no-combinator([^\s]*)/,uE=[/::shadow/g,/::content/g,/\/shadow-deep\//g,/\/shadow\//g],cE=/(?:>>>)|(?:\/deep\/)/g,pE="([>\\s~+[.,{:][\\s\\S]*)?$",lE=/-shadowcsshost/gim,hE=/:host/gim,fE=/:host-context/gim,dE=/\/\*\s*[\s\S]*?\*\//g,vE=/\/\*\s*#\s*sourceMappingURL=[\s\S]+?\*\//,yE=/(\s*)([^;\{\}]+?)(\s*)((?:{%BLOCK%}?\s*;?)|(?:\s*;))/g,mE=/([{}])/g,gE="{",_E="}",bE="%BLOCK%",wE=function(){function t(t,e){this.selector=t,this.content=e}return t}(),EE=function(){function t(t,e){this.escapedString=t,this.blocks=e}return t}(),CE="%COMP%",xE="_nghost-"+CE,SE="_ngcontent-"+CE,TE=function(){function t(t,e,n,r){this.name=t,this.moduleUrl=e,this.isShimmed=n,this.valuePlaceholder=r}return t}(),AE=function(){function t(t,e){this.componentStylesheet=t,this.externalStylesheets=e}return t}(),PE=function(){function t(t,e,n,r,i){this.statements=t,this.stylesVar=e,this.dependencies=n,this.isShimmed=r,this.meta=i}return t}(),kE=function(){function t(t){this._urlResolver=t,this._shadowCss=new Zw}return t.prototype.compileComponent=function(t){var e=this,n=[],r=this._compileStyles(t,new pv({styles:t.template.styles,styleUrls:t.template.styleUrls,moduleUrl:ei(t.type)}),!0);return t.template.externalStylesheets.forEach(function(r){var i=e._compileStyles(t,r,!1);n.push(i)}),new AE(r,n)},t.prototype._compileStyles=function(t,e,n){for(var r=this,i=t.template.encapsulation===wl.Emulated,o=e.styles.map(function(t){return Gs(r._shimIfNeeded(t,i))}),s=[],a=0;a<e.styleUrls.length;a++){var u={reference:null};s.push(new TE(la(null),e.styleUrls[a],i,u)),o.push(new jb(u))}var c=la(n?t:null),p=Hs(c).set(qs(o,new Eb(xb,[mb.Const]))).toDeclStmt(null,[nw.Final]);return new PE([p],c,s,i,e)},t.prototype._shimIfNeeded=function(t,e){return e?this._shadowCss.shimCssText(t,SE,xE):t},t}();kE.decorators=[{type:bi}],kE.ctorParameters=function(){return[{type:ib}]};var ME=function(){function t(){}return t}();ME.event=Hs("$event");var OE=function(){function t(t,e){this.stmts=t,this.allowDefault=e}return t}(),NE=function(){function t(t,e){this.stmts=t,this.currValExpr=e}return t}(),IE={};IE.Statement=0,IE.Expression=1,IE[IE.Statement]="Statement",IE[IE.Expression]="Expression";var RE=function(t){function e(e){var n=t.call(this)||this;return n._converterFactory=e,n}return xd(e,t),e.prototype.visitPipe=function(t,e){var n=this,r=[t.exp].concat(t.args).map(function(t){return t.visit(n,e)});return new FE(t.span,r,this._converterFactory.createPipeConverter(t.name,r.length))},e.prototype.visitLiteralArray=function(t,e){var n=this,r=t.expressions.map(function(t){return t.visit(n,e)});return new FE(t.span,r,this._converterFactory.createLiteralArrayConverter(t.expressions.length))},e.prototype.visitLiteralMap=function(t,e){var n=this,r=t.values.map(function(t){return t.visit(n,e)});return new FE(t.span,r,this._converterFactory.createLiteralMapConverter(t.keys))},e}(qv),DE=function(){function t(t,e,n){this._localResolver=t,this._implicitReceiver=e,this.bindingId=n,this._nodeMap=new Map,this._resultMap=new Map,this._currentTemporary=0,this.temporaryCount=0}return t.prototype.visitBinary=function(t,e){var n;switch(t.operation){case"+":n=Ab.Plus;break;case"-":n=Ab.Minus;break;case"*":n=Ab.Multiply;break;case"/":n=Ab.Divide;break;case"%":n=Ab.Modulo;break;case"&&":n=Ab.And;break;case"||":n=Ab.Or;break;case"==":n=Ab.Equals;break;case"!=":n=Ab.NotEquals;break;case"===":n=Ab.Identical;break;case"!==":n=Ab.NotIdentical;break;case"<":n=Ab.Lower;break;case">":n=Ab.Bigger;break;case"<=":n=Ab.LowerEquals;break;case">=":n=Ab.BiggerEquals;break;default:throw new Error("Unsupported operation "+t.operation)}return wa(e,new Wb(n,this.visit(t.left,IE.Expression),this.visit(t.right,IE.Expression)))},t.prototype.visitChain=function(t,e){return _a(e,t),this.visitAll(t.expressions,e)},t.prototype.visitConditional=function(t,e){var n=this.visit(t.condition,IE.Expression);return wa(e,n.conditional(this.visit(t.trueExp,IE.Expression),this.visit(t.falseExp,IE.Expression)))},t.prototype.visitPipe=function(t){throw new Error("Illegal state: Pipes should have been converted into functions. Pipe: "+t.name)},t.prototype.visitFunctionCall=function(t,e){var n,r=this.visitAll(t.args,IE.Expression);return n=t instanceof FE?t.converter(r):this.visit(t.target,IE.Expression).callFn(r),wa(e,n)},t.prototype.visitImplicitReceiver=function(t,e){return ba(e,t),this._implicitReceiver},t.prototype.visitInterpolation=function(t,e){ba(e,t);for(var n=[Gs(t.expressions.length)],r=0;r<t.strings.length-1;r++)n.push(Gs(t.strings[r])),n.push(this.visit(t.expressions[r],IE.Expression));return n.push(Gs(t.strings[t.strings.length-1])),t.expressions.length<=9?Us(zo(Wg.inlineInterpolate)).callFn(n):Us(zo(Wg.interpolate)).callFn([n[0],qs(n.slice(1))])},t.prototype.visitKeyedRead=function(t,e){var n=this.leftMostSafeNode(t);return n?this.convertSafeAccess(t,n,e):wa(e,this.visit(t.obj,IE.Expression).key(this.visit(t.key,IE.Expression)))},t.prototype.visitKeyedWrite=function(t,e){var n=this.visit(t.obj,IE.Expression),r=this.visit(t.key,IE.Expression),i=this.visit(t.value,IE.Expression);return wa(e,n.key(r).set(i))},t.prototype.visitLiteralArray=function(){throw new Error("Illegal State: literal arrays should have been converted into functions")},t.prototype.visitLiteralMap=function(){throw new Error("Illegal State: literal maps should have been converted into functions")},t.prototype.visitLiteralPrimitive=function(t,e){return wa(e,Gs(t.value))},t.prototype._getLocal=function(t){return this._localResolver.getLocal(t)},t.prototype.visitMethodCall=function(t,e){var n=this.leftMostSafeNode(t);if(n)return this.convertSafeAccess(t,n,e);var r=this.visitAll(t.args,IE.Expression),i=null,o=this.visit(t.receiver,IE.Expression);if(o===this._implicitReceiver){var s=this._getLocal(t.name);s&&(i=s.callFn(r))}return null==i&&(i=o.callMethod(t.name,r)),wa(e,i)},t.prototype.visitPrefixNot=function(t,e){return wa(e,Ks(this.visit(t.expression,IE.Expression)))},t.prototype.visitPropertyRead=function(t,e){var n=this.leftMostSafeNode(t);if(n)return this.convertSafeAccess(t,n,e);var r=null,i=this.visit(t.receiver,IE.Expression);return i===this._implicitReceiver&&(r=this._getLocal(t.name)),null==r&&(r=i.prop(t.name)),wa(e,r)},t.prototype.visitPropertyWrite=function(t,e){var n=this.visit(t.receiver,IE.Expression);if(n===this._implicitReceiver){var r=this._getLocal(t.name);if(r)throw new Error("Cannot assign to a reference or variable!")}return wa(e,n.prop(t.name).set(this.visit(t.value,IE.Expression)))},t.prototype.visitSafePropertyRead=function(t,e){return this.convertSafeAccess(t,this.leftMostSafeNode(t),e)},t.prototype.visitSafeMethodCall=function(t,e){return this.convertSafeAccess(t,this.leftMostSafeNode(t),e)},t.prototype.visitAll=function(t,e){var n=this;return t.map(function(t){return n.visit(t,e)})},t.prototype.visitQuote=function(){throw new Error("Quotes are not supported for evaluation!")},t.prototype.visit=function(t,e){var n=this._resultMap.get(t);return n?n:(this._nodeMap.get(t)||t).visit(this,e)},t.prototype.convertSafeAccess=function(t,e,n){var r,i=this.visit(e.receiver,IE.Expression);this.needsTemporary(e.receiver)&&(r=this.allocateTemporary(),i=r.set(i),this._resultMap.set(e.receiver,r));var o=i.isBlank();e instanceof jv?this._nodeMap.set(e,new Vv(e.span,e.receiver,e.name,e.args)):this._nodeMap.set(e,new Tv(e.span,e.receiver,e.name));var s=this.visit(t,IE.Expression);return this._nodeMap.delete(e),r&&this.releaseTemporary(r),wa(n,o.conditional(Gs(null),s))},t.prototype.leftMostSafeNode=function(t){var e=this,n=function(t,n){return(e._nodeMap.get(n)||n).visit(t)};return t.visit({visitBinary:function(){return null},visitChain:function(){return null},visitConditional:function(){return null},visitFunctionCall:function(){return null},visitImplicitReceiver:function(){return null},visitInterpolation:function(){return null},visitKeyedRead:function(t){return n(this,t.obj)},visitKeyedWrite:function(){return null},visitLiteralArray:function(){return null},visitLiteralMap:function(){return null},visitLiteralPrimitive:function(){return null},visitMethodCall:function(t){return n(this,t.receiver)},visitPipe:function(){return null},visitPrefixNot:function(){return null},visitPropertyRead:function(t){return n(this,t.receiver)},visitPropertyWrite:function(){return null},visitQuote:function(){return null},visitSafeMethodCall:function(t){return n(this,t.receiver)||t},visitSafePropertyRead:function(t){return n(this,t.receiver)||t}})},t.prototype.needsTemporary=function(t){var e=this,n=function(t,n){return n&&(e._nodeMap.get(n)||n).visit(t)},r=function(t,e){return e.some(function(e){return n(t,e)})};return t.visit({visitBinary:function(t){return n(this,t.left)||n(this,t.right)},visitChain:function(){return!1},visitConditional:function(t){return n(this,t.condition)||n(this,t.trueExp)||n(this,t.falseExp)},visitFunctionCall:function(){return!0},visitImplicitReceiver:function(){return!1},visitInterpolation:function(t){return r(this,t.expressions)},visitKeyedRead:function(){return!1},visitKeyedWrite:function(){return!1},visitLiteralArray:function(){return!0},visitLiteralMap:function(){return!0},visitLiteralPrimitive:function(){return!1},visitMethodCall:function(){return!0},visitPipe:function(){return!0},visitPrefixNot:function(t){return n(this,t.expression)},visitPropertyRead:function(){return!1},visitPropertyWrite:function(){return!1},visitQuote:function(){return!1},visitSafeMethodCall:function(){return!0},visitSafePropertyRead:function(){return!1}})},t.prototype.allocateTemporary=function(){var t=this._currentTemporary++;return this.temporaryCount=Math.max(this._currentTemporary,this.temporaryCount),new Mb(ya(this.bindingId,t))},t.prototype.releaseTemporary=function(t){if(this._currentTemporary--,t.name!=ya(this.bindingId,this._currentTemporary))throw new Error("Temporary "+t.name+" released out of order")},t}(),LE=function(){function t(){}return t.prototype.getLocal=function(t){return t===ME.event.name?ME.event:null},t}(),FE=function(t){function e(e,n,r){var i=t.call(this,e,null,n)||this;return i.args=n,i.converter=r,i}return xd(e,t),e}(Hv),VE="class",jE="style",HE="$implicit",UE="ng-container",BE=function(){function t(t,e,n){this.statements=t,this.viewClassVar=e,this.rendererTypeVar=n}return t}(),zE=function(){function t(t,e){this._genConfigNext=t,this._schemaRegistry=e}return t.prototype.compileComponent=function(t,e,n,r){var i,o=0,s=Va(e),a=[];if(!t.isHost){var u=[];t.template.animations&&t.template.animations.length&&u.push(new Xb("animation",Ys(t.template.animations),!0));var c=Hs(ri(t.type.reference));i=c.name,a.push(c.set(Us(zo(Wg.createRendererType2)).callFn([new Zb([new Xb("encapsulation",Gs(t.template.encapsulation)),new Xb("styles",n),new Xb("data",new Zb(u))])])).toDeclStmt(Bs(zo(Wg.RendererType2)),[nw.Final]))}var p=function(e){var n=o++;return new ZE(e,t,n,r,s,p)},l=p(null);return l.visitAll([],e),a.push.apply(a,l.build()),new BE(a,l.viewName,i)},t}();zE.decorators=[{type:bi}],zE.ctorParameters=function(){return[{type:mv},{type:t_}]};var qE=Hs("l"),WE=Hs("v"),KE=Hs("ck"),QE=Hs("co"),GE=Hs("en"),XE=Hs("ad"),ZE=function(){function t(t,e,n,r,i,o){this.parent=t,this.component=e,this.embeddedViewIndex=n,this.usedPipes=r,this.staticQueryIds=i,this.viewBuilderFactory=o,this.nodes=[],this.purePipeNodeIndices=Object.create(null),this.refNodeIndices=Object.create(null),this.variables=[],this.children=[],this.compType=this.embeddedViewIndex>0?xb:Bs(this.component.type)}return Object.defineProperty(t.prototype,"viewName",{get:function(){return ni(this.component.type.reference,this.embeddedViewIndex)},enumerable:!0,configurable:!0}),t.prototype.visitAll=function(t,e){var n=this;if(this.variables=t,this.parent||this.usedPipes.forEach(function(t){t.pure&&(n.purePipeNodeIndices[t.name]=n._createPipe(null,t));
}),!this.parent){var r=ja(this.staticQueryIds);this.component.viewQueries.forEach(function(t,e){var i=e+1,o=t.first?0:1,s=67108864|Ba(r,i,t.first);n.nodes.push(function(){return{sourceSpan:null,nodeFlags:s,nodeDef:Us(zo(Wg.queryDef)).callFn([Gs(s),Gs(i),new Zb([new Xb(t.propertyName,Gs(o))])])}})})}jr(this,e),this.parent&&(0===e.length||Oa(e))&&this.nodes.push(function(){return{sourceSpan:null,nodeFlags:1,nodeDef:Us(zo(Wg.anchorDef)).callFn([Gs(0),tw,tw,Gs(0)])}})},t.prototype.build=function(t){void 0===t&&(t=[]),this.children.forEach(function(e){return e.build(t)});var e=this._createNodeExpressions(),n=e.updateRendererStmts,r=e.updateDirectivesStmts,i=e.nodeDefExprs,o=this._createUpdateFn(n),s=this._createUpdateFn(r),a=0;this.parent||this.component.changeDetection!==pl.OnPush||(a|=2);var u=new ow(this.viewName,[new zb(qE.name)],[new aw(Us(zo(Wg.viewDef)).callFn([Gs(a),qs(i),s,o]))],Bs(zo(Wg.ViewDefinition)));return t.push(u),t},t.prototype._createUpdateFn=function(t){var e;if(t.length>0){var n=[];!this.component.isHost&&Fs(t).has(QE.name)&&n.push(QE.set(WE.prop("component")).toDeclStmt(this.compType)),e=Qs([new zb(KE.name,Sb),new zb(WE.name,Sb)],n.concat(t),Sb)}else e=tw;return e},t.prototype.visitNgContent=function(t){this.nodes.push(function(){return{sourceSpan:t.sourceSpan,nodeFlags:4,nodeDef:Us(zo(Wg.ngContentDef)).callFn([Gs(t.ngContentIndex),Gs(t.index)])}})},t.prototype.visitText=function(t){this.nodes.push(function(){return{sourceSpan:t.sourceSpan,nodeFlags:2,nodeDef:Us(zo(Wg.textDef)).callFn([Gs(t.ngContentIndex),qs([Gs(t.value)])])}})},t.prototype.visitBoundText=function(t){var e=this,n=this.nodes.length;this.nodes.push(null);var r=t.value,i=r.ast,o=i.expressions.map(function(r,i){return e._preprocessUpdateExpression({nodeIndex:n,bindingIndex:i,sourceSpan:t.sourceSpan,context:QE,value:r})});this.nodes[n]=function(){return{sourceSpan:t.sourceSpan,nodeFlags:2,nodeDef:Us(zo(Wg.textDef)).callFn([Gs(t.ngContentIndex),qs(i.strings.map(function(t){return Gs(t)}))]),updateRenderer:o}}},t.prototype.visitEmbeddedTemplate=function(t){var e=this,n=this.nodes.length;this.nodes.push(null);var r=this._visitElementOrTemplate(n,t),i=r.flags,o=r.queryMatchesExpr,s=r.hostEvents,a=this.viewBuilderFactory(this);this.children.push(a),a.visitAll(t.variables,t.children);var u=this.nodes.length-n-1;this.nodes[n]=function(){return{sourceSpan:t.sourceSpan,nodeFlags:1|i,nodeDef:Us(zo(Wg.anchorDef)).callFn([Gs(i),o,Gs(t.ngContentIndex),Gs(u),e._createElementHandleEventFn(n,s),Hs(a.viewName)])}}},t.prototype.visitElement=function(t){var e=this,n=this.nodes.length;this.nodes.push(null);var r=t.name;t.name===UE&&(r=null);var i=this._visitElementOrTemplate(n,t),o=i.flags,s=i.usedEvents,a=i.queryMatchesExpr,u=i.hostBindings,c=i.hostEvents,p=[],l=[],h=[];if(r){var f=t.inputs.map(function(t){return{context:QE,inputAst:t,dirAst:null}}).concat(u);f.length&&(l=f.map(function(t,r){return e._preprocessUpdateExpression({context:t.context,nodeIndex:n,bindingIndex:r,sourceSpan:t.inputAst.sourceSpan,value:t.inputAst.value})}),p=f.map(function(t){return Ia(t.inputAst,t.dirAst)})),h=s.map(function(t){var e=t[0],n=t[1];return qs([Gs(e),Gs(n)])})}jr(this,t.children);var d=this.nodes.length-n-1,v=t.directives.find(function(t){return t.directive.isComponent}),y=tw,m=tw;v&&(m=Us({reference:v.directive.componentViewType}),y=Us({reference:v.directive.rendererType})),this.nodes[n]=function(){return{sourceSpan:t.sourceSpan,nodeFlags:1|o,nodeDef:Us(zo(Wg.elementDef)).callFn([Gs(o),a,Gs(t.ngContentIndex),Gs(d),Gs(r),r?Ra(t):tw,p.length?qs(p):tw,h.length?qs(h):tw,e._createElementHandleEventFn(n,c),m,y]),updateRenderer:l}}},t.prototype._visitElementOrTemplate=function(t,e){var n=this,r=0;e.hasViewContainer&&(r|=8388608);var i=new Map;e.outputs.forEach(function(t){var e=Ua(t,null),n=e.name,r=e.target;i.set(ue(r,n),[r,n])}),e.directives.forEach(function(t){t.hostEvents.forEach(function(e){var n=Ua(e,t),r=n.name,o=n.target;i.set(ue(o,r),[o,r])})});var o=[],s=[],a=Ha(e.directives);a&&this._visitProvider(a,e.queryMatches),e.providers.forEach(function(r){var a,u;if(e.directives.forEach(function(t,e){t.directive.type.reference===ai(r.token)&&(a=t,u=e)}),a){var c=n._visitDirective(r,a,u,t,e.references,e.queryMatches,i,n.staticQueryIds.get(e)),p=c.hostBindings,l=c.hostEvents;o.push.apply(o,p),s.push.apply(s,l)}else n._visitProvider(r,e.queryMatches)});var u=[];return e.queryMatches.forEach(function(t){var e;ai(t.value)===Bo(Wg.ElementRef)?e=0:ai(t.value)===Bo(Wg.ViewContainerRef)?e=3:ai(t.value)===Bo(Wg.TemplateRef)&&(e=2),null!=e&&u.push(qs([Gs(t.queryId),Gs(e)]))}),e.references.forEach(function(e){var r;e.value?ai(e.value)===Bo(Wg.TemplateRef)&&(r=2):r=1,null!=r&&(n.refNodeIndices[e.name]=t,u.push(qs([Gs(e.name),Gs(r)])))}),e.outputs.forEach(function(t){s.push({context:QE,eventAst:t,dirAst:null})}),{flags:r,usedEvents:Array.from(i.values()),queryMatchesExpr:u.length?qs(u):tw,hostBindings:o,hostEvents:s}},t.prototype._visitDirective=function(t,e,n,r,i,o,s,a){var u=this,c=this.nodes.length;this.nodes.push(null),e.directive.queries.forEach(function(t,n){var r=e.contentQueryStartId+n,i=33554432|Ba(a,r,t.first),o=t.first?0:1;u.nodes.push(function(){return{sourceSpan:e.sourceSpan,nodeFlags:i,nodeDef:Us(zo(Wg.queryDef)).callFn([Gs(i),Gs(r),new Zb([new Xb(t.propertyName,Gs(o))])])}})});var p=this.nodes.length-c-1,l=this._visitProviderOrDirective(t,o),h=l.flags,f=l.queryMatchExprs,d=l.providerExpr,v=l.depsExpr;i.forEach(function(e){e.value&&ai(e.value)===ai(t.token)&&(u.refNodeIndices[e.name]=c,f.push(qs([Gs(e.name),Gs(4)])))}),e.directive.isComponent&&(h|=16384);var y=e.inputs.map(function(t,e){var n=qs([Gs(e),Gs(t.directiveName)]);return new Xb(t.directiveName,n,!1)}),m=[],g=e.directive;Object.keys(g.outputs).forEach(function(t){var e=g.outputs[t];s.has(e)&&m.push(new Xb(t,Gs(e),!1))});var _=[];(e.inputs.length||(163840&h)>0)&&(_=e.inputs.map(function(t,e){return u._preprocessUpdateExpression({nodeIndex:c,bindingIndex:e,sourceSpan:t.sourceSpan,context:QE,value:t.value})}));var b=Us(zo(Wg.nodeValue)).callFn([WE,Gs(c)]),w=e.hostProperties.map(function(t){return{context:b,dirAst:e,inputAst:t}}),E=e.hostEvents.map(function(t){return{context:b,eventAst:t,dirAst:e}});return this.nodes[c]=function(){return{sourceSpan:e.sourceSpan,nodeFlags:8192|h,nodeDef:Us(zo(Wg.directiveDef)).callFn([Gs(h),f.length?qs(f):tw,Gs(p),d,v,y.length?new Zb(y):tw,m.length?new Zb(m):tw]),updateDirectives:_,directive:e.directive.type}},{hostBindings:w,hostEvents:E}},t.prototype._visitProvider=function(t,e){var n=this.nodes.length;this.nodes.push(null);var r=this._visitProviderOrDirective(t,e),i=r.flags,o=r.queryMatchExprs,s=r.providerExpr,a=r.depsExpr;this.nodes[n]=function(){return{sourceSpan:t.sourceSpan,nodeFlags:i,nodeDef:Us(zo(Wg.providerDef)).callFn([Gs(i),o.length?qs(o):tw,ka(t.token),s,a])}}},t.prototype._visitProviderOrDirective=function(t,e){var n=0;t.eager||(n|=2048),t.providerType===Fd.PrivateService&&(n|=4096),t.lifecycleHooks.forEach(function(e){(e===Ed.OnDestroy||t.providerType===Fd.Directive||t.providerType===Fd.Component)&&(n|=Na(e))});var r=[];e.forEach(function(e){ai(e.value)===ai(t.token)&&r.push(qs([Gs(e.queryId),Gs(4)]))});var i=Ta(t),o=i.providerExpr,s=i.depsExpr,a=i.flags;return{flags:n|a,queryMatchExprs:r,providerExpr:o,depsExpr:s}},t.prototype.getLocal=function(t){if(t==ME.event.name)return ME.event;for(var e=WE,n=this;n;n=n.parent,e=e.prop("parent").cast(xb)){var r=n.refNodeIndices[t];if(null!=r)return Us(zo(Wg.nodeValue)).callFn([e,Gs(r)]);var i=n.variables.find(function(e){return e.name===t});if(i){var o=i.value||HE;return e.prop("context").prop(o)}}return null},t.prototype.createLiteralArrayConverter=function(t,e){if(0===e){var n=Us(zo(Wg.EMPTY_ARRAY));return function(){return n}}var r=this.nodes.length;return this.nodes.push(function(){return{sourceSpan:t,nodeFlags:16,nodeDef:Us(zo(Wg.pureArrayDef)).callFn([Gs(e)])}}),function(t){return La(r,t)}},t.prototype.createLiteralMapConverter=function(t,e){if(0===e.length){var n=Us(zo(Wg.EMPTY_MAP));return function(){return n}}var r=this.nodes.length;return this.nodes.push(function(){return{sourceSpan:t,nodeFlags:32,nodeDef:Us(zo(Wg.pureObjectDef)).callFn([qs(e.map(function(t){return Gs(t)}))])}}),function(t){return La(r,t)}},t.prototype.createPipeConverter=function(t,e,n){var r=this.usedPipes.find(function(t){return t.name===e});if(r.pure){var i=this.nodes.length;this.nodes.push(function(){return{sourceSpan:t.sourceSpan,nodeFlags:64,nodeDef:Us(zo(Wg.purePipeDef)).callFn([Gs(n)])}});for(var o=WE,s=this;s.parent;)s=s.parent,o=o.prop("parent").cast(xb);var a=s.purePipeNodeIndices[e],u=Us(zo(Wg.nodeValue)).callFn([o,Gs(a)]);return function(e){return Fa(t.nodeIndex,t.bindingIndex,La(i,[u].concat(e)))}}var c=this._createPipe(t.sourceSpan,r),p=Us(zo(Wg.nodeValue)).callFn([WE,Gs(c)]);return function(e){return Fa(t.nodeIndex,t.bindingIndex,p.callMethod("transform",e))}},t.prototype._createPipe=function(t,e){var n=this.nodes.length,r=0;e.type.lifecycleHooks.forEach(function(t){t===Ed.OnDestroy&&(r|=Na(t))});var i=e.type.diDeps.map(Ma);return this.nodes.push(function(){return{sourceSpan:t,nodeFlags:8,nodeDef:Us(zo(Wg.pipeDef)).callFn([Gs(r),Us(e.type),qs(i)])}}),n},t.prototype._preprocessUpdateExpression=function(t){var e=this;return{nodeIndex:t.nodeIndex,bindingIndex:t.bindingIndex,sourceSpan:t.sourceSpan,context:t.context,value:fa({createLiteralArrayConverter:function(n){return e.createLiteralArrayConverter(t.sourceSpan,n)},createLiteralMapConverter:function(n){return e.createLiteralMapConverter(t.sourceSpan,n)},createPipeConverter:function(n,r){return e.createPipeConverter(t,n,r)}},t.value)}},t.prototype._createNodeExpressions=function(){function t(t,r,i,o){var s=[],a=i.map(function(t){var r=t.sourceSpan,i=t.context,o=t.value,a=""+n++,u=i===QE?e:null,c=da(u,i,o,a),p=c.stmts,l=c.currValExpr;return s.push.apply(s,p.map(function(t){return Vs(t,r)})),js(l,r)});return(i.length||o)&&s.push(Vs(La(t,a).toStmt(),r)),s}var e=this,n=0,r=[],i=[],o=this.nodes.map(function(e,n){var o=e(),s=o.nodeDef,a=o.nodeFlags,u=o.updateDirectives,c=o.updateRenderer,p=o.sourceSpan;c&&r.push.apply(r,t(n,p,c,!1)),u&&i.push.apply(i,t(n,p,u,(163840&a)>0));var l=3&a?new Yb([qE.callFn([]).callFn([]),s]):s;return js(l,p)});return{updateRendererStmts:r,updateDirectivesStmts:i,nodeDefExprs:o}},t.prototype._createElementHandleEventFn=function(t,e){var n=this,r=[],i=0;e.forEach(function(t){var e=t.context,o=t.eventAst,s=t.dirAst,a=""+i++,u=e===QE?n:null,c=ha(u,e,o.handler,a),p=c.stmts,l=c.allowDefault,h=p;l&&h.push(XE.set(l.and(XE)).toStmt());var f=Ua(o,s),d=f.target,v=f.name,y=ue(d,v);r.push(Vs(new fw(Gs(y).identical(GE),h),o.sourceSpan))});var o;if(r.length>0){var s=[XE.set(Gs(!0)).toDeclStmt(Tb)];!this.component.isHost&&Fs(r).has(QE.name)&&s.push(QE.set(WE.prop("component")).toDeclStmt(this.compType)),o=Qs([new zb(WE.name,Sb),new zb(GE.name,Sb),new zb(ME.event.name,Sb)],s.concat(r,[new aw(XE)]),Sb)}else o=tw;return o},t.prototype.visitDirective=function(){},t.prototype.visitDirectiveProperty=function(){},t.prototype.visitReference=function(){},t.prototype.visitVariable=function(){},t.prototype.visitEvent=function(){},t.prototype.visitElementProperty=function(){},t.prototype.visitAttr=function(){},t}(),YE=(function(t){function e(e,n){var r=t.call(this)||this;return r.symbolResolver=e,r.summaryResolver=n,r.symbols=[],r.indexBySymbol=new Map,r.processedSummaryBySymbol=new Map,r.processedSummaries=[],r}return xd(e,t),e.prototype.addOrMergeSummary=function(t){var e=t.metadata;if(e&&"class"===e.__symbolic){var n={};Object.keys(e).forEach(function(t){"decorators"!==t&&(n[t]=e[t])}),e=n}var r=this.processedSummaryBySymbol.get(t.symbol);r||(r=this.processValue({symbol:t.symbol}),this.processedSummaries.push(r),this.processedSummaryBySymbol.set(t.symbol,r)),null==r.metadata&&null!=e&&(r.metadata=this.processValue(e)),null==r.type&&null!=t.type&&(r.type=this.processValue(t.type))},e.prototype.serialize=function(){var t=this,e=[],n=JSON.stringify({summaries:this.processedSummaries,symbols:this.symbols.map(function(n,r){n.assertNoMembers();var i;return t.summaryResolver.isLibraryFile(n.filePath)&&(i=n.name+"_"+r,e.push({symbol:n,exportAs:i})),{__symbol:r,name:n.name,filePath:t.summaryResolver.getLibraryFileName(n.filePath),importAs:i}})});return{json:n,exportAs:e}},e.prototype.processValue=function(t){return Gr(t,this,null)},e.prototype.visitOther=function(t){if(t instanceof Hd){var e=this.symbolResolver.getStaticSymbol(t.filePath,t.name),n=this.indexBySymbol.get(e);return null==n&&(n=this.indexBySymbol.size,this.indexBySymbol.set(e,n),this.symbols.push(e)),{__symbol:n,members:t.members}}},e}(tv),function(t){function e(e){var n=t.call(this)||this;return n.symbolCache=e,n}return xd(e,t),e.prototype.deserialize=function(t){var e=this,n=JSON.parse(t),r=[];this.symbols=[],n.symbols.forEach(function(t){var n=e.symbolCache.get(t.filePath,t.name);e.symbols.push(n),t.importAs&&r.push({symbol:n,importAs:t.importAs})});var i=Gr(n.summaries,this,null);return{summaries:i,importAs:r}},e.prototype.visitStringMap=function(e,n){if("__symbol"in e){var r=this.symbols[e.__symbol],i=e.members;return i.length?this.symbolCache.get(r.filePath,r.name,i):r}return t.prototype.visitStringMap.call(this,e,n)},e}(tv),function(){function t(){}return t.prototype.resolve=function(){},t.build=function(){var e=new Map;return{define:function(t,n){return e.set(t,n),this},done:function(){return e.size>0?new $E(e):t.empty}}},t}());YE.missing={},YE.empty={resolve:function(){return YE.missing}};var $E=function(t){function e(e){var n=t.call(this)||this;return n.bindings=e,n}return xd(e,t),e.prototype.resolve=function(t){return this.bindings.has(t)?this.bindings.get(t):YE.missing},e}(YE),JE=function(){function t(t,e,n,r){this.parent=t,this.instance=e,this.className=n,this.vars=r}return t.prototype.createChildWihtLocalVars=function(){return new t(this,this.instance,this.className,new Map)},t}(),tC=function(){function t(t){this.value=t}return t}(),eC=function(){function t(){}return t.prototype.debugAst=function(t){return ia(t)},t.prototype.visitDeclareVarStmt=function(t,e){return e.vars.set(t.name,t.value.visitExpression(this,e)),null},t.prototype.visitWriteVarExpr=function(t,e){for(var n=t.value.visitExpression(this,e),r=e;null!=r;){if(r.vars.has(t.name))return r.vars.set(t.name,n),n;r=r.parent}throw new Error("Not declared variable "+t.name)},t.prototype.visitReadVarExpr=function(t,e){var n=t.name;if(null!=t.builtin)switch(t.builtin){case kb.Super:return e.instance.__proto__;case kb.This:return e.instance;case kb.CatchError:n=nC;break;case kb.CatchStack:n=rC;break;default:throw new Error("Unknown builtin variable "+t.builtin)}for(var r=e;null!=r;){if(r.vars.has(n))return r.vars.get(n);r=r.parent}throw new Error("Not declared variable "+n)},t.prototype.visitWriteKeyExpr=function(t,e){var n=t.receiver.visitExpression(this,e),r=t.index.visitExpression(this,e),i=t.value.visitExpression(this,e);return n[r]=i,i},t.prototype.visitWritePropExpr=function(t,e){var n=t.receiver.visitExpression(this,e),r=t.value.visitExpression(this,e);return n[t.name]=r,r},t.prototype.visitInvokeMethodExpr=function(t,e){var n,r=t.receiver.visitExpression(this,e),i=this.visitAllExpressions(t.args,e);if(null!=t.builtin)switch(t.builtin){case Rb.ConcatArray:n=r.concat.apply(r,i);break;case Rb.SubscribeObservable:n=r.subscribe({next:i[0]});break;case Rb.Bind:n=r.bind.apply(r,i);break;default:throw new Error("Unknown builtin method "+t.builtin)}else n=r[t.name].apply(r,i);return n},t.prototype.visitInvokeFunctionExpr=function(t,e){var n=this.visitAllExpressions(t.args,e),r=t.fn;if(r instanceof Mb&&r.builtin===kb.Super)return e.instance.constructor.prototype.constructor.apply(e.instance,n),null;var i=t.fn.visitExpression(this,e);return i.apply(null,n)},t.prototype.visitReturnStmt=function(t,e){return new tC(t.value.visitExpression(this,e))},t.prototype.visitDeclareClassStmt=function(t,e){var n=Wa(t,e,this);return e.vars.set(t.name,n),null},t.prototype.visitExpressionStmt=function(t,e){return t.expr.visitExpression(this,e)},t.prototype.visitIfStmt=function(t,e){var n=t.condition.visitExpression(this,e);return n?this.visitAllStatements(t.trueCase,e):null!=t.falseCase?this.visitAllStatements(t.falseCase,e):null},t.prototype.visitTryCatchStmt=function(t,e){try{return this.visitAllStatements(t.bodyStmts,e)}catch(r){var n=e.createChildWihtLocalVars();return n.vars.set(nC,r),n.vars.set(rC,r.stack),this.visitAllStatements(t.catchStmts,n)}},t.prototype.visitThrowStmt=function(t,e){throw t.error.visitExpression(this,e)},t.prototype.visitCommentStmt=function(){return null},t.prototype.visitInstantiateExpr=function(t,e){var n=this.visitAllExpressions(t.args,e),r=t.classExpr.visitExpression(this,e);return new(r.bind.apply(r,[void 0].concat(n)))},t.prototype.visitLiteralExpr=function(t){return t.value},t.prototype.visitExternalExpr=function(t){return t.value.reference},t.prototype.visitConditionalExpr=function(t,e){return t.condition.visitExpression(this,e)?t.trueCase.visitExpression(this,e):null!=t.falseCase?t.falseCase.visitExpression(this,e):null},t.prototype.visitNotExpr=function(t,e){return!t.condition.visitExpression(this,e)},t.prototype.visitCastExpr=function(t,e){return t.value.visitExpression(this,e)},t.prototype.visitFunctionExpr=function(t,e){var n=t.params.map(function(t){return t.name});return Ka(n,t.statements,e,this)},t.prototype.visitDeclareFunctionStmt=function(t,e){var n=t.params.map(function(t){return t.name});return e.vars.set(t.name,Ka(n,t.statements,e,this)),null},t.prototype.visitBinaryOperatorExpr=function(t,e){var n=this,r=function(){return t.lhs.visitExpression(n,e)},i=function(){return t.rhs.visitExpression(n,e)};switch(t.operator){case Ab.Equals:return r()==i();case Ab.Identical:return r()===i();case Ab.NotEquals:return r()!=i();case Ab.NotIdentical:return r()!==i();case Ab.And:return r()&&i();case Ab.Or:return r()||i();case Ab.Plus:return r()+i();case Ab.Minus:return r()-i();case Ab.Divide:return r()/i();case Ab.Multiply:return r()*i();case Ab.Modulo:return r()%i();case Ab.Lower:return r()<i();case Ab.LowerEquals:return r()<=i();case Ab.Bigger:return r()>i();case Ab.BiggerEquals:return r()>=i();default:throw new Error("Unknown operator "+t.operator)}},t.prototype.visitReadPropExpr=function(t,e){var n,r=t.receiver.visitExpression(this,e);return n=r[t.name]},t.prototype.visitReadKeyExpr=function(t,e){var n=t.receiver.visitExpression(this,e),r=t.index.visitExpression(this,e);return n[r]},t.prototype.visitLiteralArrayExpr=function(t,e){return this.visitAllExpressions(t.entries,e)},t.prototype.visitLiteralMapExpr=function(t,e){var n=this,r={};return t.entries.forEach(function(t){return r[t.key]=t.value.visitExpression(n,e)}),r},t.prototype.visitCommaExpr=function(t,e){var n=this.visitAllExpressions(t.parts,e);return n[n.length-1]},t.prototype.visitAllExpressions=function(t,e){var n=this;return t.map(function(t){return t.visitExpression(n,e)})},t.prototype.visitAllStatements=function(t,e){for(var n=0;n<t.length;n++){var r=t[n],i=r.visitStatement(this,e);if(i instanceof tC)return i}return null},t}(),nC="error",rC="stack",iC=function(t){function e(){return t.call(this,!1)||this}return xd(e,t),e.prototype.visitDeclareClassStmt=function(t,e){var n=this;return e.pushClass(t),this._visitClassConstructor(t,e),null!=t.parent&&(e.print(t,t.name+".prototype = Object.create("),t.parent.visitExpression(this,e),e.println(t,".prototype);")),t.getters.forEach(function(r){return n._visitClassGetter(t,r,e)}),t.methods.forEach(function(r){return n._visitClassMethod(t,r,e)}),e.popClass(),null},e.prototype._visitClassConstructor=function(t,e){e.print(t,"function "+t.name+"("),null!=t.constructorMethod&&this._visitParams(t.constructorMethod.params,e),e.println(t,") {"),e.incIndent(),null!=t.constructorMethod&&t.constructorMethod.body.length>0&&(e.println(t,"var self = this;"),this.visitAllStatements(t.constructorMethod.body,e)),e.decIndent(),e.println(t,"}")},e.prototype._visitClassGetter=function(t,e,n){n.println(t,"Object.defineProperty("+t.name+".prototype, '"+e.name+"', { get: function() {"),n.incIndent(),e.body.length>0&&(n.println(t,"var self = this;"),this.visitAllStatements(e.body,n)),n.decIndent(),n.println(t,"}});")},e.prototype._visitClassMethod=function(t,e,n){n.print(t,t.name+".prototype."+e.name+" = function("),this._visitParams(e.params,n),n.println(t,") {"),n.incIndent(),e.body.length>0&&(n.println(t,"var self = this;"),this.visitAllStatements(e.body,n)),n.decIndent(),n.println(t,"};")},e.prototype.visitReadVarExpr=function(e,n){if(e.builtin===kb.This)n.print(e,"self");else{if(e.builtin===kb.Super)throw new Error("'super' needs to be handled at a parent ast node, not at the variable level!");t.prototype.visitReadVarExpr.call(this,e,n)}return null},e.prototype.visitDeclareVarStmt=function(t,e){return e.print(t,"var "+t.name+" = "),t.value.visitExpression(this,e),e.println(t,";"),null},e.prototype.visitCastExpr=function(t,e){return t.value.visitExpression(this,e),null},e.prototype.visitInvokeFunctionExpr=function(e,n){var r=e.fn;return r instanceof Mb&&r.builtin===kb.Super?(n.currentClass.parent.visitExpression(this,n),n.print(e,".call(this"),e.args.length>0&&(n.print(e,", "),this.visitAllExpressions(e.args,n,",")),n.print(e,")")):t.prototype.visitInvokeFunctionExpr.call(this,e,n),null},e.prototype.visitFunctionExpr=function(t,e){return e.print(t,"function("),this._visitParams(t.params,e),e.println(t,") {"),e.incIndent(),this.visitAllStatements(t.statements,e),e.decIndent(),e.print(t,"}"),null},e.prototype.visitDeclareFunctionStmt=function(t,e){return e.print(t,"function "+t.name+"("),this._visitParams(t.params,e),e.println(t,") {"),e.incIndent(),this.visitAllStatements(t.statements,e),e.decIndent(),e.println(t,"}"),null},e.prototype.visitTryCatchStmt=function(t,e){e.println(t,"try {"),e.incIndent(),this.visitAllStatements(t.bodyStmts,e),e.decIndent(),e.println(t,"} catch ("+Dw.name+") {"),e.incIndent();var n=[Lw.set(Dw.prop("stack")).toDeclStmt(null,[nw.Final])].concat(t.catchStmts);return this.visitAllStatements(n,e),e.decIndent(),e.println(t,"}"),null},e.prototype._visitParams=function(t,e){this.visitAllObjects(function(t){return e.print(null,t.name)},t,e,",")},e.prototype.getBuiltinMethodName=function(t){var e;switch(t){case Rb.ConcatArray:e="concat";break;case Rb.SubscribeObservable:e="subscribe";break;case Rb.Bind:e="bind";break;default:throw new Error("Unknown builtin method: "+t)}return e},e}(jw),oC=function(t){function e(){var e=t.apply(this,arguments)||this;return e._evalArgNames=[],e._evalArgValues=[],e}return xd(e,t),e.prototype.getArgs=function(){for(var t={},e=0;e<this._evalArgNames.length;e++)t[this._evalArgNames[e]]=this._evalArgValues[e];return t},e.prototype.visitExternalExpr=function(t,e){var n=t.value.reference,r=this._evalArgValues.indexOf(n);if(-1===r){r=this._evalArgValues.length,this._evalArgValues.push(n);var i=ti(t.value)||"val";this._evalArgNames.push("jit_"+i+r)}return e.print(t,this._evalArgNames[r]),null},e}(iC),sC=function(){function t(t,e,n,r,i,o,s,a){this._injector=t,this._metadataResolver=e,this._templateParser=n,this._styleCompiler=r,this._viewCompiler=i,this._ngModuleCompiler=o,this._compilerConfig=s,this._console=a,this._compiledTemplateCache=new Map,this._compiledHostTemplateCache=new Map,this._compiledDirectiveWrapperCache=new Map,this._compiledNgModuleCache=new Map,this._sharedStylesheetCount=0}return Object.defineProperty(t.prototype,"injector",{get:function(){return this._injector},enumerable:!0,configurable:!0}),t.prototype.compileModuleSync=function(t){return this._compileModuleAndComponents(t,!0).syncResult},t.prototype.compileModuleAsync=function(t){return this._compileModuleAndComponents(t,!1).asyncResult},t.prototype.compileModuleAndAllComponentsSync=function(t){return this._compileModuleAndAllComponents(t,!0).syncResult},t.prototype.compileModuleAndAllComponentsAsync=function(t){return this._compileModuleAndAllComponents(t,!1).asyncResult},t.prototype.getNgContentSelectors=function(t){this._console.warn("Compiler.getNgContentSelectors is deprecated. Use ComponentFactory.ngContentSelectors instead!");var e=this._compiledTemplateCache.get(t);if(!e)throw new Error("The component "+_(t)+" is not yet compiled!");return e.compMeta.template.ngContentSelectors},t.prototype._compileModuleAndComponents=function(t,e){var n=this,r=this._loadModules(t,e),i=function(){return n._compileComponents(t,null),n._compileModule(t)};return e?new ev(i()):new ev(null,r.then(i))},t.prototype._compileModuleAndAllComponents=function(t,e){var n=this,r=this._loadModules(t,e),i=function(){var e=[];return n._compileComponents(t,e),new lh(n._compileModule(t),e)};return e?new ev(i()):new ev(null,r.then(i))},t.prototype._loadModules=function(t,e){var n=this,r=[],i=this._metadataResolver.getNgModuleMetadata(t);return i.transitiveModule.modules.forEach(function(t){r.push(n._metadataResolver.loadNgModuleDirectiveAndPipeMetadata(t.reference,e))}),Promise.all(r)},t.prototype._compileModule=function(t){var e=this,n=this._compiledNgModuleCache.get(t);if(!n){var r=this._metadataResolver.getNgModuleMetadata(t),i=[this._metadataResolver.getProviderMetadata(new yv(hh,{useFactory:function(){return new uC(e,r.type.reference)}}))],o=this._ngModuleCompiler.compile(r,i);n=this._compilerConfig.useJit?Ga(di(r),o.statements,[o.ngModuleFactoryVar])[0]:za(o.statements,[o.ngModuleFactoryVar])[0],this._compiledNgModuleCache.set(r.type.reference,n)}return n},t.prototype._compileComponents=function(t,e){var n=this,r=this._metadataResolver.getNgModuleMetadata(t),i=new Map,o=new Set;r.transitiveModule.modules.forEach(function(t){var r=n._metadataResolver.getNgModuleMetadata(t.reference);r.declaredDirectives.forEach(function(t){i.set(t.reference,r);var s=n._metadataResolver.getDirectiveMetadata(t.reference);if(s.isComponent&&(o.add(n._createCompiledTemplate(s,r)),e)){var a=n._createCompiledHostTemplate(s.type.reference,r);o.add(a),e.push(s.componentFactory)}})}),r.transitiveModule.modules.forEach(function(t){var e=n._metadataResolver.getNgModuleMetadata(t.reference);e.declaredDirectives.forEach(function(t){var e=n._metadataResolver.getDirectiveMetadata(t.reference);e.isComponent&&e.entryComponents.forEach(function(t){var e=i.get(t.componentType);o.add(n._createCompiledHostTemplate(t.componentType,e))})}),e.entryComponents.forEach(function(t){var e=i.get(t.componentType);o.add(n._createCompiledHostTemplate(t.componentType,e))})}),o.forEach(function(t){return n._compileTemplate(t)})},t.prototype.clearCacheFor=function(t){this._compiledNgModuleCache.delete(t),this._metadataResolver.clearCacheFor(t),this._compiledHostTemplateCache.delete(t);var e=this._compiledTemplateCache.get(t);e&&this._compiledTemplateCache.delete(t)},t.prototype.clearCache=function(){this._metadataResolver.clearCache(),this._compiledTemplateCache.clear(),this._compiledHostTemplateCache.clear(),this._compiledNgModuleCache.clear()},t.prototype._createCompiledHostTemplate=function(t,e){if(!e)throw new Error("Component "+_(t)+" is not part of any NgModule or the module has not been imported into your module.");var n=this._compiledHostTemplateCache.get(t);if(!n){var r=this._metadataResolver.getDirectiveMetadata(t);Xa(r);var i=r.componentFactory,o=this._metadataResolver.getHostComponentType(t),s=ui(o,r,Ge(i));n=new aC(!0,r.type,s,e,[r.type]),this._compiledHostTemplateCache.set(t,n)}return n},t.prototype._createCompiledTemplate=function(t,e){var n=this._compiledTemplateCache.get(t.type.reference);return n||(Xa(t),n=new aC(!1,t.type,t,e,e.transitiveModule.directives),this._compiledTemplateCache.set(t.type.reference,n)),n},t.prototype._compileTemplate=function(t){var e=this;if(!t.isCompiled){var n=t.compMeta,r=new Map,i=this._styleCompiler.compileComponent(n);i.externalStylesheets.forEach(function(t){r.set(t.meta.moduleUrl,t)}),this._resolveStylesCompileResult(i.componentStylesheet,r);var o,s,a=t.directives.map(function(t){return e._metadataResolver.getDirectiveSummary(t.reference)}),u=t.ngModule.transitiveModule.pipes.map(function(t){return e._metadataResolver.getPipeSummary(t.reference)}),c=this._templateParser.parse(n,n.template.template,a,u,t.ngModule.schemas,hi(t.ngModule.type,t.compMeta,t.compMeta.template)),p=c.template,l=c.pipes,h=this._viewCompiler.compileComponent(n,p,Hs(i.componentStylesheet.stylesVar),l),f=i.componentStylesheet.statements.concat(h.statements),d=n.isHost?[h.viewClassVar]:[h.viewClassVar,h.rendererTypeVar];this._compilerConfig.useJit?(y=Ga(vi(t.ngModule.type,t.compMeta),f,d),o=y[0],s=y[1]):(v=za(f,d),o=v[0],s=v[1]),t.compiled(o,s);var v,y}},t.prototype._resolveStylesCompileResult=function(t,e){var n=this;t.dependencies.forEach(function(t){var r=e.get(t.moduleUrl),i=n._resolveAndEvalStylesCompileResult(r,e);t.valuePlaceholder.reference=i})},t.prototype._resolveAndEvalStylesCompileResult=function(t,e){return this._resolveStylesCompileResult(t,e),this._compilerConfig.useJit?Ga(fi(t.meta,this._sharedStylesheetCount++),t.statements,[t.stylesVar])[0]:za(t.statements,[t.stylesVar])[0]},t}();sC.decorators=[{type:bi}],sC.ctorParameters=function(){return[{type:Il},{type:vb},{type:X_},{type:kE},{type:zE},{type:xw},{type:mv},{type:ph}]};var aC=function(){function t(t,e,n,r,i){this.isHost=t,this.compType=e,this.compMeta=n,this.ngModule=r,this.directives=i,this._viewClass=null,this.isCompiled=!1}return t.prototype.compiled=function(t,e){this._viewClass=t,this.compMeta.componentViewType.setDelegate(t);for(var n in e)this.compMeta.rendererType[n]=e[n];this.isCompiled=!0},t}(),uC=function(){function t(t,e){this._delegate=t,this._ngModule=e}return Object.defineProperty(t.prototype,"_injector",{get:function(){return this._delegate.injector},enumerable:!0,configurable:!0}),t.prototype.compileModuleSync=function(t){return this._delegate.compileModuleSync(t)},t.prototype.compileModuleAsync=function(t){return this._delegate.compileModuleAsync(t)},t.prototype.compileModuleAndAllComponentsSync=function(t){return this._delegate.compileModuleAndAllComponentsSync(t)},t.prototype.compileModuleAndAllComponentsAsync=function(t){return this._delegate.compileModuleAndAllComponentsAsync(t)},t.prototype.getNgContentSelectors=function(t){return this._delegate.getNgContentSelectors(t)},t.prototype.clearCache=function(){this._delegate.clearCache()},t.prototype.clearCacheFor=function(t){this._delegate.clearCacheFor(t)},t}(),cC=(function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return xd(e,t),e.prototype.convert=function(t,e){var n=this;return e?t.map(function(t){return t.visit(n,e)}):t},e.prototype.visitTagPlaceholder=function(t,e){var n=this,r=e.toPublicName(t.startName),i=t.closeName?e.toPublicName(t.closeName):t.closeName,o=t.children.map(function(t){return t.visit(n,e)});return new Nm(t.tag,t.attrs,r,i,o,t.isVoid,t.sourceSpan)},e.prototype.visitPlaceholder=function(t,e){return new Im(t.value,e.toPublicName(t.name),t.sourceSpan)},e.prototype.visitIcuPlaceholder=function(t,e){return new Rm(t.value,e.toPublicName(t.name),t.sourceSpan)},e}(Dm),{get:function(t){throw new Error("No ResourceLoader implementation has been provided. Can't read the url \""+t+'"')}}),pC=new Jp("HtmlParser"),lC=[{provide:Kl,useValue:Ql},{provide:Wl,useExisting:Kl},{provide:nb,useValue:cC},fb,ph,Yy,rm,{provide:pC,useClass:Hg},{provide:zg,useFactory:function(t,e,n,r,i){return new zg(t,e,n,r.missingTranslation,i)},deps:[pC,[new Sl,new xl(If)],[new Sl,new xl(Rf)],[mv],[ph]]},{provide:Hg,useExisting:zg},X_,ab,vb,rb,kE,zE,xw,{provide:mv,useValue:new mv},sC,{provide:hh,useExisting:sC},Xw,{provide:t_,useExisting:Xw},ib,pb,hb,lb],hC=function(){function t(t){var e={useDebug:yt(),useJit:!0,defaultEncapsulation:wl.Emulated,missingTranslation:Df.Warning,enableLegacyTemplate:!0};this._defaultOptions=[e].concat(t)}return t.prototype.createCompiler=function(t){void 0===t&&(t=[]);var e=Ya(this._defaultOptions.concat(t)),n=Jl.resolveAndCreate([lC,{provide:mv,useFactory:function(){return new mv({useJit:e.useJit,defaultEncapsulation:e.defaultEncapsulation,
missingTranslation:e.missingTranslation,enableLegacyTemplate:e.enableLegacyTemplate})},deps:[]},e.providers]);return n.get(hh)},t}();hC.decorators=[{type:bi}],hC.ctorParameters=function(){return[{type:Array,decorators:[{type:xl,args:[fh]}]}]};var fC=gt(Of,"coreDynamic",[{provide:fh,useValue:{},multi:!0},{provide:dh,useClass:hC},{provide:sh,useValue:Za,multi:!0}]),dC=void 0||function(t,e){function n(){this.constructor=t}for(var r in e)e.hasOwnProperty(r)&&(t[r]=e[r]);t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)},vC=function(){function t(){}return t.prototype.getBaseHrefFromDOM=function(){},t.prototype.onPopState=function(){},t.prototype.onHashChange=function(){},Object.defineProperty(t.prototype,"pathname",{get:function(){return null},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"search",{get:function(){return null},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"hash",{get:function(){return null},enumerable:!0,configurable:!0}),t.prototype.replaceState=function(){},t.prototype.pushState=function(){},t.prototype.forward=function(){},t.prototype.back=function(){},t}(),yC=(new Jp("Location Initialized"),function(){function t(){}return t.prototype.path=function(){},t.prototype.prepareExternalUrl=function(){},t.prototype.pushState=function(){},t.prototype.replaceState=function(){},t.prototype.forward=function(){},t.prototype.back=function(){},t.prototype.onPopState=function(){},t.prototype.getBaseHref=function(){},t}()),mC=new Jp("appBaseHref"),gC=function(){function t(e){var n=this;this._subject=new Oh,this._platformStrategy=e;var r=this._platformStrategy.getBaseHref();this._baseHref=t.stripTrailingSlash(eu(r)),this._platformStrategy.onPopState(function(t){n._subject.emit({url:n.path(!0),pop:!0,type:t.type})})}return t.prototype.path=function(t){return void 0===t&&(t=!1),this.normalize(this._platformStrategy.path(t))},t.prototype.isCurrentPathEqualTo=function(e,n){return void 0===n&&(n=""),this.path()==this.normalize(e+t.normalizeQueryParams(n))},t.prototype.normalize=function(e){return t.stripTrailingSlash(tu(this._baseHref,eu(e)))},t.prototype.prepareExternalUrl=function(t){return t&&"/"!==t[0]&&(t="/"+t),this._platformStrategy.prepareExternalUrl(t)},t.prototype.go=function(t,e){void 0===e&&(e=""),this._platformStrategy.pushState(null,"",t,e)},t.prototype.replaceState=function(t,e){void 0===e&&(e=""),this._platformStrategy.replaceState(null,"",t,e)},t.prototype.forward=function(){this._platformStrategy.forward()},t.prototype.back=function(){this._platformStrategy.back()},t.prototype.subscribe=function(t,e,n){return void 0===e&&(e=null),void 0===n&&(n=null),this._subject.subscribe({next:t,error:e,complete:n})},t.normalizeQueryParams=function(t){return t&&"?"!==t[0]?"?"+t:t},t.joinWithSlash=function(t,e){if(0==t.length)return e;if(0==e.length)return t;var n=0;return t.endsWith("/")&&n++,e.startsWith("/")&&n++,2==n?t+e.substring(1):1==n?t+e:t+"/"+e},t.stripTrailingSlash=function(t){return t.replace(/\/$/,"")},t}();gC.decorators=[{type:Tl}],gC.ctorParameters=function(){return[{type:yC}]};var _C=function(t){function e(e,n){var r=t.call(this)||this;return r._platformLocation=e,r._baseHref="",null!=n&&(r._baseHref=n),r}return dC(e,t),e.prototype.onPopState=function(t){this._platformLocation.onPopState(t),this._platformLocation.onHashChange(t)},e.prototype.getBaseHref=function(){return this._baseHref},e.prototype.path=function(t){void 0===t&&(t=!1);var e=this._platformLocation.hash;return null==e&&(e="#"),e.length>0?e.substring(1):e},e.prototype.prepareExternalUrl=function(t){var e=gC.joinWithSlash(this._baseHref,t);return e.length>0?"#"+e:e},e.prototype.pushState=function(t,e,n,r){var i=this.prepareExternalUrl(n+gC.normalizeQueryParams(r));0==i.length&&(i=this._platformLocation.pathname),this._platformLocation.pushState(t,e,i)},e.prototype.replaceState=function(t,e,n,r){var i=this.prepareExternalUrl(n+gC.normalizeQueryParams(r));0==i.length&&(i=this._platformLocation.pathname),this._platformLocation.replaceState(t,e,i)},e.prototype.forward=function(){this._platformLocation.forward()},e.prototype.back=function(){this._platformLocation.back()},e}(yC);_C.decorators=[{type:Tl}],_C.ctorParameters=function(){return[{type:vC},{type:void 0,decorators:[{type:Sl},{type:xl,args:[mC]}]}]};var bC=function(t){function e(e,n){var r=t.call(this)||this;if(r._platformLocation=e,null==n&&(n=r._platformLocation.getBaseHrefFromDOM()),null==n)throw new Error("No base href set. Please provide a value for the APP_BASE_HREF token or add a base element to the document.");return r._baseHref=n,r}return dC(e,t),e.prototype.onPopState=function(t){this._platformLocation.onPopState(t),this._platformLocation.onHashChange(t)},e.prototype.getBaseHref=function(){return this._baseHref},e.prototype.prepareExternalUrl=function(t){return gC.joinWithSlash(this._baseHref,t)},e.prototype.path=function(t){void 0===t&&(t=!1);var e=this._platformLocation.pathname+gC.normalizeQueryParams(this._platformLocation.search),n=this._platformLocation.hash;return n&&t?""+e+n:e},e.prototype.pushState=function(t,e,n,r){var i=this.prepareExternalUrl(n+gC.normalizeQueryParams(r));this._platformLocation.pushState(t,e,i)},e.prototype.replaceState=function(t,e,n,r){var i=this.prepareExternalUrl(n+gC.normalizeQueryParams(r));this._platformLocation.replaceState(t,e,i)},e.prototype.forward=function(){this._platformLocation.forward()},e.prototype.back=function(){this._platformLocation.back()},e}(yC);bC.decorators=[{type:Tl}],bC.ctorParameters=function(){return[{type:vC},{type:void 0,decorators:[{type:Sl},{type:xl,args:[mC]}]}]};var wC=function(){function t(){}return t.prototype.getPluralCategory=function(){},t}(),EC=function(t){function e(e){var n=t.call(this)||this;return n.locale=e,n}return dC(e,t),e.prototype.getPluralCategory=function(t){var e=ru(this.locale,t);switch(e){case CC.Zero:return"zero";case CC.One:return"one";case CC.Two:return"two";case CC.Few:return"few";case CC.Many:return"many";default:return"other"}},e}(wC);EC.decorators=[{type:Tl}],EC.ctorParameters=function(){return[{type:void 0,decorators:[{type:xl,args:[Nf]}]}]};var CC={};CC.Zero=0,CC.One=1,CC.Two=2,CC.Few=3,CC.Many=4,CC.Other=5,CC[CC.Zero]="Zero",CC[CC.One]="One",CC[CC.Two]="Two",CC[CC.Few]="Few",CC[CC.Many]="Many",CC[CC.Other]="Other";var xC=function(){function t(t,e,n,r){this._iterableDiffers=t,this._keyValueDiffers=e,this._ngEl=n,this._renderer=r,this._initialClasses=[]}return Object.defineProperty(t.prototype,"klass",{set:function(t){this._applyInitialClasses(!0),this._initialClasses="string"==typeof t?t.split(/\s+/):[],this._applyInitialClasses(!1),this._applyClasses(this._rawClass,!1)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"ngClass",{set:function(t){this._cleanupClasses(this._rawClass),this._iterableDiffer=null,this._keyValueDiffer=null,this._rawClass="string"==typeof t?t.split(/\s+/):t,this._rawClass&&(Nt(this._rawClass)?this._iterableDiffer=this._iterableDiffers.find(this._rawClass).create():this._keyValueDiffer=this._keyValueDiffers.find(this._rawClass).create())},enumerable:!0,configurable:!0}),t.prototype.ngDoCheck=function(){if(this._iterableDiffer){var t=this._iterableDiffer.diff(this._rawClass);t&&this._applyIterableChanges(t)}else if(this._keyValueDiffer){var e=this._keyValueDiffer.diff(this._rawClass);e&&this._applyKeyValueChanges(e)}},t.prototype._cleanupClasses=function(t){this._applyClasses(t,!0),this._applyInitialClasses(!1)},t.prototype._applyKeyValueChanges=function(t){var e=this;t.forEachAddedItem(function(t){return e._toggleClass(t.key,t.currentValue)}),t.forEachChangedItem(function(t){return e._toggleClass(t.key,t.currentValue)}),t.forEachRemovedItem(function(t){t.previousValue&&e._toggleClass(t.key,!1)})},t.prototype._applyIterableChanges=function(t){var e=this;t.forEachAddedItem(function(t){if("string"!=typeof t.item)throw new Error("NgClass can only toggle CSS classes expressed as strings, got "+_(t.item));e._toggleClass(t.item,!0)}),t.forEachRemovedItem(function(t){return e._toggleClass(t.item,!1)})},t.prototype._applyInitialClasses=function(t){var e=this;this._initialClasses.forEach(function(n){return e._toggleClass(n,!t)})},t.prototype._applyClasses=function(t,e){var n=this;t&&(Array.isArray(t)||t instanceof Set?t.forEach(function(t){return n._toggleClass(t,!e)}):Object.keys(t).forEach(function(r){null!=t[r]&&n._toggleClass(r,!e)}))},t.prototype._toggleClass=function(t,e){var n=this;t=t.trim(),t&&t.split(/\s+/g).forEach(function(t){n._renderer.setElementClass(n._ngEl.nativeElement,t,!!e)})},t}();xC.decorators=[{type:ll,args:[{selector:"[ngClass]"}]}],xC.ctorParameters=function(){return[{type:xf},{type:Sf},{type:Zh},{type:Kh}]},xC.propDecorators={klass:[{type:dl,args:["class"]}],ngClass:[{type:dl}]};var SC=function(){function t(t){this._viewContainerRef=t,this._componentRef=null,this._moduleRef=null}return t.prototype.ngOnChanges=function(t){if(this._viewContainerRef.clear(),this._componentRef=null,this.ngComponentOutlet){var e=this.ngComponentOutletInjector||this._viewContainerRef.parentInjector;if(t.ngComponentOutletNgModuleFactory)if(this._moduleRef&&this._moduleRef.destroy(),this.ngComponentOutletNgModuleFactory){var n=e.get(xh);this._moduleRef=this.ngComponentOutletNgModuleFactory.create(n.injector)}else this._moduleRef=null;var r=this._moduleRef?this._moduleRef.componentFactoryResolver:e.get(_h),i=r.resolveComponentFactory(this.ngComponentOutlet);this._componentRef=this._viewContainerRef.createComponent(i,this._viewContainerRef.length,e,this.ngComponentOutletContent)}},t.prototype.ngOnDestroy=function(){this._moduleRef&&this._moduleRef.destroy()},t}();SC.decorators=[{type:ll,args:[{selector:"[ngComponentOutlet]"}]}],SC.ctorParameters=function(){return[{type:sf}]},SC.propDecorators={ngComponentOutlet:[{type:dl}],ngComponentOutletInjector:[{type:dl}],ngComponentOutletContent:[{type:dl}],ngComponentOutletNgModuleFactory:[{type:dl}]};var TC=function(){function t(t,e,n,r){this.$implicit=t,this.ngForOf=e,this.index=n,this.count=r}return Object.defineProperty(t.prototype,"first",{get:function(){return 0===this.index},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"last",{get:function(){return this.index===this.count-1},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"even",{get:function(){return this.index%2===0},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"odd",{get:function(){return!this.even},enumerable:!0,configurable:!0}),t}(),AC=function(){function t(t,e,n){this._viewContainer=t,this._template=e,this._differs=n,this._differ=null}return Object.defineProperty(t.prototype,"ngForTrackBy",{get:function(){return this._trackByFn},set:function(t){yt()&&null!=t&&"function"!=typeof t&&console&&console.warn&&console.warn("trackBy must be a function, but received "+JSON.stringify(t)+". See https://angular.io/docs/ts/latest/api/common/index/NgFor-directive.html#!#change-propagation for more information."),this._trackByFn=t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"ngForTemplate",{set:function(t){t&&(this._template=t)},enumerable:!0,configurable:!0}),t.prototype.ngOnChanges=function(t){if("ngForOf"in t){var e=t.ngForOf.currentValue;if(!this._differ&&e)try{this._differ=this._differs.find(e).create(this.ngForTrackBy)}catch(t){throw new Error("Cannot find a differ supporting object '"+e+"' of type '"+iu(e)+"'. NgFor only supports binding to Iterables such as Arrays.")}}},t.prototype.ngDoCheck=function(){if(this._differ){var t=this._differ.diff(this.ngForOf);t&&this._applyChanges(t)}},t.prototype._applyChanges=function(t){var e=this,n=[];t.forEachOperation(function(t,r,i){if(null==t.previousIndex){var o=e._viewContainer.createEmbeddedView(e._template,new TC(null,e.ngForOf,null,null),i),s=new PC(t,o);n.push(s)}else if(null==i)e._viewContainer.remove(r);else{var o=e._viewContainer.get(r);e._viewContainer.move(o,i);var s=new PC(t,o);n.push(s)}});for(var r=0;r<n.length;r++)this._perViewChange(n[r].view,n[r].record);for(var r=0,i=this._viewContainer.length;i>r;r++){var o=this._viewContainer.get(r);o.context.index=r,o.context.count=i}t.forEachIdentityChange(function(t){var n=e._viewContainer.get(t.currentIndex);n.context.$implicit=t.item})},t.prototype._perViewChange=function(t,e){t.context.$implicit=e.item},t}();AC.decorators=[{type:ll,args:[{selector:"[ngFor][ngForOf]"}]}],AC.ctorParameters=function(){return[{type:sf},{type:of},{type:xf}]},AC.propDecorators={ngForOf:[{type:dl}],ngForTrackBy:[{type:dl}],ngForTemplate:[{type:dl}]};var PC=function(){function t(t,e){this.record=t,this.view=e}return t}(),kC=function(){function t(t,e){this._viewContainer=t,this._context=new MC,this._thenTemplateRef=null,this._elseTemplateRef=null,this._thenViewRef=null,this._elseViewRef=null,this._thenTemplateRef=e}return Object.defineProperty(t.prototype,"ngIf",{set:function(t){this._context.$implicit=this._context.ngIf=t,this._updateView()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"ngIfThen",{set:function(t){this._thenTemplateRef=t,this._thenViewRef=null,this._updateView()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"ngIfElse",{set:function(t){this._elseTemplateRef=t,this._elseViewRef=null,this._updateView()},enumerable:!0,configurable:!0}),t.prototype._updateView=function(){this._context.$implicit?this._thenViewRef||(this._viewContainer.clear(),this._elseViewRef=null,this._thenTemplateRef&&(this._thenViewRef=this._viewContainer.createEmbeddedView(this._thenTemplateRef,this._context))):this._elseViewRef||(this._viewContainer.clear(),this._thenViewRef=null,this._elseTemplateRef&&(this._elseViewRef=this._viewContainer.createEmbeddedView(this._elseTemplateRef,this._context)))},t}();kC.decorators=[{type:ll,args:[{selector:"[ngIf]"}]}],kC.ctorParameters=function(){return[{type:sf},{type:of}]},kC.propDecorators={ngIf:[{type:dl}],ngIfThen:[{type:dl}],ngIfElse:[{type:dl}]};var MC=function(){function t(){this.$implicit=null,this.ngIf=null}return t}(),OC=function(){function t(t,e){this._viewContainerRef=t,this._templateRef=e,this._created=!1}return t.prototype.create=function(){this._created=!0,this._viewContainerRef.createEmbeddedView(this._templateRef)},t.prototype.destroy=function(){this._created=!1,this._viewContainerRef.clear()},t.prototype.enforceState=function(t){t&&!this._created?this.create():!t&&this._created&&this.destroy()},t}(),NC=function(){function t(){this._defaultUsed=!1,this._caseCount=0,this._lastCaseCheckIndex=0,this._lastCasesMatched=!1}return Object.defineProperty(t.prototype,"ngSwitch",{set:function(t){this._ngSwitch=t,0===this._caseCount&&this._updateDefaultCases(!0)},enumerable:!0,configurable:!0}),t.prototype._addCase=function(){return this._caseCount++},t.prototype._addDefault=function(t){this._defaultViews||(this._defaultViews=[]),this._defaultViews.push(t)},t.prototype._matchCase=function(t){var e=t==this._ngSwitch;return this._lastCasesMatched=this._lastCasesMatched||e,this._lastCaseCheckIndex++,this._lastCaseCheckIndex===this._caseCount&&(this._updateDefaultCases(!this._lastCasesMatched),this._lastCaseCheckIndex=0,this._lastCasesMatched=!1),e},t.prototype._updateDefaultCases=function(t){if(this._defaultViews&&t!==this._defaultUsed){this._defaultUsed=t;for(var e=0;e<this._defaultViews.length;e++){var n=this._defaultViews[e];n.enforceState(t)}}},t}();NC.decorators=[{type:ll,args:[{selector:"[ngSwitch]"}]}],NC.ctorParameters=function(){return[]},NC.propDecorators={ngSwitch:[{type:dl}]};var IC=function(){function t(t,e,n){this.ngSwitch=n,n._addCase(),this._view=new OC(t,e)}return t.prototype.ngDoCheck=function(){this._view.enforceState(this.ngSwitch._matchCase(this.ngSwitchCase))},t}();IC.decorators=[{type:ll,args:[{selector:"[ngSwitchCase]"}]}],IC.ctorParameters=function(){return[{type:sf},{type:of},{type:NC,decorators:[{type:kl}]}]},IC.propDecorators={ngSwitchCase:[{type:dl}]};var RC=function(){function t(t,e,n){n._addDefault(new OC(t,e))}return t}();RC.decorators=[{type:ll,args:[{selector:"[ngSwitchDefault]"}]}],RC.ctorParameters=function(){return[{type:sf},{type:of},{type:NC,decorators:[{type:kl}]}]};var DC=function(){function t(t){this._localization=t,this._caseViews={}}return Object.defineProperty(t.prototype,"ngPlural",{set:function(t){this._switchValue=t,this._updateView()},enumerable:!0,configurable:!0}),t.prototype.addCase=function(t,e){this._caseViews[t]=e},t.prototype._updateView=function(){this._clearViews();var t=Object.keys(this._caseViews),e=nu(this._switchValue,t,this._localization);this._activateView(this._caseViews[e])},t.prototype._clearViews=function(){this._activeView&&this._activeView.destroy()},t.prototype._activateView=function(t){t&&(this._activeView=t,this._activeView.create())},t}();DC.decorators=[{type:ll,args:[{selector:"[ngPlural]"}]}],DC.ctorParameters=function(){return[{type:wC}]},DC.propDecorators={ngPlural:[{type:dl}]};var LC=function(){function t(t,e,n,r){this.value=t;var i=!isNaN(Number(t));r.addCase(i?"="+t:t,new OC(n,e))}return t}();LC.decorators=[{type:ll,args:[{selector:"[ngPluralCase]"}]}],LC.ctorParameters=function(){return[{type:void 0,decorators:[{type:ul,args:["ngPluralCase"]}]},{type:of},{type:sf},{type:DC,decorators:[{type:kl}]}]};var FC=function(){function t(t,e,n){this._differs=t,this._ngEl=e,this._renderer=n}return Object.defineProperty(t.prototype,"ngStyle",{set:function(t){this._ngStyle=t,!this._differ&&t&&(this._differ=this._differs.find(t).create())},enumerable:!0,configurable:!0}),t.prototype.ngDoCheck=function(){if(this._differ){var t=this._differ.diff(this._ngStyle);t&&this._applyChanges(t)}},t.prototype._applyChanges=function(t){var e=this;t.forEachRemovedItem(function(t){return e._setStyle(t.key,null)}),t.forEachAddedItem(function(t){return e._setStyle(t.key,t.currentValue)}),t.forEachChangedItem(function(t){return e._setStyle(t.key,t.currentValue)})},t.prototype._setStyle=function(t,e){var n=t.split("."),r=n[0],i=n[1];e=null!=e&&i?""+e+i:e,this._renderer.setElementStyle(this._ngEl.nativeElement,r,e)},t}();FC.decorators=[{type:ll,args:[{selector:"[ngStyle]"}]}],FC.ctorParameters=function(){return[{type:Sf},{type:Zh},{type:Kh}]},FC.propDecorators={ngStyle:[{type:dl}]};var VC=function(){function t(t){this._viewContainerRef=t}return Object.defineProperty(t.prototype,"ngOutletContext",{set:function(t){this.ngTemplateOutletContext=t},enumerable:!0,configurable:!0}),t.prototype.ngOnChanges=function(){this._viewRef&&this._viewContainerRef.remove(this._viewContainerRef.indexOf(this._viewRef)),this.ngTemplateOutlet&&(this._viewRef=this._viewContainerRef.createEmbeddedView(this.ngTemplateOutlet,this.ngTemplateOutletContext))},t}();VC.decorators=[{type:ll,args:[{selector:"[ngTemplateOutlet]"}]}],VC.ctorParameters=function(){return[{type:sf}]},VC.propDecorators={ngTemplateOutletContext:[{type:dl}],ngTemplateOutlet:[{type:dl}],ngOutletContext:[{type:dl}]};var jC=[xC,SC,AC,kC,VC,FC,NC,IC,RC,DC,LC],HC=function(){function t(){}return t.prototype.createSubscription=function(t,e){return t.subscribe({next:e,error:function(t){throw t}})},t.prototype.dispose=function(t){t.unsubscribe()},t.prototype.onDestroy=function(t){t.unsubscribe()},t}(),UC=function(){function t(){}return t.prototype.createSubscription=function(t,e){return t.then(e,function(t){throw t})},t.prototype.dispose=function(){},t.prototype.onDestroy=function(){},t}(),BC=new UC,zC=new HC,qC=function(){function t(t){this._ref=t,this._latestValue=null,this._latestReturnedValue=null,this._subscription=null,this._obj=null,this._strategy=null}return t.prototype.ngOnDestroy=function(){this._subscription&&this._dispose()},t.prototype.transform=function(t){return this._obj?t!==this._obj?(this._dispose(),this.transform(t)):this._latestValue===this._latestReturnedValue?this._latestReturnedValue:(this._latestReturnedValue=this._latestValue,ff.wrap(this._latestValue)):(t&&this._subscribe(t),this._latestReturnedValue=this._latestValue,this._latestValue)},t.prototype._subscribe=function(t){var e=this;this._obj=t,this._strategy=this._selectStrategy(t),this._subscription=this._strategy.createSubscription(t,function(n){return e._updateLatestValue(t,n)})},t.prototype._selectStrategy=function(e){if(it(e))return BC;if(ot(e))return zC;throw ou(t,e)},t.prototype._dispose=function(){this._strategy.dispose(this._subscription),this._latestValue=null,this._latestReturnedValue=null,this._subscription=null,this._obj=null},t.prototype._updateLatestValue=function(t,e){t===this._obj&&(this._latestValue=e,this._ref.markForCheck())},t}();qC.decorators=[{type:fl,args:[{name:"async",pure:!1}]}],qC.ctorParameters=function(){return[{type:af}]};var WC=function(){function t(){}return t.prototype.transform=function(e){if(!e)return e;if("string"!=typeof e)throw ou(t,e);return e.toLowerCase()},t}();WC.decorators=[{type:fl,args:[{name:"lowercase"}]}],WC.ctorParameters=function(){return[]};var KC=function(){function t(){}return t.prototype.transform=function(e){if(!e)return e;if("string"!=typeof e)throw ou(t,e);return e.split(/\b/g).map(function(t){return su(t)}).join("")},t}();KC.decorators=[{type:fl,args:[{name:"titlecase"}]}],KC.ctorParameters=function(){return[]};var QC=function(){function t(){}return t.prototype.transform=function(e){if(!e)return e;if("string"!=typeof e)throw ou(t,e);return e.toUpperCase()},t}();QC.decorators=[{type:fl,args:[{name:"uppercase"}]}],QC.ctorParameters=function(){return[]};var GC={};GC.Decimal=0,GC.Percent=1,GC.Currency=2,GC[GC.Decimal]="Decimal",GC[GC.Percent]="Percent",GC[GC.Currency]="Currency";var XC=function(){function t(){}return t.format=function(t,e,n,r){var i=void 0===r?{}:r,o=i.minimumIntegerDigits,s=i.minimumFractionDigits,a=i.maximumFractionDigits,u=i.currency,c=i.currencyAsSymbol,p=void 0===c?!1:c,l={minimumIntegerDigits:o,minimumFractionDigits:s,maximumFractionDigits:a,style:GC[n].toLowerCase()};return n==GC.Currency&&(l.currency=u,l.currencyDisplay=p?"symbol":"code"),new Intl.NumberFormat(e,l).format(t)},t}(),ZC=/((?:[^yMLdHhmsazZEwGjJ']+)|(?:'(?:[^']|'')*')|(?:E+|y+|M+|L+|d+|H+|h+|J+|j+|m+|s+|a|z|Z|G+|w+))(.*)/,YC={yMMMdjms:yu(vu([fu("year",1),du("month",3),fu("day",1),fu("hour",1),fu("minute",1),fu("second",1)])),yMdjm:yu(vu([fu("year",1),fu("month",1),fu("day",1),fu("hour",1),fu("minute",1)])),yMMMMEEEEd:yu(vu([fu("year",1),du("month",4),du("weekday",4),fu("day",1)])),yMMMMd:yu(vu([fu("year",1),du("month",4),fu("day",1)])),yMMMd:yu(vu([fu("year",1),du("month",3),fu("day",1)])),yMd:yu(vu([fu("year",1),fu("month",1),fu("day",1)])),jms:yu(vu([fu("hour",1),fu("second",1),fu("minute",1)])),jm:yu(vu([fu("hour",1),fu("minute",1)]))},$C={yyyy:yu(fu("year",4)),yy:yu(fu("year",2)),y:yu(fu("year",1)),MMMM:yu(du("month",4)),MMM:yu(du("month",3)),MM:yu(fu("month",2)),M:yu(fu("month",1)),LLLL:yu(du("month",4)),L:yu(du("month",1)),dd:yu(fu("day",2)),d:yu(fu("day",1)),HH:au(cu(yu(hu(fu("hour",2),!1)))),H:cu(yu(hu(fu("hour",1),!1))),hh:au(cu(yu(hu(fu("hour",2),!0)))),h:cu(yu(hu(fu("hour",1),!0))),jj:yu(fu("hour",2)),j:yu(fu("hour",1)),mm:au(yu(fu("minute",2))),m:yu(fu("minute",1)),ss:au(yu(fu("second",2))),s:yu(fu("second",1)),sss:yu(fu("second",3)),EEEE:yu(du("weekday",4)),EEE:yu(du("weekday",3)),EE:yu(du("weekday",2)),E:yu(du("weekday",1)),a:uu(yu(hu(fu("hour",1),!0))),Z:lu("short"),z:lu("long"),ww:yu({}),w:yu({}),G:yu(du("era",1)),GG:yu(du("era",2)),GGG:yu(du("era",3)),GGGG:yu(du("era",4))},JC=new Map,tx=function(){function t(){}return t.format=function(t,e,n){return mu(n,t,e)},t}(),ex=/^(\d+)?\.((\d+)(-(\d+))?)?$/,nx=function(){function t(t){this._locale=t}return t.prototype.transform=function(e,n){return void 0===n&&(n=null),_u(t,this._locale,e,GC.Decimal,n)},t}();nx.decorators=[{type:fl,args:[{name:"number"}]}],nx.ctorParameters=function(){return[{type:void 0,decorators:[{type:xl,args:[Nf]}]}]};var rx=function(){function t(t){this._locale=t}return t.prototype.transform=function(e,n){return void 0===n&&(n=null),_u(t,this._locale,e,GC.Percent,n)},t}();rx.decorators=[{type:fl,args:[{name:"percent"}]}],rx.ctorParameters=function(){return[{type:void 0,decorators:[{type:xl,args:[Nf]}]}]};var ix=function(){function t(t){this._locale=t}return t.prototype.transform=function(e,n,r,i){return void 0===n&&(n="USD"),void 0===r&&(r=!1),void 0===i&&(i=null),_u(t,this._locale,e,GC.Currency,i,n,r)},t}();ix.decorators=[{type:fl,args:[{name:"currency"}]}],ix.ctorParameters=function(){return[{type:void 0,decorators:[{type:xl,args:[Nf]}]}]};var ox=/^(\d{4})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/,sx=function(){function t(t){this._locale=t}return t.prototype.transform=function(e,n){void 0===n&&(n="mediumDate");var r;if(Eu(e)||e!==e)return null;if("string"==typeof e&&(e=e.trim()),Cu(e))r=e;else if(wu(e))r=new Date(parseFloat(e));else if("string"==typeof e&&/^(\d{4}-\d{1,2}-\d{1,2})$/.test(e)){var i=e.split("-").map(function(t){return parseInt(t,10)}),o=i[0],s=i[1],a=i[2];r=new Date(o,s-1,a)}else r=new Date(e);if(!Cu(r)){var u=void 0;if("string"!=typeof e||!(u=e.match(ox)))throw ou(t,e);r=xu(u)}return tx.format(r,this._locale,t._ALIASES[n]||n)},t}();sx._ALIASES={medium:"yMMMdjms",short:"yMdjm",fullDate:"yMMMMEEEEd",longDate:"yMMMMd",mediumDate:"yMMMd",shortDate:"yMd",mediumTime:"jms",shortTime:"jm"},sx.decorators=[{type:fl,args:[{name:"date",pure:!0}]}],sx.ctorParameters=function(){return[{type:void 0,decorators:[{type:xl,args:[Nf]}]}]};var ax=/#/g,ux=function(){function t(t){this._localization=t}return t.prototype.transform=function(e,n){if(null==e)return"";if("object"!=typeof n||null===n)throw ou(t,n);var r=nu(e,Object.keys(n),this._localization);return n[r].replace(ax,e.toString())},t}();ux.decorators=[{type:fl,args:[{name:"i18nPlural",pure:!0}]}],ux.ctorParameters=function(){return[{type:wC}]};var cx=function(){function t(){}return t.prototype.transform=function(e,n){if(null==e)return"";if("object"!=typeof n||"string"!=typeof e)throw ou(t,n);return n.hasOwnProperty(e)?n[e]:n.hasOwnProperty("other")?n.other:""},t}();cx.decorators=[{type:fl,args:[{name:"i18nSelect",pure:!0}]}],cx.ctorParameters=function(){return[]};var px=function(){function t(){}return t.prototype.transform=function(t){return JSON.stringify(t,null,2)},t}();px.decorators=[{type:fl,args:[{name:"json",pure:!1}]}],px.ctorParameters=function(){return[]};var lx=function(){function t(){}return t.prototype.transform=function(e,n,r){if(null==e)return e;if(!this.supports(e))throw ou(t,e);return e.slice(n,r)},t.prototype.supports=function(t){return"string"==typeof t||Array.isArray(t)},t}();lx.decorators=[{type:fl,args:[{name:"slice",pure:!1}]}],lx.ctorParameters=function(){return[]};var hx=[qC,QC,WC,px,lx,nx,rx,KC,ix,sx,ux,cx],fx=function(){function t(){}return t}();fx.decorators=[{type:bl,args:[{declarations:[jC,hx],exports:[jC,hx],providers:[{provide:wC,useClass:EC}]}]}],fx.ctorParameters=function(){return[]};var dx,vx="browser",yx=(new El("4.0.2"),void 0||function(t,e){function n(){this.constructor=t}for(var r in e)e.hasOwnProperty(r)&&(t[r]=e[r]);t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),mx=null,gx=function(){function t(){this.resourceLoaderType=null}return t.prototype.hasProperty=function(){},t.prototype.setProperty=function(){},t.prototype.getProperty=function(){},t.prototype.invoke=function(){},t.prototype.logError=function(){},t.prototype.log=function(){},t.prototype.logGroup=function(){},t.prototype.logGroupEnd=function(){},Object.defineProperty(t.prototype,"attrToPropMap",{get:function(){return this._attrToPropMap},set:function(t){this._attrToPropMap=t},enumerable:!0,configurable:!0}),t.prototype.contains=function(){},t.prototype.parse=function(){},t.prototype.querySelector=function(){},t.prototype.querySelectorAll=function(){},t.prototype.on=function(){},t.prototype.onAndCancel=function(){},t.prototype.dispatchEvent=function(){},t.prototype.createMouseEvent=function(){},t.prototype.createEvent=function(){},t.prototype.preventDefault=function(){},t.prototype.isPrevented=function(){},t.prototype.getInnerHTML=function(){},t.prototype.getTemplateContent=function(){},t.prototype.getOuterHTML=function(){},t.prototype.nodeName=function(){},t.prototype.nodeValue=function(){},t.prototype.type=function(){},t.prototype.content=function(){},t.prototype.firstChild=function(){},t.prototype.nextSibling=function(){},t.prototype.parentElement=function(){},t.prototype.childNodes=function(){},t.prototype.childNodesAsList=function(){},t.prototype.clearNodes=function(){},t.prototype.appendChild=function(){},t.prototype.removeChild=function(){},t.prototype.replaceChild=function(){},t.prototype.remove=function(){},t.prototype.insertBefore=function(){},t.prototype.insertAllBefore=function(){},t.prototype.insertAfter=function(){},t.prototype.setInnerHTML=function(){},t.prototype.getText=function(){},t.prototype.setText=function(){},t.prototype.getValue=function(){},t.prototype.setValue=function(){},t.prototype.getChecked=function(){},t.prototype.setChecked=function(){},t.prototype.createComment=function(){},t.prototype.createTemplate=function(){},t.prototype.createElement=function(){},t.prototype.createElementNS=function(){},t.prototype.createTextNode=function(){},t.prototype.createScriptTag=function(){},t.prototype.createStyleElement=function(){},t.prototype.createShadowRoot=function(){},t.prototype.getShadowRoot=function(){},t.prototype.getHost=function(){},t.prototype.getDistributedNodes=function(){},t.prototype.clone=function(){},t.prototype.getElementsByClassName=function(){},t.prototype.getElementsByTagName=function(){},t.prototype.classList=function(){},t.prototype.addClass=function(){},t.prototype.removeClass=function(){},t.prototype.hasClass=function(){},t.prototype.setStyle=function(){},t.prototype.removeStyle=function(){},t.prototype.getStyle=function(){},t.prototype.hasStyle=function(){},t.prototype.tagName=function(){},t.prototype.attributeMap=function(){},t.prototype.hasAttribute=function(){},t.prototype.hasAttributeNS=function(){},t.prototype.getAttribute=function(){},t.prototype.getAttributeNS=function(){},t.prototype.setAttribute=function(){},t.prototype.setAttributeNS=function(){},t.prototype.removeAttribute=function(){},t.prototype.removeAttributeNS=function(){},t.prototype.templateAwareRoot=function(){},t.prototype.createHtmlDocument=function(){},t.prototype.getBoundingClientRect=function(){},t.prototype.getTitle=function(){},t.prototype.setTitle=function(){},t.prototype.elementMatches=function(){},t.prototype.isTemplateElement=function(){},t.prototype.isTextNode=function(){},t.prototype.isCommentNode=function(){},t.prototype.isElementNode=function(){},t.prototype.hasShadowRoot=function(){},t.prototype.isShadowRoot=function(){},t.prototype.importIntoDoc=function(){},t.prototype.adoptNode=function(){},t.prototype.getHref=function(){},t.prototype.getEventKey=function(){},t.prototype.resolveAndSetHref=function(){},t.prototype.supportsDOMEvents=function(){},t.prototype.supportsNativeShadowDOM=function(){},t.prototype.getGlobalEventTarget=function(){},t.prototype.getHistory=function(){},t.prototype.getLocation=function(){},t.prototype.getBaseHref=function(){},t.prototype.resetBaseElement=function(){},t.prototype.getUserAgent=function(){},t.prototype.setData=function(){},t.prototype.getComputedStyle=function(){},t.prototype.getData=function(){},t.prototype.setGlobalVar=function(){},t.prototype.supportsWebAnimation=function(){},t.prototype.performanceNow=function(){},t.prototype.getAnimationPrefix=function(){},t.prototype.getTransitionEnd=function(){},t.prototype.supportsAnimation=function(){},t.prototype.supportsCookies=function(){},t.prototype.getCookie=function(){},t.prototype.setCookie=function(){},t}(),_x=function(t){function e(){var e=t.call(this)||this;e._animationPrefix=null,e._transitionEnd=null;try{var n=e.createElement("div",document);if(null!=e.getStyle(n,"animationName"))e._animationPrefix="";else for(var r=["Webkit","Moz","O","ms"],i=0;i<r.length;i++)if(null!=e.getStyle(n,r[i]+"AnimationName")){e._animationPrefix="-"+r[i].toLowerCase()+"-";
break}var o={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};Object.keys(o).forEach(function(t){null!=e.getStyle(n,t)&&(e._transitionEnd=o[t])})}catch(t){e._animationPrefix=null,e._transitionEnd=null}return e}return yx(e,t),e.prototype.getDistributedNodes=function(t){return t.getDistributedNodes()},e.prototype.resolveAndSetHref=function(t,e,n){t.href=null==n?e:e+"/../"+n},e.prototype.supportsDOMEvents=function(){return!0},e.prototype.supportsNativeShadowDOM=function(){return"function"==typeof document.body.createShadowRoot},e.prototype.getAnimationPrefix=function(){return this._animationPrefix?this._animationPrefix:""},e.prototype.getTransitionEnd=function(){return this._transitionEnd?this._transitionEnd:""},e.prototype.supportsAnimation=function(){return null!=this._animationPrefix&&null!=this._transitionEnd},e}(gx),bx={class:"className",innerHtml:"innerHTML",readonly:"readOnly",tabindex:"tabIndex"},wx=3,Ex={"\b":"Backspace"," ":"Tab","":"Delete","":"Escape",Del:"Delete",Esc:"Escape",Left:"ArrowLeft",Right:"ArrowRight",Up:"ArrowUp",Down:"ArrowDown",Menu:"ContextMenu",Scroll:"ScrollLock",Win:"OS"},Cx={A:"1",B:"2",C:"3",D:"4",E:"5",F:"6",G:"7",H:"8",I:"9",J:"*",K:"+",M:"-",N:".",O:"/","`":"0","":"NumLock"};rl.Node&&(dx=rl.Node.prototype.contains||function(t){return!!(16&this.compareDocumentPosition(t))});var xx,Sx=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return yx(e,t),e.prototype.parse=function(){throw new Error("parse not implemented")},e.makeCurrent=function(){Au(new e)},e.prototype.hasProperty=function(t,e){return e in t},e.prototype.setProperty=function(t,e,n){t[e]=n},e.prototype.getProperty=function(t,e){return t[e]},e.prototype.invoke=function(t,e,n){t[e].apply(t,n)},e.prototype.logError=function(t){window.console&&(console.error?console.error(t):console.log(t))},e.prototype.log=function(t){window.console&&window.console.log&&window.console.log(t)},e.prototype.logGroup=function(t){window.console&&window.console.group&&window.console.group(t)},e.prototype.logGroupEnd=function(){window.console&&window.console.groupEnd&&window.console.groupEnd()},Object.defineProperty(e.prototype,"attrToPropMap",{get:function(){return bx},enumerable:!0,configurable:!0}),e.prototype.contains=function(t,e){return dx.call(t,e)},e.prototype.querySelector=function(t,e){return t.querySelector(e)},e.prototype.querySelectorAll=function(t,e){return t.querySelectorAll(e)},e.prototype.on=function(t,e,n){t.addEventListener(e,n,!1)},e.prototype.onAndCancel=function(t,e,n){return t.addEventListener(e,n,!1),function(){t.removeEventListener(e,n,!1)}},e.prototype.dispatchEvent=function(t,e){t.dispatchEvent(e)},e.prototype.createMouseEvent=function(t){var e=document.createEvent("MouseEvent");return e.initEvent(t,!0,!0),e},e.prototype.createEvent=function(t){var e=document.createEvent("Event");return e.initEvent(t,!0,!0),e},e.prototype.preventDefault=function(t){t.preventDefault(),t.returnValue=!1},e.prototype.isPrevented=function(t){return t.defaultPrevented||null!=t.returnValue&&!t.returnValue},e.prototype.getInnerHTML=function(t){return t.innerHTML},e.prototype.getTemplateContent=function(t){return"content"in t&&t instanceof HTMLTemplateElement?t.content:null},e.prototype.getOuterHTML=function(t){return t.outerHTML},e.prototype.nodeName=function(t){return t.nodeName},e.prototype.nodeValue=function(t){return t.nodeValue},e.prototype.type=function(t){return t.type},e.prototype.content=function(t){return this.hasProperty(t,"content")?t.content:t},e.prototype.firstChild=function(t){return t.firstChild},e.prototype.nextSibling=function(t){return t.nextSibling},e.prototype.parentElement=function(t){return t.parentNode},e.prototype.childNodes=function(t){return t.childNodes},e.prototype.childNodesAsList=function(t){for(var e=t.childNodes,n=new Array(e.length),r=0;r<e.length;r++)n[r]=e[r];return n},e.prototype.clearNodes=function(t){for(;t.firstChild;)t.removeChild(t.firstChild)},e.prototype.appendChild=function(t,e){t.appendChild(e)},e.prototype.removeChild=function(t,e){t.removeChild(e)},e.prototype.replaceChild=function(t,e,n){t.replaceChild(e,n)},e.prototype.remove=function(t){return t.parentNode&&t.parentNode.removeChild(t),t},e.prototype.insertBefore=function(t,e,n){t.insertBefore(n,e)},e.prototype.insertAllBefore=function(t,e,n){n.forEach(function(n){return t.insertBefore(n,e)})},e.prototype.insertAfter=function(t,e,n){t.insertBefore(n,e.nextSibling)},e.prototype.setInnerHTML=function(t,e){t.innerHTML=e},e.prototype.getText=function(t){return t.textContent},e.prototype.setText=function(t,e){t.textContent=e},e.prototype.getValue=function(t){return t.value},e.prototype.setValue=function(t,e){t.value=e},e.prototype.getChecked=function(t){return t.checked},e.prototype.setChecked=function(t,e){t.checked=e},e.prototype.createComment=function(t){return document.createComment(t)},e.prototype.createTemplate=function(t){var e=document.createElement("template");return e.innerHTML=t,e},e.prototype.createElement=function(t,e){return void 0===e&&(e=document),e.createElement(t)},e.prototype.createElementNS=function(t,e,n){return void 0===n&&(n=document),n.createElementNS(t,e)},e.prototype.createTextNode=function(t,e){return void 0===e&&(e=document),e.createTextNode(t)},e.prototype.createScriptTag=function(t,e,n){void 0===n&&(n=document);var r=n.createElement("SCRIPT");return r.setAttribute(t,e),r},e.prototype.createStyleElement=function(t,e){void 0===e&&(e=document);var n=e.createElement("style");return this.appendChild(n,this.createTextNode(t)),n},e.prototype.createShadowRoot=function(t){return t.createShadowRoot()},e.prototype.getShadowRoot=function(t){return t.shadowRoot},e.prototype.getHost=function(t){return t.host},e.prototype.clone=function(t){return t.cloneNode(!0)},e.prototype.getElementsByClassName=function(t,e){return t.getElementsByClassName(e)},e.prototype.getElementsByTagName=function(t,e){return t.getElementsByTagName(e)},e.prototype.classList=function(t){return Array.prototype.slice.call(t.classList,0)},e.prototype.addClass=function(t,e){t.classList.add(e)},e.prototype.removeClass=function(t,e){t.classList.remove(e)},e.prototype.hasClass=function(t,e){return t.classList.contains(e)},e.prototype.setStyle=function(t,e,n){t.style[e]=n},e.prototype.removeStyle=function(t,e){t.style[e]=""},e.prototype.getStyle=function(t,e){return t.style[e]},e.prototype.hasStyle=function(t,e,n){void 0===n&&(n=null);var r=this.getStyle(t,e)||"";return n?r==n:r.length>0},e.prototype.tagName=function(t){return t.tagName},e.prototype.attributeMap=function(t){for(var e=new Map,n=t.attributes,r=0;r<n.length;r++){var i=n[r];e.set(i.name,i.value)}return e},e.prototype.hasAttribute=function(t,e){return t.hasAttribute(e)},e.prototype.hasAttributeNS=function(t,e,n){return t.hasAttributeNS(e,n)},e.prototype.getAttribute=function(t,e){return t.getAttribute(e)},e.prototype.getAttributeNS=function(t,e,n){return t.getAttributeNS(e,n)},e.prototype.setAttribute=function(t,e,n){t.setAttribute(e,n)},e.prototype.setAttributeNS=function(t,e,n,r){t.setAttributeNS(e,n,r)},e.prototype.removeAttribute=function(t,e){t.removeAttribute(e)},e.prototype.removeAttributeNS=function(t,e,n){t.removeAttributeNS(e,n)},e.prototype.templateAwareRoot=function(t){return this.isTemplateElement(t)?this.content(t):t},e.prototype.createHtmlDocument=function(){return document.implementation.createHTMLDocument("fakeTitle")},e.prototype.getBoundingClientRect=function(t){try{return t.getBoundingClientRect()}catch(t){return{top:0,bottom:0,left:0,right:0,width:0,height:0}}},e.prototype.getTitle=function(){return document.title},e.prototype.setTitle=function(t,e){document.title=e||""},e.prototype.elementMatches=function(t,e){return t instanceof HTMLElement?t.matches&&t.matches(e)||t.msMatchesSelector&&t.msMatchesSelector(e)||t.webkitMatchesSelector&&t.webkitMatchesSelector(e):!1},e.prototype.isTemplateElement=function(t){return t instanceof HTMLElement&&"TEMPLATE"==t.nodeName},e.prototype.isTextNode=function(t){return t.nodeType===Node.TEXT_NODE},e.prototype.isCommentNode=function(t){return t.nodeType===Node.COMMENT_NODE},e.prototype.isElementNode=function(t){return t.nodeType===Node.ELEMENT_NODE},e.prototype.hasShadowRoot=function(t){return null!=t.shadowRoot&&t instanceof HTMLElement},e.prototype.isShadowRoot=function(t){return t instanceof DocumentFragment},e.prototype.importIntoDoc=function(t){return document.importNode(this.templateAwareRoot(t),!0)},e.prototype.adoptNode=function(t){return document.adoptNode(t)},e.prototype.getHref=function(t){return t.href},e.prototype.getEventKey=function(t){var e=t.key;if(null==e){if(e=t.keyIdentifier,null==e)return"Unidentified";e.startsWith("U+")&&(e=String.fromCharCode(parseInt(e.substring(2),16)),t.location===wx&&Cx.hasOwnProperty(e)&&(e=Cx[e]))}return Ex[e]||e},e.prototype.getGlobalEventTarget=function(t,e){return"window"===e?window:"document"===e?document:"body"===e?document.body:void 0},e.prototype.getHistory=function(){return window.history},e.prototype.getLocation=function(){return window.location},e.prototype.getBaseHref=function(){var t=Pu();return null==t?null:ku(t)},e.prototype.resetBaseElement=function(){Tx=null},e.prototype.getUserAgent=function(){return window.navigator.userAgent},e.prototype.setData=function(t,e,n){this.setAttribute(t,"data-"+e,n)},e.prototype.getData=function(t,e){return this.getAttribute(t,"data-"+e)},e.prototype.getComputedStyle=function(t){return getComputedStyle(t)},e.prototype.setGlobalVar=function(t,e){Ou(rl,t,e)},e.prototype.supportsWebAnimation=function(){return"function"==typeof Element.prototype.animate},e.prototype.performanceNow=function(){return window.performance&&window.performance.now?window.performance.now():(new Date).getTime()},e.prototype.supportsCookies=function(){return!0},e.prototype.getCookie=function(t){return Mu(document.cookie,t)},e.prototype.setCookie=function(t,e){document.cookie=encodeURIComponent(t)+"="+encodeURIComponent(e)},e}(_x),Tx=null,Ax=new Jp("DocumentToken"),Px=function(t){function e(e){var n=t.call(this)||this;return n._doc=e,n._init(),n}return yx(e,t),e.prototype._init=function(){this._location=Tu().getLocation(),this._history=Tu().getHistory()},Object.defineProperty(e.prototype,"location",{get:function(){return this._location},enumerable:!0,configurable:!0}),e.prototype.getBaseHrefFromDOM=function(){return Tu().getBaseHref(this._doc)},e.prototype.onPopState=function(t){Tu().getGlobalEventTarget(this._doc,"window").addEventListener("popstate",t,!1)},e.prototype.onHashChange=function(t){Tu().getGlobalEventTarget(this._doc,"window").addEventListener("hashchange",t,!1)},Object.defineProperty(e.prototype,"pathname",{get:function(){return this._location.pathname},set:function(t){this._location.pathname=t},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"search",{get:function(){return this._location.search},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"hash",{get:function(){return this._location.hash},enumerable:!0,configurable:!0}),e.prototype.pushState=function(t,e,n){Nu()?this._history.pushState(t,e,n):this._location.hash=n},e.prototype.replaceState=function(t,e,n){Nu()?this._history.replaceState(t,e,n):this._location.hash=n},e.prototype.forward=function(){this._history.forward()},e.prototype.back=function(){this._history.back()},e}(vC);Px.decorators=[{type:Tl}],Px.ctorParameters=function(){return[{type:void 0,decorators:[{type:xl,args:[Ax]}]}]};var kx=function(){function t(t){this._doc=t,this._dom=Tu()}return t.prototype.addTag=function(t,e){return void 0===e&&(e=!1),t?this._getOrCreateElement(t,e):null},t.prototype.addTags=function(t,e){var n=this;return void 0===e&&(e=!1),t?t.reduce(function(t,r){return r&&t.push(n._getOrCreateElement(r,e)),t},[]):[]},t.prototype.getTag=function(t){return t?this._dom.querySelector(this._doc,"meta["+t+"]"):null},t.prototype.getTags=function(t){if(!t)return[];var e=this._dom.querySelectorAll(this._doc,"meta["+t+"]");return e?[].slice.call(e):[]},t.prototype.updateTag=function(t,e){if(!t)return null;e=e||this._parseSelector(t);var n=this.getTag(e);return n?this._setMetaElementAttributes(t,n):this._getOrCreateElement(t,!0)},t.prototype.removeTag=function(t){this.removeTagElement(this.getTag(t))},t.prototype.removeTagElement=function(t){t&&this._dom.remove(t)},t.prototype._getOrCreateElement=function(t,e){if(void 0===e&&(e=!1),!e){var n=this._parseSelector(t),r=this.getTag(n);if(r&&this._containsAttributes(t,r))return r}var i=this._dom.createElement("meta");this._setMetaElementAttributes(t,i);var o=this._dom.getElementsByTagName(this._doc,"head")[0];return this._dom.appendChild(o,i),i},t.prototype._setMetaElementAttributes=function(t,e){var n=this;return Object.keys(t).forEach(function(r){return n._dom.setAttribute(e,r,t[r])}),e},t.prototype._parseSelector=function(t){var e=t.name?"name":"property";return e+'="'+t[e]+'"'},t.prototype._containsAttributes=function(t,e){var n=this;return Object.keys(t).every(function(r){return n._dom.getAttribute(e,r)===t[r]})},t}();kx.decorators=[{type:Tl}],kx.ctorParameters=function(){return[{type:void 0,decorators:[{type:xl,args:[Ax]}]}]};var Mx=new Jp("TRANSITION_ID"),Ox=[{provide:nh,useFactory:Iu,deps:[Mx,Ax],multi:!0}],Nx=function(){function t(){}return t.init=function(){dt(new t)},t.prototype.addToWindow=function(t){rl.getAngularTestability=function(e,n){void 0===n&&(n=!0);var r=t.findTestabilityInTree(e,n);if(null==r)throw new Error("Could not find testability for element.");return r},rl.getAllAngularTestabilities=function(){return t.getAllTestabilities()},rl.getAllAngularRootElements=function(){return t.getAllRootElements()};var e=function(t){var e=rl.getAllAngularTestabilities(),n=e.length,r=!1,i=function(e){r=r||e,n--,0==n&&t(r)};e.forEach(function(t){t.whenStable(i)})};rl.frameworkStabilizers||(rl.frameworkStabilizers=[]),rl.frameworkStabilizers.push(e)},t.prototype.findTestabilityInTree=function(t,e,n){if(null==e)return null;var r=t.getTestability(e);return null!=r?r:n?Tu().isShadowRoot(e)?this.findTestabilityInTree(t,Tu().getHost(e),!0):this.findTestabilityInTree(t,Tu().parentElement(e),!0):null},t}(),Ix=function(){function t(t){this._doc=t}return t.prototype.getTitle=function(){return Tu().getTitle(this._doc)},t.prototype.setTitle=function(t){Tu().setTitle(this._doc,t)},t}();Ix.decorators=[{type:Tl}],Ix.ctorParameters=function(){return[{type:void 0,decorators:[{type:xl,args:[Ax]}]}]};var Rx=void 0||Object.assign||function(t){for(var e,n=1,r=arguments.length;r>n;n++){e=arguments[n];for(var i in e)Object.prototype.hasOwnProperty.call(e,i)&&(t[i]=e[i])}return t},Dx={ApplicationRef:qh,NgZone:Nh},Lx="ng.probe",Fx="ng.coreTokens",Vx=function(){function t(t,e){this.name=t,this.token=e}return t}(),jx=[{provide:nh,useFactory:Du,deps:[[Vx,new Sl],[Uh,new Sl]],multi:!0}],Hx=new Jp("EventManagerPlugins"),Ux=function(){function t(t,e){var n=this;this._zone=e,this._eventNameToPlugin=new Map,t.forEach(function(t){return t.manager=n}),this._plugins=t.slice().reverse()}return t.prototype.addEventListener=function(t,e,n){var r=this._findPluginFor(e);return r.addEventListener(t,e,n)},t.prototype.addGlobalEventListener=function(t,e,n){var r=this._findPluginFor(e);return r.addGlobalEventListener(t,e,n)},t.prototype.getZone=function(){return this._zone},t.prototype._findPluginFor=function(t){var e=this._eventNameToPlugin.get(t);if(e)return e;for(var n=this._plugins,r=0;r<n.length;r++){var i=n[r];if(i.supports(t))return this._eventNameToPlugin.set(t,i),i}throw new Error("No event manager plugin found for event "+t)},t}();Ux.decorators=[{type:Tl}],Ux.ctorParameters=function(){return[{type:Array,decorators:[{type:xl,args:[Hx]}]},{type:Nh}]};var Bx=function(){function t(t){this._doc=t}return t.prototype.supports=function(){},t.prototype.addEventListener=function(){},t.prototype.addGlobalEventListener=function(t,e,n){var r=Tu().getGlobalEventTarget(this._doc,t);if(!r)throw new Error("Unsupported event target "+r+" for event "+e);return this.addEventListener(r,e,n)},t}(),zx=function(){function t(){this._stylesSet=new Set}return t.prototype.addStyles=function(t){var e=this,n=new Set;t.forEach(function(t){e._stylesSet.has(t)||(e._stylesSet.add(t),n.add(t))}),this.onStylesAdded(n)},t.prototype.onStylesAdded=function(){},t.prototype.getAllStyles=function(){return Array.from(this._stylesSet)},t}();zx.decorators=[{type:Tl}],zx.ctorParameters=function(){return[]};var qx=function(t){function e(e){var n=t.call(this)||this;return n._doc=e,n._hostNodes=new Set,n._styleNodes=new Set,n._hostNodes.add(e.head),n}return yx(e,t),e.prototype._addStylesToHost=function(t,e){var n=this;t.forEach(function(t){var r=n._doc.createElement("style");r.textContent=t,n._styleNodes.add(e.appendChild(r))})},e.prototype.addHost=function(t){this._addStylesToHost(this._stylesSet,t),this._hostNodes.add(t)},e.prototype.removeHost=function(t){this._hostNodes.delete(t)},e.prototype.onStylesAdded=function(t){var e=this;this._hostNodes.forEach(function(n){return e._addStylesToHost(t,n)})},e.prototype.ngOnDestroy=function(){this._styleNodes.forEach(function(t){return Tu().remove(t)})},e}(zx);qx.decorators=[{type:Tl}],qx.ctorParameters=function(){return[{type:void 0,decorators:[{type:xl,args:[Ax]}]}]};var Wx={svg:"http://www.w3.org/2000/svg",xhtml:"http://www.w3.org/1999/xhtml",xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"},Kx=/%COMP%/g,Qx="%COMP%",Gx="_nghost-"+Qx,Xx="_ngcontent-"+Qx,Zx=function(){function t(t,e){this.eventManager=t,this.sharedStylesHost=e,this.rendererByCompId=new Map,this.defaultRenderer=new Yx(t)}return t.prototype.createRenderer=function(t,e){if(!t||!e)return this.defaultRenderer;switch(e.encapsulation){case wl.Emulated:var n=this.rendererByCompId.get(e.id);return n||(n=new Jx(this.eventManager,this.sharedStylesHost,e),this.rendererByCompId.set(e.id,n)),n.applyToHost(t),n;case wl.Native:return new tS(this.eventManager,this.sharedStylesHost,t,e);default:if(!this.rendererByCompId.has(e.id)){var r=ju(e.id,e.styles,[]);this.sharedStylesHost.addStyles(r),this.rendererByCompId.set(e.id,this.defaultRenderer)}return this.defaultRenderer}},t}();Zx.decorators=[{type:Tl}],Zx.ctorParameters=function(){return[{type:Ux},{type:qx}]};var Yx=function(){function t(t){this.eventManager=t,this.data=Object.create(null)}return t.prototype.destroy=function(){},t.prototype.createElement=function(t,e){return e?document.createElementNS(Wx[e],t):document.createElement(t)},t.prototype.createComment=function(t){return document.createComment(t)},t.prototype.createText=function(t){return document.createTextNode(t)},t.prototype.appendChild=function(t,e){t.appendChild(e)},t.prototype.insertBefore=function(t,e,n){t&&t.insertBefore(e,n)},t.prototype.removeChild=function(t,e){t&&t.removeChild(e)},t.prototype.selectRootElement=function(t){var e="string"==typeof t?document.querySelector(t):t;if(!e)throw new Error('The selector "'+t+'" did not match any elements');return e.textContent="",e},t.prototype.parentNode=function(t){return t.parentNode},t.prototype.nextSibling=function(t){return t.nextSibling},t.prototype.setAttribute=function(t,e,n,r){if(r){e=r+":"+e;var i=Wx[r];i?t.setAttributeNS(i,e,n):t.setAttribute(e,n)}else t.setAttribute(e,n)},t.prototype.removeAttribute=function(t,e,n){if(n){var r=Wx[n];r?t.removeAttributeNS(r,e):t.removeAttribute(n+":"+e)}else t.removeAttribute(e)},t.prototype.addClass=function(t,e){t.classList.add(e)},t.prototype.removeClass=function(t,e){t.classList.remove(e)},t.prototype.setStyle=function(t,e,n,r){r&Gh.DashCase?t.style.setProperty(e,n,r&Gh.Important?"important":""):t.style[e]=n},t.prototype.removeStyle=function(t,e,n){n&Gh.DashCase?t.style.removeProperty(e):t.style[e]=""},t.prototype.setProperty=function(t,e,n){Uu(e,"property"),t[e]=n},t.prototype.setValue=function(t,e){t.nodeValue=e},t.prototype.listen=function(t,e,n){return Uu(e,"listener"),"string"==typeof t?this.eventManager.addGlobalEventListener(t,e,Hu(n)):this.eventManager.addEventListener(t,e,Hu(n))},t}(),$x="@".charCodeAt(0),Jx=function(t){function e(e,n,r){var i=t.call(this,e)||this;i.component=r;var o=ju(r.id,r.styles,[]);return n.addStyles(o),i.contentAttr=Fu(r.id),i.hostAttr=Vu(r.id),i}return yx(e,t),e.prototype.applyToHost=function(e){t.prototype.setAttribute.call(this,e,this.hostAttr,"")},e.prototype.createElement=function(e,n){var r=t.prototype.createElement.call(this,e,n);return t.prototype.setAttribute.call(this,r,this.contentAttr,""),r},e}(Yx),tS=function(t){function e(e,n,r,i){var o=t.call(this,e)||this;o.sharedStylesHost=n,o.hostEl=r,o.component=i,o.shadowRoot=r.createShadowRoot(),o.sharedStylesHost.addHost(o.shadowRoot);for(var s=ju(i.id,i.styles,[]),a=0;a<s.length;a++){var u=document.createElement("style");u.textContent=s[a],o.shadowRoot.appendChild(u)}return o}return yx(e,t),e.prototype.nodeOrShadowRoot=function(t){return t===this.hostEl?this.shadowRoot:t},e.prototype.destroy=function(){this.sharedStylesHost.removeHost(this.shadowRoot)},e.prototype.appendChild=function(e,n){return t.prototype.appendChild.call(this,this.nodeOrShadowRoot(e),n)},e.prototype.insertBefore=function(e,n,r){return t.prototype.insertBefore.call(this,this.nodeOrShadowRoot(e),n,r)},e.prototype.removeChild=function(e,n){return t.prototype.removeChild.call(this,this.nodeOrShadowRoot(e),n)},e.prototype.parentNode=function(e){return this.nodeOrShadowRoot(t.prototype.parentNode.call(this,this.nodeOrShadowRoot(e)))},e}(Yx),eS=function(t){function e(e){return t.call(this,e)||this}return yx(e,t),e.prototype.supports=function(){return!0},e.prototype.addEventListener=function(t,e,n){return t.addEventListener(e,n,!1),function(){return t.removeEventListener(e,n,!1)}},e}(Bx);eS.decorators=[{type:Tl}],eS.ctorParameters=function(){return[{type:void 0,decorators:[{type:xl,args:[Ax]}]}]};var nS={pan:!0,panstart:!0,panmove:!0,panend:!0,pancancel:!0,panleft:!0,panright:!0,panup:!0,pandown:!0,pinch:!0,pinchstart:!0,pinchmove:!0,pinchend:!0,pinchcancel:!0,pinchin:!0,pinchout:!0,press:!0,pressup:!0,rotate:!0,rotatestart:!0,rotatemove:!0,rotateend:!0,rotatecancel:!0,swipe:!0,swipeleft:!0,swiperight:!0,swipeup:!0,swipedown:!0,tap:!0},rS=new Jp("HammerGestureConfig"),iS=function(){function t(){this.events=[],this.overrides={}}return t.prototype.buildHammer=function(t){var e=new Hammer(t);e.get("pinch").set({enable:!0}),e.get("rotate").set({enable:!0});for(var n in this.overrides)e.get(n).set(this.overrides[n]);return e},t}();iS.decorators=[{type:Tl}],iS.ctorParameters=function(){return[]};var oS=function(t){function e(e,n){var r=t.call(this,e)||this;return r._config=n,r}return yx(e,t),e.prototype.supports=function(t){if(!nS.hasOwnProperty(t.toLowerCase())&&!this.isCustomEvent(t))return!1;if(!window.Hammer)throw new Error("Hammer.js is not loaded, can not bind "+t+" event");return!0},e.prototype.addEventListener=function(t,e,n){var r=this,i=this.manager.getZone();return e=e.toLowerCase(),i.runOutsideAngular(function(){var o=r._config.buildHammer(t),s=function(t){i.runGuarded(function(){n(t)})};return o.on(e,s),function(){return o.off(e,s)}})},e.prototype.isCustomEvent=function(t){return this._config.events.indexOf(t)>-1},e}(Bx);oS.decorators=[{type:Tl}],oS.ctorParameters=function(){return[{type:void 0,decorators:[{type:xl,args:[Ax]}]},{type:iS,decorators:[{type:xl,args:[rS]}]}]};var sS=["alt","control","meta","shift"],aS={alt:function(t){return t.altKey},control:function(t){return t.ctrlKey},meta:function(t){return t.metaKey},shift:function(t){return t.shiftKey}},uS=function(t){function e(e){return t.call(this,e)||this}return yx(e,t),e.prototype.supports=function(t){return null!=e.parseEventName(t)},e.prototype.addEventListener=function(t,n,r){var i=e.parseEventName(n),o=e.eventCallback(i.fullKey,r,this.manager.getZone());return this.manager.getZone().runOutsideAngular(function(){return Tu().onAndCancel(t,i.domEventName,o)})},e.parseEventName=function(t){var n=t.toLowerCase().split("."),r=n.shift();if(0===n.length||"keydown"!==r&&"keyup"!==r)return null;var i=e._normalizeKey(n.pop()),o="";if(sS.forEach(function(t){var e=n.indexOf(t);e>-1&&(n.splice(e,1),o+=t+".")}),o+=i,0!=n.length||0===i.length)return null;var s={};return s.domEventName=r,s.fullKey=o,s},e.getEventFullKey=function(t){var e="",n=Tu().getEventKey(t);return n=n.toLowerCase()," "===n?n="space":"."===n&&(n="dot"),sS.forEach(function(r){if(r!=n){var i=aS[r];i(t)&&(e+=r+".")}}),e+=n},e.eventCallback=function(t,n,r){return function(i){e.getEventFullKey(i)===t&&r.runGuarded(function(){return n(i)})}},e._normalizeKey=function(t){switch(t){case"esc":return"escape";default:return t}},e}(Bx);uS.decorators=[{type:Tl}],uS.ctorParameters=function(){return[{type:void 0,decorators:[{type:xl,args:[Ax]}]}]};var cS=/^(?:(?:https?|mailto|ftp|tel|file):|[^&:\/?#]*(?:[\/?#]|$))/gi,pS=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+\/]+=*$/i,lS=null,hS=null,fS=Wu("area,br,col,hr,img,wbr"),dS=Wu("colgroup,dd,dt,li,p,tbody,td,tfoot,th,thead,tr"),vS=Wu("rp,rt"),yS=Ku(vS,dS),mS=Ku(dS,Wu("address,article,aside,blockquote,caption,center,del,details,dialog,dir,div,dl,figure,figcaption,footer,h1,h2,h3,h4,h5,h6,header,hgroup,hr,ins,main,map,menu,nav,ol,pre,section,summary,table,ul")),gS=Ku(vS,Wu("a,abbr,acronym,audio,b,bdi,bdo,big,br,cite,code,del,dfn,em,font,i,img,ins,kbd,label,map,mark,picture,q,ruby,rp,rt,s,samp,small,source,span,strike,strong,sub,sup,time,track,tt,u,var,video")),_S=Ku(fS,mS,gS,yS),bS=Wu("background,cite,href,itemtype,longdesc,poster,src,xlink:href"),wS=Wu("srcset"),ES=Wu("abbr,accesskey,align,alt,autoplay,axis,bgcolor,border,cellpadding,cellspacing,class,clear,color,cols,colspan,compact,controls,coords,datetime,default,dir,download,face,headers,height,hidden,hreflang,hspace,ismap,itemscope,itemprop,kind,label,lang,language,loop,media,muted,nohref,nowrap,open,preload,rel,rev,role,rows,rowspan,rules,scope,scrolling,shape,size,sizes,span,srclang,start,summary,tabindex,target,title,translate,type,usemap,valign,value,vspace,width"),CS=Ku(bS,wS,ES),xS=function(){function t(){this.sanitizedSomething=!1,this.buf=[]}return t.prototype.sanitizeChildren=function(t){for(var e=t.firstChild;e;)if(hS.isElementNode(e)?this.startElement(e):hS.isTextNode(e)?this.chars(hS.nodeValue(e)):this.sanitizedSomething=!0,hS.firstChild(e))e=hS.firstChild(e);else for(;e;){hS.isElementNode(e)&&this.endElement(e);var n=Qu(e,hS.nextSibling(e));if(n){e=n;break}e=Qu(e,hS.parentElement(e))}return this.buf.join("")},t.prototype.startElement=function(t){var e=this,n=hS.nodeName(t).toLowerCase();return _S.hasOwnProperty(n)?(this.buf.push("<"),this.buf.push(n),hS.attributeMap(t).forEach(function(t,n){var r=n.toLowerCase();return CS.hasOwnProperty(r)?(bS[r]&&(t=Bu(t)),wS[r]&&(t=zu(t)),e.buf.push(" "),e.buf.push(n),e.buf.push('="'),e.buf.push(Gu(t)),void e.buf.push('"')):void(e.sanitizedSomething=!0)}),void this.buf.push(">")):void(this.sanitizedSomething=!0)},t.prototype.endElement=function(t){var e=hS.nodeName(t).toLowerCase();_S.hasOwnProperty(e)&&!fS.hasOwnProperty(e)&&(this.buf.push("</"),this.buf.push(e),this.buf.push(">"))},t.prototype.chars=function(t){this.buf.push(Gu(t))},t}(),SS=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,TS=/([^\#-~ |!])/g,AS="[-,.\"'%_!# a-zA-Z0-9]+",PS="(?:matrix|translate|scale|rotate|skew|perspective)(?:X|Y|3d)?",kS="(?:rgb|hsl)a?",MS="(?:repeating-)?(?:linear|radial)-gradient",OS="(?:calc|attr)",NS="\\([-0-9.%, #a-zA-Z]+\\)",IS=new RegExp("^("+AS+"|"+("(?:"+PS+"|"+kS+"|"+MS+"|"+OS+")")+(NS+")$"),"g"),RS=/^url\(([^)]+)\)$/,DS=function(){function t(){}return t.prototype.sanitize=function(){},t.prototype.bypassSecurityTrustHtml=function(){},t.prototype.bypassSecurityTrustStyle=function(){},t.prototype.bypassSecurityTrustScript=function(){},t.prototype.bypassSecurityTrustUrl=function(){},t.prototype.bypassSecurityTrustResourceUrl=function(){},t}(),LS=function(t){function e(e){var n=t.call(this)||this;return n._doc=e,n}return yx(e,t),e.prototype.sanitize=function(t,e){if(null==e)return null;switch(t){case Lf.NONE:return e;case Lf.HTML:return e instanceof VS?e.changingThisBreaksApplicationSecurity:(this.checkNotSafeValue(e,"HTML"),Zu(this._doc,String(e)));case Lf.STYLE:return e instanceof jS?e.changingThisBreaksApplicationSecurity:(this.checkNotSafeValue(e,"Style"),$u(e));case Lf.SCRIPT:if(e instanceof HS)return e.changingThisBreaksApplicationSecurity;throw this.checkNotSafeValue(e,"Script"),new Error("unsafe value used in a script context");case Lf.URL:return e instanceof BS||e instanceof US?e.changingThisBreaksApplicationSecurity:(this.checkNotSafeValue(e,"URL"),Bu(String(e)));case Lf.RESOURCE_URL:if(e instanceof BS)return e.changingThisBreaksApplicationSecurity;throw this.checkNotSafeValue(e,"ResourceURL"),new Error("unsafe value used in a resource URL context (see http://g.co/ng/security#xss)");default:throw new Error("Unexpected SecurityContext "+t+" (see http://g.co/ng/security#xss)")}},e.prototype.checkNotSafeValue=function(t,e){if(t instanceof FS)throw new Error("Required a safe "+e+", got a "+t.getTypeName()+" (see http://g.co/ng/security#xss)")},e.prototype.bypassSecurityTrustHtml=function(t){return new VS(t)},e.prototype.bypassSecurityTrustStyle=function(t){return new jS(t)},e.prototype.bypassSecurityTrustScript=function(t){return new HS(t)},e.prototype.bypassSecurityTrustUrl=function(t){return new US(t)},e.prototype.bypassSecurityTrustResourceUrl=function(t){return new BS(t)},e}(DS);LS.decorators=[{type:Tl}],LS.ctorParameters=function(){return[{type:void 0,decorators:[{type:xl,args:[Ax]}]}]};var FS=function(){function t(t){this.changingThisBreaksApplicationSecurity=t}return t.prototype.getTypeName=function(){},t.prototype.toString=function(){return"SafeValue must use [property]=binding: "+this.changingThisBreaksApplicationSecurity+" (see http://g.co/ng/security#xss)"},t}(),VS=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return yx(e,t),e.prototype.getTypeName=function(){return"HTML"},e}(FS),jS=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return yx(e,t),e.prototype.getTypeName=function(){return"Style"},e}(FS),HS=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return yx(e,t),e.prototype.getTypeName=function(){return"Script"},e}(FS),US=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return yx(e,t),e.prototype.getTypeName=function(){return"URL"},e}(FS),BS=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return yx(e,t),e.prototype.getTypeName=function(){return"ResourceURL"},e}(FS),zS=[{provide:ah,useValue:vx},{provide:sh,useValue:Ju,multi:!0},{provide:vC,useClass:Px},{provide:Ax,useFactory:ec,deps:[]}],qS=[{provide:Ff,useExisting:DS},{provide:DS,useClass:LS}],WS=(gt(Of,"browser",zS),function(){function t(t){if(t)throw new Error("BrowserModule has already been loaded. If you need access to common directives such as NgIf and NgFor from a lazy loaded module, import CommonModule instead.")}return t.withServerTransition=function(e){return{ngModule:t,providers:[{provide:ih,useValue:e.appId},{provide:Mx,useExisting:ih},Ox]}},t}());WS.decorators=[{type:bl,args:[{providers:[qS,{provide:Vl,useFactory:tc,deps:[]},{provide:Hx,useClass:eS,multi:!0},{provide:Hx,useClass:uS,multi:!0},{provide:Hx,useClass:oS,multi:!0},{provide:rS,useClass:iS},Zx,{provide:Qh,useExisting:Zx},{provide:zx,useExisting:qx},qx,Ih,Ux,jx,kx,Ix],exports:[fx,wd]}]}],WS.ctorParameters=function(){return[{type:WS,decorators:[{type:Sl},{type:Pl}]}]};var KS=(new El("4.0.2"),void 0||function(t,e){function n(){this.constructor=t}for(var r in e)e.hasOwnProperty(r)&&(t[r]=e[r]);t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),QS=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return KS(e,t),e.prototype.get=function(t){var e,n,r=new Promise(function(t,r){e=t,
n=r}),i=new XMLHttpRequest;return i.open("GET",t,!0),i.responseType="text",i.onload=function(){var r=i.response||i.responseText,o=1223===i.status?204:i.status;0===o&&(o=r?200:0),o>=200&&300>=o?e(r):n("Failed to load "+t)},i.onerror=function(){n("Failed to load "+t)},i.send(),r},e}(nb);QS.decorators=[{type:Tl}],QS.ctorParameters=function(){return[]};var GS=[zS,{provide:fh,useValue:{providers:[{provide:nb,useClass:QS}]},multi:!0},{provide:ah,useValue:vx}],XS=(function(t){function e(){var e=t.call(this)||this;if(e._cache=rl.$templateCache,null==e._cache)throw new Error("CachedResourceLoader: Template cache was not found in $templateCache.");return e}return KS(e,t),e.prototype.get=function(t){return this._cache.hasOwnProperty(t)?Promise.resolve(this._cache[t]):Promise.reject("CachedResourceLoader: Did not find cached template for "+t)},e}(nb),new El("4.0.2"),gt(fC,"browserDynamic",GS)),ZS=void 0||function(t,e,n,r){var i,o=arguments.length,s=3>o?e:null===r?r=Object.getOwnPropertyDescriptor(e,n):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(t,e,n,r);else for(var a=t.length-1;a>=0;a--)(i=t[a])&&(s=(3>o?i(s):o>3?i(e,n,s):i(e,n))||s);return o>3&&s&&Object.defineProperty(e,n,s),s},YS=function(){function t(){}return t}();YS=ZS([hl({selector:"app",template:'\n <div class="demo simple" ngResizable [minWidth]="20" [minHeight]="20">\n Simple demo\n </div> \n <div class="demo grid" ngResizable [minWidth]="20" [minHeight]="20" [grid]="{ width: 15, height: 15 }">\n Grid\n </div> \n <div class="demo ratio" ngResizable [ratio]="1" [minWidth]="20" [minHeight]="20">\n Fixed ratio\n </div> \n <div class="demo directions" ngResizable [directions]="[\'bottom\', \'top\', \'left\', \'right\', \'top-left\', \'bottom-left\', \'top-right\', \'bottom-right\']" [minWidth]="20" [minHeight]="20">\n Resize directions\n </div> \n <div class="demo dots" ngResizable [directions]="[\'bottom\', \'top\', \'left\', \'right\', \'top-left\', \'bottom-left\', \'top-right\', \'bottom-right\']" [minWidth]="20" [minHeight]="20">\n Resize handles\n </div>\n '})],YS);var $S={x:-(1/0),y:-(1/0),width:1/0,height:1/0},JS=function(){function t(){this.state={currentSize:{width:0,height:0},startSize:{width:0,height:0},currentPosition:{x:0,y:0},startPosition:{x:0,y:0},isResizing:!1,direction:null},this.reducers=[]}return t.prototype.addReducer=function(t){this.reducers.push(t)},t.prototype.emitAction=function(t){for(var e=[],n=1;n<arguments.length;n++)e[n-1]=arguments[n];this.state=this.reducers.reduce(function(n,r){return r.apply(null,[n,t].concat(e))},this.state)},t}(),tT="resize-resize",eT="resize-mouse-down",nT="resize-stop",rT=function(t,e,n){return t<=e.minSize.width&&(t=e.minSize.width),t>=e.maxSize.width&&(t=e.maxSize.width),t+n.x>=e.bound.x+e.bound.width&&(t-=t+n.x-(e.bound.x+e.bound.width)),{nextWidth:t,nextLeft:n.x}},iT=function(t,e,n){return t<=e.minSize.height&&(t=e.minSize.height),t>=e.maxSize.height&&(t=e.maxSize.height),t+n.y>=e.bound.y+e.bound.height&&(t-=t+n.y-(e.bound.y+e.bound.height)),{nextHeight:t,nextTop:n.y}},oT=function(t,e,n,r){var i=e.y+(n.height-t);return t<=r.minSize.height&&(i-=r.minSize.height-t,t=r.minSize.height),t>=r.maxSize.height&&(i+=t-r.maxSize.height,t=r.maxSize.height),i<=r.bound.y&&(t-=r.bound.y-i,i=r.bound.y),{nextHeight:t,nextTop:i}},sT=function(t,e,n,r){var i=e.x+(n.width-t);return t<=r.minSize.width&&(i-=r.minSize.width-t,t=r.minSize.width),t>=r.maxSize.width&&(i+=t-r.maxSize.width,t=r.maxSize.width),i<=r.bound.x&&(t-=r.bound.x-i,i=r.bound.x),{nextWidth:t,nextLeft:i}},aT=function(t,e,n,r,i,o){var s,a=t.nextWidth,u=t.nextHeight,c=t.nextTop,p=t.nextLeft,l=e.bound;switch(l.x=parseInt(l.x.toFixed()),l.y=parseInt(l.y.toFixed()),l.width=parseInt(l.width.toFixed()),l.height=parseInt(l.height.toFixed()),i){case"left":u=iT(e.ratio*a,e,o).nextHeight,p+=a-u/e.ratio,a=u/e.ratio;break;case"right":u=iT(e.ratio*a,e,o).nextHeight,a=u/e.ratio;break;case"top":a=rT(u/e.ratio,e,o).nextWidth,c+=u-a*e.ratio,u=e.ratio*a;break;case"bottom":case"bottom-right":a=rT(u/e.ratio,e,o).nextWidth,u=e.ratio*a;break;case"top-left":s=sT(u/e.ratio,n,r,e),a=s.nextWidth,p=s.nextLeft,a<u/e.ratio&&(c+=u-a*e.ratio,u=a*e.ratio);break;case"bottom-left":s=sT(u/e.ratio,n,r,e),a=s.nextWidth,p=s.nextLeft,a<u/e.ratio&&(u=a*e.ratio);break;case"top-right":s=rT(u/e.ratio,e,o),a=s.nextWidth,a<u/e.ratio&&(c+=u-a*e.ratio,u=a*e.ratio)}return{nextWidth:a,nextHeight:u,nextTop:c,nextLeft:p}},uT=function(t,e,n,r,i,o,s){if(i.disabled)return t;var a=t.startPosition,u=t.startSize,c=t.currentSize,p=t.currentPosition;switch(e){case eT:if(!s)throw new Error("Direction not provided");t.direction=s,t.isResizing=!0,a.x=n.x,a.y=n.y,p.x=r.x,p.y=r.y,c.width=o.width,c.height=o.height,u.width=o.width,u.height=o.height;break;case tT:if(!t.isResizing)return t;var l=c.width,h=c.height,f=p.x,d=p.y;if(/right/.test(t.direction)&&(l=rT(n.x-a.x+u.width,i,t.currentPosition).nextWidth),/bottom/.test(t.direction)&&(h=iT(n.y-a.y+u.height,i,t.currentPosition).nextHeight),/top/.test(t.direction)){var v=oT(a.y-n.y+u.height,p,c,i);d=v.nextTop,h=v.nextHeight}if(/left/.test(t.direction)){var v=sT(a.x-n.x+u.width,p,c,i);f=v.nextLeft,l=v.nextWidth}if(i.ratio){var y=aT({nextTop:d,nextWidth:l,nextHeight:h,nextLeft:f},i,p,c,t.direction,t.currentPosition);f=y.nextLeft,d=y.nextTop,l=y.nextWidth,h=y.nextHeight}p.x=Math.round(f/i.grid.width)*i.grid.width,p.y=Math.round(d/i.grid.height)*i.grid.height,c.width=Math.round(l/i.grid.width)*i.grid.width,c.height=Math.round(h/i.grid.height)*i.grid.height;break;case nT:t.isResizing=!1,u.width=c.width,u.height=c.height}return t},cT=void 0||function(t,e,n,r){var i,o=arguments.length,s=3>o?e:null===r?r=Object.getOwnPropertyDescriptor(e,n):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(t,e,n,r);else for(var a=t.length-1;a>=0;a--)(i=t[a])&&(s=(3>o?i(s):o>3?i(e,n,s):i(e,n))||s);return o>3&&s&&Object.defineProperty(e,n,s),s},pT=void 0||function(t,e){return"object"==typeof Reflect&&"function"==typeof Reflect.metadata?Reflect.metadata(t,e):void 0},lT=function(){function t(t,e,n){this._el=t,this._store=e,this._renderer=n,this.resizeStart=new Oh,this.resizing=new Oh,this.resizeEnd=new Oh,this.maxWidth=1/0,this.minWidth=0,this.maxHeight=1/0,this.minHeight=0,this.disableResize=!1,this.directions=["bottom","right"],this.grid={width:1,height:1},this.bound=null,this.ratio=null}return t.prototype.ngOnInit=function(){this._renderer.addClass(this._el.nativeElement,"ngresizable"),this._store.addReducer(uT),this.setSize({width:this.width,height:this.height},{x:this.x,y:this.y})},t.prototype.ngOnChanges=function(){this.setSize({width:this.width,height:this.height},{x:this.x,y:this.y})},t.prototype.onMouseMove=function(t){if(t.preventDefault(),t.touches&&(t=t.touches[0]),this._state.isResizing){this.emitAction(tT,{x:t.clientX,y:t.clientY});var e=this._state.currentSize,n=this._state.currentPosition;this.setSize(e,n),this.emitEvent(this.resizing)}},t.prototype.onMouseDown=function(t,e){t.touches&&(t=t.touches[0]),this.emitAction(eT,{x:t.clientX,y:t.clientY},{x:this._el.nativeElement.offsetLeft,y:this._el.nativeElement.offsetTop},{width:this._el.nativeElement.offsetWidth,height:this._el.nativeElement.offsetHeight},e),this.emitEvent(this.resizeStart)},t.prototype.onMouseUp=function(){this.emitAction(nT,{x:0,y:0},{x:0,y:0}),this.emitEvent(this.resizeEnd)},t.prototype.emitAction=function(t,e,n,r,i){var o={minSize:{width:this.minWidth,height:this.minHeight},maxSize:{width:this.maxWidth,height:this.maxHeight},grid:this.grid,ratio:this.ratio,disabled:this.disableResize,directions:this.directions,bound:this.bound||$S};this._store.emitAction(t,e,n,o,r,i)},t.prototype.emitEvent=function(t){t.next({position:this._state.currentPosition,size:this._state.currentSize,direction:this._state.direction})},Object.defineProperty(t.prototype,"_state",{get:function(){return this._store.state},enumerable:!0,configurable:!0}),t.prototype.setSize=function(t,e){this.width=t.width,this.height=t.height,this.x=e.x,this.y=e.y,this._renderer.setStyle(this._el.nativeElement,"width",this.width+"px"),this._renderer.setStyle(this._el.nativeElement,"height",this.height+"px"),this._renderer.setStyle(this._el.nativeElement,"left",this.x+"px"),this._renderer.setStyle(this._el.nativeElement,"top",this.y+"px")},t}();cT([vl(),pT("design:type",Object)],lT.prototype,"resizeStart",void 0),cT([vl(),pT("design:type",Object)],lT.prototype,"resizing",void 0),cT([vl(),pT("design:type",Object)],lT.prototype,"resizeEnd",void 0),cT([dl(),pT("design:type",Number)],lT.prototype,"width",void 0),cT([dl(),pT("design:type",Number)],lT.prototype,"height",void 0),cT([dl(),pT("design:type",Number)],lT.prototype,"x",void 0),cT([dl(),pT("design:type",Number)],lT.prototype,"y",void 0),cT([dl(),pT("design:type",Object)],lT.prototype,"maxWidth",void 0),cT([dl(),pT("design:type",Object)],lT.prototype,"minWidth",void 0),cT([dl(),pT("design:type",Object)],lT.prototype,"maxHeight",void 0),cT([dl(),pT("design:type",Object)],lT.prototype,"minHeight",void 0),cT([dl(),pT("design:type",Boolean)],lT.prototype,"disableResize",void 0),cT([dl(),pT("design:type",Array)],lT.prototype,"directions",void 0),cT([dl(),pT("design:type",Object)],lT.prototype,"grid",void 0),cT([dl(),pT("design:type",Object)],lT.prototype,"bound",void 0),cT([dl(),pT("design:type",Number)],lT.prototype,"ratio",void 0),lT=cT([hl({selector:"[ngResizable]",providers:[JS],template:'\n <ng-content></ng-content>\n <div *ngFor="let dir of directions"\n class="ngr-grabber" [ngClass]="\'ngr-\' + dir"\n (mousedown)="onMouseDown($event, dir)"\n (touchstart)="onMouseDown($event, dir)">\n </div>\n ',styles:['.ngr-grabber {\n position: absolute;\n}\n\n.ngr-grabber.ngr-top, .ngr-grabber.ngr-bottom {\n cursor: ns-resize;\n width: 100%;\n height: 14px;\n}\n\n.ngr-grabber.ngr-left, .ngr-grabber.ngr-right {\n cursor: ew-resize;\n width: 14px;\n height: 100%;\n}\n\n.ngr-grabber.ngr-top::after, .ngr-grabber.ngr-bottom::after,\n.ngr-grabber.ngr-left::after, .ngr-grabber.ngr-right::after,\n.ngr-grabber.ngr-top::before, .ngr-grabber.ngr-bottom::before,\n.ngr-grabber.ngr-left::before, .ngr-grabber.ngr-right::before {\n content: "";\n position: absolute;\n z-index: 1;\n}\n\n.ngr-grabber.ngr-top::before, .ngr-grabber.ngr-bottom::before,\n.ngr-grabber.ngr-left::before, .ngr-grabber.ngr-right::before {\n border-radius: 7px;\n width: 7px;\n height: 7px;\n}\n\n.ngr-grabber.ngr-top::after, .ngr-grabber.ngr-bottom::after {\n width: 100%;\n height: 2px;\n top: 50%;\n left: 0;\n}\n\n.ngr-grabber.ngr-left::after, .ngr-grabber.ngr-right::after {\n width: 2px;\n height: 100%;\n left: 50%;\n}\n\n.ngr-grabber.ngr-top::before, .ngr-grabber.ngr-bottom::before {\n left: 50%;\n top: 4px;\n transform: translateX(-50%);\n}\n\n.ngr-grabber.ngr-left::before, .ngr-grabber.ngr-right::before {\n top: 50%;\n left: 4px;\n transform: translateY(-50%);\n}\n\n.ngr-grabber.ngr-top,\n.ngr-grabber.ngr-bottom {\n left: 0;\n}\n\n.ngr-grabber.ngr-top {\n top: -7px;\n}\n\n.ngr-grabber.ngr-bottom {\n bottom: -7px;\n}\n\n.ngr-grabber.ngr-left,\n.ngr-grabber.ngr-right {\n top: 0;\n}\n\n.ngr-grabber.ngr-left {\n left: -7px;\n}\n\n.ngr-grabber.ngr-right {\n right: -7px;\n}\n\n.ngr-grabber.ngr-top-left, .ngr-grabber.ngr-top-right,\n.ngr-grabber.ngr-bottom-left, .ngr-grabber.ngr-bottom-right {\n position: absolute;\n width: 12px;\n height: 12px;\n border-radius: 4px;\n z-index: 1;\n}\n\n.ngr-grabber.ngr-top-left {\n cursor: nwse-resize;\n top: -5px;\n left: -5px;\n}\n\n.ngr-grabber.ngr-top-right {\n cursor: nesw-resize;\n top: -5px;\n right: -5px;\n}\n\n.ngr-grabber.ngr-bottom-left {\n cursor: nesw-resize;\n bottom: -5px;\n left: -5px;\n}\n\n.ngr-grabber.ngr-bottom-right {\n cursor: nwse-resize;\n bottom: -5px;\n right: -5px;\n}\n'],host:{"(document: mouseup)":"onMouseUp($event)","(document: touchend)":"onMouseUp($event)","(document: mousemove)":"onMouseMove($event)","(document: touchmove)":"onMouseMove($event)"}}),pT("design:paramtypes",[Zh,JS,Xh])],lT);var hT=void 0||function(t,e,n,r){var i,o=arguments.length,s=3>o?e:null===r?r=Object.getOwnPropertyDescriptor(e,n):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(t,e,n,r);else for(var a=t.length-1;a>=0;a--)(i=t[a])&&(s=(3>o?i(s):o>3?i(e,n,s):i(e,n))||s);return o>3&&s&&Object.defineProperty(e,n,s),s},fT=function(){function t(){}return t}();fT=hT([bl({imports:[fx],declarations:[lT],exports:[lT]})],fT);var dT=void 0||function(t,e,n,r){var i,o=arguments.length,s=3>o?e:null===r?r=Object.getOwnPropertyDescriptor(e,n):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(t,e,n,r);else for(var a=t.length-1;a>=0;a--)(i=t[a])&&(s=(3>o?i(s):o>3?i(e,n,s):i(e,n))||s);return o>3&&s&&Object.defineProperty(e,n,s),s},vT=function(){function t(){}return t}();vT=dT([bl({imports:[fT,WS],declarations:[YS],bootstrap:[YS]})],vT),vt(),XS().bootstrapModule(vT)}); | 21,015.48 | 32,054 | 0.737205 |
c8bb139ee1314709a0e2d10fc38b126480171165 | 282 | js | JavaScript | lib/value_parsers.js | egils-consulting/wikibase-cli | faba10adb6a1033fcc249c9f19ce06b74fae1469 | [
"MIT"
] | 110 | 2016-06-08T18:26:50.000Z | 2019-06-27T11:16:06.000Z | lib/value_parsers.js | egils-consulting/wikibase-cli | faba10adb6a1033fcc249c9f19ce06b74fae1469 | [
"MIT"
] | 97 | 2019-07-10T08:07:43.000Z | 2022-03-31T04:32:40.000Z | lib/value_parsers.js | egils-consulting/wikibase-cli | faba10adb6a1033fcc249c9f19ce06b74fae1469 | [
"MIT"
] | 15 | 2019-09-23T16:01:24.000Z | 2022-01-12T16:40:26.000Z | module.exports = {
string: arg => arg.toString(),
number: str => parseInt(str),
boolean: value => {
if (value === 'true') return true
if (value === 'false') return false
return value
},
lang: str => str.split(/[\W_-]/)[0].toLowerCase(),
object: obj => obj
}
| 23.5 | 52 | 0.570922 |
c8bb553b393799b2660e0fb6cfc03e11a92a96f8 | 8,437 | js | JavaScript | node_modules/watson-developer-cloud/lib/index.js | bclark2/SmartFileUploads | 35b19949192dac0109a65699792b4a00f350c057 | [
"MIT"
] | 2 | 2017-04-02T22:36:15.000Z | 2018-01-09T04:59:21.000Z | node_modules/watson-developer-cloud/lib/index.js | bclark2/SmartFileUploads | 35b19949192dac0109a65699792b4a00f350c057 | [
"MIT"
] | null | null | null | node_modules/watson-developer-cloud/lib/index.js | bclark2/SmartFileUploads | 35b19949192dac0109a65699792b4a00f350c057 | [
"MIT"
] | null | null | null | /**
* Copyright 2014 IBM Corp. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict';
var path = require('path');
var fs = require('fs');
var util = require('util');
var extend = require('extend');
var vcapServices = require('vcap_services');
var helper = require('./helper');
var omit = require('object.omit');
var request = require('request');
function encodeBase64(creds) {
return new Buffer(creds.username + ':' + creds.password).toString('base64');
}
/**
* @private
* @param serviceName
* @returns {Function}
*/
function createServiceAPI(serviceName) {
// this function is about twice as complex as our rules allow!
// eslint-disable-next-line complexity
return function(user_options) {
var options = extend({}, user_options);
var alchemy = (serviceName.indexOf('alchemy_') === 0);
// For Alchemy we use 'v1' by default,
// and check if `apikey` was specified.
// We don't use VCAP_SERVICES
if (alchemy) {
options.alchemy = true;
options.version = 'v1';
options.api_key = options.apikey || options.api_key;
} else {
options.jar = request.jar();
}
// Check if 'version' was provided
var version = options.version;
if (typeof version === 'undefined') {
throw new Error('Argument error: version was not specified');
}
// Get credentials from Bluemix
if (options.use_vcap_services !== false) {
var credentials = vcapServices.getCredentials(serviceName);
if (credentials.username && credentials.password) {
credentials.api_key = encodeBase64(credentials);
}
options = extend({}, options, credentials);
}
// Use api_key or username and password as Authorization
var user = options.username,
pass = options.password,
api_key = options.api_key;
if (!options.use_unauthenticated) {
// Check if 'api_key' or 'username' and 'password' were provided
if (typeof api_key === 'undefined') {
if (typeof user === 'undefined' || typeof pass === 'undefined') {
if (alchemy)
throw new Error('Argument error: api_key was not specified');
else
throw new Error('Argument error: api_key or username and password were not specified');
}
// Calculate and add api_key
options.api_key = new Buffer(user + ':' + pass).toString('base64');
}
}
options = omit(options, ['version', 'username', 'password',
'use_vcap_services', 'use_unauthenticated', 'apikey']);
if (options.url)
options.url = helper.stripTrailingSlash(options.url);
try {
// Build the path to the service file based on the service name and api version
var servicePath = path.join(__dirname, '..', 'services', serviceName, path.basename(version));
var Service = require(servicePath);
var s = new Service(options);
return Object.freeze(s);
} catch (e) {
if (e.code === 'MODULE_NOT_FOUND') {
// give a clear error message for services that have been sunset, with the replacement when possible
if (serviceName === 'search') {
throw new Error('The search service has been replaced by retrieve_and_rank');
}
if (serviceName === 'tone_analyzer' && path.basename(version) === 'v1') {
throw new Error('tone_analyzer v1 has been replaced by v2-experimental');
}
// for the v1.0 breaking change of requiring experimental/beta in the module name, try to offer a helpful error message.
// https://github.com/watson-developer-cloud/node-sdk/issues/43
var msg = 'Service %s %s not found.';
if (fs.existsSync(path.join(__dirname, '..', 'services', serviceName, path.basename(version) + '-beta.js'))) {
msg += ' Did you mean ' + path.basename(version) + '-beta?';
}
if (fs.existsSync(path.join(__dirname, '..', 'services', serviceName, path.basename(version) + '-experimental.js'))) {
msg += ' Did you mean ' + path.basename(version) + '-experimental?';
}
throw new Error(util.format(msg, serviceName, version));
} else {
throw e;
}
}
};
}
/**
* @namespace
*/
var watson = {
/**
* @function
* @param {{}} options
* @returns {ConceptExpansion}
*/
concept_expansion: createServiceAPI('concept_expansion'),
/**
* @function
* @param {{}} options
* @returns {RelationshipExtraction}
*/
relationship_extraction: createServiceAPI('relationship_extraction'),
/**
* @function
* @param {{}} options
* @returns {VisualRecognitionV1Beta|VisualRecognitionV2Beta}
*/
visual_recognition: createServiceAPI('visual_recognition'),
/**
* @function
* @param {{}} options
* @returns {SpeechToText}
*/
speech_to_text: createServiceAPI('speech_to_text'),
/**
* @function
* @param {{}} options
* @returns {TextToSpeech}
*/
text_to_speech: createServiceAPI('text_to_speech'),
/**
* @function
* @param {{}} options
* @returns {ConceptInsights}
*/
concept_insights: createServiceAPI('concept_insights'),
/**
* @function
* @param {{}} options
* @returns {TradeoffAnalytics}
*/
tradeoff_analytics: createServiceAPI('tradeoff_analytics'),
/**
* @function
* @param {{}} options
* @returns {PersonalityInsights}
*/
personality_insights: createServiceAPI('personality_insights'),
/**
* @function
* @param {{}} options
* @returns {NaturalLanguageClassifier}
*/
natural_language_classifier: createServiceAPI('natural_language_classifier'),
/**
* @function
* @param {{}} options
* @returns {Authorization}
*/
authorization: createServiceAPI('authorization'),
/**
* @function
* @param {{}} options
* @returns {LanguageTranslation}
*/
language_translation: createServiceAPI('language_translation'),
/**
* @function
* @param {{}} options
* @returns {ToneAnalyzer}
*/
tone_analyzer: createServiceAPI('tone_analyzer'),
/**
* @function
* @param {{}} options
* @returns {Dialog}
*/
dialog: createServiceAPI('dialog'),
/**
* @function
* @param {{}} options
* @returns {RetrieveAndRank}
*/
retrieve_and_rank: createServiceAPI('retrieve_and_rank'),
/**
* @function
* @param {{}} options
* @returns {DocumentConversion}
*/
document_conversion: createServiceAPI('document_conversion'),
/**
* @function
* @param {{}} options
* @returns {VisualInsights}
*/
visual_insights: createServiceAPI('visual_insights'),
// deprecated
/**
* @function
* @param {{}} options
* @returns {Search}
* @deprecated Replaced by {@link RetrieveAndRank}
*/
search: createServiceAPI('search'),
// alchemy
/**
* @function
* @param {{}} options
* @returns {AlchemyLanguage}
*/
alchemy_language: createServiceAPI('alchemy_language'),
/**
* @function
* @param {{}} options
* @returns {AlchemyVision}
*/
alchemy_vision: createServiceAPI('alchemy_vision'),
/**
* @function
* @param {{}} options
* @returns {AlchemyDataNews}
*/
alchemy_data_news: createServiceAPI('alchemy_data_news'),
/**
* @function
* @param {{}} options
* @returns {ConceptExpansion}
*/
conversation: createServiceAPI('conversation')
};
// removed services
// we don't want these services listed (so non-enumerable), but we do want a clear error message
// if old code happens to try using one
['message_resonance', 'question_and_answer'].forEach(function(serviceName) {
Object.defineProperty(watson, serviceName, {
enumerable: false,
configurable: true,
writable: true,
value: function() {
throw new Error('The ' + serviceName + ' service is no longer available');
}
});
});
module.exports = watson;
| 27.937086 | 128 | 0.636008 |
c8bb6b4891bf080cedcb23522ea7c79245c63bef | 2,199 | js | JavaScript | src/config/stage/index.js | hubgitlee/lin-cms-vue | 25c40821d386d43ba3bf3398298efa4dcd9b79a6 | [
"MIT"
] | 1 | 2020-02-19T09:30:49.000Z | 2020-02-19T09:30:49.000Z | src/config/stage/index.js | hubgitlee/lin-cms-vue | 25c40821d386d43ba3bf3398298efa4dcd9b79a6 | [
"MIT"
] | null | null | null | src/config/stage/index.js | hubgitlee/lin-cms-vue | 25c40821d386d43ba3bf3398298efa4dcd9b79a6 | [
"MIT"
] | null | null | null | import adminConfig from './admin'
import bookConfig from './book' // 引入图书管理路由文件
import pluginsConfig from './plugins'
import Utils from '@/lin/utils/util'
// eslint-disable-next-line import/no-mutable-exports
let homeRouter = [
{
title: '林间有风',
type: 'view',
name: Symbol('about'),
route: '/about',
filePath: 'views/about/About.vue',
inNav: true,
icon: 'iconfont icon-iconset0103',
order: 0,
},
{
title: '日志管理',
type: 'view',
name: Symbol('log'),
route: '/log',
filePath: 'views/log/Log.vue',
inNav: true,
icon: 'iconfont icon-rizhiguanli',
order: 1,
permission: ['查询所有日志'],
},
{
title: '404',
type: 'view',
name: Symbol('404'),
route: '/404',
filePath: 'views/error-page/404.vue',
inNav: false,
icon: 'iconfont icon-rizhiguanli',
},
bookConfig,
adminConfig,
]
const plugins = [...pluginsConfig]
// 筛除已经被添加的插件
function filterPlugin(data) {
if (plugins.length === 0) {
return
}
if (Array.isArray(data)) {
data.forEach(item => {
filterPlugin(item)
})
} else {
const findResult = plugins.findIndex(item => data === item)
if (findResult >= 0) {
plugins.splice(findResult, 1)
}
if (data.children) {
filterPlugin(data.children)
}
}
}
filterPlugin(homeRouter)
homeRouter = homeRouter.concat(plugins)
// 处理顺序
homeRouter = Utils.sortByOrder(homeRouter)
// 使用 Symbol 处理 name 字段, 保证唯一性
const deepReduceName = target => {
if (Array.isArray(target)) {
target.forEach(item => {
if (typeof item !== 'object') {
return
}
deepReduceName(item)
})
return
}
if (typeof target === 'object') {
if (typeof target.name !== 'symbol') {
// eslint-disable-next-line no-param-reassign
target.name = target.name || Utils.getRandomStr()
// eslint-disable-next-line no-param-reassign
target.name = Symbol(target.name)
}
if (Array.isArray(target.children)) {
target.children.forEach(item => {
if (typeof item !== 'object') {
return
}
deepReduceName(item)
})
}
}
}
deepReduceName(homeRouter)
export default homeRouter
| 21.144231 | 63 | 0.601637 |
c8be5facbda2b208f7294c9d08176641650ff781 | 598 | js | JavaScript | webpack.config.js | ws-types/ws-logger | f79efb23312e16af1251a9be4e272ebadb981b01 | [
"MIT"
] | null | null | null | webpack.config.js | ws-types/ws-logger | f79efb23312e16af1251a9be4e272ebadb981b01 | [
"MIT"
] | null | null | null | webpack.config.js | ws-types/ws-logger | f79efb23312e16af1251a9be4e272ebadb981b01 | [
"MIT"
] | null | null | null | module.exports = {
devtool: 'inline-source-map',
entry: './src/index.ts',
output: {
filename: 'bundle.js'
},
resolve: {
// Add `.ts` and `.tsx` as a resolvable extension.
extensions: ['.ts', '.tsx', '.js'] // note if using webpack 1 you'd also need a '' in the array as well
},
module: {
loaders: [ // loaders will work with webpack 1 or 2; but will be renamed "rules" in future
// all files with a `.ts` or `.tsx` extension will be handled by `ts-loader`
{ test: /\.tsx?$/, loader: 'ts-loader' }
]
}
} | 35.176471 | 111 | 0.538462 |
c8be8903f021577b2fcafd60512709d67968a926 | 1,092 | js | JavaScript | src/components/docs-toolbar.js | literasibadguy/badguy-docs-engine | eef1b704526d0ac662496eb93b166965cae9202f | [
"Apache-2.0",
"MIT"
] | null | null | null | src/components/docs-toolbar.js | literasibadguy/badguy-docs-engine | eef1b704526d0ac662496eb93b166965cae9202f | [
"Apache-2.0",
"MIT"
] | null | null | null | src/components/docs-toolbar.js | literasibadguy/badguy-docs-engine | eef1b704526d0ac662496eb93b166965cae9202f | [
"Apache-2.0",
"MIT"
] | null | null | null | import React from "react"
import getCloudflareDocsConfig from "../utils/get-cloudflare-docs-config"
import DocsTitle from "./docs-title"
import DocsSearch from "./docs-search"
import AccessibleSVG from "./accessible-svg"
import ThemeToggle from "./theme-toggle"
const DocsToolbar = () => {
const { contentRepo } = getCloudflareDocsConfig()
return (
<div className="DocsToolbar">
<div className="DocsToolbar--search">
<DocsSearch/>
</div>
<div className="DocsToolbar--tools">
<div className="DocsToolbar--tools-icon-item">
<div className="Tooltip---root">
<div className="DocsToolbar--tools-icon-item-content">
</div>
<span className="Tooltip" role="tooltip" position="bottom-end">
Visit {DocsTitle()} on GitHub
</span>
</div>
</div>
<div className="DocsToolbar--tools-spacer"/>
<div className="DocsToolbar--theme-toggle">
<ThemeToggle/>
</div>
</div>
</div>
)
}
export default DocsToolbar
| 25.395349 | 75 | 0.602564 |
c8bf0651e89b414217c1c3b11212eac1eea08663 | 201 | js | JavaScript | resources/js/authorizations.js | dxmq/laravel-forum | 2862651c2068c07dc63a669edf1a9a5e835b1314 | [
"MIT"
] | 7 | 2019-05-31T14:43:37.000Z | 2020-11-03T15:36:24.000Z | resources/js/authorizations.js | dxmq/laravel-forum | 2862651c2068c07dc63a669edf1a9a5e835b1314 | [
"MIT"
] | 7 | 2020-07-17T03:07:39.000Z | 2022-02-26T11:05:55.000Z | resources/js/authorizations.js | dxmq/laravel-forum | 2862651c2068c07dc63a669edf1a9a5e835b1314 | [
"MIT"
] | null | null | null | let user = window.App.user;
module.exports = {
owns (model,prop = 'user_id') {
return model[prop] == user.id;
},
isAdmin() {
return ['admin'].includes(user.name);
}
}; | 18.272727 | 45 | 0.537313 |
c8bf5cb4e5a423f587c2969c8f8b09073155a5d3 | 2,027 | js | JavaScript | robots/text.js | bersot1/post-maker | af7877c427d1da4a9d658d615a11c3b0ec9842b3 | [
"MIT"
] | null | null | null | robots/text.js | bersot1/post-maker | af7877c427d1da4a9d658d615a11c3b0ec9842b3 | [
"MIT"
] | null | null | null | robots/text.js | bersot1/post-maker | af7877c427d1da4a9d658d615a11c3b0ec9842b3 | [
"MIT"
] | null | null | null | const algorithmia = require('algorithmia')
const apiKey = require('../credentials/algorithmia.json').apiKey
const sentenceBoundaryDetection = require('sbd')
const fs = require('fs');
async function robot(content){
await fetchContentFromWikipedia(content)
sanitizeContent(content)
geraneteTxtFile(content)
async function fetchContentFromWikipedia(content){
const algorithmiaAuthenticated = algorithmia(apiKey)
const wikipediaAlgorithm = algorithmiaAuthenticated.algo('web/WikipediaParser/0.1.2?timeout=300')
const wikipediaResponde = await wikipediaAlgorithm.pipe(content.searchTerm)
const wikipediaContent = wikipediaResponde.get()
content.sourceContentOriginal = wikipediaContent.content
}
function sanitizeContent(content){
const withoutBlankLinesAndMarkdown = removeBlankLinesAndMarkdown(content.sourceContentOriginal)
const withoutDatesInParentheses = removeDatesInParentheses(withoutBlankLinesAndMarkdown)
content.sourceContentSanitized = withoutDatesInParentheses
function removeBlankLinesAndMarkdown(text){
const allLines = text.split('\n')
const withoutBlankLinesAndMarkdown = allLines.filter((line)=>{
if(line.trim().length <= 2 || line.trim().startsWith('=')){
return false
}
return true
})
return withoutBlankLinesAndMarkdown.join(' ')
}
}
function removeDatesInParentheses(text){
return text.replace(/\((?:\([^()]*\)|[^()])*\)/gm, '')
}
function geraneteTxtFile(content){
fs.writeFile("C:/Projetos/Pessoal/post-maker/post-maker/Artigos/"+content.searchTerm+".txt" , content.sourceContentSanitized, function(erro) {
if(erro) {
throw erro;
}
console.log("Arquivo salvo");
});
}
}
module.exports = robot
| 34.948276 | 151 | 0.636902 |
c8bf674fbb26921beeb8589d72705bfd8f8cb6d4 | 2,728 | js | JavaScript | backend/services/github/github.js | MaxouP/dashboard_Epitech | 4f196cdb9a1a36ece718aea3956bf5a57bb7d141 | [
"MIT"
] | 2 | 2021-04-09T09:08:35.000Z | 2021-11-28T07:54:21.000Z | backend/services/github/github.js | MaxouP/dashboard_Epitech | 4f196cdb9a1a36ece718aea3956bf5a57bb7d141 | [
"MIT"
] | null | null | null | backend/services/github/github.js | MaxouP/dashboard_Epitech | 4f196cdb9a1a36ece718aea3956bf5a57bb7d141 | [
"MIT"
] | 1 | 2021-07-15T10:37:34.000Z | 2021-07-15T10:37:34.000Z | const axios = require('axios');
const express = require('express');
const router = express.Router();
const admin = require('firebase-admin');
const githubTokenUrl = `https://github.com/login/oauth/access_token?client_id=${process.env.VUE_APP_GITHUB_ID}&client_secret=${process.env.VUE_APP_GITHUB_SECRET}`
router.get('/user/:username', async (req, res) => {
try {
const result = await axios.get('https://api.github.com:/users/' + req.params.username + '/repos')
res.status(200);
res.send(result.data);
} catch (err) {
res.status(err.response.status)
console.log(err);
console.error('Error : ', err.response.status);
res.end();
}
});
router.get('/lastcommit/:firebaseId/:repo', async (req, res) => {
try {
const id = req.params.firebaseId;
const repo = req.params.repo;
// two await (one for collection, one for data())
const userData = await (await admin.firestore().collection('users').doc(id).get()).data();
if (!userData) throw res.send({ error: 'Firebase user not found' });
res.status(200);
if (!userData.githubCode) res.send({ error: 'No user code. Please login via OAuth on the platform' });
else {
var token = userData.githubToken;
if (!token) { // if no token, fetch it
const response = await axios.post(`${githubTokenUrl}&code=${userData.githubCode}`);
const access_token = response.data.match(/access_token=(\w+)/);
console.log(response.data);
if (access_token && access_token[1]) {
token = access_token[1];
console.log('received token ', token);
console.log('Sending token to firebase...');
await admin.firestore().collection('users').doc(id).update({ githubToken: token });
}
}
if (!token) return res.send({ error: 'Could not access github auth token.' });
const auth = {
headers: { Authorization: `token ${token}` }
};
const owner = await axios.get('https://api.github.com/user', auth);
if (!owner || !owner.data.login) return res.send({ error: 'Could not fetch github login.' });
const response = await axios.get(`https://api.github.com/repos/${owner.data.login}/${repo}/commits/master`, auth);
const data = response.data;
res.send({
commit: data.commit,
files: data.files,
});
}
} catch (e) {
res.status(500);
console.error('Error : ', e);
res.end();
}
});
module.exports = router; | 43.301587 | 162 | 0.564516 |
c8bf75ceeb787006a04848fbc47db74465f95be1 | 29,007 | js | JavaScript | renderer.js | pietrop/captioning-app | 3efabc2837620bbb8891e21d55108b16472fd12f | [
"CC0-1.0"
] | null | null | null | renderer.js | pietrop/captioning-app | 3efabc2837620bbb8891e21d55108b16472fd12f | [
"CC0-1.0"
] | null | null | null | renderer.js | pietrop/captioning-app | 3efabc2837620bbb8891e21d55108b16472fd12f | [
"CC0-1.0"
] | null | null | null | // This file is required by the index.html file and will
// be executed in the renderer process for that window.
// All of the Node.js APIs are available in this process.
"use strict";
//TODO: see if can move this code in main.js and if it still works when packaged.
const fixPath = require('fix-path');
console.log(process.env.PATH);
//=> '/usr/bin'
fixPath();
const youtubedl = require('youtube-dl');
const fs = require('fs');
const path = require('path');
const electron = require('electron');
const exec = require('child_process').exec;
const child = require('child_process').execFile;
const spawn = require('child_process').spawn;
const webvtt = require('node-webvtt-youtube');
const {dialog} = require('electron').remote;
const tokenizer = require('sbd');
var currentWindow = electron.remote.getCurrentWindow();
var electronShell = require("electron").shell;
var dataPath = currentWindow.dataPath.replace(/ /g,"\\ ");
var desktopPath = currentWindow.desktopPath;
var appPath = currentWindow.appPath;
console.log("appPath",appPath);
console.log("dataPath",dataPath);
var alignBtnEl = document.getElementById('alignBtn');
var exportSrtBtnEl = document.getElementById('exportSrtBtn');
var selectFileBtnEl = document.getElementById('selectFileBtn');
var loadYoutubeUrlBtnEl = document.getElementById('loadYoutubeUrlBtn');
var videoYoutubeUrlInputEl = document.getElementById('videoYoutubeUrlInput');
var videoPreviewEl = document.getElementById('videoPreview');
var textBoxEl = document.getElementById('textBox');
var checkboxInputEl = document.getElementById('checkboxInput');
var saveBtnEl = document.getElementById('saveBtn');
var restoreLastSavedVersionBtnEl = document.getElementById('restoreLastSavedVersionBtn');
var selectCaptionFormatEl = document.getElementById('selectCaptionFormat');
var selectLanguageForAlignementEl = document.getElementById('selectLanguageForAlignement');
var navigateBtnEl = document.getElementById('navigateBtn');
var timeout = null;
var resumeTiypingTimeInterval = 600;
var startStopPlayingVideoOntyping = false;
var isYoutubeVideo = false;
var sourceVideoPath ="tempCaptionsMakerFile";
window.sourceVideoPath = sourceVideoPath;
restoreLastSavedVersionBtnEl.onclick = function(e){
e.preventDefault();
restoreStateFromLocalStorage();
};
navigateBtnEl.onclick = function(e){
console.info("NAVIGATE BTN")
e.preventDefault();
// var fileName = "tmpForJsonAlignment";
// var outPutSegmentedFile = dataPath+"/"+fileName+"._segmented"+".txt";
var fileName = path.basename(sourceVideoPath);
var outPutSegmentedFile = dataPath+"/"+fileName+"._segmented"+".txt";
// var textFile = dataPath+"/"+fileName+"."+"json";
var textFile = createTextFileFromTextEditor();
var config={
language: getLanguageForAlignement(),
captionFileFormat : "json",
audio_file_head_length : 0,//eg 12.000
audio_file_tail_length : 0, //16.000
mediaFile : sourceVideoPath,
outPutSegmentedFile : outPutSegmentedFile,
textFile : textFile
};
console.info("FLAG 1",outPutSegmentedFile, textFile);
runAeneasComand(config, function(jsonFile){
// console.log("srtFilePath",srtFilePath);
var aeneasJson = JSON.parse(fs.readFileSync(jsonFile,'utf8'));
textBoxEl.innerHTML =parseAeneasJson(aeneasJson)
textEditorContentEditable(false);
makeLinesInteractive();
});
}
saveBtnEl.onclick = function(e){
e.preventDefault();
saveToLocalStorage();
alert("saved");
// Then to repopulate on load if that is empty.
};
function saveToLocalStorage(){
localStorage.captionsMakerState ={}
//Horrible to save as HTML without serializing, but if save as TXT looses new line.
//TODO: Welcome sudgestions on how to improve on this
localStorage.captionsMakerStateText = textBoxEl.innerHTML;
localStorage.captionsMakerStateVideoSrc = sourceVideoPath;
}
function restoreStateFromLocalStorage(){
//TODO: add notice, confirm, this will cancel the current session. do you want to continue? or relax, nothing happend.
if(localStorage.captionsMakerState){
setTextBoxContent(localStorage.captionsMakerStateText);
//
makeSrtTimeCodesIntoLinks();
addLinksToSrtTimecodes();
//
loadHtml5Video(localStorage.captionsMakerStateVideoSrc);
isYoutubeVideo = false;
sourceVideoPath = localStorage.captionsMakerStateVideoSrc;
}else{
alert("No previously saved version was found.");
}
}
checkboxInputEl.onclick = function(e){
// e.preventDefault();
if(startStopPlayingVideoOntyping == false){
startStopPlayingVideoOntyping = true;
}else{
startStopPlayingVideoOntyping = false;
}
};
selectFileBtnEl.onclick = function(){
// e.preventDefault()
isYoutubeVideo = false;
dialog.showOpenDialog({properties: ['openFile']}, function(file){
console.log(file[0]);
sourceVideoPath = file[0];
loadHtml5Video(sourceVideoPath);
// loadEditorWithDummyText();
});
};
loadYoutubeUrlBtnEl.onclick = function(e){
e.preventDefault();
isYoutubeVideo = true;
disableTextEditorProgressMessage();
var url = videoYoutubeUrlInputEl.value;
//TODO: add validation to check it's a valid youtube URL.
var youtubeId = youtubeUrlExtractId(url);
populateYoutubePlayer(youtubeId);
//TODO: can I use path .join here to add extension to name?
// var destFileName = dataPath+"/"+ youtubeId+".mp4";
// sourceVideoPath = destFileName;
downloadYoutubeVideo(url, function(destPath){
sourceVideoPath = destPath;
loadHtml5Video(sourceVideoPath);
isYoutubeVideo = false;
console.log("sourceVideoPath+ ",sourceVideoPath)
downloadCaptions(url, function(captionFiles){
if (captionFiles.length ==0){
alert("This video has no captions");
}else{
var captionFile = captionFiles[0];
console.log("1,openYoutubeVttFile");
openYoutubeVttFile(path.join(dataPath,captionFile));
// var captionsContent = openFile(captionFiles[0]);
console.log(captionFile);
}
});
});
};
exportSrtBtnEl.onclick = function(){
//assumes allignment has been run, perhaps add a boolean flag to check that it is the case.
//read content of textEditor.
var fileName = path.basename(sourceVideoPath);
//prompt user on where to save. add srt extension if possible.
var newFilePath = desktopPath +"/"+ fileName+"."+getCaptionsFileFormat();
fs.writeFileSync(newFilePath, getContentFromTextEditor(), 'utf8');
// or just save to desktop.
alert("your file has been saved on the desktop "+newFilePath);
}
function getCaptionsFileFormat(){
return selectCaptionFormatEl.value ;
}
function getLanguageForAlignement(){
return selectLanguageForAlignementEl.value;
}
alignBtnEl.onclick = function(){
//create text file of content of text box. in tmp folder.
var textFile = createTextFileFromTextEditor();
var fileName = path.basename(sourceVideoPath);
var outPutSegmentedFile = dataPath+"/"+fileName+"._segmented"+".txt";
// console.log("sourceVideoPath in alignBtnEl ", sourceVideoPath);
// console.log('outPutSegmentedFile',outPutSegmentedFile);
//should call perl scrip to prep on textfile to prep it for aeneas
//TODO add: if(sourceVideoPath !="")
var config={
language: getLanguageForAlignement(),
captionFileFormat : getCaptionsFileFormat(),
audio_file_head_length : 0,//eg 12.000
audio_file_tail_length : 0, //16.000
mediaFile : sourceVideoPath,
outPutSegmentedFile : outPutSegmentedFile,
textFile : textFile
};
segmentTranscript(config, function(respSegmentedFileContent){
// console.log("LDLDL",fs.readFileSync(respSegmentedFileContent ).toString());
// config.outPutSegmentedFile = respSegmentedFilePath;
config.outPutSegmentedFile = respSegmentedFileContent;
console.log('config.outPutSegmentedFile',config.outPutSegmentedFile);
console.log("LDLDL",fs.readFileSync(respSegmentedFileContent ).toString());
runAeneasComand(config, function(srtFilePath){
// console.log("srtFilePath",srtFilePath);
textBoxEl.innerText =fs.readFileSync(srtFilePath,'utf8').toString('utf8');
//clear up
// fs.unlinkSync(outPutSegmentedFile);
// fs.unlinkSync(textFile);
// fs.unlinkSync(srtFilePath);
makeSrtTimeCodesIntoLinks();
addLinksToSrtTimecodes();
});
})
//
};
//return path to file
function createTextFileFromTextEditor(){
var fileName = path.basename(sourceVideoPath);
// console.log('fileName',fileName);
//TODO: add path. use path library
var tmpTextFileName = dataPath+"/"+ fileName+".txt";
// console.log('tmpTextFileName',tmpTextFileName)
fs.writeFileSync(tmpTextFileName, getContentFromTextEditor(),'utf8');
return tmpTextFileName;
}
function getContentFromTextEditor(){
//TODO: add sanitise step.
return textBoxEl.innerText;
}
function loadHtml5Video(path){
videoPreviewEl.innerHTML = `<video width="100%" controls>
<source src="${path}" type="video/mp4">`;
initializeVideoPlayPuaseTypingPreferences();
}
// TODO: you can't seem to be able to change this preference after having loaded the video. Needs fixing.
// Use case, you are reviewing the text without emphasis on a speicific part.
function initializeVideoPlayPuaseTypingPreferences(){
textBoxEl.onkeyup = function () {
if(startStopPlayingVideoOntyping){
clearTimeout(timeout);
pauseVideo();
//add timer logic to start playing after set interval.
timeout = setTimeout(function () {
// console.log('Input Value:', textInput.value);
playVideo();
}, resumeTiypingTimeInterval);
}
};
};
// selectFileBtnEl.onclick = function(e){
// e.preventDefault();
// //TODO
// };
function makeSrtTimeCodesIntoLinks () {
// console.log(textBoxEl.innerHTML);
//http://pietropassarelli.com/regex.html
textBoxEl.innerHTML = textBoxEl.innerHTML.replace(/(\d{2}[:|.]\d{2}[:|.]\d{2}[.|,|:]\d{3})/ig , function replace(match) { //(?!<)
return '<a class="timecodeLink">' + match + '</a>';
});
//TODO: Move curson back to it's possition after replacement editable
//add event listener on class name.
//https://stackoverflow.com/questions/19655189/javascript-click-event-listener-on-class
};
function addLinksToSrtTimecodes(){
var timecodesEl = document.querySelectorAll('.timecodeLink');
timecodesEl.forEach(function(element, index){
element.onclick = function(){
setVideoCurrentTime(element.innerText);
}
})
}
function setVideoCurrentTimeForNavigate(time){
// var time;
// if(typeof timecode != "number"){
// //convert timecode
// time = convertTimeCodeToSeconds(timecode);
// }else{
// var time = timecode;
// }
// if(isYoutubeVideo){
// var iframe = document.querySelector('iframe');
// var innerDoc = iframe.contentDocument || iframe.contentWindow.document;
// // innerDoc.querySelectorAll('video')[0].click();
// innerDoc.querySelectorAll('video')[0].currentTime = time;
// playVideo();
// }else{
var video = document.querySelector('video');
video.currentTime = time ;
playVideo();
// }
}
function openYoutubeVttFile(path){
// console.log("2,openYoutubeVttFile");
var vttFileContent = openFile(path);
console.log(path,vttFileContent);
//Do some parting
var parsed = parseYoutubeVtt(vttFileContent);
//add punctuation
punctuatorPostRequest(parsed, function(respText){
// console.log('respText',JSON.stringify(respText,null,2));
setTextBoxContent(respText);
textEditorContentEditable(true);
});
}
function parseYoutubeVtt(vtt){
var vttJSON =webvtt.parse(vtt);
var result ="";
vttJSON.cues.forEach(function(line, index){
result+= parseYoutubeVttTextLine(line.text)+" ";
})
return result;
}
function parseYoutubeVttTextLine(textLine){
//used http://scriptular.com/
return textLine.replace(/<[A-z|.|0-9|:|/]*>/g,"");
}
function openFile(path){
return fs.readFileSync(path,'utf8').toString('utf-8');
}
function loadEditorWithDummyText(){
textBoxEl.innerText = `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed accumsan urna nec dui lacinia porttitor. Etiam eget rutrum quam, in hendrerit sapien. Etiam sed placerat lectus. Etiam viverra fermentum lacus non rhoncus. Fusce tristique lacus turpis, ac consequat lorem rhoncus a. Maecenas tempus massa sed ex ullamcorper ultrices. Nam eget pharetra risus, id ultrices sapien. Proin a euismod sem, sed dignissim dolor. Maecenas fringilla sem in ligula pellentesque venenatis. Sed eget ipsum tempus, euismod ex id, sollicitudin ipsum. Vestibulum pretium justo a dolor tincidunt, posuere ultrices nisl dapibus. Proin pretium ultricies posuere. Quisque faucibus arcu id dolor pulvinar congue. Aenean quis finibus magna. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Aliquam dignissim vehicula volutpat.
Vestibulum fermentum arcu nisl, placerat faucibus ex semper tempus. Aliquam mattis, sem sed accumsan fringilla, dolor mi sagittis nunc, quis suscipit dui turpis sed justo. Curabitur lacinia vulputate leo, et pharetra ipsum laoreet a. Nunc sagittis nulla mi, in dignissim ex molestie quis. Etiam hendrerit tincidunt diam, eget fringilla mauris ultrices et. Mauris quam mauris, dictum ut orci vitae, sodales ultrices arcu. Proin sed rhoncus ex. Ut pellentesque pellentesque justo, ac consectetur sapien. Praesent at tortor magna. Ut id ligula risus. Aliquam vestibulum nisi vel justo feugiat consequat.
Mauris pellentesque orci at tellus porttitor, eu tempus urna sodales. Praesent et volutpat nisi. Vestibulum laoreet sollicitudin lacus, nec faucibus elit auctor in. Nunc malesuada orci quam, vel vulputate ante mollis viverra. Donec at velit dictum, lobortis massa vel, pharetra sapien. Praesent elementum magna eu orci gravida, in interdum tellus blandit. Quisque efficitur venenatis ex, eget laoreet erat facilisis eu. Praesent suscipit magna a neque dignissim iaculis. Curabitur pellente`;
}
function downloadCaptions(url,cb){
// console.log("downloadCaptions");
var options = {
// Write automatic subtitle file (youtube only)
auto: true,
// Downloads all the available subtitles.
all: false,
// Languages of subtitles to download, separated by commas.
lang: 'en',
// format: 'srt/vtt',
// The directory to save the downloaded files in.
cwd: dataPath,
};
youtubedl.getSubs(url, options, function(err, files) {
if (err) throw err;
if(cb){cb(files);}
// setCaptionsStatus(subtitlesDownloadedMessage);
console.info('subtitle files downloaded:', files);
return files;
});
}
function downloadYoutubeVideo(url, cb){
//update user GUI on status of download
// setStatusElement(downloadingMessage);
// reset captions status
// setCaptionsStatus('...');
var destFilePathName;
//setup download with youtube-dl
var video = youtubedl(url,
// Optional arguments passed to youtube-dl.
// see here for options https://github.com/rg3/youtube-dl/blob/master/README.md
['--format=best'],
// Additional options can be given for calling `child_process.execFile()`.
{ cwd: dataPath, maxBuffer: Infinity });
//listener for video info, to get file name
video.on('info', function(info) {
// console.log("video-info",JSON.stringify(info,null,2));
destFilePathName = path.join(dataPath,info._filename.replace(/ /g,"_"));//info._filename);
// console.log("destFilePathName-",destFilePathName);
// update GUI with info on the file being downloaded
// setInfoPanel('<div class="alert alert-dismissible alert-success"><strong>Filename: </strong>' + info._filename+'<br><strong>size: </strong>' + info.size+'<br>'+'<strong>Destination: </strong>'+destFilePathName+"</div>");
//TODO: sanilitse youtube file name so that it can be
//save file locally
var writeStream = fs.createWriteStream(destFilePathName);
video.pipe(writeStream);
});
video.on('end', function() {
//TODO: replace with update Div symbol
// setStatusElement(finishedDownloadingMessage);
if(cb){cb(destFilePathName)};
});
}
function youtubeUrlExtractId(url){
var urlParts = url.split("/");
var urlPartsLegth = urlParts.length;
var youtubeId = urlParts[urlPartsLegth-1]
return youtubeId;
}
function setTextBoxContent(text){
//todo: sanitise `text`
textBoxEl.innerHTML = text;
}
function getTextBoxContent(){
// convert from html
return textBoxEl.innerHTML;
}
function populateYoutubePlayer(id){
// console.log(id);
//simple implementation
var youtubeElement = `<iframe id="youtubeIframe" width='560' height='315' class='embed-responsive-item' src="https://www.youtube.com/embed/${id}" frameborder="0" allowfullscreen></iframe>`;
// var youtubeElement = `<video width="640" height="360"><source type="video/youtube" src="http://www.youtube.com/watch?v=${id}" /></video>`
videoPreviewEl.innerHTML = youtubeElement;
// document.querySelector( 'video' ).addEventListener("playing", checkIfTypingPause, false);
document.getElementById('youtubeIframe').onload= function() {
var iframe = document.querySelector('iframe');
var innerDoc = iframe.contentDocument || iframe.contentWindow.document;
//start video
//TODO: decide whether to enable this or not. maybe make as an option?
// innerDoc.querySelectorAll('video')[0].click();
initializeVideoPlayPuaseTypingPreferences();
};
}
function playVideo(){
// console.log("play video ");
// document.querySelector( 'video' ).play();
if(isYoutubeVideo){
var iframe = document.querySelector('iframe');
var innerDoc = iframe.contentDocument || iframe.contentWindow.document;
if(innerDoc.querySelectorAll('video')[0].src ==""){
innerDoc.querySelectorAll('video')[0].click();
}else{
innerDoc.querySelectorAll('video')[0].play();
}
}else{
var video = document.querySelector('video');
video.play();
}
}
function pauseVideo(){
if(isYoutubeVideo){
var iframe = document.querySelector('iframe');
var innerDoc = iframe.contentDocument || iframe.contentWindow.document;
// document.querySelector( 'video' ).pause();
innerDoc.querySelectorAll('video')[0].pause();
}else{
var video = document.querySelector('video');
video.pause();
}
}
function populateVideoPlayer(url){
}
function runAeneasComand(config,cb){
var mediaFile = config.mediaFile;
var textFile = config.textFile;
var language = config.language;
var captionFileFormat = config.captionFileFormat;
var audio_file_head_length = config.audio_file_head_length;//eg 12.000
var audio_file_tail_length = config.audio_file_tail_length; //16.000
// var tmpTextFileName = dataPath +"/"+ fileName;
var fileName = path.basename(mediaFile);
var outputCaptionFile = dataPath+"/"+fileName+"."+captionFileFormat;
// console.log(JSON.stringify(config,null,2));
var outPutSegmentedFile = config.outPutSegmentedFile;
console.log("Aeneas outPutSegmentedFile",outPutSegmentedFile);
///usr/local/bin/aeneas_execute_task///usr/local/bin/aeneas_execute_task //python -m aeneas.tools.execute_task
var aeneasComandString = `/usr/local/bin/aeneas_execute_task "${mediaFile}" "${outPutSegmentedFile}" "task_language=${language}|os_task_file_format=${captionFileFormat}|is_text_type=subtitles|is_audio_file_head_length=${audio_file_head_length}|is_audio_file_tail_length=${audio_file_tail_length}|task_adjust_boundary_nonspeech_min=1.000|task_adjust_boundary_nonspeech_string=REMOVE|task_adjust_boundary_algorithm=percent|task_adjust_boundary_percent_value=75|is_text_file_ignore_regex=[*]" ${outputCaptionFile}`;
// var productionEnv = Object.create(process.env);
console.info("aeneasComandString", aeneasComandString);
var aeneasPath = "/usr/local/bin/aeneas_execute_task";
var ffmpegPath = "/usr/local/bin/ffmpeg";
var ffprobePath = "/usr/local/bin/ffprobe";
var espeakPath = "/usr/local/bin/espeak";
var envVar = {'ffmpeg': ffmpegPath , 'ffprobe': ffprobePath, 'espeak':espeakPath, 'aeneas_execute_task': aeneasPath};
var options ={env: envVar, cwd: appPath}
exec(aeneasComandString, function(error, stdout, stderr) {
console.log('stdout runAeneasComand: ' + stdout);
console.log('stderr runAeneasComand: ' + stderr);
if(cb){cb(outputCaptionFile)};
if (error !== null) {
console.log('exec error: ' + error);
}
});
}
window.segmentTranscript = segmentTranscript;
function segmentTranscript(config,cb){
var inputFile = config.textFile;
var outPutSegmentedFile = config.outPutSegmentedFile;
// var segmentTranscriptComand =`perl ${appPath}/sentence-boundary.pl -d ${appPath}/HONORIFICS -i ${inputFile} -o ${outPutSegmentedFile}`;
sentenceBoundariesDetection(inputFile, outPutSegmentedFile, function(filePathSetencesWithLines){
if(cb){cb(filePathSetencesWithLines);}
});
// TODO: refactor this
}
function sentenceBoundariesDetection(textFile,outPutSegmentedFile,cb){
var options = {
"newline_boundaries" : true,
"html_boundaries" : false,
"sanitize" : false,
"allowed_tags" : false,
//TODO: Here could open HONORIFICS file and pass them in here I think
"abbreviations" : null
};
var text = fs.readFileSync(textFile).toString('utf8');
var sentences = tokenizer.sentences(text, options);
// console.log("sentences",sentences);
var sentencesWithLineSpaces=sentences.join("\n\n");
// console.log("sentencesWithLineSpaces",sentencesWithLineSpaces);
fs.writeFileSync(outPutSegmentedFile,sentencesWithLineSpaces);
//TODO: replace the system calls, unix fold, perl etc.. with js modules for segmentations.
//TODO: extra manupulation of text
//2. The 2nd line (pictured) takes each of sentences (now separated by an empty line)
//and places a new line mark at the end of the word that exceeds > 35 characters
//(if the sentence exceeds that number)
//# Break each line at 35 characters
//fold -w 35 -s test2.txt > test3.txt
var outPutSegmentedFile2 = outPutSegmentedFile+"2.txt";
exec(`fold -w 35 -s ${outPutSegmentedFile} > ${outPutSegmentedFile2}`, function(error, stdout, stderr) {
// if(cb){cb(outPutSegmentedFile);}
console.log('stdout Segmented Script: ' + stdout);
console.log('stderr Segmented Script: ' + stderr);
if (error !== null) {
console.log('exec error Perl Script: ' + error);
}
// fs.read
// fs.writeFileSync(outPutSegmentedFile2,sentencesWithLineSpaces );
// if(cb){cb(sourceVideoPath)};
//3. Then the Perl command (3rd line pictured) will take these new chunks
//and separate them further so that there are no more than two consecutive lines before an empty line.
//# Insert new line for every two lines, preserving paragraphs
// perl -00 -ple 's/.*\n.*\n/$&\n/mg' test3.txt > "$f"
var outPutSegmentedFile3 = outPutSegmentedFile+"3.txt";
exec(`perl -00 -ple 's/.*\n.*\n/$&\n/mg' ${outPutSegmentedFile2} > ${outPutSegmentedFile3}`, function(error, stdout, stderr) {
console.log('stdout Segmented Script: ' + stdout);
console.log('stderr Segmented Script: ' + stderr);
if (error !== null) {
console.log('exec error Perl Script: ' + error);
}
console.log("outPutSegmentedFile3", outPutSegmentedFile3);
if(cb){cb(outPutSegmentedFile3)};
});
});
}
function convertTimeCodeToSeconds(timeString){
var timeArray = timeString.split(":");
var hours = parseFloat(timeArray[0]) * 60 * 60;
var minutes = parseFloat(timeArray[1]) * 60;
var seconds = parseFloat(timeArray[2].replace(",","."));
// var frames = parseInt(timeArray[3].split(",")[1])*(1/framerate);
// var str = "h:" + hours + "\nm:" + minutes + "\ns:" + seconds + "\nf:" + frames;
// console.log(str);
var totalTime = hours + minutes + seconds// + frames;
//alert(timeString + " = " + totalTime)
return totalTime;
}
// window.punctuatorPostRequest = punctuatorPostRequest;
//TODO: this could be refactored into
function punctuatorPostRequest(content, cb){
var tmpPunctuationFile =sourceVideoPath+".punctuation.txt"; //"~/Desktop/textTEST.txt"
var comand = `curl -d "text=${content}" http://bark.phon.ioc.ee/punctuator > ${tmpPunctuationFile}`
exec(comand, function(error, stdout, stderr) {
var resultTextWithPunctuation = openFile(tmpPunctuationFile);
if(cb){cb(resultTextWithPunctuation)}
console.log('stdout punctuatorPostRequest: ' + stdout);
console.log('stderr punctuatorPostRequest: ' + stderr);
if (error !== null) {
console.log('exec error: ' + error);
}
});
}
function disableTextEditorProgressMessage(){
textEditorContentEditable(false, "<i>Transcription in progress...</i>")
}
function textEditorContentEditable(editable, message){
if(message){
textBoxEl.innerHTML = message;
}
textBoxEl.contentEditable = editable;
}
//TODO: add a button and onclick listener that points to this function
function resetPunctuation(){
var text = textBoxEl.innerText;
// confirm("warning this removes timecodes and current puctuation").
//remove any timecode
// remove any pucntuation . , ! ?
//call punctuator and reset punctuation
//add to text box
}
///Credentials
// var passwordInput = document.getElementById('password');
// var usernameInput = document.getElementById('username');
// var saveCredentialsBtnEl = document.getElementById('saveCredentialsBtn');
// function getPassword(){
// return passwordInput.value ;
// }
// function getUsername(){
// return usernameInput.value;
// }
// function saveCredentials(){
// alert("saved");
// localStorage.username = getUsername();
// localStorage.password = getPassword()
// }
// function populateCredentials(){
// passwordInput.value = window.credentials.password;
// usernameInput.value = window.credentials.username;
// }
// function loadCredentials(){
// if(localStorage.username && localStorage.password){
// window.credentials = {username: localStorage.username, password: localStorage.password};
// }else{
// // alert("add credentials for ");
// document.getElementById('settingsModalBtnTrigger').click()
// }
// }
// loadCredentials();
// populateCredentials();
// saveCredentialsBtnEl.onclick = function(e){
// e.preventDefault();
// saveCredentials();
// };
// addEventListener("click", saveCredentials);
//
function parseAeneasJson(aeneasJson){
var result = "";
var fragments = aeneasJson.fragments;
fragments.forEach(function(frag){
console.info('frag.begin', frag.begin);
result += `<span class="alignedline" data-start=${frag.begin} data-end=${frag.end}>${frag.lines} </span>`
})
return result;
}
function makeLinesInteractive(){
//declaring counter for loop here so that it is visible in scope of on click ananonimous function;
// var i;
var lines = document.getElementsByClassName('alignedline');
for(var i=0; i< (lines.length -1) ; i++){
console.log(i, lines.length);
// var line = lines[i];
// lines.forEach(function(line){
lines[i].addEventListener("click", function(ev){
console.log(ev, ev.target)//;
console.log(lines[i], lines[i].dataset.start, lines[i], ev.target.dataset.start);
setVideoCurrentTimeForNavigate(parseInt(ev.target.dataset.start));
// setVideoForClickLine(line);
});
// });
}
}
function setVideoCurrentTime(timecode){
var time;
if(typeof timecode != "number"){
//convert timecode
time = convertTimeCodeToSeconds(timecode);
}else{
time = timecode;
}
if(isYoutubeVideo){
var iframe = document.querySelector('iframe');
var innerDoc = iframe.contentDocument || iframe.contentWindow.document;
// innerDoc.querySelectorAll('video')[0].click();
innerDoc.querySelectorAll('video')[0].currentTime = time;
playVideo();
}else{
var video = document.querySelector('video');
video.currentTime = time ;
playVideo();
}
}
// function setVideoForClickLine(line){
// setVideoCurrentTime(parseInt(line.dataset.start));
// }
///progress line
///
// var sideLine = document.getElementById('progressLineEditor');
// sideLine.onclick = function(e){
// var sideLinePosition = sideLine.getBoundingClientRect()
// console.log("sideLinePosition",sideLinePosition)
// console.log( "sideLinePosition.bottom", sideLinePosition.bottom ," sideLinePosition.top", sideLinePosition.top)
// var sideLineLength = sideLinePosition.bottom - sideLinePosition.top;
// var mousePositionOnLine = e.clientY - sideLinePosition.top;
// console.log("e.clientY",e.clientY);
// console.log("sideLineLength",sideLineLength,"mousePositionOnLine",mousePositionOnLine)
// }
//TODO: disable while speech to text
//textBoxEl.innerHTML = "<i>Transcription in progress...</i>"
//textBoxEl.contentEditable = false
//textBoxEl.contentEditable = true
//to add captions dynamically - Might not be needed as a requiremen
// maybe add button, update captions preview. or auto trigger.
// might need to write the `vtt` file. and then code below to update on video.
// altho it better if video was bigger.
// document.querySelector("video").innerHTML = '<track label="English Captions" srclang="en" kind="captions" src="/Users/pietropassarelli/Dropbox/CODE/NODE/webVideoTextCrawler/test/results.vtt" type="text/vtt" default />' | 33.495381 | 862 | 0.727928 |
c8bfd808821a5ce4882e3fecbfc72ad11280c523 | 1,395 | js | JavaScript | src/gatsby/code/vanilla/components/core/drop/card-size.js | cdlate/xtend-library | db577b9e5d763ec709fdba54228d56da1a930843 | [
"CC-BY-3.0",
"MIT"
] | null | null | null | src/gatsby/code/vanilla/components/core/drop/card-size.js | cdlate/xtend-library | db577b9e5d763ec709fdba54228d56da1a930843 | [
"CC-BY-3.0",
"MIT"
] | null | null | null | src/gatsby/code/vanilla/components/core/drop/card-size.js | cdlate/xtend-library | db577b9e5d763ec709fdba54228d56da1a930843 | [
"CC-BY-3.0",
"MIT"
] | null | null | null | import path from 'path'
const markupDropCard = require('components/snippets/components/markup-drop-card').default
const indentString = require('indent-string')
const filename = __filename.replace(/\\/g, '/')
const dirs = path.dirname(filename).split('/')
export const demo = {
name: path.basename(filename, '.js'),
dirs: dirs,
}
demo.htmlSource = `
<div class="list list-default list-space-small align-items-center">
<div class="drop-container" data-xt-drop>
<button type="button" class="btn btn-primary">
default
</button>
<div class="drop drop-default">
${indentString(markupDropCard(), 6)}
</div>
</div>
<div class="drop-container" data-xt-drop>
<button type="button" class="btn btn-primary">
small
</button>
<div class="drop drop-default drop-size-small drop-small">
${indentString(markupDropCard(), 6)}
</div>
</div>
<div class="drop-container" data-xt-drop>
<button type="button" class="btn btn-primary">
medium
</button>
<div class="drop drop-default drop-size-medium drop-medium">
${indentString(markupDropCard(), 6)}
</div>
</div>
<div class="drop-container" data-xt-drop>
<button type="button" class="btn btn-primary">
large
</button>
<div class="drop drop-default drop-size-large drop-large">
${indentString(markupDropCard(), 6)}
</div>
</div>
</div>
`
| 26.320755 | 89 | 0.653047 |
c8bfe2fca8ff3b80dd911148f02553220dbb82d5 | 2,847 | js | JavaScript | Examples/UIExplorer/js/XHRExampleOnTimeOut.js | matto1990/react-native-macos | 91b701a0b8949dbc680dc24e5b548b55f070a25a | [
"CC-BY-4.0",
"BSD-3-Clause"
] | 1 | 2019-08-20T16:57:54.000Z | 2019-08-20T16:57:54.000Z | Examples/UIExplorer/js/XHRExampleOnTimeOut.js | matto1990/react-native-macos | 91b701a0b8949dbc680dc24e5b548b55f070a25a | [
"CC-BY-4.0",
"BSD-3-Clause"
] | null | null | null | Examples/UIExplorer/js/XHRExampleOnTimeOut.js | matto1990/react-native-macos | 91b701a0b8949dbc680dc24e5b548b55f070a25a | [
"CC-BY-4.0",
"BSD-3-Clause"
] | null | null | null | /**
* Copyright (c) 2013-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
* The examples provided by Facebook are for non-commercial testing and
* evaluation purposes only.
*
* Facebook reserves all rights not expressly granted.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL
* FACEBOOK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
* AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* @flow
*/
'use strict';
var React = require('React');
var ReactNative = require('react-native-macos');
var {
StyleSheet,
Text,
TouchableHighlight,
View,
} = ReactNative;
class XHRExampleOnTimeOut extends React.Component {
state: any;
xhr: XMLHttpRequest;
constructor(props: any) {
super(props);
this.state = {
status: '',
loading: false
};
}
loadTimeOutRequest() {
this.xhr && this.xhr.abort();
var xhr = this.xhr || new XMLHttpRequest();
xhr.onerror = ()=> {
console.log('Status ', xhr.status);
console.log('Error ', xhr.responseText);
};
xhr.ontimeout = () => {
this.setState({
status: xhr.responseText,
loading: false
});
};
xhr.onload = () => {
console.log('Status ', xhr.status);
console.log('Response ', xhr.responseText);
};
xhr.open('GET', 'https://httpbin.org/delay/5'); // request to take 5 seconds to load
xhr.timeout = 2000; // request times out in 2 seconds
xhr.send();
this.xhr = xhr;
this.setState({loading: true});
}
componentWillUnmount() {
this.xhr && this.xhr.abort();
}
render() {
var button = this.state.loading ? (
<View style={styles.wrapper}>
<View style={styles.button}>
<Text>Loading...</Text>
</View>
</View>
) : (
<TouchableHighlight
style={styles.wrapper}
onPress={this.loadTimeOutRequest.bind(this)}>
<View style={styles.button}>
<Text>Make Time Out Request</Text>
</View>
</TouchableHighlight>
);
return (
<View>
{button}
<Text>{this.state.status}</Text>
</View>
);
}
}
var styles = StyleSheet.create({
wrapper: {
borderRadius: 5,
marginBottom: 5,
},
button: {
backgroundColor: '#eeeeee',
padding: 8,
},
});
module.exports = XHRExampleOnTimeOut;
| 24.127119 | 88 | 0.627678 |
c8c0306002e70f66796815cad91675f936d47ed1 | 2,066 | js | JavaScript | src/static/js/app/Controller/AboutController.js | johnmilner/Penryn-Project | 9f9686c441e3e8836c2ecc8f1cfaceae014a4c94 | [
"MIT"
] | null | null | null | src/static/js/app/Controller/AboutController.js | johnmilner/Penryn-Project | 9f9686c441e3e8836c2ecc8f1cfaceae014a4c94 | [
"MIT"
] | null | null | null | src/static/js/app/Controller/AboutController.js | johnmilner/Penryn-Project | 9f9686c441e3e8836c2ecc8f1cfaceae014a4c94 | [
"MIT"
] | 2 | 2019-02-21T20:34:07.000Z | 2019-11-17T00:40:31.000Z | /* eslint-disable */
import Loader from '../../app/Bundle/Common/Transition/Loader.js'
import Transition from '../../app/Bundle/Common/Transition/Transition.js'
import Xhr from '../../Engine/Xhr.js'
import EventDelegation from '../../Engine/EventDelegation.js'
import Listeners from '../../Engine/Listeners.js'
import Menu from '../../app/Bundle/Common/Transition/Menu.js'
import S from 'skylake'
console.dir(Listeners)
class AboutController extends Listeners {
constructor () {
super(Listeners)
moduleInit: true
console.dir(Listeners)
console.log('about constructor')
this.init({
mouseWheel: [
{
moduleInit: true,
el: 'body',
module: Transition,
method: 'scrollInit',
outroM: this.outroM
}
],
// click: [
// {
// el: '#burger',
// module: Vendor,
// method: 'bindButtonClick'
// }
// ],
ro: {
throttle: {
delay: 200,
atEnd: true
}
// module: Resize,
// method: 'calculate'
}
})
}
preload (opts) {
Transition.open()
console.log('Transition.outro from HomeController')
Listeners.prototype.add({cb:
Loader.run({cb: this.intro()})
})
console.log('Loader.run from HomeController')
Menu.prototype.bindButtonClick()
EventDelegation.destHome()
//EventDelegation.prototype.run()
}
intro (opts) {
Listeners.prototype.add({cb:Transition.intro.play()})
// {cb: this.outro()}
console.log('Transition.intro from HomeController')
}
outro (done, listeners) {
Listeners.prototype.remove({
destroy: true
})
}
}
export default AboutController
| 26.831169 | 73 | 0.497096 |
c8c08ddd74956ba976a309662e9ed993735a5c7e | 7,821 | js | JavaScript | src/amv.js | mancabot/ehemnurul | c5402573b8bd9314d3f32bbaaacefedd6a601b63 | [
"Apache-2.0"
] | 2 | 2021-06-07T15:53:22.000Z | 2021-06-08T02:27:03.000Z | src/amv.js | mancabot/ehemnurul | c5402573b8bd9314d3f32bbaaacefedd6a601b63 | [
"Apache-2.0"
] | 2 | 2021-02-06T11:45:21.000Z | 2021-04-18T13:46:03.000Z | src/amv.js | mancabot/ehemnurul | c5402573b8bd9314d3f32bbaaacefedd6a601b63 | [
"Apache-2.0"
] | 2 | 2021-02-18T01:43:09.000Z | 2021-05-27T07:58:35.000Z | [
{"result":"https://r1---sn-npoe7ney.googlevideo.com/videoplayback?expire=1610726253&ei=DWcBYPiOCuKBp-oPsZWP8Ao&ip=118.172.181.147&id=o-AJWZchXt-Nr_QctauSDm3kKINwXZ8kfkvL0_3ZAZkSEm&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=NgUmgrCUuand7PVBmw33PngF&gir=yes&clen=2015380&ratebypass=yes&dur=30.348&lmt=1610690988218035&fvip=1&c=WEB&txp=6200222&n=SbvvICR2tREWvE&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRgIhANmSruncj-DD1-QLTRWpTNpmSEtUk1rMPHe-yo88rNpaAiEAxQPZgNkPH9LUoGyewmVoAfOFvBRXiqCSQPYBUk0qJk4%3D&rm=sn-uvu-c33ez7e,sn-30als7e&req_id=58a275974bd3a3ee&ipbypass=yes&redirect_counter=3&cm2rm=sn-nposz7e&cms_redirect=yes&mh=Bz&mip=182.2.9.48&mm=34&mn=sn-npoe7ney&ms=ltu&mt=1610704594&mv=m&mvi=1&pl=24&lsparams=ipbypass,mh,mip,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIgDt4SAeHcEkh92hb7WJH97dAvVOepCudnMrfLvwox1JYCIQCFWK_hCyEF8L9pZTbmUiVc5nqm0AL5trSiWwz7-7KxyA%3D%3D"},
{"result":"https://r5---sn-npoe7n7z.googlevideo.com/videoplayback?expire=1610726423&ei=t2cBYMTFG4zxNsWnjagO&ip=81.18.34.98&id=o-AJpIEaGBFJxhtUM_iUSSLkQwnfvQW2JHa-XaYyTtsPlR&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=E_v9h9SCBKLHn5OOPSuktdoF&gir=yes&clen=1634562&ratebypass=yes&dur=26.981&lmt=1610704558388810&fvip=5&beids=9466587&c=WEB&txp=6200222&n=I_613tLYz3eLuS&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIgS8_a5JiF_HscMy7t1etRJx_BlIysMqijEKpdiU9mKSQCIQC_EQ90L69RvROEzDYSA2pCYSxjj_hJr1IuLEIUYc_piw%3D%3D&rm=sn-351ug5onjvh-b0fl7e,sn-gvnuxaxjvh-n8vr76&fexp=9466587&req_id=1096a44a4899a3ee&redirect_counter=3&cm2rm=sn-n8vd6er&cms_redirect=yes&mh=aj&mip=182.2.9.48&mm=34&mn=sn-npoe7n7z&ms=ltu&mt=1610704594&mv=m&mvi=5&pl=24&lsparams=mh,mip,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRAIgCegRP7dDKHXIbzmNFmxh0mTMdlXsM16tkk70GG0glS0CIFvC5o5xLgyw3kadbOtgH8RbxhmsR0oBxBzK-LROJCg0"},
{"result":"https://r1---sn-npoeene7.googlevideo.com/videoplayback?expire=1610726988&ei=7GkBYJXwDInJgQfjo7jQBw&ip=139.194.148.144&id=o-ALjUTEbyoQSpWd3XpZ5uuJeJB11z3fd-P-C5XH5a-DWp&itag=18&source=youtube&requiressl=yes&gcr=id&vprv=1&mime=video%2Fmp4&ns=ID-Xo-tKTzyD0R_Me7nwvyQF&gir=yes&clen=2003530&ratebypass=yes&dur=30.720&lmt=1610705270088092&fvip=1&c=WEB&txp=6200222&n=RJnfU4cssgLYm6&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cgcr%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRgIhAIrMHhXZuy6T-8e3zBwDTSGdvBgvQ2UVx-gWgMLmsk1GAiEA_Coiq5awF4P8gDFL2QzgLmL3sHKaJv_2ton9TeEW7b0%3D&redirect_counter=1&rm=sn-4pgnuhxqp5-jb3ee7y&req_id=d781a67f14e4a3ee&cms_redirect=yes&ipbypass=yes&mh=kQ&mm=30&mn=sn-npoeene7&ms=nxu&mt=1610705063&mv=m&mvi=1&pl=19&lsparams=ipbypass,mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRgIhAMyOxLXMHNMWAIuzedrh3xBsqCn7KbgcNffc2-c33sRtAiEA81CHOUVpeSOsNANQhNBvSmNsF207-R1ek55W4cVaVnQ%3D"},
{"result":"https://r1---sn-npoeenl7.googlevideo.com/videoplayback?expire=1610727283&ei=E2sBYN3jA8eF6dsP0YKb2Aw&ip=139.194.128.31&id=o-AM9d7mRN9N5tgRFYUrtxTCfHPP8BLLS1Hd30J5BGk8aN&itag=18&source=youtube&requiressl=yes&gcr=id&vprv=1&mime=video%2Fmp4&ns=voY1fGvwOxCYSHigWtweiOoF&gir=yes&clen=1477463&ratebypass=yes&dur=31.346&lmt=1610705623680427&fvip=1&beids=9466585&c=WEB&txp=6200222&n=iWH6o_X2Nckpt2&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cgcr%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRgIhAKAVVMHpq21bRnn-CAyIRDEIQ9zEWxPa98tuCsFf1LfQAiEA89SzjXoQuJs1dpjERiaxfgvL85WZ3EVlJQBSxsUCzWo%3D&rm=sn-4pgnuhxqp5-jb3s7e,sn-npozl7e&fexp=9466585&req_id=8e1e282f2bbca3ee&ipbypass=yes&redirect_counter=3&cm2rm=sn-npoz77e&cms_redirect=yes&mh=v-&mip=182.2.9.48&mm=34&mn=sn-npoeenl7&ms=ltu&mt=1610705560&mv=m&mvi=1&pl=24&lsparams=ipbypass,mh,mip,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIhAL75avozbi9_QrB-X6hoOuJfKcIZGfmtGSzHCYd9jS8oAiAuJL6P4Prz-JbG2UTOyocyto8pBzUOe0YwugXln2l_Dg%3D%3D"},
{"result":"https://r5---sn-uxa3vhnxa-jb3r.googlevideo.com/videoplayback?expire=1610727564&ei=LGwBYMuDLtCZ2_gP16OFqA4&ip=95.137.240.30&id=o-AAAhJuQRnT_1WTTwvWIj_85ft4KClH0OHK7aGUfMFPx-&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=u38_BuX9X9irj3rbDlk0Ys4F&gir=yes&clen=2127755&ratebypass=yes&dur=31.416&lmt=1610705925086645&fvip=5&c=WEB&txp=6200222&n=pYqhodj5UcpGEH&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRgIhAIR27bYyJy-IRftN82LpO7TVmMDrGPYobi08OJDVlrsYAiEAhR350IaxytLdvlQe6np4CCoEH96UmirnDCnF4h0H17c%3D&rm=sn-ntnuxhoxu-ucnl76,sn-5gole76&req_id=2f59eae300a0a3ee&redirect_counter=2&cms_redirect=yes&ipbypass=yes&mh=6F&mip=182.2.9.48&mm=29&mn=sn-uxa3vhnxa-jb3r&ms=rdu&mt=1610705578&mv=m&mvi=5&pcm2cms=yes&pl=24&lsparams=ipbypass,mh,mip,mm,mn,ms,mv,mvi,pcm2cms,pl&lsig=AG3C_xAwRQIhALZmyLMbccKuItpRp5fXSEVT7OeQ7NgJpijjubVXNvxXAiBtwzDNYB70l8ZGrb5hxBuXgzbabtWDKCajpMcxEfHuoQ%3D%3D"},
{"result":"https://r4---sn-uxa3vhnxa-jb3d.googlevideo.com/videoplayback?expire=1610727745&ei=4WwBYJq2MoHSW5LAs5AL&ip=185.186.71.56&id=o-ACoz3O7I0N4ilHWI_R0Ko2IDbYAD-bG2r_xCEm4sqNh0&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=TlKnzXp7lz84-m5hQjyXGPoF&gir=yes&clen=2252307&ratebypass=yes&dur=30.928&lmt=1610706100952612&fvip=4&c=WEB&txp=6200222&n=zJXDMXMeeIWI0N&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRAIgDolXfy9LzzZKa4MtQxFYekpXffBa7CCPnrr-xe_NviICICGZgitF5nYHcZgl92-lyn_RnozpWKoQP65i8ULCDo3W&rm=sn-gxuxapu-hm2e7e,sn-hpa6d7z&req_id=7a749a4952b7a3ee&redirect_counter=2&cms_redirect=yes&ipbypass=yes&mh=7S&mip=182.2.9.48&mm=29&mn=sn-uxa3vhnxa-jb3d&ms=rdu&mt=1610705578&mv=m&mvi=4&pcm2cms=yes&pl=24&lsparams=ipbypass,mh,mip,mm,mn,ms,mv,mvi,pcm2cms,pl&lsig=AG3C_xAwRAIgFzWSAx8hQe-Gme1bUlmON2bgwtiSbjyc18zBGtPRQCcCIH2ljf5-nrnmabJs4KYbwAtvW_ni0gJomlDzj8V-sTsH"},
{"result":"https://r6---sn-npoe7n7s.googlevideo.com/videoplayback?expire=1610727942&ei=pm0BYIT9KYGZir4Pw5WngAk&ip=125.25.165.88&id=o-AFqbo0nkxu7DDtmKtCpokbksv1Rvozouaid47eVHSQ_H&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=QpfQM2uFVthUj4WYm8gBYdkF&gir=yes&clen=1949001&ratebypass=yes&dur=31.695&lmt=1610706306977588&fvip=6&c=WEB&txp=6200222&n=NEfTSKl64GR_PH&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRgIhALjFp7Y_VMNglI9p1orXlEG3eBAarwPpEfiI2SDWap2qAiEA1dALznO2EtSqWCjzHx4m8Avo-xDtQ1IV5Gd8Yi67Sg4%3D&rm=sn-uvu-c33ed7d,sn-uvu-c3367d,sn-30all7d&req_id=7c997bd445b6a3ee&ipbypass=yes&redirect_counter=4&cm2rm=sn-npoed7d&cms_redirect=yes&mh=qQ&mip=182.2.9.48&mm=34&mn=sn-npoe7n7s&ms=ltu&mt=1610706266&mv=m&mvi=6&pl=24&lsparams=ipbypass,mh,mip,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRgIhAMkSwxDBPjGFW85enC-vwkdzMQdibs-KScqjRihS_8RLAiEAsN5ZXWsQaqI3yFEVrNo-OJJtVF_EhnXRsw2AZn538Xg%3D"},
{"result":"https://r2---sn-npoeenle.googlevideo.com/videoplayback?expire=1610728348&ei=PG8BYLDDNou7kATrxrHwCA&ip=69.241.4.70&id=o-AMz1meeSP7iCVlJojATrmJUO5EK7peLKdtQXNam6IwAB&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=yIgEoWRXJijca72MYI4NXaoF&gir=yes&clen=917691&ratebypass=yes&dur=13.630&lmt=1610706695621391&fvip=2&c=WEB&txp=6200222&n=rqJb7RG8GQund7&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhALJ1tWepov7aH0jO9-XzWbO0OiUU3UHPru5ofmqv86OpAiAGdguXLV0v7_nODLabBg7dg6WvXRkf3x3hGHuh9CQZhw%3D%3D&rm=sn-5uads7l&req_id=598c875fa339a3ee&ipbypass=yes&cm2rm=sn-uxa3vhnxa-230z7l,sn-uxa3vhnxa-jb3s7l&redirect_counter=3&fexp=9420244&cms_redirect=yes&mh=0J&mip=182.2.9.48&mm=30&mn=sn-npoeenle&ms=nxu&mt=1610706499&mv=m&mvi=2&pl=24&lsparams=ipbypass,mh,mip,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIhAJarkV9BM8b_njYeM_n8kgdJpQH7T3gRaTBZ_7x15GqJAiAZPhP0GOrQYS9QtkAfv2ZW4tlzOFEYJMR5OPDP0aX5BA%3D%3D"}
] | 782.1 | 1,012 | 0.855261 |
c8c09c9eb4cfba56ddbb9f14913b85adfa6e2225 | 310 | js | JavaScript | theme/hbs-helpers/date-helpers.js | wusixer/jsonresume-theme-stackoverflow | 915f64b4d0bfb21bbe3e76038d996c17c55fc970 | [
"MIT"
] | null | null | null | theme/hbs-helpers/date-helpers.js | wusixer/jsonresume-theme-stackoverflow | 915f64b4d0bfb21bbe3e76038d996c17c55fc970 | [
"MIT"
] | null | null | null | theme/hbs-helpers/date-helpers.js | wusixer/jsonresume-theme-stackoverflow | 915f64b4d0bfb21bbe3e76038d996c17c55fc970 | [
"MIT"
] | null | null | null | const moment = require('moment');
const dateHelpers = {
MY: date => moment(date.toString(), ['YYYY-MM-DD']).format('YYYY'),
Y: date => moment(date.toString(), ['YYYY-MM-DD']).format('YYYY'),
DMY: date => moment(date.toString(), ['YYYY-MM-DD']).format('D MMM YYYY')
};
module.exports = { dateHelpers };
| 31 | 75 | 0.625806 |
c8c1028de90f70e3a40bea44f14f6be9786e543e | 2,644 | js | JavaScript | apps/calendar/js/controllers/sync.js | mathroc/gaia | c0d069dc90865aa66c10917a2e383b1f7eac7d2a | [
"Apache-2.0"
] | 1 | 2016-12-29T05:54:24.000Z | 2016-12-29T05:54:24.000Z | apps/calendar/js/controllers/sync.js | mathroc/gaia | c0d069dc90865aa66c10917a2e383b1f7eac7d2a | [
"Apache-2.0"
] | null | null | null | apps/calendar/js/controllers/sync.js | mathroc/gaia | c0d069dc90865aa66c10917a2e383b1f7eac7d2a | [
"Apache-2.0"
] | null | null | null | Calendar.ns('Controllers').Sync = (function() {
/**
* Handles all synchronization related
* tasks. The intent is that this will
* be the focal point for any view
* to observe sync events and this
* controller will decide when to actually
* tell the stores when to sync.
*/
function Sync(app) {
this.app = app;
Calendar.Responder.call(this);
}
Sync.prototype = {
__proto__: Calendar.Responder.prototype,
observe: function() {
var self = this;
var account = this.app.store('Account');
// used instead of bind for testing reasons.
account.on('add', function(id, data) {
self.emit('sync start');
self._syncAccount(data, function() {
self.emit('sync complete');
});
});
},
/**
* Sync all accounts, calendars, events.
*/
sync: function(callback) {
var key;
var self = this;
var account = this.app.store('Account');
var pending = 0;
var errorList = [];
function next(err) {
if (err) {
errorList.push(err);
}
if (!(--pending)) {
if (callback) {
if (errorList.length) {
callback(errorList);
} else {
callback(null);
}
}
self.emit('sync complete');
}
}
this.emit('sync start');
for (key in account.cached) {
pending++;
this._syncAccount(
account.cached[key], next
);
}
if (!pending) {
callback();
this.emit('sync complete');
}
},
_syncAccount: function(model, callback) {
var self = this;
var account = this.app.store('Account');
var calendar = this.app.store('Calendar');
account.sync(model, function(err) {
if (err) {
//TODO: Implement error handling to show
// UI to change user/password, etc..
callback(err);
return;
}
var pending = 0;
var cals = calendar.remotesByAccount(
model._id
);
var key;
var errorList = [];
function next(err) {
if (err) {
errorList.push(err);
}
if (!(--pending)) {
if (errorList.length) {
callback(errorList);
} else {
callback(null);
}
}
}
for (key in cals) {
pending++;
calendar.sync(
model,
cals[key],
next
);
}
});
}
};
return Sync;
}());
| 20.984127 | 51 | 0.480711 |
c8c12dd51f3ccbd7e906ece9db1ee74f101e0698 | 174 | js | JavaScript | src/components/DropdownOption/index.js | JPBrickhouse/employeedirectory | 64d897a2da44440cc234c4e70678a0d7de3c95e6 | [
"MIT"
] | null | null | null | src/components/DropdownOption/index.js | JPBrickhouse/employeedirectory | 64d897a2da44440cc234c4e70678a0d7de3c95e6 | [
"MIT"
] | null | null | null | src/components/DropdownOption/index.js | JPBrickhouse/employeedirectory | 64d897a2da44440cc234c4e70678a0d7de3c95e6 | [
"MIT"
] | null | null | null | import React from "react";
function dropdownOption(props) {
return (
<option value={props.option}>{props.option}</option>
)
}
export default dropdownOption; | 19.333333 | 60 | 0.683908 |
c8c12df306918a96398b6a253eb30c4a59d3623a | 878 | js | JavaScript | src/cache/pure-func-mm.js | nqdy666/nq-cache | 19da5b48e83291043d5b6db34e040214fcd755e2 | [
"MIT"
] | 2 | 2018-05-17T08:09:44.000Z | 2019-07-09T07:01:18.000Z | src/cache/pure-func-mm.js | nqdy666/nq-cache | 19da5b48e83291043d5b6db34e040214fcd755e2 | [
"MIT"
] | 13 | 2019-06-05T04:59:06.000Z | 2021-05-07T04:40:45.000Z | src/cache/pure-func-mm.js | nqdy666/nq-cache | 19da5b48e83291043d5b6db34e040214fcd755e2 | [
"MIT"
] | null | null | null | // @flow
import store from './store'
import { argToKey } from '../utils/assist'
/**
* 纯函数执行的结果缓存在内存中,下次调用直接使用缓存数据
* @param {Function} fn - 返回值是Promise的函数
* @returns {Function} 和原函数的调用方式是一样的,第一次调用数据缓存后,之后的调用不会调用原函数,而是会直接使用缓存后的数据,另外该函数还带有一个静态的clearCache方法,可以用来清空缓存数据
* @property {Function} clearCache 清空缓存数据
*/
export default function pureFuncCache<F: Function> (fn: F): F {
let cache = {}
const cachedFn = (function cachedFn (...arg: Array<any>) {
const cacheKey = argToKey(...arg)
return cache.hasOwnProperty(cacheKey) ? cache[cacheKey] : (cache[cacheKey] = fn(...arg))
}: any)
cachedFn.clearCache = function (key?: string): void {
if (key) {
delete cache[key]
} else {
cache = {}
}
}
cachedFn.funType = 'pureFunc'
cachedFn.cacheType = 'memory'
cachedFn.originFunName = fn.name
store.push(cachedFn)
return cachedFn
}
| 26.606061 | 111 | 0.677677 |
c8c1940e4263514d71192044e4dc52012b3252be | 344 | js | JavaScript | core/assets/js/event-card.js | LorenzSelv/pinned | f0df31dc68d6e2e5fdd13f2999a62d188df908f1 | [
"MIT"
] | 1 | 2017-11-21T13:46:09.000Z | 2017-11-21T13:46:09.000Z | core/assets/js/event-card.js | LorenzSelv/pinned | f0df31dc68d6e2e5fdd13f2999a62d188df908f1 | [
"MIT"
] | null | null | null | core/assets/js/event-card.js | LorenzSelv/pinned | f0df31dc68d6e2e5fdd13f2999a62d188df908f1 | [
"MIT"
] | null | null | null | // Blur other cards when hovering over one and remove blurring after leaving it
$(".event-card").mouseover(function() {
$(".event-card").not(this).each(function() {
$(this).addClass("card-blurred")
})
}).mouseout(function() {
$(".event-card").not(this).each(function() {
$(this).removeClass("card-blurred")
})
}) | 34.4 | 79 | 0.613372 |
c8c1eea19b1ca1efff324b006ca5a4e32c2318b1 | 1,086 | js | JavaScript | schema/config.js | trak2018z/pulsar-tr | 5bb0a20fd06e7d9e3c3730949441a2cbef4ef839 | [
"BSD-3-Clause"
] | null | null | null | schema/config.js | trak2018z/pulsar-tr | 5bb0a20fd06e7d9e3c3730949441a2cbef4ef839 | [
"BSD-3-Clause"
] | null | null | null | schema/config.js | trak2018z/pulsar-tr | 5bb0a20fd06e7d9e3c3730949441a2cbef4ef839 | [
"BSD-3-Clause"
] | null | null | null | /*
* This file is part of Pulsar CMS
* Copyright (c) by sobiemir <sobiemir@aculo.pl>
* ___ __
* / _ \__ __/ /__ ___ _____
* / ___/ // / (_-</ _ `/ __/
* /_/ \_,_/_/___/\_,_/_/
*
* This source file is subject to the New BSD License that is bundled
* with this package in the file LICENSE.txt.
*
* You should have received a copy of the New BSD License along with
* this program. If not, see <http://www.licenses.aculo.pl/>.
*/
const config = require( "../pulsar/config/config.json" );
// sprawdź czy istnieje wpis bazy danych w konfiguracji
if( !config )
config = {};
// jeżeli nie, utwórz bazę na sqlite
if( !("database" in config) )
config.database = {
"dialect": "sqlite",
"database": "pleiad.sqlite"
};
config.database.migrationStorage = "sequelize";
config.database.seederStorage = "sequelize";
config.database.migrationStorageTableName = "sequelize_meta";
config.database.seederStorageTableName = "sequelize_seed";
module.exports = {
development: config.database,
test: config.database,
production: config.database
};
| 28.578947 | 70 | 0.67035 |
c8c20fe1f35551b2d6dc28ea3e1c7fa3c439c12f | 425 | js | JavaScript | packages/mwapi-cli/lib/middlewares/ip/index.js | MantisWare/wmapi | 8ecd2d44bd38ba968f86e5c6d9fd47f222aba0e9 | [
"MIT"
] | null | null | null | packages/mwapi-cli/lib/middlewares/ip/index.js | MantisWare/wmapi | 8ecd2d44bd38ba968f86e5c6d9fd47f222aba0e9 | [
"MIT"
] | null | null | null | packages/mwapi-cli/lib/middlewares/ip/index.js | MantisWare/wmapi | 8ecd2d44bd38ba968f86e5c6d9fd47f222aba0e9 | [
"MIT"
] | null | null | null | 'use strict';
/**
* Module dependencies
*/
/**
* IP filter hook
*/
module.exports = mwapi => {
return {
/**
* Initialize the hook
*/
initialize: function(cb) {
mwapi.app.use(
mwapi.koaMiddlewares.ip({
whiteList: mwapi.config.middleware.settings.ip.whiteList,
blackList: mwapi.config.middleware.settings.ip.blackList
})
);
cb();
}
};
};
| 14.655172 | 67 | 0.545882 |
c8c21edbfb7d579fa7f8f080a6b22d1f3231a466 | 1,007 | js | JavaScript | public/app/frontend/services/Tax.js | INF2G-UWV/uwv-laravel | 40788d525b8aebfbfd2b6b5b941331358633e6e5 | [
"MIT"
] | null | null | null | public/app/frontend/services/Tax.js | INF2G-UWV/uwv-laravel | 40788d525b8aebfbfd2b6b5b941331358633e6e5 | [
"MIT"
] | null | null | null | public/app/frontend/services/Tax.js | INF2G-UWV/uwv-laravel | 40788d525b8aebfbfd2b6b5b941331358633e6e5 | [
"MIT"
] | null | null | null | angular.module('uwv')
.service('Tax', function(Questions) {
var aow = 0;
var zorg = 0;
var wlz = 0;
var ww = 0;
var bruto = 20000;
var netto = 0;
this.getAow = function() {
return aow;
};
this.setAow = function(value) {
aow = value;
};
this.getZorg = function() {
return zorg;
};
this.setZorg = function(value) {
zorg = value;
};
this.getWlz = function() {
return wlz;
};
this.setWlz = function(value) {
wlz = value;
};
this.getWw = function() {
return ww;
};
this.setWw = function(value) {
ww = value;
};
this.getBruto = function() {
return bruto;
};
this.setBruto = function(value) {
bruto = value;
};
this.getNetto = function() {
return netto;
};
this.setNetto = function(value) {
netto = value;
};
this.calculateNetto = function() {
netto = bruto - aow - zorg - wlz - ww;
};
});
| 15.984127 | 44 | 0.50149 |
c8c254d8f42231cb87e707838d4ef9e1f8a22308 | 599 | js | JavaScript | src/components/dumbs/projects-table-admin/index.js | MrAxf/dwsc-ui | 9587cfc086ebcdb594d1a5e671cff7ec003ba415 | [
"MIT"
] | null | null | null | src/components/dumbs/projects-table-admin/index.js | MrAxf/dwsc-ui | 9587cfc086ebcdb594d1a5e671cff7ec003ba415 | [
"MIT"
] | null | null | null | src/components/dumbs/projects-table-admin/index.js | MrAxf/dwsc-ui | 9587cfc086ebcdb594d1a5e671cff7ec003ba415 | [
"MIT"
] | null | null | null | import {PolymerElement, html} from '@polymer/polymer/polymer-element';
import '@polymer/polymer/lib/elements/dom-repeat.js';
import css from './style.pcss';
import template from './template.html';
import '../asignar-proyecto-form'
export default class ProjectsTableAdmin extends PolymerElement {
static get properties() {
return {
data: {
type: Array,
value: "",
notify: true
}
};
}
static get template() {
return html([`<style>${css}</style> ${template}`]);
}
}
window.customElements.define('projects-table-admin', ProjectsTableAdmin); | 22.185185 | 73 | 0.659432 |
c8c343e3e81d3114bafcfac67c827a35cad3a813 | 47 | js | JavaScript | poi.config.js | newbornfrontender/poi-vue-test | 4641de2e20e30d5e3234886b5f6d4ab5b7c3496d | [
"MIT"
] | null | null | null | poi.config.js | newbornfrontender/poi-vue-test | 4641de2e20e30d5e3234886b5f6d4ab5b7c3496d | [
"MIT"
] | null | null | null | poi.config.js | newbornfrontender/poi-vue-test | 4641de2e20e30d5e3234886b5f6d4ab5b7c3496d | [
"MIT"
] | null | null | null | module.exports = {
entry: './src/main.js'
};
| 11.75 | 24 | 0.574468 |
c8c3e0384d81a9708c3c6beb8c1587c24735646b | 591 | js | JavaScript | src/entypo/dropbox.js | danielkov/react-icons-kit | 160bc967ed1ba9cad75a86fb40a449e1f79d1fe0 | [
"MIT"
] | 372 | 2017-01-07T01:54:27.000Z | 2022-03-02T10:16:01.000Z | src/entypo/dropbox.js | danielkov/react-icons-kit | 160bc967ed1ba9cad75a86fb40a449e1f79d1fe0 | [
"MIT"
] | 72 | 2016-12-17T04:04:02.000Z | 2022-02-26T03:35:19.000Z | src/entypo/dropbox.js | qza7849467chensh5/react-icons-kit | 09aeaf39d13e33c45bd032cc1b42a64c5a334dd9 | [
"MIT"
] | 66 | 2017-05-14T21:52:41.000Z | 2021-12-08T12:15:09.000Z | export const dropbox = {"viewBox":"0 0 20 20","children":[{"name":"path","attribs":{"d":"M6.109,0.902L0.4,4.457l3.911,3.279L10,4.043L6.109,0.902z M13.452,15.992c-0.102,0-0.203-0.033-0.285-0.102L10,13.262\r\n\tl-3.167,2.629c-0.082,0.068-0.184,0.102-0.285,0.102c-0.085,0-0.17-0.023-0.244-0.072l-2.346-1.533v0.904L10,19.098l6.042-3.807\r\n\tv-0.904l-2.346,1.533C13.622,15.969,13.537,15.992,13.452,15.992z M19.6,4.457l-5.71-3.555L10,4.043l5.688,3.693L19.6,4.457z\r\n\t M10,11.291l3.528,2.928l5.641-3.688l-3.481-2.795L10,11.291z M6.472,14.219L10,11.291L4.311,7.736l-3.48,2.795L6.472,14.219z"}}]}; | 591 | 591 | 0.693739 |
c8c44545d534e2a8b61b50a5af868544fbd16b44 | 266,006 | js | JavaScript | pythonweb/rasiberryPiWebManager/static/managerweb/2.js | onwebbe/rasiberryPiWebManager | 14ff9f14f3f873457666fa1669fae715148538c9 | [
"Apache-2.0"
] | null | null | null | pythonweb/rasiberryPiWebManager/static/managerweb/2.js | onwebbe/rasiberryPiWebManager | 14ff9f14f3f873457666fa1669fae715148538c9 | [
"Apache-2.0"
] | 7 | 2020-09-07T07:51:28.000Z | 2022-02-26T17:54:49.000Z | pythonweb/rasiberryPiWebManager/static/managerweb/2.js | onwebbe/rasiberryPiWebManager | 14ff9f14f3f873457666fa1669fae715148538c9 | [
"Apache-2.0"
] | null | null | null | ((typeof self !== 'undefined' ? self : this)["webpackJsonp"] = (typeof self !== 'undefined' ? self : this)["webpackJsonp"] || []).push([[2],{
/***/ "./node_modules/@babel/runtime-corejs2/core-js/array/from.js":
/*!*******************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/core-js/array/from.js ***!
\*******************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
eval("module.exports = __webpack_require__(/*! core-js/library/fn/array/from */ \"./node_modules/core-js/library/fn/array/from.js\");//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvQGJhYmVsL3J1bnRpbWUtY29yZWpzMi9jb3JlLWpzL2FycmF5L2Zyb20uanMuanMiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8vLi9ub2RlX21vZHVsZXMvQGJhYmVsL3J1bnRpbWUtY29yZWpzMi9jb3JlLWpzL2FycmF5L2Zyb20uanM/Nzc0ZSJdLCJzb3VyY2VzQ29udGVudCI6WyJtb2R1bGUuZXhwb3J0cyA9IHJlcXVpcmUoXCJjb3JlLWpzL2xpYnJhcnkvZm4vYXJyYXkvZnJvbVwiKTsiXSwibWFwcGluZ3MiOiJBQUFBIiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./node_modules/@babel/runtime-corejs2/core-js/array/from.js\n");
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/helpers/esm/arrayWithoutHoles.js":
/*!******************************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/helpers/esm/arrayWithoutHoles.js ***!
\******************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _arrayWithoutHoles; });\n/* harmony import */ var _core_js_array_is_array__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../core-js/array/is-array */ \"./node_modules/@babel/runtime-corejs2/core-js/array/is-array.js\");\n/* harmony import */ var _core_js_array_is_array__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_core_js_array_is_array__WEBPACK_IMPORTED_MODULE_0__);\n\nfunction _arrayWithoutHoles(arr) {\n if (_core_js_array_is_array__WEBPACK_IMPORTED_MODULE_0___default()(arr)) {\n for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) {\n arr2[i] = arr[i];\n }\n\n return arr2;\n }\n}//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvQGJhYmVsL3J1bnRpbWUtY29yZWpzMi9oZWxwZXJzL2VzbS9hcnJheVdpdGhvdXRIb2xlcy5qcy5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL25vZGVfbW9kdWxlcy9AYmFiZWwvcnVudGltZS1jb3JlanMyL2hlbHBlcnMvZXNtL2FycmF5V2l0aG91dEhvbGVzLmpzPzE0ZjgiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IF9BcnJheSRpc0FycmF5IGZyb20gXCIuLi8uLi9jb3JlLWpzL2FycmF5L2lzLWFycmF5XCI7XG5leHBvcnQgZGVmYXVsdCBmdW5jdGlvbiBfYXJyYXlXaXRob3V0SG9sZXMoYXJyKSB7XG4gIGlmIChfQXJyYXkkaXNBcnJheShhcnIpKSB7XG4gICAgZm9yICh2YXIgaSA9IDAsIGFycjIgPSBuZXcgQXJyYXkoYXJyLmxlbmd0aCk7IGkgPCBhcnIubGVuZ3RoOyBpKyspIHtcbiAgICAgIGFycjJbaV0gPSBhcnJbaV07XG4gICAgfVxuXG4gICAgcmV0dXJuIGFycjI7XG4gIH1cbn0iXSwibWFwcGluZ3MiOiJBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EiLCJzb3VyY2VSb290IjoiIn0=\n//# sourceURL=webpack-internal:///./node_modules/@babel/runtime-corejs2/helpers/esm/arrayWithoutHoles.js\n");
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/helpers/esm/iterableToArray.js":
/*!****************************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/helpers/esm/iterableToArray.js ***!
\****************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _iterableToArray; });\n/* harmony import */ var _core_js_array_from__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../core-js/array/from */ \"./node_modules/@babel/runtime-corejs2/core-js/array/from.js\");\n/* harmony import */ var _core_js_array_from__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_core_js_array_from__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _core_js_is_iterable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../core-js/is-iterable */ \"./node_modules/@babel/runtime-corejs2/core-js/is-iterable.js\");\n/* harmony import */ var _core_js_is_iterable__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_core_js_is_iterable__WEBPACK_IMPORTED_MODULE_1__);\n\n\nfunction _iterableToArray(iter) {\n if (_core_js_is_iterable__WEBPACK_IMPORTED_MODULE_1___default()(Object(iter)) || Object.prototype.toString.call(iter) === \"[object Arguments]\") return _core_js_array_from__WEBPACK_IMPORTED_MODULE_0___default()(iter);\n}//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvQGJhYmVsL3J1bnRpbWUtY29yZWpzMi9oZWxwZXJzL2VzbS9pdGVyYWJsZVRvQXJyYXkuanMuanMiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8vLi9ub2RlX21vZHVsZXMvQGJhYmVsL3J1bnRpbWUtY29yZWpzMi9oZWxwZXJzL2VzbS9pdGVyYWJsZVRvQXJyYXkuanM/Mzk1MyJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgX0FycmF5JGZyb20gZnJvbSBcIi4uLy4uL2NvcmUtanMvYXJyYXkvZnJvbVwiO1xuaW1wb3J0IF9pc0l0ZXJhYmxlIGZyb20gXCIuLi8uLi9jb3JlLWpzL2lzLWl0ZXJhYmxlXCI7XG5leHBvcnQgZGVmYXVsdCBmdW5jdGlvbiBfaXRlcmFibGVUb0FycmF5KGl0ZXIpIHtcbiAgaWYgKF9pc0l0ZXJhYmxlKE9iamVjdChpdGVyKSkgfHwgT2JqZWN0LnByb3RvdHlwZS50b1N0cmluZy5jYWxsKGl0ZXIpID09PSBcIltvYmplY3QgQXJndW1lbnRzXVwiKSByZXR1cm4gX0FycmF5JGZyb20oaXRlcik7XG59Il0sIm1hcHBpbmdzIjoiQUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBIiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./node_modules/@babel/runtime-corejs2/helpers/esm/iterableToArray.js\n");
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/helpers/esm/nonIterableSpread.js":
/*!******************************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/helpers/esm/nonIterableSpread.js ***!
\******************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _nonIterableSpread; });\nfunction _nonIterableSpread() {\n throw new TypeError(\"Invalid attempt to spread non-iterable instance\");\n}//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvQGJhYmVsL3J1bnRpbWUtY29yZWpzMi9oZWxwZXJzL2VzbS9ub25JdGVyYWJsZVNwcmVhZC5qcy5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL25vZGVfbW9kdWxlcy9AYmFiZWwvcnVudGltZS1jb3JlanMyL2hlbHBlcnMvZXNtL25vbkl0ZXJhYmxlU3ByZWFkLmpzPzRiMWEiXSwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGRlZmF1bHQgZnVuY3Rpb24gX25vbkl0ZXJhYmxlU3ByZWFkKCkge1xuICB0aHJvdyBuZXcgVHlwZUVycm9yKFwiSW52YWxpZCBhdHRlbXB0IHRvIHNwcmVhZCBub24taXRlcmFibGUgaW5zdGFuY2VcIik7XG59Il0sIm1hcHBpbmdzIjoiQUFBQTtBQUFBO0FBQUE7QUFDQTtBQUNBIiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./node_modules/@babel/runtime-corejs2/helpers/esm/nonIterableSpread.js\n");
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/helpers/esm/toConsumableArray.js":
/*!******************************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/helpers/esm/toConsumableArray.js ***!
\******************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _toConsumableArray; });\n/* harmony import */ var _arrayWithoutHoles__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./arrayWithoutHoles */ \"./node_modules/@babel/runtime-corejs2/helpers/esm/arrayWithoutHoles.js\");\n/* harmony import */ var _iterableToArray__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./iterableToArray */ \"./node_modules/@babel/runtime-corejs2/helpers/esm/iterableToArray.js\");\n/* harmony import */ var _nonIterableSpread__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./nonIterableSpread */ \"./node_modules/@babel/runtime-corejs2/helpers/esm/nonIterableSpread.js\");\n\n\n\nfunction _toConsumableArray(arr) {\n return Object(_arrayWithoutHoles__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(arr) || Object(_iterableToArray__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(arr) || Object(_nonIterableSpread__WEBPACK_IMPORTED_MODULE_2__[\"default\"])();\n}//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvQGJhYmVsL3J1bnRpbWUtY29yZWpzMi9oZWxwZXJzL2VzbS90b0NvbnN1bWFibGVBcnJheS5qcy5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL25vZGVfbW9kdWxlcy9AYmFiZWwvcnVudGltZS1jb3JlanMyL2hlbHBlcnMvZXNtL3RvQ29uc3VtYWJsZUFycmF5LmpzPzc1ZmMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IGFycmF5V2l0aG91dEhvbGVzIGZyb20gXCIuL2FycmF5V2l0aG91dEhvbGVzXCI7XG5pbXBvcnQgaXRlcmFibGVUb0FycmF5IGZyb20gXCIuL2l0ZXJhYmxlVG9BcnJheVwiO1xuaW1wb3J0IG5vbkl0ZXJhYmxlU3ByZWFkIGZyb20gXCIuL25vbkl0ZXJhYmxlU3ByZWFkXCI7XG5leHBvcnQgZGVmYXVsdCBmdW5jdGlvbiBfdG9Db25zdW1hYmxlQXJyYXkoYXJyKSB7XG4gIHJldHVybiBhcnJheVdpdGhvdXRIb2xlcyhhcnIpIHx8IGl0ZXJhYmxlVG9BcnJheShhcnIpIHx8IG5vbkl0ZXJhYmxlU3ByZWFkKCk7XG59Il0sIm1hcHBpbmdzIjoiQUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBIiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./node_modules/@babel/runtime-corejs2/helpers/esm/toConsumableArray.js\n");
/***/ }),
/***/ "./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/Index.vue?vue&type=script&lang=js&":
/*!************************************************************************************************************************************************************************************************************************************************************!*\
!*** ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/account/center/Index.vue?vue&type=script&lang=js& ***!
\************************************************************************************************************************************************************************************************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core_js_modules_es7_object_get_own_property_descriptors__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es7.object.get-own-property-descriptors */ \"./node_modules/core-js/modules/es7.object.get-own-property-descriptors.js\");\n/* harmony import */ var core_js_modules_es7_object_get_own_property_descriptors__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es7_object_get_own_property_descriptors__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/modules/web.dom.iterable */ \"./node_modules/core-js/modules/web.dom.iterable.js\");\n/* harmony import */ var core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_web_dom_iterable__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var core_js_modules_es6_object_keys__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! core-js/modules/es6.object.keys */ \"./node_modules/core-js/modules/es6.object.keys.js\");\n/* harmony import */ var core_js_modules_es6_object_keys__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es6_object_keys__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var _myProject_python_rasiberryPiWebManager_piboardpro_node_modules_babel_runtime_corejs2_helpers_esm_toConsumableArray__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./node_modules/@babel/runtime-corejs2/helpers/esm/toConsumableArray */ \"./node_modules/@babel/runtime-corejs2/helpers/esm/toConsumableArray.js\");\n/* harmony import */ var core_js_modules_es7_array_includes__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! core-js/modules/es7.array.includes */ \"./node_modules/core-js/modules/es7.array.includes.js\");\n/* harmony import */ var core_js_modules_es7_array_includes__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es7_array_includes__WEBPACK_IMPORTED_MODULE_4__);\n/* harmony import */ var core_js_modules_es6_string_includes__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! core-js/modules/es6.string.includes */ \"./node_modules/core-js/modules/es6.string.includes.js\");\n/* harmony import */ var core_js_modules_es6_string_includes__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es6_string_includes__WEBPACK_IMPORTED_MODULE_5__);\n/* harmony import */ var _myProject_python_rasiberryPiWebManager_piboardpro_node_modules_babel_runtime_corejs2_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./node_modules/@babel/runtime-corejs2/helpers/esm/defineProperty */ \"./node_modules/@babel/runtime-corejs2/helpers/esm/defineProperty.js\");\n/* harmony import */ var _layouts__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @/layouts */ \"./src/layouts/index.js\");\n/* harmony import */ var _page__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./page */ \"./src/views/account/center/page/index.js\");\n/* harmony import */ var vuex__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! vuex */ \"./node_modules/vuex/dist/vuex.esm.js\");\n\n\n\n\n\n\n\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(source, true).forEach(function (key) { Object(_myProject_python_rasiberryPiWebManager_piboardpro_node_modules_babel_runtime_corejs2_helpers_esm_defineProperty__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(source).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n components: {\n RouteView: _layouts__WEBPACK_IMPORTED_MODULE_7__[\"RouteView\"],\n PageView: _layouts__WEBPACK_IMPORTED_MODULE_7__[\"PageView\"],\n AppPage: _page__WEBPACK_IMPORTED_MODULE_8__[\"AppPage\"],\n ArticlePage: _page__WEBPACK_IMPORTED_MODULE_8__[\"ArticlePage\"],\n ProjectPage: _page__WEBPACK_IMPORTED_MODULE_8__[\"ProjectPage\"]\n },\n data: function data() {\n return {\n tags: ['很有想法的', '专注设计', '辣~', '大长腿', '川妹子', '海纳百川'],\n tagInputVisible: false,\n tagInputValue: '',\n teams: [],\n teamSpinning: true,\n tabListNoTitle: [{\n key: 'article',\n tab: '文章(8)'\n }, {\n key: 'app',\n tab: '应用(8)'\n }, {\n key: 'project',\n tab: '项目(8)'\n }],\n noTitleKey: 'app'\n };\n },\n mounted: function mounted() {\n this.getTeams();\n },\n methods: _objectSpread({}, Object(vuex__WEBPACK_IMPORTED_MODULE_9__[\"mapGetters\"])(['nickname', 'avatar']), {\n getTeams: function getTeams() {\n var _this = this;\n\n this.$http.get('/workplace/teams').then(function (res) {\n _this.teams = res.result;\n _this.teamSpinning = false;\n });\n },\n handleTabChange: function handleTabChange(key, type) {\n this[type] = key;\n },\n handleTagClose: function handleTagClose(removeTag) {\n var tags = this.tags.filter(function (tag) {\n return tag !== removeTag;\n });\n this.tags = tags;\n },\n showTagInput: function showTagInput() {\n var _this2 = this;\n\n this.tagInputVisible = true;\n this.$nextTick(function () {\n _this2.$refs.tagInput.focus();\n });\n },\n handleInputChange: function handleInputChange(e) {\n this.tagInputValue = e.target.value;\n },\n handleTagInputConfirm: function handleTagInputConfirm() {\n var inputValue = this.tagInputValue;\n var tags = this.tags;\n\n if (inputValue && !tags.includes(inputValue)) {\n tags = [].concat(Object(_myProject_python_rasiberryPiWebManager_piboardpro_node_modules_babel_runtime_corejs2_helpers_esm_toConsumableArray__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(tags), [inputValue]);\n }\n\n Object.assign(this, {\n tags: tags,\n tagInputVisible: false,\n tagInputValue: ''\n });\n }\n })\n});//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvY2FjaGUtbG9hZGVyL2Rpc3QvY2pzLmpzPyEuL25vZGVfbW9kdWxlcy9iYWJlbC1sb2FkZXIvbGliL2luZGV4LmpzIS4vbm9kZV9tb2R1bGVzL2NhY2hlLWxvYWRlci9kaXN0L2Nqcy5qcz8hLi9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvaW5kZXguanM/IS4vc3JjL3ZpZXdzL2FjY291bnQvY2VudGVyL0luZGV4LnZ1ZT92dWUmdHlwZT1zY3JpcHQmbGFuZz1qcyYuanMiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8vSW5kZXgudnVlP2I0ODQiXSwic291cmNlc0NvbnRlbnQiOlsiPHRlbXBsYXRlPlxuICA8ZGl2IGNsYXNzPVwicGFnZS1oZWFkZXItaW5kZXgtd2lkZSBwYWdlLWhlYWRlci13cmFwcGVyLWdyaWQtY29udGVudC1tYWluXCI+XG4gICAgPGEtcm93IDpndXR0ZXI9XCIyNFwiPlxuICAgICAgPGEtY29sIDptZD1cIjI0XCIgOmxnPVwiN1wiPlxuICAgICAgICA8YS1jYXJkIDpib3JkZXJlZD1cImZhbHNlXCI+XG4gICAgICAgICAgPGRpdiBjbGFzcz1cImFjY291bnQtY2VudGVyLWF2YXRhckhvbGRlclwiPlxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cImF2YXRhclwiPlxuICAgICAgICAgICAgICA8aW1nIDpzcmM9XCJhdmF0YXIoKVwiPlxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwidXNlcm5hbWVcIj57eyBuaWNrbmFtZSgpIH19PC9kaXY+XG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwiYmlvXCI+5rW357qz55m+5bed77yM5pyJ5a655LmD5aSnPC9kaXY+XG4gICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgPGRpdiBjbGFzcz1cImFjY291bnQtY2VudGVyLWRldGFpbFwiPlxuICAgICAgICAgICAgPHA+XG4gICAgICAgICAgICAgIDxpIGNsYXNzPVwidGl0bGVcIj48L2k+5Lqk5LqS5LiT5a62XG4gICAgICAgICAgICA8L3A+XG4gICAgICAgICAgICA8cD5cbiAgICAgICAgICAgICAgPGkgY2xhc3M9XCJncm91cFwiPjwvaT7omoLomoHph5HmnI3vvI3mn5Dmn5Dmn5DkuovkuJrnvqTvvI3mn5Dmn5DlubPlj7Dpg6jvvI3mn5Dmn5DmioDmnK/pg6jvvI1VRURcbiAgICAgICAgICAgIDwvcD5cbiAgICAgICAgICAgIDxwPlxuICAgICAgICAgICAgICA8aSBjbGFzcz1cImFkZHJlc3NcIj48L2k+XG4gICAgICAgICAgICAgIDxzcGFuPua1meaxn+ecgTwvc3Bhbj5cbiAgICAgICAgICAgICAgPHNwYW4+5p2t5bee5biCPC9zcGFuPlxuICAgICAgICAgICAgPC9wPlxuICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgIDxhLWRpdmlkZXIvPlxuXG4gICAgICAgICAgPGRpdiBjbGFzcz1cImFjY291bnQtY2VudGVyLXRhZ3NcIj5cbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJ0YWdzVGl0bGVcIj7moIfnrb48L2Rpdj5cbiAgICAgICAgICAgIDxkaXY+XG4gICAgICAgICAgICAgIDx0ZW1wbGF0ZSB2LWZvcj1cIih0YWcsIGluZGV4KSBpbiB0YWdzXCI+XG4gICAgICAgICAgICAgICAgPGEtdG9vbHRpcCB2LWlmPVwidGFnLmxlbmd0aCA+IDIwXCIgOmtleT1cInRhZ1wiIDp0aXRsZT1cInRhZ1wiPlxuICAgICAgICAgICAgICAgICAgPGEtdGFnXG4gICAgICAgICAgICAgICAgICAgIDprZXk9XCJ0YWdcIlxuICAgICAgICAgICAgICAgICAgICA6Y2xvc2FibGU9XCJpbmRleCAhPT0gMFwiXG4gICAgICAgICAgICAgICAgICAgIDphZnRlckNsb3NlPVwiKCkgPT4gaGFuZGxlVGFnQ2xvc2UodGFnKVwiXG4gICAgICAgICAgICAgICAgICA+e3sgYCR7dGFnLnNsaWNlKDAsIDIwKX0uLi5gIH19PC9hLXRhZz5cbiAgICAgICAgICAgICAgICA8L2EtdG9vbHRpcD5cbiAgICAgICAgICAgICAgICA8YS10YWdcbiAgICAgICAgICAgICAgICAgIHYtZWxzZVxuICAgICAgICAgICAgICAgICAgOmtleT1cInRhZ1wiXG4gICAgICAgICAgICAgICAgICA6Y2xvc2FibGU9XCJpbmRleCAhPT0gMFwiXG4gICAgICAgICAgICAgICAgICA6YWZ0ZXJDbG9zZT1cIigpID0+IGhhbmRsZVRhZ0Nsb3NlKHRhZylcIlxuICAgICAgICAgICAgICAgID57eyB0YWcgfX08L2EtdGFnPlxuICAgICAgICAgICAgICA8L3RlbXBsYXRlPlxuICAgICAgICAgICAgICA8YS1pbnB1dFxuICAgICAgICAgICAgICAgIHYtaWY9XCJ0YWdJbnB1dFZpc2libGVcIlxuICAgICAgICAgICAgICAgIHJlZj1cInRhZ0lucHV0XCJcbiAgICAgICAgICAgICAgICB0eXBlPVwidGV4dFwiXG4gICAgICAgICAgICAgICAgc2l6ZT1cInNtYWxsXCJcbiAgICAgICAgICAgICAgICA6c3R5bGU9XCJ7IHdpZHRoOiAnNzhweCcgfVwiXG4gICAgICAgICAgICAgICAgOnZhbHVlPVwidGFnSW5wdXRWYWx1ZVwiXG4gICAgICAgICAgICAgICAgQGNoYW5nZT1cImhhbmRsZUlucHV0Q2hhbmdlXCJcbiAgICAgICAgICAgICAgICBAYmx1cj1cImhhbmRsZVRhZ0lucHV0Q29uZmlybVwiXG4gICAgICAgICAgICAgICAgQGtleXVwLmVudGVyPVwiaGFuZGxlVGFnSW5wdXRDb25maXJtXCJcbiAgICAgICAgICAgICAgLz5cbiAgICAgICAgICAgICAgPGEtdGFnIHYtZWxzZSBAY2xpY2s9XCJzaG93VGFnSW5wdXRcIiBzdHlsZT1cImJhY2tncm91bmQ6ICNmZmY7IGJvcmRlclN0eWxlOiBkYXNoZWQ7XCI+XG4gICAgICAgICAgICAgICAgPGEtaWNvbiB0eXBlPVwicGx1c1wiLz5OZXcgVGFnXG4gICAgICAgICAgICAgIDwvYS10YWc+XG4gICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICA8YS1kaXZpZGVyIDpkYXNoZWQ9XCJ0cnVlXCIvPlxuXG4gICAgICAgICAgPGRpdiBjbGFzcz1cImFjY291bnQtY2VudGVyLXRlYW1cIj5cbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJ0ZWFtVGl0bGVcIj7lm6LpmJ88L2Rpdj5cbiAgICAgICAgICAgIDxhLXNwaW4gOnNwaW5uaW5nPVwidGVhbVNwaW5uaW5nXCI+XG4gICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJtZW1iZXJzXCI+XG4gICAgICAgICAgICAgICAgPGEtcm93PlxuICAgICAgICAgICAgICAgICAgPGEtY29sIDpzcGFuPVwiMTJcIiB2LWZvcj1cIihpdGVtLCBpbmRleCkgaW4gdGVhbXNcIiA6a2V5PVwiaW5kZXhcIj5cbiAgICAgICAgICAgICAgICAgICAgPGE+XG4gICAgICAgICAgICAgICAgICAgICAgPGEtYXZhdGFyIHNpemU9XCJzbWFsbFwiIDpzcmM9XCJpdGVtLmF2YXRhclwiLz5cbiAgICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cIm1lbWJlclwiPnt7IGl0ZW0ubmFtZSB9fTwvc3Bhbj5cbiAgICAgICAgICAgICAgICAgICAgPC9hPlxuICAgICAgICAgICAgICAgICAgPC9hLWNvbD5cbiAgICAgICAgICAgICAgICA8L2Etcm93PlxuICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgIDwvYS1zcGluPlxuICAgICAgICAgIDwvZGl2PlxuICAgICAgICA8L2EtY2FyZD5cbiAgICAgIDwvYS1jb2w+XG4gICAgICA8YS1jb2wgOm1kPVwiMjRcIiA6bGc9XCIxN1wiPlxuICAgICAgICA8YS1jYXJkXG4gICAgICAgICAgc3R5bGU9XCJ3aWR0aDoxMDAlXCJcbiAgICAgICAgICA6Ym9yZGVyZWQ9XCJmYWxzZVwiXG4gICAgICAgICAgOnRhYkxpc3Q9XCJ0YWJMaXN0Tm9UaXRsZVwiXG4gICAgICAgICAgOmFjdGl2ZVRhYktleT1cIm5vVGl0bGVLZXlcIlxuICAgICAgICAgIEB0YWJDaGFuZ2U9XCJrZXkgPT4gaGFuZGxlVGFiQ2hhbmdlKGtleSwgJ25vVGl0bGVLZXknKVwiXG4gICAgICAgID5cbiAgICAgICAgICA8YXJ0aWNsZS1wYWdlIHYtaWY9XCJub1RpdGxlS2V5ID09PSAnYXJ0aWNsZSdcIj48L2FydGljbGUtcGFnZT5cbiAgICAgICAgICA8YXBwLXBhZ2Ugdi1lbHNlLWlmPVwibm9UaXRsZUtleSA9PT0gJ2FwcCdcIj48L2FwcC1wYWdlPlxuICAgICAgICAgIDxwcm9qZWN0LXBhZ2Ugdi1lbHNlLWlmPVwibm9UaXRsZUtleSA9PT0gJ3Byb2plY3QnXCI+PC9wcm9qZWN0LXBhZ2U+XG4gICAgICAgIDwvYS1jYXJkPlxuICAgICAgPC9hLWNvbD5cbiAgICA8L2Etcm93PlxuICA8L2Rpdj5cbjwvdGVtcGxhdGU+XG5cbjxzY3JpcHQ+XG5pbXBvcnQgeyBQYWdlVmlldywgUm91dGVWaWV3IH0gZnJvbSAnQC9sYXlvdXRzJ1xuaW1wb3J0IHsgQXBwUGFnZSwgQXJ0aWNsZVBhZ2UsIFByb2plY3RQYWdlIH0gZnJvbSAnLi9wYWdlJ1xuXG5pbXBvcnQgeyBtYXBHZXR0ZXJzIH0gZnJvbSAndnVleCdcblxuZXhwb3J0IGRlZmF1bHQge1xuICBjb21wb25lbnRzOiB7XG4gICAgUm91dGVWaWV3LFxuICAgIFBhZ2VWaWV3LFxuICAgIEFwcFBhZ2UsXG4gICAgQXJ0aWNsZVBhZ2UsXG4gICAgUHJvamVjdFBhZ2VcbiAgfSxcbiAgZGF0YSAoKSB7XG4gICAgcmV0dXJuIHtcbiAgICAgIHRhZ3M6IFsn5b6I5pyJ5oOz5rOV55qEJywgJ+S4k+azqOiuvuiuoScsICfovqN+JywgJ+Wkp+mVv+iFvycsICflt53lprnlrZAnLCAn5rW357qz55m+5bedJ10sXG5cbiAgICAgIHRhZ0lucHV0VmlzaWJsZTogZmFsc2UsXG4gICAgICB0YWdJbnB1dFZhbHVlOiAnJyxcblxuICAgICAgdGVhbXM6IFtdLFxuICAgICAgdGVhbVNwaW5uaW5nOiB0cnVlLFxuXG4gICAgICB0YWJMaXN0Tm9UaXRsZTogW1xuICAgICAgICB7XG4gICAgICAgICAga2V5OiAnYXJ0aWNsZScsXG4gICAgICAgICAgdGFiOiAn5paH56ugKDgpJ1xuICAgICAgICB9LFxuICAgICAgICB7XG4gICAgICAgICAga2V5OiAnYXBwJyxcbiAgICAgICAgICB0YWI6ICflupTnlKgoOCknXG4gICAgICAgIH0sXG4gICAgICAgIHtcbiAgICAgICAgICBrZXk6ICdwcm9qZWN0JyxcbiAgICAgICAgICB0YWI6ICfpobnnm64oOCknXG4gICAgICAgIH1cbiAgICAgIF0sXG4gICAgICBub1RpdGxlS2V5OiAnYXBwJ1xuICAgIH1cbiAgfSxcbiAgbW91bnRlZCAoKSB7XG4gICAgdGhpcy5nZXRUZWFtcygpXG4gIH0sXG4gIG1ldGhvZHM6IHtcbiAgICAuLi5tYXBHZXR0ZXJzKFsnbmlja25hbWUnLCAnYXZhdGFyJ10pLFxuXG4gICAgZ2V0VGVhbXMgKCkge1xuICAgICAgdGhpcy4kaHR0cC5nZXQoJy93b3JrcGxhY2UvdGVhbXMnKS50aGVuKHJlcyA9PiB7XG4gICAgICAgIHRoaXMudGVhbXMgPSByZXMucmVzdWx0XG4gICAgICAgIHRoaXMudGVhbVNwaW5uaW5nID0gZmFsc2VcbiAgICAgIH0pXG4gICAgfSxcblxuICAgIGhhbmRsZVRhYkNoYW5nZSAoa2V5LCB0eXBlKSB7XG4gICAgICB0aGlzW3R5cGVdID0ga2V5XG4gICAgfSxcblxuICAgIGhhbmRsZVRhZ0Nsb3NlIChyZW1vdmVUYWcpIHtcbiAgICAgIGNvbnN0IHRhZ3MgPSB0aGlzLnRhZ3MuZmlsdGVyKHRhZyA9PiB0YWcgIT09IHJlbW92ZVRhZylcbiAgICAgIHRoaXMudGFncyA9IHRhZ3NcbiAgICB9LFxuXG4gICAgc2hvd1RhZ0lucHV0ICgpIHtcbiAgICAgIHRoaXMudGFnSW5wdXRWaXNpYmxlID0gdHJ1ZVxuICAgICAgdGhpcy4kbmV4dFRpY2soKCkgPT4ge1xuICAgICAgICB0aGlzLiRyZWZzLnRhZ0lucHV0LmZvY3VzKClcbiAgICAgIH0pXG4gICAgfSxcblxuICAgIGhhbmRsZUlucHV0Q2hhbmdlIChlKSB7XG4gICAgICB0aGlzLnRhZ0lucHV0VmFsdWUgPSBlLnRhcmdldC52YWx1ZVxuICAgIH0sXG5cbiAgICBoYW5kbGVUYWdJbnB1dENvbmZpcm0gKCkge1xuICAgICAgY29uc3QgaW5wdXRWYWx1ZSA9IHRoaXMudGFnSW5wdXRWYWx1ZVxuICAgICAgbGV0IHRhZ3MgPSB0aGlzLnRhZ3NcbiAgICAgIGlmIChpbnB1dFZhbHVlICYmICF0YWdzLmluY2x1ZGVzKGlucHV0VmFsdWUpKSB7XG4gICAgICAgIHRhZ3MgPSBbLi4udGFncywgaW5wdXRWYWx1ZV1cbiAgICAgIH1cblxuICAgICAgT2JqZWN0LmFzc2lnbih0aGlzLCB7XG4gICAgICAgIHRhZ3MsXG4gICAgICAgIHRhZ0lucHV0VmlzaWJsZTogZmFsc2UsXG4gICAgICAgIHRhZ0lucHV0VmFsdWU6ICcnXG4gICAgICB9KVxuICAgIH1cbiAgfVxufVxuPC9zY3JpcHQ+XG5cbjxzdHlsZSBsYW5nPVwibGVzc1wiIHNjb3BlZD5cbi5wYWdlLWhlYWRlci13cmFwcGVyLWdyaWQtY29udGVudC1tYWluIHtcbiAgd2lkdGg6IDEwMCU7XG4gIGhlaWdodDogMTAwJTtcbiAgbWluLWhlaWdodDogMTAwJTtcbiAgdHJhbnNpdGlvbjogMC4zcztcblxuICAuYWNjb3VudC1jZW50ZXItYXZhdGFySG9sZGVyIHtcbiAgICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gICAgbWFyZ2luLWJvdHRvbTogMjRweDtcblxuICAgICYgPiAuYXZhdGFyIHtcbiAgICAgIG1hcmdpbjogMCBhdXRvO1xuICAgICAgd2lkdGg6IDEwNHB4O1xuICAgICAgaGVpZ2h0OiAxMDRweDtcbiAgICAgIG1hcmdpbi1ib3R0b206IDIwcHg7XG4gICAgICBib3JkZXItcmFkaXVzOiA1MCU7XG4gICAgICBvdmVyZmxvdzogaGlkZGVuO1xuICAgICAgaW1nIHtcbiAgICAgICAgaGVpZ2h0OiAxMDAlO1xuICAgICAgICB3aWR0aDogMTAwJTtcbiAgICAgIH1cbiAgICB9XG5cbiAgICAudXNlcm5hbWUge1xuICAgICAgY29sb3I6IHJnYmEoMCwgMCwgMCwgMC44NSk7XG4gICAgICBmb250LXNpemU6IDIwcHg7XG4gICAgICBsaW5lLWhlaWdodDogMjhweDtcbiAgICAgIGZvbnQtd2VpZ2h0OiA1MDA7XG4gICAgICBtYXJnaW4tYm90dG9tOiA0cHg7XG4gICAgfVxuICB9XG5cbiAgLmFjY291bnQtY2VudGVyLWRldGFpbCB7XG4gICAgcCB7XG4gICAgICBtYXJnaW4tYm90dG9tOiA4cHg7XG4gICAgICBwYWRkaW5nLWxlZnQ6IDI2cHg7XG4gICAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgfVxuXG4gICAgaSB7XG4gICAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgICBoZWlnaHQ6IDE0cHg7XG4gICAgICB3aWR0aDogMTRweDtcbiAgICAgIGxlZnQ6IDA7XG4gICAgICB0b3A6IDRweDtcbiAgICAgIGJhY2tncm91bmQ6IHVybChodHRwczovL2d3LmFsaXBheW9iamVjdHMuY29tL3pvcy9ybXNwb3J0YWwvcEJqV3pWQUhuT090QVV2Wm1aZnkuc3ZnKTtcbiAgICB9XG5cbiAgICAudGl0bGUge1xuICAgICAgYmFja2dyb3VuZC1wb3NpdGlvbjogMCAwO1xuICAgIH1cbiAgICAuZ3JvdXAge1xuICAgICAgYmFja2dyb3VuZC1wb3NpdGlvbjogMCAtMjJweDtcbiAgICB9XG4gICAgLmFkZHJlc3Mge1xuICAgICAgYmFja2dyb3VuZC1wb3NpdGlvbjogMCAtNDRweDtcbiAgICB9XG4gIH1cblxuICAuYWNjb3VudC1jZW50ZXItdGFncyB7XG4gICAgLmFudC10YWcge1xuICAgICAgbWFyZ2luLWJvdHRvbTogOHB4O1xuICAgIH1cbiAgfVxuXG4gIC5hY2NvdW50LWNlbnRlci10ZWFtIHtcbiAgICAubWVtYmVycyB7XG4gICAgICBhIHtcbiAgICAgICAgZGlzcGxheTogYmxvY2s7XG4gICAgICAgIG1hcmdpbjogMTJweCAwO1xuICAgICAgICBsaW5lLWhlaWdodDogMjRweDtcbiAgICAgICAgaGVpZ2h0OiAyNHB4O1xuICAgICAgICAubWVtYmVyIHtcbiAgICAgICAgICBmb250LXNpemU6IDE0cHg7XG4gICAgICAgICAgY29sb3I6IHJnYmEoMCwgMCwgMCwgMC42NSk7XG4gICAgICAgICAgbGluZS1oZWlnaHQ6IDI0cHg7XG4gICAgICAgICAgbWF4LXdpZHRoOiAxMDBweDtcbiAgICAgICAgICB2ZXJ0aWNhbC1hbGlnbjogdG9wO1xuICAgICAgICAgIG1hcmdpbi1sZWZ0OiAxMnB4O1xuICAgICAgICAgIHRyYW5zaXRpb246IGFsbCAwLjNzO1xuICAgICAgICAgIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgICAgICAgfVxuICAgICAgICAmOmhvdmVyIHtcbiAgICAgICAgICBzcGFuIHtcbiAgICAgICAgICAgIGNvbG9yOiAjMTg5MGZmO1xuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgfVxuICAgIH1cbiAgfVxuXG4gIC50YWdzVGl0bGUsXG4gIC50ZWFtVGl0bGUge1xuICAgIGZvbnQtd2VpZ2h0OiA1MDA7XG4gICAgY29sb3I6IHJnYmEoMCwgMCwgMCwgMC44NSk7XG4gICAgbWFyZ2luLWJvdHRvbTogMTJweDtcbiAgfVxufVxuPC9zdHlsZT5cbiJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFrR0E7QUFDQTtBQUVBO0FBRUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFMQTtBQU9BO0FBQ0E7QUFDQTtBQUVBO0FBQ0E7QUFFQTtBQUNBO0FBRUE7QUFFQTtBQUNBO0FBRkE7QUFLQTtBQUNBO0FBRkE7QUFLQTtBQUNBO0FBRkE7QUFLQTtBQXZCQTtBQXlCQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBR0E7QUFBQTtBQUNBO0FBQUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUVBO0FBQ0E7QUFDQTtBQUVBO0FBQ0E7QUFBQTtBQUFBO0FBQ0E7QUFDQTtBQUVBO0FBQUE7QUFDQTtBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFFQTtBQUNBO0FBQ0E7QUFFQTtBQUNBO0FBQ0E7QUFDQTtBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFIQTtBQUtBO0FBMUNBO0FBdENBIiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/Index.vue?vue&type=script&lang=js&\n");
/***/ }),
/***/ "./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/App.vue?vue&type=script&lang=js&":
/*!***************************************************************************************************************************************************************************************************************************************************************!*\
!*** ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/account/center/page/App.vue?vue&type=script&lang=js& ***!
\***************************************************************************************************************************************************************************************************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\nvar dataSource = [];\n\nfor (var i = 0; i < 11; i++) {\n dataSource.push({\n title: 'Alipay',\n avatar: 'https://gw.alipayobjects.com/zos/rmsportal/WdGqmHpayyMjiEhcKoVE.png',\n activeUser: 17,\n newUser: 1700\n });\n}\n\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: 'Article',\n components: {},\n data: function data() {\n return {\n dataSource: dataSource\n };\n }\n});//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvY2FjaGUtbG9hZGVyL2Rpc3QvY2pzLmpzPyEuL25vZGVfbW9kdWxlcy9iYWJlbC1sb2FkZXIvbGliL2luZGV4LmpzIS4vbm9kZV9tb2R1bGVzL2NhY2hlLWxvYWRlci9kaXN0L2Nqcy5qcz8hLi9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvaW5kZXguanM/IS4vc3JjL3ZpZXdzL2FjY291bnQvY2VudGVyL3BhZ2UvQXBwLnZ1ZT92dWUmdHlwZT1zY3JpcHQmbGFuZz1qcyYuanMiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8vQXBwLnZ1ZT8yMzRlIl0sInNvdXJjZXNDb250ZW50IjpbIjx0ZW1wbGF0ZT5cbiAgPGRpdiBjbGFzcz1cImFwcC1saXN0XCI+XG4gICAgPGEtbGlzdFxuICAgICAgOmdyaWQ9XCJ7IGd1dHRlcjogMjQsIGxnOiAzLCBtZDogMiwgc206IDEsIHhzOiAxIH1cIlxuICAgICAgOmRhdGFTb3VyY2U9XCJkYXRhU291cmNlXCI+XG4gICAgICA8YS1saXN0LWl0ZW0gc2xvdD1cInJlbmRlckl0ZW1cIiBzbG90LXNjb3BlPVwiaXRlbVwiPlxuICAgICAgICA8YS1jYXJkIDpob3ZlcmFibGU9XCJ0cnVlXCI+XG4gICAgICAgICAgPGEtY2FyZC1tZXRhPlxuICAgICAgICAgICAgPGRpdiBzdHlsZT1cIm1hcmdpbi1ib3R0b206IDNweFwiIHNsb3Q9XCJ0aXRsZVwiPnt7IGl0ZW0udGl0bGUgfX08L2Rpdj5cbiAgICAgICAgICAgIDxhLWF2YXRhciBjbGFzcz1cImNhcmQtYXZhdGFyXCIgc2xvdD1cImF2YXRhclwiIDpzcmM9XCJpdGVtLmF2YXRhclwiIHNpemU9XCJzbWFsbFwiLz5cbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJtZXRhLWNhcmRJbmZvXCIgc2xvdD1cImRlc2NyaXB0aW9uXCI+XG4gICAgICAgICAgICAgIDxkaXY+XG4gICAgICAgICAgICAgICAgPHA+5rS76LeD55So5oi3PC9wPlxuICAgICAgICAgICAgICAgIDxwPlxuICAgICAgICAgICAgICAgICAgPHNwYW4+e3sgaXRlbS5hY3RpdmVVc2VyIH19PHNwYW4+5LiHPC9zcGFuPjwvc3Bhbj5cbiAgICAgICAgICAgICAgICA8L3A+XG4gICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgICA8ZGl2PlxuICAgICAgICAgICAgICAgIDxwPuaWsOWinueUqOaItzwvcD5cbiAgICAgICAgICAgICAgICA8cD57eyBpdGVtLm5ld1VzZXIgfCBOdW1iZXJGb3JtYXQgfX08L3A+XG4gICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgPC9hLWNhcmQtbWV0YT5cbiAgICAgICAgICA8dGVtcGxhdGUgY2xhc3M9XCJhbnQtY2FyZC1hY3Rpb25zXCIgc2xvdD1cImFjdGlvbnNcIj5cbiAgICAgICAgICAgIDxhPlxuICAgICAgICAgICAgICA8YS1pY29uIHR5cGU9XCJkb3dubG9hZFwiLz5cbiAgICAgICAgICAgIDwvYT5cbiAgICAgICAgICAgIDxhPlxuICAgICAgICAgICAgICA8YS1pY29uIHR5cGU9XCJlZGl0XCIvPlxuICAgICAgICAgICAgPC9hPlxuICAgICAgICAgICAgPGE+XG4gICAgICAgICAgICAgIDxhLWljb24gdHlwZT1cInNoYXJlLWFsdFwiLz5cbiAgICAgICAgICAgIDwvYT5cbiAgICAgICAgICAgIDxhPlxuICAgICAgICAgICAgICA8YS1kcm9wZG93bj5cbiAgICAgICAgICAgICAgICA8YSBjbGFzcz1cImFudC1kcm9wZG93bi1saW5rXCIgaHJlZj1cImphdmFzY3JpcHQ6O1wiPlxuICAgICAgICAgICAgICAgICAgPGEtaWNvbiB0eXBlPVwiZWxsaXBzaXNcIi8+XG4gICAgICAgICAgICAgICAgPC9hPlxuICAgICAgICAgICAgICAgIDxhLW1lbnUgc2xvdD1cIm92ZXJsYXlcIj5cbiAgICAgICAgICAgICAgICAgIDxhLW1lbnUtaXRlbT5cbiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj1cImphdmFzY3JpcHQ6O1wiPjFzdCBtZW51IGl0ZW08L2E+XG4gICAgICAgICAgICAgICAgICA8L2EtbWVudS1pdGVtPlxuICAgICAgICAgICAgICAgICAgPGEtbWVudS1pdGVtPlxuICAgICAgICAgICAgICAgICAgICA8YSBocmVmPVwiamF2YXNjcmlwdDo7XCI+Mm5kIG1lbnUgaXRlbTwvYT5cbiAgICAgICAgICAgICAgICAgIDwvYS1tZW51LWl0ZW0+XG4gICAgICAgICAgICAgICAgICA8YS1tZW51LWl0ZW0+XG4gICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9XCJqYXZhc2NyaXB0OjtcIj4zcmQgbWVudSBpdGVtPC9hPlxuICAgICAgICAgICAgICAgICAgPC9hLW1lbnUtaXRlbT5cbiAgICAgICAgICAgICAgICA8L2EtbWVudT5cbiAgICAgICAgICAgICAgPC9hLWRyb3Bkb3duPlxuICAgICAgICAgICAgPC9hPlxuICAgICAgICAgIDwvdGVtcGxhdGU+XG4gICAgICAgIDwvYS1jYXJkPlxuICAgICAgPC9hLWxpc3QtaXRlbT5cbiAgICA8L2EtbGlzdD5cblxuICA8L2Rpdj5cbjwvdGVtcGxhdGU+XG5cbjxzY3JpcHQ+XG5jb25zdCBkYXRhU291cmNlID0gW11cbmZvciAobGV0IGkgPSAwOyBpIDwgMTE7IGkrKykge1xuICBkYXRhU291cmNlLnB1c2goe1xuICAgIHRpdGxlOiAnQWxpcGF5JyxcbiAgICBhdmF0YXI6ICdodHRwczovL2d3LmFsaXBheW9iamVjdHMuY29tL3pvcy9ybXNwb3J0YWwvV2RHcW1IcGF5eU1qaUVoY0tvVkUucG5nJyxcbiAgICBhY3RpdmVVc2VyOiAxNyxcbiAgICBuZXdVc2VyOiAxNzAwXG4gIH0pXG59XG5cbmV4cG9ydCBkZWZhdWx0IHtcbiAgbmFtZTogJ0FydGljbGUnLFxuICBjb21wb25lbnRzOiB7fSxcbiAgZGF0YSAoKSB7XG4gICAgcmV0dXJuIHtcbiAgICAgIGRhdGFTb3VyY2VcbiAgICB9XG4gIH1cbn1cbjwvc2NyaXB0PlxuXG48c3R5bGUgbGFuZz1cImxlc3NcIiBzY29wZWQ+XG5cbiAgLmFwcC1saXN0IHtcblxuICAgIC5tZXRhLWNhcmRJbmZvIHtcbiAgICAgIHpvb206IDE7XG4gICAgICBtYXJnaW4tdG9wOiAxNnB4O1xuXG4gICAgICA+IGRpdiB7XG4gICAgICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICAgICAgdGV4dC1hbGlnbjogbGVmdDtcbiAgICAgICAgZmxvYXQ6IGxlZnQ7XG4gICAgICAgIHdpZHRoOiA1MCU7XG5cbiAgICAgICAgcCB7XG4gICAgICAgICAgbGluZS1oZWlnaHQ6IDMycHg7XG4gICAgICAgICAgZm9udC1zaXplOiAyNHB4O1xuICAgICAgICAgIG1hcmdpbjogMDtcblxuICAgICAgICAgICY6Zmlyc3QtY2hpbGQge1xuICAgICAgICAgICAgY29sb3I6IHJnYmEoMCwgMCwgMCwgLjQ1KTtcbiAgICAgICAgICAgIGZvbnQtc2l6ZTogMTJweDtcbiAgICAgICAgICAgIGxpbmUtaGVpZ2h0OiAyMHB4O1xuICAgICAgICAgICAgbWFyZ2luLWJvdHRvbTogNHB4O1xuICAgICAgICAgIH1cbiAgICAgICAgfVxuXG4gICAgICB9XG4gICAgfVxuICB9XG5cbjwvc3R5bGU+XG4iXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQTREQTtBQUNBO0FBQUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBSkE7QUFNQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBREE7QUFHQTtBQVBBIiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/App.vue?vue&type=script&lang=js&\n");
/***/ }),
/***/ "./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/Article.vue?vue&type=script&lang=js&":
/*!*******************************************************************************************************************************************************************************************************************************************************************!*\
!*** ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/account/center/page/Article.vue?vue&type=script&lang=js& ***!
\*******************************************************************************************************************************************************************************************************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @/components */ \"./src/components/index.js\");\n/* harmony import */ var _views_list_search_components_IconText__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @/views/list/search/components/IconText */ \"./src/views/list/search/components/IconText.vue\");\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: 'Article',\n components: {\n IconText: _views_list_search_components_IconText__WEBPACK_IMPORTED_MODULE_1__[\"default\"],\n ArticleListContent: _components__WEBPACK_IMPORTED_MODULE_0__[\"ArticleListContent\"]\n },\n data: function data() {\n return {\n loading: true,\n loadingMore: false,\n data: []\n };\n },\n mounted: function mounted() {\n this.getList();\n },\n methods: {\n getList: function getList() {\n var _this = this;\n\n this.$http.get('/list/article').then(function (res) {\n console.log('res', res);\n _this.data = res.result;\n _this.loading = false;\n });\n },\n loadMore: function loadMore() {\n var _this2 = this;\n\n this.loadingMore = true;\n this.$http.get('/list/article').then(function (res) {\n _this2.data = _this2.data.concat(res.result);\n }).finally(function () {\n _this2.loadingMore = false;\n });\n }\n }\n});//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvY2FjaGUtbG9hZGVyL2Rpc3QvY2pzLmpzPyEuL25vZGVfbW9kdWxlcy9iYWJlbC1sb2FkZXIvbGliL2luZGV4LmpzIS4vbm9kZV9tb2R1bGVzL2NhY2hlLWxvYWRlci9kaXN0L2Nqcy5qcz8hLi9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvaW5kZXguanM/IS4vc3JjL3ZpZXdzL2FjY291bnQvY2VudGVyL3BhZ2UvQXJ0aWNsZS52dWU/dnVlJnR5cGU9c2NyaXB0Jmxhbmc9anMmLmpzIiwic291cmNlcyI6WyJ3ZWJwYWNrOi8vL0FydGljbGUudnVlPzg0YzUiXSwic291cmNlc0NvbnRlbnQiOlsiPHRlbXBsYXRlPlxuICA8YS1saXN0XG4gICAgc2l6ZT1cImxhcmdlXCJcbiAgICByb3dLZXk9XCJpZFwiXG4gICAgOmxvYWRpbmc9XCJsb2FkaW5nXCJcbiAgICBpdGVtTGF5b3V0PVwidmVydGljYWxcIlxuICAgIDpkYXRhU291cmNlPVwiZGF0YVwiXG4gID5cbiAgICA8YS1saXN0LWl0ZW0gOmtleT1cIml0ZW0uaWRcIiBzbG90PVwicmVuZGVySXRlbVwiIHNsb3Qtc2NvcGU9XCJpdGVtXCI+XG4gICAgICA8dGVtcGxhdGUgc2xvdD1cImFjdGlvbnNcIj5cbiAgICAgICAgPGljb24tdGV4dCB0eXBlPVwic3Rhci1vXCIgOnRleHQ9XCJpdGVtLnN0YXJcIiAvPlxuICAgICAgICA8aWNvbi10ZXh0IHR5cGU9XCJsaWtlLW9cIiA6dGV4dD1cIml0ZW0ubGlrZVwiIC8+XG4gICAgICAgIDxpY29uLXRleHQgdHlwZT1cIm1lc3NhZ2VcIiA6dGV4dD1cIml0ZW0ubWVzc2FnZVwiIC8+XG4gICAgICA8L3RlbXBsYXRlPlxuICAgICAgPGEtbGlzdC1pdGVtLW1ldGE+XG4gICAgICAgIDxhIHNsb3Q9XCJ0aXRsZVwiIGhyZWY9XCJodHRwczovL3Z1ZS5hbnQuZGVzaWduL1wiPnt7IGl0ZW0udGl0bGUgfX08L2E+XG4gICAgICAgIDx0ZW1wbGF0ZSBzbG90PVwiZGVzY3JpcHRpb25cIj5cbiAgICAgICAgICA8c3Bhbj5cbiAgICAgICAgICAgIDxhLXRhZz5BbnQgRGVzaWduPC9hLXRhZz5cbiAgICAgICAgICAgIDxhLXRhZz7orr7orqHor63oqIA8L2EtdGFnPlxuICAgICAgICAgICAgPGEtdGFnPuiaguiagemHkeacjTwvYS10YWc+XG4gICAgICAgICAgPC9zcGFuPlxuICAgICAgICA8L3RlbXBsYXRlPlxuICAgICAgPC9hLWxpc3QtaXRlbS1tZXRhPlxuICAgICAgPGFydGljbGUtbGlzdC1jb250ZW50IDpkZXNjcmlwdGlvbj1cIml0ZW0uZGVzY3JpcHRpb25cIiA6b3duZXI9XCJpdGVtLm93bmVyXCIgOmF2YXRhcj1cIml0ZW0uYXZhdGFyXCIgOmhyZWY9XCJpdGVtLmhyZWZcIiA6dXBkYXRlQXQ9XCJpdGVtLnVwZGF0ZWRBdFwiIC8+XG4gICAgPC9hLWxpc3QtaXRlbT5cbiAgICA8ZGl2IHNsb3Q9XCJmb290ZXJcIiB2LWlmPVwiZGF0YS5sZW5ndGggPiAwXCIgc3R5bGU9XCJ0ZXh0LWFsaWduOiBjZW50ZXI7IG1hcmdpbi10b3A6IDE2cHg7XCI+XG4gICAgICA8YS1idXR0b24gQGNsaWNrPVwibG9hZE1vcmVcIiA6bG9hZGluZz1cImxvYWRpbmdNb3JlXCI+5Yqg6L295pu05aSaPC9hLWJ1dHRvbj5cbiAgICA8L2Rpdj5cbiAgPC9hLWxpc3Q+XG48L3RlbXBsYXRlPlxuXG48c2NyaXB0PlxuaW1wb3J0IHsgQXJ0aWNsZUxpc3RDb250ZW50IH0gZnJvbSAnQC9jb21wb25lbnRzJ1xuaW1wb3J0IEljb25UZXh0IGZyb20gJ0Avdmlld3MvbGlzdC9zZWFyY2gvY29tcG9uZW50cy9JY29uVGV4dCdcblxuZXhwb3J0IGRlZmF1bHQge1xuICBuYW1lOiAnQXJ0aWNsZScsXG4gIGNvbXBvbmVudHM6IHtcbiAgICBJY29uVGV4dCxcbiAgICBBcnRpY2xlTGlzdENvbnRlbnRcbiAgfSxcbiAgZGF0YSAoKSB7XG4gICAgcmV0dXJuIHtcbiAgICAgIGxvYWRpbmc6IHRydWUsXG4gICAgICBsb2FkaW5nTW9yZTogZmFsc2UsXG4gICAgICBkYXRhOiBbXVxuICAgIH1cbiAgfSxcbiAgbW91bnRlZCAoKSB7XG4gICAgdGhpcy5nZXRMaXN0KClcbiAgfSxcbiAgbWV0aG9kczoge1xuICAgIGdldExpc3QgKCkge1xuICAgICAgdGhpcy4kaHR0cC5nZXQoJy9saXN0L2FydGljbGUnKS50aGVuKHJlcyA9PiB7XG4gICAgICAgIGNvbnNvbGUubG9nKCdyZXMnLCByZXMpXG4gICAgICAgIHRoaXMuZGF0YSA9IHJlcy5yZXN1bHRcbiAgICAgICAgdGhpcy5sb2FkaW5nID0gZmFsc2VcbiAgICAgIH0pXG4gICAgfSxcbiAgICBsb2FkTW9yZSAoKSB7XG4gICAgICB0aGlzLmxvYWRpbmdNb3JlID0gdHJ1ZVxuICAgICAgdGhpcy4kaHR0cC5nZXQoJy9saXN0L2FydGljbGUnKS50aGVuKHJlcyA9PiB7XG4gICAgICAgIHRoaXMuZGF0YSA9IHRoaXMuZGF0YS5jb25jYXQocmVzLnJlc3VsdClcbiAgICAgIH0pLmZpbmFsbHkoKCkgPT4ge1xuICAgICAgICB0aGlzLmxvYWRpbmdNb3JlID0gZmFsc2VcbiAgICAgIH0pXG4gICAgfVxuICB9XG59XG48L3NjcmlwdD5cblxuPHN0eWxlIHNjb3BlZD5cblxuPC9zdHlsZT5cbiJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFpQ0E7QUFDQTtBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFGQTtBQUlBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFIQTtBQUtBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUFBO0FBQ0E7QUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUFBO0FBQ0E7QUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQWZBO0FBaEJBIiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/Article.vue?vue&type=script&lang=js&\n");
/***/ }),
/***/ "./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/Project.vue?vue&type=script&lang=js&":
/*!*******************************************************************************************************************************************************************************************************************************************************************!*\
!*** ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/account/center/page/Project.vue?vue&type=script&lang=js& ***!
\*******************************************************************************************************************************************************************************************************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var moment__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! moment */ \"./node_modules/moment/moment.js\");\n/* harmony import */ var moment__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(moment__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _components__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @/components */ \"./src/components/index.js\");\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n\n\nvar TagSelectOption = _components__WEBPACK_IMPORTED_MODULE_1__[\"TagSelect\"].Option;\nvar AvatarListItem = _components__WEBPACK_IMPORTED_MODULE_1__[\"AvatarList\"].AvatarItem;\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: 'Project',\n components: {\n AvatarList: _components__WEBPACK_IMPORTED_MODULE_1__[\"AvatarList\"],\n AvatarListItem: AvatarListItem,\n Ellipsis: _components__WEBPACK_IMPORTED_MODULE_1__[\"Ellipsis\"],\n TagSelect: _components__WEBPACK_IMPORTED_MODULE_1__[\"TagSelect\"],\n TagSelectOption: TagSelectOption,\n StandardFormRow: _components__WEBPACK_IMPORTED_MODULE_1__[\"StandardFormRow\"]\n },\n data: function data() {\n return {\n data: [],\n form: this.$form.createForm(this),\n loading: true\n };\n },\n filters: {\n fromNow: function fromNow(date) {\n return moment__WEBPACK_IMPORTED_MODULE_0___default()(date).fromNow();\n }\n },\n mounted: function mounted() {\n this.getList();\n },\n methods: {\n handleChange: function handleChange(value) {\n console.log(\"selected \".concat(value));\n },\n getList: function getList() {\n var _this = this;\n\n this.$http.get('/list/article', {\n params: {\n count: 8\n }\n }).then(function (res) {\n console.log('res', res);\n _this.data = res.result;\n _this.loading = false;\n });\n }\n }\n});//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvY2FjaGUtbG9hZGVyL2Rpc3QvY2pzLmpzPyEuL25vZGVfbW9kdWxlcy9iYWJlbC1sb2FkZXIvbGliL2luZGV4LmpzIS4vbm9kZV9tb2R1bGVzL2NhY2hlLWxvYWRlci9kaXN0L2Nqcy5qcz8hLi9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvaW5kZXguanM/IS4vc3JjL3ZpZXdzL2FjY291bnQvY2VudGVyL3BhZ2UvUHJvamVjdC52dWU/dnVlJnR5cGU9c2NyaXB0Jmxhbmc9anMmLmpzIiwic291cmNlcyI6WyJ3ZWJwYWNrOi8vL1Byb2plY3QudnVlPzIxNDMiXSwic291cmNlc0NvbnRlbnQiOlsiPHRlbXBsYXRlPlxuICA8ZGl2IGNsYXNzPVwiYW50LXByby1wYWdlcy1hY2NvdW50LXByb2plY3RzLWNhcmRMaXN0XCI+XG4gICAgPGEtbGlzdCA6bG9hZGluZz1cImxvYWRpbmdcIiA6ZGF0YS1zb3VyY2U9XCJkYXRhXCIgOmdyaWQ9XCJ7IGd1dHRlcjogMjQsIHh4bDogMywgeGw6IDIsIGxnOiAyLCBtZDogMiwgc206IDIsIHhzOiAxIH1cIj5cbiAgICAgIDxhLWxpc3QtaXRlbSBzbG90PVwicmVuZGVySXRlbVwiIHNsb3Qtc2NvcGU9XCJpdGVtXCI+XG4gICAgICAgIDxhLWNhcmQgY2xhc3M9XCJhbnQtcHJvLXBhZ2VzLWFjY291bnQtcHJvamVjdHMtY2FyZFwiIGhvdmVyYWJsZT5cbiAgICAgICAgICA8aW1nIHNsb3Q9XCJjb3ZlclwiIDpzcmM9XCJpdGVtLmNvdmVyXCIgOmFsdD1cIml0ZW0udGl0bGVcIiAvPlxuICAgICAgICAgIDxhLWNhcmQtbWV0YSA6dGl0bGU9XCJpdGVtLnRpdGxlXCI+XG4gICAgICAgICAgICA8dGVtcGxhdGUgc2xvdD1cImRlc2NyaXB0aW9uXCI+XG4gICAgICAgICAgICAgIDxlbGxpcHNpcyA6bGVuZ3RoPVwiNTBcIj57eyBpdGVtLmRlc2NyaXB0aW9uIH19PC9lbGxpcHNpcz5cbiAgICAgICAgICAgIDwvdGVtcGxhdGU+XG4gICAgICAgICAgPC9hLWNhcmQtbWV0YT5cbiAgICAgICAgICA8ZGl2IGNsYXNzPVwiY2FyZEl0ZW1Db250ZW50XCI+XG4gICAgICAgICAgICA8c3Bhbj57eyBpdGVtLnVwZGF0ZWRBdCB8IGZyb21Ob3cgfX08L3NwYW4+XG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwiYXZhdGFyTGlzdFwiPlxuICAgICAgICAgICAgICA8YXZhdGFyLWxpc3Qgc2l6ZT1cIm1pbmlcIj5cbiAgICAgICAgICAgICAgICA8YXZhdGFyLWxpc3QtaXRlbVxuICAgICAgICAgICAgICAgICAgdi1mb3I9XCIobWVtYmVyLCBpKSBpbiBpdGVtLm1lbWJlcnNcIlxuICAgICAgICAgICAgICAgICAgOmtleT1cImAke2l0ZW0uaWR9LWF2YXRhci0ke2l9YFwiXG4gICAgICAgICAgICAgICAgICA6c3JjPVwibWVtYmVyLmF2YXRhclwiXG4gICAgICAgICAgICAgICAgICA6dGlwcz1cIm1lbWJlci5uYW1lXCJcbiAgICAgICAgICAgICAgICAvPlxuICAgICAgICAgICAgICA8L2F2YXRhci1saXN0PlxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgPC9kaXY+XG4gICAgICAgIDwvYS1jYXJkPlxuICAgICAgPC9hLWxpc3QtaXRlbT5cbiAgICA8L2EtbGlzdD5cbiAgPC9kaXY+XG48L3RlbXBsYXRlPlxuXG48c2NyaXB0PlxuaW1wb3J0IG1vbWVudCBmcm9tICdtb21lbnQnXG5pbXBvcnQgeyBUYWdTZWxlY3QsIFN0YW5kYXJkRm9ybVJvdywgRWxsaXBzaXMsIEF2YXRhckxpc3QgfSBmcm9tICdAL2NvbXBvbmVudHMnXG5jb25zdCBUYWdTZWxlY3RPcHRpb24gPSBUYWdTZWxlY3QuT3B0aW9uXG5jb25zdCBBdmF0YXJMaXN0SXRlbSA9IEF2YXRhckxpc3QuQXZhdGFySXRlbVxuXG5leHBvcnQgZGVmYXVsdCB7XG4gIG5hbWU6ICdQcm9qZWN0JyxcbiAgY29tcG9uZW50czoge1xuICAgIEF2YXRhckxpc3QsXG4gICAgQXZhdGFyTGlzdEl0ZW0sXG4gICAgRWxsaXBzaXMsXG4gICAgVGFnU2VsZWN0LFxuICAgIFRhZ1NlbGVjdE9wdGlvbixcbiAgICBTdGFuZGFyZEZvcm1Sb3dcbiAgfSxcbiAgZGF0YSAoKSB7XG4gICAgcmV0dXJuIHtcbiAgICAgIGRhdGE6IFtdLFxuICAgICAgZm9ybTogdGhpcy4kZm9ybS5jcmVhdGVGb3JtKHRoaXMpLFxuICAgICAgbG9hZGluZzogdHJ1ZVxuICAgIH1cbiAgfSxcbiAgZmlsdGVyczoge1xuICAgIGZyb21Ob3cgKGRhdGUpIHtcbiAgICAgIHJldHVybiBtb21lbnQoZGF0ZSkuZnJvbU5vdygpXG4gICAgfVxuICB9LFxuICBtb3VudGVkICgpIHtcbiAgICB0aGlzLmdldExpc3QoKVxuICB9LFxuICBtZXRob2RzOiB7XG4gICAgaGFuZGxlQ2hhbmdlICh2YWx1ZSkge1xuICAgICAgY29uc29sZS5sb2coYHNlbGVjdGVkICR7dmFsdWV9YClcbiAgICB9LFxuICAgIGdldExpc3QgKCkge1xuICAgICAgdGhpcy4kaHR0cC5nZXQoJy9saXN0L2FydGljbGUnLCB7IHBhcmFtczogeyBjb3VudDogOCB9IH0pLnRoZW4ocmVzID0+IHtcbiAgICAgICAgY29uc29sZS5sb2coJ3JlcycsIHJlcylcbiAgICAgICAgdGhpcy5kYXRhID0gcmVzLnJlc3VsdFxuICAgICAgICB0aGlzLmxvYWRpbmcgPSBmYWxzZVxuICAgICAgfSlcbiAgICB9XG4gIH1cbn1cbjwvc2NyaXB0PlxuXG48c3R5bGUgbGFuZz1cImxlc3NcIiBzY29wZWQ+XG4gIC5hbnQtcHJvLXBhZ2VzLWFjY291bnQtcHJvamVjdHMtY2FyZExpc3Qge1xuICAgIG1hcmdpbi10b3A6IDI0cHg7XG5cbiAgICAvZGVlcC8gLmFudC1jYXJkLW1ldGEtdGl0bGUge1xuICAgICAgbWFyZ2luLWJvdHRvbTogNHB4O1xuICAgIH1cblxuICAgIC9kZWVwLyAuYW50LWNhcmQtbWV0YS1kZXNjcmlwdGlvbiB7XG4gICAgICBoZWlnaHQ6IDQ0cHg7XG4gICAgICBvdmVyZmxvdzogaGlkZGVuO1xuICAgICAgbGluZS1oZWlnaHQ6IDIycHg7XG4gICAgfVxuXG4gICAgLmNhcmRJdGVtQ29udGVudCB7XG4gICAgICBkaXNwbGF5OiBmbGV4O1xuICAgICAgaGVpZ2h0OiAyMHB4O1xuICAgICAgbWFyZ2luLXRvcDogMTZweDtcbiAgICAgIG1hcmdpbi1ib3R0b206IC00cHg7XG4gICAgICBsaW5lLWhlaWdodDogMjBweDtcblxuICAgICAgPiBzcGFuIHtcbiAgICAgICAgZmxleDogMSAxO1xuICAgICAgICBjb2xvcjogcmdiYSgwLDAsMCwuNDUpO1xuICAgICAgICBmb250LXNpemU6IDEycHg7XG4gICAgICB9XG5cbiAgICAgIC9kZWVwLyAuYW50LXByby1hdmF0YXItbGlzdCB7XG4gICAgICAgIGZsZXg6IDAgMSBhdXRvO1xuICAgICAgfVxuICAgIH1cbiAgfVxuPC9zdHlsZT5cbiJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQStCQTtBQUNBO0FBQ0E7QUFDQTtBQUVBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQU5BO0FBUUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUhBO0FBS0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUhBO0FBS0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUFBO0FBQ0E7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQVZBO0FBekJBIiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/Project.vue?vue&type=script&lang=js&\n");
/***/ }),
/***/ "./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/list/search/components/IconText.vue?vue&type=script&lang=js&":
/*!***********************************************************************************************************************************************************************************************************************************************************************!*\
!*** ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/list/search/components/IconText.vue?vue&type=script&lang=js& ***!
\***********************************************************************************************************************************************************************************************************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core_js_modules_es6_number_constructor__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es6.number.constructor */ \"./node_modules/core-js/modules/es6.number.constructor.js\");\n/* harmony import */ var core_js_modules_es6_number_constructor__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es6_number_constructor__WEBPACK_IMPORTED_MODULE_0__);\n\n//\n//\n//\n//\n//\n//\n//\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: 'IconText',\n props: {\n 'type': {\n type: String,\n required: true\n },\n text: {\n type: [String, Number],\n required: true\n }\n }\n});//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvY2FjaGUtbG9hZGVyL2Rpc3QvY2pzLmpzPyEuL25vZGVfbW9kdWxlcy9iYWJlbC1sb2FkZXIvbGliL2luZGV4LmpzIS4vbm9kZV9tb2R1bGVzL2NhY2hlLWxvYWRlci9kaXN0L2Nqcy5qcz8hLi9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvaW5kZXguanM/IS4vc3JjL3ZpZXdzL2xpc3Qvc2VhcmNoL2NvbXBvbmVudHMvSWNvblRleHQudnVlP3Z1ZSZ0eXBlPXNjcmlwdCZsYW5nPWpzJi5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy9JY29uVGV4dC52dWU/MWRkOCJdLCJzb3VyY2VzQ29udGVudCI6WyI8dGVtcGxhdGU+XG4gIDxzcGFuPlxuICAgIDxhLWljb24gOnR5cGU9XCJ0eXBlXCIgc3R5bGU9XCJtYXJnaW4tcmlnaHQ6IDhweFwiIC8+XG4gICAge3sgdGV4dCB9fVxuICA8L3NwYW4+XG48L3RlbXBsYXRlPlxuXG48c2NyaXB0PlxuZXhwb3J0IGRlZmF1bHQge1xuICBuYW1lOiAnSWNvblRleHQnLFxuICBwcm9wczoge1xuICAgICd0eXBlJzoge1xuICAgICAgdHlwZTogU3RyaW5nLFxuICAgICAgcmVxdWlyZWQ6IHRydWVcbiAgICB9LFxuICAgIHRleHQ6IHtcbiAgICAgIHR5cGU6IFtTdHJpbmcsIE51bWJlcl0sXG4gICAgICByZXF1aXJlZDogdHJ1ZVxuICAgIH1cbiAgfVxufVxuPC9zY3JpcHQ+XG4iXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7O0FBUUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBRkE7QUFJQTtBQUNBO0FBQ0E7QUFGQTtBQUxBO0FBRkEiLCJzb3VyY2VSb290IjoiIn0=\n//# sourceURL=webpack-internal:///./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/list/search/components/IconText.vue?vue&type=script&lang=js&\n");
/***/ }),
/***/ "./node_modules/cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"0db9c07d-vue-loader-template\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/Index.vue?vue&type=template&id=30448598&scoped=true&":
/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0db9c07d-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/account/center/Index.vue?vue&type=template&id=30448598&scoped=true& ***!
\********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/*! exports provided: render, staticRenderFns */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return render; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return staticRenderFns; });\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n {\n staticClass:\n \"page-header-index-wide page-header-wrapper-grid-content-main\"\n },\n [\n _c(\n \"a-row\",\n { attrs: { gutter: 24 } },\n [\n _c(\n \"a-col\",\n { attrs: { md: 24, lg: 7 } },\n [\n _c(\n \"a-card\",\n { attrs: { bordered: false } },\n [\n _c(\"div\", { staticClass: \"account-center-avatarHolder\" }, [\n _c(\"div\", { staticClass: \"avatar\" }, [\n _c(\"img\", { attrs: { src: _vm.avatar() } })\n ]),\n _c(\"div\", { staticClass: \"username\" }, [\n _vm._v(_vm._s(_vm.nickname()))\n ]),\n _c(\"div\", { staticClass: \"bio\" }, [\n _vm._v(\"海纳百川,有容乃大\")\n ])\n ]),\n _c(\"div\", { staticClass: \"account-center-detail\" }, [\n _c(\"p\", [\n _c(\"i\", { staticClass: \"title\" }),\n _vm._v(\"交互专家\\n \")\n ]),\n _c(\"p\", [\n _c(\"i\", { staticClass: \"group\" }),\n _vm._v(\n \"蚂蚁金服-某某某事业群-某某平台部-某某技术部-UED\\n \"\n )\n ]),\n _c(\"p\", [\n _c(\"i\", { staticClass: \"address\" }),\n _c(\"span\", [_vm._v(\"浙江省\")]),\n _c(\"span\", [_vm._v(\"杭州市\")])\n ])\n ]),\n _c(\"a-divider\"),\n _c(\"div\", { staticClass: \"account-center-tags\" }, [\n _c(\"div\", { staticClass: \"tagsTitle\" }, [_vm._v(\"标签\")]),\n _c(\n \"div\",\n [\n _vm._l(_vm.tags, function(tag, index) {\n return [\n tag.length > 20\n ? _c(\n \"a-tooltip\",\n { key: tag, attrs: { title: tag } },\n [\n _c(\n \"a-tag\",\n {\n key: tag,\n attrs: {\n closable: index !== 0,\n afterClose: function() {\n return _vm.handleTagClose(tag)\n }\n }\n },\n [_vm._v(_vm._s(tag.slice(0, 20) + \"...\"))]\n )\n ],\n 1\n )\n : _c(\n \"a-tag\",\n {\n key: tag,\n attrs: {\n closable: index !== 0,\n afterClose: function() {\n return _vm.handleTagClose(tag)\n }\n }\n },\n [_vm._v(_vm._s(tag))]\n )\n ]\n }),\n _vm.tagInputVisible\n ? _c(\"a-input\", {\n ref: \"tagInput\",\n style: { width: \"78px\" },\n attrs: {\n type: \"text\",\n size: \"small\",\n value: _vm.tagInputValue\n },\n on: {\n change: _vm.handleInputChange,\n blur: _vm.handleTagInputConfirm,\n keyup: function($event) {\n if (\n !$event.type.indexOf(\"key\") &&\n _vm._k(\n $event.keyCode,\n \"enter\",\n 13,\n $event.key,\n \"Enter\"\n )\n ) {\n return null\n }\n return _vm.handleTagInputConfirm($event)\n }\n }\n })\n : _c(\n \"a-tag\",\n {\n staticStyle: {\n background: \"#fff\",\n borderStyle: \"dashed\"\n },\n on: { click: _vm.showTagInput }\n },\n [\n _c(\"a-icon\", { attrs: { type: \"plus\" } }),\n _vm._v(\"New Tag\\n \")\n ],\n 1\n )\n ],\n 2\n )\n ]),\n _c(\"a-divider\", { attrs: { dashed: true } }),\n _c(\n \"div\",\n { staticClass: \"account-center-team\" },\n [\n _c(\"div\", { staticClass: \"teamTitle\" }, [_vm._v(\"团队\")]),\n _c(\"a-spin\", { attrs: { spinning: _vm.teamSpinning } }, [\n _c(\n \"div\",\n { staticClass: \"members\" },\n [\n _c(\n \"a-row\",\n _vm._l(_vm.teams, function(item, index) {\n return _c(\n \"a-col\",\n { key: index, attrs: { span: 12 } },\n [\n _c(\n \"a\",\n [\n _c(\"a-avatar\", {\n attrs: {\n size: \"small\",\n src: item.avatar\n }\n }),\n _c(\"span\", { staticClass: \"member\" }, [\n _vm._v(_vm._s(item.name))\n ])\n ],\n 1\n )\n ]\n )\n }),\n 1\n )\n ],\n 1\n )\n ])\n ],\n 1\n )\n ],\n 1\n )\n ],\n 1\n ),\n _c(\n \"a-col\",\n { attrs: { md: 24, lg: 17 } },\n [\n _c(\n \"a-card\",\n {\n staticStyle: { width: \"100%\" },\n attrs: {\n bordered: false,\n tabList: _vm.tabListNoTitle,\n activeTabKey: _vm.noTitleKey\n },\n on: {\n tabChange: function(key) {\n return _vm.handleTabChange(key, \"noTitleKey\")\n }\n }\n },\n [\n _vm.noTitleKey === \"article\"\n ? _c(\"article-page\")\n : _vm.noTitleKey === \"app\"\n ? _c(\"app-page\")\n : _vm.noTitleKey === \"project\"\n ? _c(\"project-page\")\n : _vm._e()\n ],\n 1\n )\n ],\n 1\n )\n ],\n 1\n )\n ],\n 1\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvY2FjaGUtbG9hZGVyL2Rpc3QvY2pzLmpzP3tcImNhY2hlRGlyZWN0b3J5XCI6XCJub2RlX21vZHVsZXMvLmNhY2hlL3Z1ZS1sb2FkZXJcIixcImNhY2hlSWRlbnRpZmllclwiOlwiMGRiOWMwN2QtdnVlLWxvYWRlci10ZW1wbGF0ZVwifSEuL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9sb2FkZXJzL3RlbXBsYXRlTG9hZGVyLmpzPyEuL25vZGVfbW9kdWxlcy9jYWNoZS1sb2FkZXIvZGlzdC9janMuanM/IS4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2luZGV4LmpzPyEuL3NyYy92aWV3cy9hY2NvdW50L2NlbnRlci9JbmRleC52dWU/dnVlJnR5cGU9dGVtcGxhdGUmaWQ9MzA0NDg1OTgmc2NvcGVkPXRydWUmLmpzIiwic291cmNlcyI6WyJ3ZWJwYWNrOi8vLy4vc3JjL3ZpZXdzL2FjY291bnQvY2VudGVyL0luZGV4LnZ1ZT82MDJhIl0sInNvdXJjZXNDb250ZW50IjpbInZhciByZW5kZXIgPSBmdW5jdGlvbigpIHtcbiAgdmFyIF92bSA9IHRoaXNcbiAgdmFyIF9oID0gX3ZtLiRjcmVhdGVFbGVtZW50XG4gIHZhciBfYyA9IF92bS5fc2VsZi5fYyB8fCBfaFxuICByZXR1cm4gX2MoXG4gICAgXCJkaXZcIixcbiAgICB7XG4gICAgICBzdGF0aWNDbGFzczpcbiAgICAgICAgXCJwYWdlLWhlYWRlci1pbmRleC13aWRlIHBhZ2UtaGVhZGVyLXdyYXBwZXItZ3JpZC1jb250ZW50LW1haW5cIlxuICAgIH0sXG4gICAgW1xuICAgICAgX2MoXG4gICAgICAgIFwiYS1yb3dcIixcbiAgICAgICAgeyBhdHRyczogeyBndXR0ZXI6IDI0IH0gfSxcbiAgICAgICAgW1xuICAgICAgICAgIF9jKFxuICAgICAgICAgICAgXCJhLWNvbFwiLFxuICAgICAgICAgICAgeyBhdHRyczogeyBtZDogMjQsIGxnOiA3IH0gfSxcbiAgICAgICAgICAgIFtcbiAgICAgICAgICAgICAgX2MoXG4gICAgICAgICAgICAgICAgXCJhLWNhcmRcIixcbiAgICAgICAgICAgICAgICB7IGF0dHJzOiB7IGJvcmRlcmVkOiBmYWxzZSB9IH0sXG4gICAgICAgICAgICAgICAgW1xuICAgICAgICAgICAgICAgICAgX2MoXCJkaXZcIiwgeyBzdGF0aWNDbGFzczogXCJhY2NvdW50LWNlbnRlci1hdmF0YXJIb2xkZXJcIiB9LCBbXG4gICAgICAgICAgICAgICAgICAgIF9jKFwiZGl2XCIsIHsgc3RhdGljQ2xhc3M6IFwiYXZhdGFyXCIgfSwgW1xuICAgICAgICAgICAgICAgICAgICAgIF9jKFwiaW1nXCIsIHsgYXR0cnM6IHsgc3JjOiBfdm0uYXZhdGFyKCkgfSB9KVxuICAgICAgICAgICAgICAgICAgICBdKSxcbiAgICAgICAgICAgICAgICAgICAgX2MoXCJkaXZcIiwgeyBzdGF0aWNDbGFzczogXCJ1c2VybmFtZVwiIH0sIFtcbiAgICAgICAgICAgICAgICAgICAgICBfdm0uX3YoX3ZtLl9zKF92bS5uaWNrbmFtZSgpKSlcbiAgICAgICAgICAgICAgICAgICAgXSksXG4gICAgICAgICAgICAgICAgICAgIF9jKFwiZGl2XCIsIHsgc3RhdGljQ2xhc3M6IFwiYmlvXCIgfSwgW1xuICAgICAgICAgICAgICAgICAgICAgIF92bS5fdihcIua1t+e6s+eZvuW3ne+8jOacieWuueS5g+Wkp1wiKVxuICAgICAgICAgICAgICAgICAgICBdKVxuICAgICAgICAgICAgICAgICAgXSksXG4gICAgICAgICAgICAgICAgICBfYyhcImRpdlwiLCB7IHN0YXRpY0NsYXNzOiBcImFjY291bnQtY2VudGVyLWRldGFpbFwiIH0sIFtcbiAgICAgICAgICAgICAgICAgICAgX2MoXCJwXCIsIFtcbiAgICAgICAgICAgICAgICAgICAgICBfYyhcImlcIiwgeyBzdGF0aWNDbGFzczogXCJ0aXRsZVwiIH0pLFxuICAgICAgICAgICAgICAgICAgICAgIF92bS5fdihcIuS6pOS6kuS4k+WutlxcbiAgICAgICAgICBcIilcbiAgICAgICAgICAgICAgICAgICAgXSksXG4gICAgICAgICAgICAgICAgICAgIF9jKFwicFwiLCBbXG4gICAgICAgICAgICAgICAgICAgICAgX2MoXCJpXCIsIHsgc3RhdGljQ2xhc3M6IFwiZ3JvdXBcIiB9KSxcbiAgICAgICAgICAgICAgICAgICAgICBfdm0uX3YoXG4gICAgICAgICAgICAgICAgICAgICAgICBcIuiaguiagemHkeacje+8jeafkOafkOafkOS6i+S4mue+pO+8jeafkOafkOW5s+WPsOmDqO+8jeafkOafkOaKgOacr+mDqO+8jVVFRFxcbiAgICAgICAgICBcIlxuICAgICAgICAgICAgICAgICAgICAgIClcbiAgICAgICAgICAgICAgICAgICAgXSksXG4gICAgICAgICAgICAgICAgICAgIF9jKFwicFwiLCBbXG4gICAgICAgICAgICAgICAgICAgICAgX2MoXCJpXCIsIHsgc3RhdGljQ2xhc3M6IFwiYWRkcmVzc1wiIH0pLFxuICAgICAgICAgICAgICAgICAgICAgIF9jKFwic3BhblwiLCBbX3ZtLl92KFwi5rWZ5rGf55yBXCIpXSksXG4gICAgICAgICAgICAgICAgICAgICAgX2MoXCJzcGFuXCIsIFtfdm0uX3YoXCLmna3lt57luIJcIildKVxuICAgICAgICAgICAgICAgICAgICBdKVxuICAgICAgICAgICAgICAgICAgXSksXG4gICAgICAgICAgICAgICAgICBfYyhcImEtZGl2aWRlclwiKSxcbiAgICAgICAgICAgICAgICAgIF9jKFwiZGl2XCIsIHsgc3RhdGljQ2xhc3M6IFwiYWNjb3VudC1jZW50ZXItdGFnc1wiIH0sIFtcbiAgICAgICAgICAgICAgICAgICAgX2MoXCJkaXZcIiwgeyBzdGF0aWNDbGFzczogXCJ0YWdzVGl0bGVcIiB9LCBbX3ZtLl92KFwi5qCH562+XCIpXSksXG4gICAgICAgICAgICAgICAgICAgIF9jKFxuICAgICAgICAgICAgICAgICAgICAgIFwiZGl2XCIsXG4gICAgICAgICAgICAgICAgICAgICAgW1xuICAgICAgICAgICAgICAgICAgICAgICAgX3ZtLl9sKF92bS50YWdzLCBmdW5jdGlvbih0YWcsIGluZGV4KSB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgIHJldHVybiBbXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgdGFnLmxlbmd0aCA+IDIwXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICA/IF9jKFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFwiYS10b29sdGlwXCIsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgeyBrZXk6IHRhZywgYXR0cnM6IHsgdGl0bGU6IHRhZyB9IH0sXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgX2MoXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFwiYS10YWdcIixcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGtleTogdGFnLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGF0dHJzOiB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBjbG9zYWJsZTogaW5kZXggIT09IDAsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBhZnRlckNsb3NlOiBmdW5jdGlvbigpIHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgcmV0dXJuIF92bS5oYW5kbGVUYWdDbG9zZSh0YWcpXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbX3ZtLl92KF92bS5fcyh0YWcuc2xpY2UoMCwgMjApICsgXCIuLi5cIikpXVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIF0sXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICApXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICA6IF9jKFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFwiYS10YWdcIixcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBrZXk6IHRhZyxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGF0dHJzOiB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNsb3NhYmxlOiBpbmRleCAhPT0gMCxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgYWZ0ZXJDbG9zZTogZnVuY3Rpb24oKSB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgcmV0dXJuIF92bS5oYW5kbGVUYWdDbG9zZSh0YWcpXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtfdm0uX3YoX3ZtLl9zKHRhZykpXVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICApXG4gICAgICAgICAgICAgICAgICAgICAgICAgIF1cbiAgICAgICAgICAgICAgICAgICAgICAgIH0pLFxuICAgICAgICAgICAgICAgICAgICAgICAgX3ZtLnRhZ0lucHV0VmlzaWJsZVxuICAgICAgICAgICAgICAgICAgICAgICAgICA/IF9jKFwiYS1pbnB1dFwiLCB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICByZWY6IFwidGFnSW5wdXRcIixcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHN0eWxlOiB7IHdpZHRoOiBcIjc4cHhcIiB9LFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgYXR0cnM6IHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgdHlwZTogXCJ0ZXh0XCIsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHNpemU6IFwic21hbGxcIixcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgdmFsdWU6IF92bS50YWdJbnB1dFZhbHVlXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgb246IHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgY2hhbmdlOiBfdm0uaGFuZGxlSW5wdXRDaGFuZ2UsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGJsdXI6IF92bS5oYW5kbGVUYWdJbnB1dENvbmZpcm0sXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGtleXVwOiBmdW5jdGlvbigkZXZlbnQpIHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBpZiAoXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAhJGV2ZW50LnR5cGUuaW5kZXhPZihcImtleVwiKSAmJlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgX3ZtLl9rKFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAkZXZlbnQua2V5Q29kZSxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgXCJlbnRlclwiLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAxMyxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgJGV2ZW50LmtleSxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgXCJFbnRlclwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICApXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKSB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICByZXR1cm4gbnVsbFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICByZXR1cm4gX3ZtLmhhbmRsZVRhZ0lucHV0Q29uZmlybSgkZXZlbnQpXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB9KVxuICAgICAgICAgICAgICAgICAgICAgICAgICA6IF9jKFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgXCJhLXRhZ1wiLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBzdGF0aWNTdHlsZToge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGJhY2tncm91bmQ6IFwiI2ZmZlwiLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGJvcmRlclN0eWxlOiBcImRhc2hlZFwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIG9uOiB7IGNsaWNrOiBfdm0uc2hvd1RhZ0lucHV0IH1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIF9jKFwiYS1pY29uXCIsIHsgYXR0cnM6IHsgdHlwZTogXCJwbHVzXCIgfSB9KSxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgX3ZtLl92KFwiTmV3IFRhZ1xcbiAgICAgICAgICAgIFwiKVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgXSxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDFcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICApXG4gICAgICAgICAgICAgICAgICAgICAgXSxcbiAgICAgICAgICAgICAgICAgICAgICAyXG4gICAgICAgICAgICAgICAgICAgIClcbiAgICAgICAgICAgICAgICAgIF0pLFxuICAgICAgICAgICAgICAgICAgX2MoXCJhLWRpdmlkZXJcIiwgeyBhdHRyczogeyBkYXNoZWQ6IHRydWUgfSB9KSxcbiAgICAgICAgICAgICAgICAgIF9jKFxuICAgICAgICAgICAgICAgICAgICBcImRpdlwiLFxuICAgICAgICAgICAgICAgICAgICB7IHN0YXRpY0NsYXNzOiBcImFjY291bnQtY2VudGVyLXRlYW1cIiB9LFxuICAgICAgICAgICAgICAgICAgICBbXG4gICAgICAgICAgICAgICAgICAgICAgX2MoXCJkaXZcIiwgeyBzdGF0aWNDbGFzczogXCJ0ZWFtVGl0bGVcIiB9LCBbX3ZtLl92KFwi5Zui6ZifXCIpXSksXG4gICAgICAgICAgICAgICAgICAgICAgX2MoXCJhLXNwaW5cIiwgeyBhdHRyczogeyBzcGlubmluZzogX3ZtLnRlYW1TcGlubmluZyB9IH0sIFtcbiAgICAgICAgICAgICAgICAgICAgICAgIF9jKFxuICAgICAgICAgICAgICAgICAgICAgICAgICBcImRpdlwiLFxuICAgICAgICAgICAgICAgICAgICAgICAgICB7IHN0YXRpY0NsYXNzOiBcIm1lbWJlcnNcIiB9LFxuICAgICAgICAgICAgICAgICAgICAgICAgICBbXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgX2MoXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICBcImEtcm93XCIsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICBfdm0uX2woX3ZtLnRlYW1zLCBmdW5jdGlvbihpdGVtLCBpbmRleCkge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICByZXR1cm4gX2MoXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgXCJhLWNvbFwiLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHsga2V5OiBpbmRleCwgYXR0cnM6IHsgc3BhbjogMTIgfSB9LFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIF9jKFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBcImFcIixcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIF9jKFwiYS1hdmF0YXJcIiwge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgYXR0cnM6IHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgc2l6ZTogXCJzbWFsbFwiLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBzcmM6IGl0ZW0uYXZhdGFyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSksXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgX2MoXCJzcGFuXCIsIHsgc3RhdGljQ2xhc3M6IFwibWVtYmVyXCIgfSwgW1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgX3ZtLl92KF92bS5fcyhpdGVtLm5hbWUpKVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIF0pXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIF0sXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDFcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIClcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBdXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIClcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0pLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIClcbiAgICAgICAgICAgICAgICAgICAgICAgICAgXSxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgMVxuICAgICAgICAgICAgICAgICAgICAgICAgKVxuICAgICAgICAgICAgICAgICAgICAgIF0pXG4gICAgICAgICAgICAgICAgICAgIF0sXG4gICAgICAgICAgICAgICAgICAgIDFcbiAgICAgICAgICAgICAgICAgIClcbiAgICAgICAgICAgICAgICBdLFxuICAgICAgICAgICAgICAgIDFcbiAgICAgICAgICAgICAgKVxuICAgICAgICAgICAgXSxcbiAgICAgICAgICAgIDFcbiAgICAgICAgICApLFxuICAgICAgICAgIF9jKFxuICAgICAgICAgICAgXCJhLWNvbFwiLFxuICAgICAgICAgICAgeyBhdHRyczogeyBtZDogMjQsIGxnOiAxNyB9IH0sXG4gICAgICAgICAgICBbXG4gICAgICAgICAgICAgIF9jKFxuICAgICAgICAgICAgICAgIFwiYS1jYXJkXCIsXG4gICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgc3RhdGljU3R5bGU6IHsgd2lkdGg6IFwiMTAwJVwiIH0sXG4gICAgICAgICAgICAgICAgICBhdHRyczoge1xuICAgICAgICAgICAgICAgICAgICBib3JkZXJlZDogZmFsc2UsXG4gICAgICAgICAgICAgICAgICAgIHRhYkxpc3Q6IF92bS50YWJMaXN0Tm9UaXRsZSxcbiAgICAgICAgICAgICAgICAgICAgYWN0aXZlVGFiS2V5OiBfdm0ubm9UaXRsZUtleVxuICAgICAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICAgICAgIG9uOiB7XG4gICAgICAgICAgICAgICAgICAgIHRhYkNoYW5nZTogZnVuY3Rpb24oa2V5KSB7XG4gICAgICAgICAgICAgICAgICAgICAgcmV0dXJuIF92bS5oYW5kbGVUYWJDaGFuZ2Uoa2V5LCBcIm5vVGl0bGVLZXlcIilcbiAgICAgICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAgW1xuICAgICAgICAgICAgICAgICAgX3ZtLm5vVGl0bGVLZXkgPT09IFwiYXJ0aWNsZVwiXG4gICAgICAgICAgICAgICAgICAgID8gX2MoXCJhcnRpY2xlLXBhZ2VcIilcbiAgICAgICAgICAgICAgICAgICAgOiBfdm0ubm9UaXRsZUtleSA9PT0gXCJhcHBcIlxuICAgICAgICAgICAgICAgICAgICA/IF9jKFwiYXBwLXBhZ2VcIilcbiAgICAgICAgICAgICAgICAgICAgOiBfdm0ubm9UaXRsZUtleSA9PT0gXCJwcm9qZWN0XCJcbiAgICAgICAgICAgICAgICAgICAgPyBfYyhcInByb2plY3QtcGFnZVwiKVxuICAgICAgICAgICAgICAgICAgICA6IF92bS5fZSgpXG4gICAgICAgICAgICAgICAgXSxcbiAgICAgICAgICAgICAgICAxXG4gICAgICAgICAgICAgIClcbiAgICAgICAgICAgIF0sXG4gICAgICAgICAgICAxXG4gICAgICAgICAgKVxuICAgICAgICBdLFxuICAgICAgICAxXG4gICAgICApXG4gICAgXSxcbiAgICAxXG4gIClcbn1cbnZhciBzdGF0aWNSZW5kZXJGbnMgPSBbXVxucmVuZGVyLl93aXRoU3RyaXBwZWQgPSB0cnVlXG5cbmV4cG9ydCB7IHJlbmRlciwgc3RhdGljUmVuZGVyRm5zIH0iXSwibWFwcGluZ3MiOiJBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTsiLCJzb3VyY2VSb290IjoiIn0=\n//# sourceURL=webpack-internal:///./node_modules/cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"0db9c07d-vue-loader-template\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/Index.vue?vue&type=template&id=30448598&scoped=true&\n");
/***/ }),
/***/ "./node_modules/cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"0db9c07d-vue-loader-template\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/App.vue?vue&type=template&id=419a116f&scoped=true&":
/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0db9c07d-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/account/center/page/App.vue?vue&type=template&id=419a116f&scoped=true& ***!
\***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/*! exports provided: render, staticRenderFns */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return render; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return staticRenderFns; });\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n { staticClass: \"app-list\" },\n [\n _c(\"a-list\", {\n attrs: {\n grid: { gutter: 24, lg: 3, md: 2, sm: 1, xs: 1 },\n dataSource: _vm.dataSource\n },\n scopedSlots: _vm._u([\n {\n key: \"renderItem\",\n fn: function(item) {\n return _c(\n \"a-list-item\",\n {},\n [\n _c(\n \"a-card\",\n { attrs: { hoverable: true } },\n [\n _c(\n \"a-card-meta\",\n [\n _c(\n \"div\",\n {\n staticStyle: { \"margin-bottom\": \"3px\" },\n attrs: { slot: \"title\" },\n slot: \"title\"\n },\n [_vm._v(_vm._s(item.title))]\n ),\n _c(\"a-avatar\", {\n staticClass: \"card-avatar\",\n attrs: {\n slot: \"avatar\",\n src: item.avatar,\n size: \"small\"\n },\n slot: \"avatar\"\n }),\n _c(\n \"div\",\n {\n staticClass: \"meta-cardInfo\",\n attrs: { slot: \"description\" },\n slot: \"description\"\n },\n [\n _c(\"div\", [\n _c(\"p\", [_vm._v(\"活跃用户\")]),\n _c(\"p\", [\n _c(\"span\", [\n _vm._v(_vm._s(item.activeUser)),\n _c(\"span\", [_vm._v(\"万\")])\n ])\n ])\n ]),\n _c(\"div\", [\n _c(\"p\", [_vm._v(\"新增用户\")]),\n _c(\"p\", [\n _vm._v(\n _vm._s(_vm._f(\"NumberFormat\")(item.newUser))\n )\n ])\n ])\n ]\n )\n ],\n 1\n ),\n _c(\n \"template\",\n { staticClass: \"ant-card-actions\", slot: \"actions\" },\n [\n _c(\n \"a\",\n [_c(\"a-icon\", { attrs: { type: \"download\" } })],\n 1\n ),\n _c(\n \"a\",\n [_c(\"a-icon\", { attrs: { type: \"edit\" } })],\n 1\n ),\n _c(\n \"a\",\n [_c(\"a-icon\", { attrs: { type: \"share-alt\" } })],\n 1\n ),\n _c(\n \"a\",\n [\n _c(\n \"a-dropdown\",\n [\n _c(\n \"a\",\n {\n staticClass: \"ant-dropdown-link\",\n attrs: { href: \"javascript:;\" }\n },\n [\n _c(\"a-icon\", {\n attrs: { type: \"ellipsis\" }\n })\n ],\n 1\n ),\n _c(\n \"a-menu\",\n {\n attrs: { slot: \"overlay\" },\n slot: \"overlay\"\n },\n [\n _c(\"a-menu-item\", [\n _c(\n \"a\",\n { attrs: { href: \"javascript:;\" } },\n [_vm._v(\"1st menu item\")]\n )\n ]),\n _c(\"a-menu-item\", [\n _c(\n \"a\",\n { attrs: { href: \"javascript:;\" } },\n [_vm._v(\"2nd menu item\")]\n )\n ]),\n _c(\"a-menu-item\", [\n _c(\n \"a\",\n { attrs: { href: \"javascript:;\" } },\n [_vm._v(\"3rd menu item\")]\n )\n ])\n ],\n 1\n )\n ],\n 1\n )\n ],\n 1\n )\n ]\n )\n ],\n 2\n )\n ],\n 1\n )\n }\n }\n ])\n })\n ],\n 1\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvY2FjaGUtbG9hZGVyL2Rpc3QvY2pzLmpzP3tcImNhY2hlRGlyZWN0b3J5XCI6XCJub2RlX21vZHVsZXMvLmNhY2hlL3Z1ZS1sb2FkZXJcIixcImNhY2hlSWRlbnRpZmllclwiOlwiMGRiOWMwN2QtdnVlLWxvYWRlci10ZW1wbGF0ZVwifSEuL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9sb2FkZXJzL3RlbXBsYXRlTG9hZGVyLmpzPyEuL25vZGVfbW9kdWxlcy9jYWNoZS1sb2FkZXIvZGlzdC9janMuanM/IS4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2luZGV4LmpzPyEuL3NyYy92aWV3cy9hY2NvdW50L2NlbnRlci9wYWdlL0FwcC52dWU/dnVlJnR5cGU9dGVtcGxhdGUmaWQ9NDE5YTExNmYmc2NvcGVkPXRydWUmLmpzIiwic291cmNlcyI6WyJ3ZWJwYWNrOi8vLy4vc3JjL3ZpZXdzL2FjY291bnQvY2VudGVyL3BhZ2UvQXBwLnZ1ZT82NmNiIl0sInNvdXJjZXNDb250ZW50IjpbInZhciByZW5kZXIgPSBmdW5jdGlvbigpIHtcbiAgdmFyIF92bSA9IHRoaXNcbiAgdmFyIF9oID0gX3ZtLiRjcmVhdGVFbGVtZW50XG4gIHZhciBfYyA9IF92bS5fc2VsZi5fYyB8fCBfaFxuICByZXR1cm4gX2MoXG4gICAgXCJkaXZcIixcbiAgICB7IHN0YXRpY0NsYXNzOiBcImFwcC1saXN0XCIgfSxcbiAgICBbXG4gICAgICBfYyhcImEtbGlzdFwiLCB7XG4gICAgICAgIGF0dHJzOiB7XG4gICAgICAgICAgZ3JpZDogeyBndXR0ZXI6IDI0LCBsZzogMywgbWQ6IDIsIHNtOiAxLCB4czogMSB9LFxuICAgICAgICAgIGRhdGFTb3VyY2U6IF92bS5kYXRhU291cmNlXG4gICAgICAgIH0sXG4gICAgICAgIHNjb3BlZFNsb3RzOiBfdm0uX3UoW1xuICAgICAgICAgIHtcbiAgICAgICAgICAgIGtleTogXCJyZW5kZXJJdGVtXCIsXG4gICAgICAgICAgICBmbjogZnVuY3Rpb24oaXRlbSkge1xuICAgICAgICAgICAgICByZXR1cm4gX2MoXG4gICAgICAgICAgICAgICAgXCJhLWxpc3QtaXRlbVwiLFxuICAgICAgICAgICAgICAgIHt9LFxuICAgICAgICAgICAgICAgIFtcbiAgICAgICAgICAgICAgICAgIF9jKFxuICAgICAgICAgICAgICAgICAgICBcImEtY2FyZFwiLFxuICAgICAgICAgICAgICAgICAgICB7IGF0dHJzOiB7IGhvdmVyYWJsZTogdHJ1ZSB9IH0sXG4gICAgICAgICAgICAgICAgICAgIFtcbiAgICAgICAgICAgICAgICAgICAgICBfYyhcbiAgICAgICAgICAgICAgICAgICAgICAgIFwiYS1jYXJkLW1ldGFcIixcbiAgICAgICAgICAgICAgICAgICAgICAgIFtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgX2MoXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgXCJkaXZcIixcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICBzdGF0aWNTdHlsZTogeyBcIm1hcmdpbi1ib3R0b21cIjogXCIzcHhcIiB9LFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgYXR0cnM6IHsgc2xvdDogXCJ0aXRsZVwiIH0sXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICBzbG90OiBcInRpdGxlXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtfdm0uX3YoX3ZtLl9zKGl0ZW0udGl0bGUpKV1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgKSxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgX2MoXCJhLWF2YXRhclwiLCB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgc3RhdGljQ2xhc3M6IFwiY2FyZC1hdmF0YXJcIixcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBhdHRyczoge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgc2xvdDogXCJhdmF0YXJcIixcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHNyYzogaXRlbS5hdmF0YXIsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICBzaXplOiBcInNtYWxsXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHNsb3Q6IFwiYXZhdGFyXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgfSksXG4gICAgICAgICAgICAgICAgICAgICAgICAgIF9jKFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIFwiZGl2XCIsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgc3RhdGljQ2xhc3M6IFwibWV0YS1jYXJkSW5mb1wiLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgYXR0cnM6IHsgc2xvdDogXCJkZXNjcmlwdGlvblwiIH0sXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICBzbG90OiBcImRlc2NyaXB0aW9uXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIF9jKFwiZGl2XCIsIFtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgX2MoXCJwXCIsIFtfdm0uX3YoXCLmtLvot4PnlKjmiLdcIildKSxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgX2MoXCJwXCIsIFtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBfYyhcInNwYW5cIiwgW1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgX3ZtLl92KF92bS5fcyhpdGVtLmFjdGl2ZVVzZXIpKSxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIF9jKFwic3BhblwiLCBbX3ZtLl92KFwi5LiHXCIpXSlcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBdKVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBdKVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgXSksXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICBfYyhcImRpdlwiLCBbXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIF9jKFwicFwiLCBbX3ZtLl92KFwi5paw5aKe55So5oi3XCIpXSksXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIF9jKFwicFwiLCBbXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgX3ZtLl92KFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgX3ZtLl9zKF92bS5fZihcIk51bWJlckZvcm1hdFwiKShpdGVtLm5ld1VzZXIpKVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIClcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgXSlcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIF0pXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgXVxuICAgICAgICAgICAgICAgICAgICAgICAgICApXG4gICAgICAgICAgICAgICAgICAgICAgICBdLFxuICAgICAgICAgICAgICAgICAgICAgICAgMVxuICAgICAgICAgICAgICAgICAgICAgICksXG4gICAgICAgICAgICAgICAgICAgICAgX2MoXG4gICAgICAgICAgICAgICAgICAgICAgICBcInRlbXBsYXRlXCIsXG4gICAgICAgICAgICAgICAgICAgICAgICB7IHN0YXRpY0NsYXNzOiBcImFudC1jYXJkLWFjdGlvbnNcIiwgc2xvdDogXCJhY3Rpb25zXCIgfSxcbiAgICAgICAgICAgICAgICAgICAgICAgIFtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgX2MoXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgXCJhXCIsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgW19jKFwiYS1pY29uXCIsIHsgYXR0cnM6IHsgdHlwZTogXCJkb3dubG9hZFwiIH0gfSldLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDFcbiAgICAgICAgICAgICAgICAgICAgICAgICAgKSxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgX2MoXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgXCJhXCIsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgW19jKFwiYS1pY29uXCIsIHsgYXR0cnM6IHsgdHlwZTogXCJlZGl0XCIgfSB9KV0sXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgMVxuICAgICAgICAgICAgICAgICAgICAgICAgICApLFxuICAgICAgICAgICAgICAgICAgICAgICAgICBfYyhcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBcImFcIixcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBbX2MoXCJhLWljb25cIiwgeyBhdHRyczogeyB0eXBlOiBcInNoYXJlLWFsdFwiIH0gfSldLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDFcbiAgICAgICAgICAgICAgICAgICAgICAgICAgKSxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgX2MoXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgXCJhXCIsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgW1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgX2MoXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFwiYS1kcm9wZG93blwiLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgX2MoXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBcImFcIixcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgc3RhdGljQ2xhc3M6IFwiYW50LWRyb3Bkb3duLWxpbmtcIixcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgYXR0cnM6IHsgaHJlZjogXCJqYXZhc2NyaXB0OjtcIiB9XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBfYyhcImEtaWNvblwiLCB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgYXR0cnM6IHsgdHlwZTogXCJlbGxpcHNpc1wiIH1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSlcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIF0sXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAxXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKSxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBfYyhcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFwiYS1tZW51XCIsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGF0dHJzOiB7IHNsb3Q6IFwib3ZlcmxheVwiIH0sXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHNsb3Q6IFwib3ZlcmxheVwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBfYyhcImEtbWVudS1pdGVtXCIsIFtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBfYyhcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFwiYVwiLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgeyBhdHRyczogeyBocmVmOiBcImphdmFzY3JpcHQ6O1wiIH0gfSxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtfdm0uX3YoXCIxc3QgbWVudSBpdGVtXCIpXVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIClcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgXSksXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIF9jKFwiYS1tZW51LWl0ZW1cIiwgW1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIF9jKFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgXCJhXCIsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB7IGF0dHJzOiB7IGhyZWY6IFwiamF2YXNjcmlwdDo7XCIgfSB9LFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW192bS5fdihcIjJuZCBtZW51IGl0ZW1cIildXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBdKSxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgX2MoXCJhLW1lbnUtaXRlbVwiLCBbXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgX2MoXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBcImFcIixcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHsgYXR0cnM6IHsgaHJlZjogXCJqYXZhc2NyaXB0OjtcIiB9IH0sXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbX3ZtLl92KFwiM3JkIG1lbnUgaXRlbVwiKV1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICApXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIF0pXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBdLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIClcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgXSxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgMVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIF0sXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgMVxuICAgICAgICAgICAgICAgICAgICAgICAgICApXG4gICAgICAgICAgICAgICAgICAgICAgICBdXG4gICAgICAgICAgICAgICAgICAgICAgKVxuICAgICAgICAgICAgICAgICAgICBdLFxuICAgICAgICAgICAgICAgICAgICAyXG4gICAgICAgICAgICAgICAgICApXG4gICAgICAgICAgICAgICAgXSxcbiAgICAgICAgICAgICAgICAxXG4gICAgICAgICAgICAgIClcbiAgICAgICAgICAgIH1cbiAgICAgICAgICB9XG4gICAgICAgIF0pXG4gICAgICB9KVxuICAgIF0sXG4gICAgMVxuICApXG59XG52YXIgc3RhdGljUmVuZGVyRm5zID0gW11cbnJlbmRlci5fd2l0aFN0cmlwcGVkID0gdHJ1ZVxuXG5leHBvcnQgeyByZW5kZXIsIHN0YXRpY1JlbmRlckZucyB9Il0sIm1hcHBpbmdzIjoiQUFBQTtBQUFBO0FBQUE7QUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOyIsInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///./node_modules/cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"0db9c07d-vue-loader-template\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/App.vue?vue&type=template&id=419a116f&scoped=true&\n");
/***/ }),
/***/ "./node_modules/cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"0db9c07d-vue-loader-template\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/Article.vue?vue&type=template&id=087466c4&scoped=true&":
/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0db9c07d-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/account/center/page/Article.vue?vue&type=template&id=087466c4&scoped=true& ***!
\***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/*! exports provided: render, staticRenderFns */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return render; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return staticRenderFns; });\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"a-list\",\n {\n attrs: {\n size: \"large\",\n rowKey: \"id\",\n loading: _vm.loading,\n itemLayout: \"vertical\",\n dataSource: _vm.data\n },\n scopedSlots: _vm._u([\n {\n key: \"renderItem\",\n fn: function(item) {\n return _c(\n \"a-list-item\",\n { key: item.id },\n [\n _c(\n \"template\",\n { slot: \"actions\" },\n [\n _c(\"icon-text\", {\n attrs: { type: \"star-o\", text: item.star }\n }),\n _c(\"icon-text\", {\n attrs: { type: \"like-o\", text: item.like }\n }),\n _c(\"icon-text\", {\n attrs: { type: \"message\", text: item.message }\n })\n ],\n 1\n ),\n _c(\n \"a-list-item-meta\",\n [\n _c(\n \"a\",\n {\n attrs: {\n slot: \"title\",\n href: \"https://vue.ant.design/\"\n },\n slot: \"title\"\n },\n [_vm._v(_vm._s(item.title))]\n ),\n _c(\"template\", { slot: \"description\" }, [\n _c(\n \"span\",\n [\n _c(\"a-tag\", [_vm._v(\"Ant Design\")]),\n _c(\"a-tag\", [_vm._v(\"设计语言\")]),\n _c(\"a-tag\", [_vm._v(\"蚂蚁金服\")])\n ],\n 1\n )\n ])\n ],\n 2\n ),\n _c(\"article-list-content\", {\n attrs: {\n description: item.description,\n owner: item.owner,\n avatar: item.avatar,\n href: item.href,\n updateAt: item.updatedAt\n }\n })\n ],\n 2\n )\n }\n }\n ])\n },\n [\n _vm.data.length > 0\n ? _c(\n \"div\",\n {\n staticStyle: { \"text-align\": \"center\", \"margin-top\": \"16px\" },\n attrs: { slot: \"footer\" },\n slot: \"footer\"\n },\n [\n _c(\n \"a-button\",\n {\n attrs: { loading: _vm.loadingMore },\n on: { click: _vm.loadMore }\n },\n [_vm._v(\"加载更多\")]\n )\n ],\n 1\n )\n : _vm._e()\n ]\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvY2FjaGUtbG9hZGVyL2Rpc3QvY2pzLmpzP3tcImNhY2hlRGlyZWN0b3J5XCI6XCJub2RlX21vZHVsZXMvLmNhY2hlL3Z1ZS1sb2FkZXJcIixcImNhY2hlSWRlbnRpZmllclwiOlwiMGRiOWMwN2QtdnVlLWxvYWRlci10ZW1wbGF0ZVwifSEuL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9sb2FkZXJzL3RlbXBsYXRlTG9hZGVyLmpzPyEuL25vZGVfbW9kdWxlcy9jYWNoZS1sb2FkZXIvZGlzdC9janMuanM/IS4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2luZGV4LmpzPyEuL3NyYy92aWV3cy9hY2NvdW50L2NlbnRlci9wYWdlL0FydGljbGUudnVlP3Z1ZSZ0eXBlPXRlbXBsYXRlJmlkPTA4NzQ2NmM0JnNjb3BlZD10cnVlJi5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL3NyYy92aWV3cy9hY2NvdW50L2NlbnRlci9wYWdlL0FydGljbGUudnVlP2M4OGYiXSwic291cmNlc0NvbnRlbnQiOlsidmFyIHJlbmRlciA9IGZ1bmN0aW9uKCkge1xuICB2YXIgX3ZtID0gdGhpc1xuICB2YXIgX2ggPSBfdm0uJGNyZWF0ZUVsZW1lbnRcbiAgdmFyIF9jID0gX3ZtLl9zZWxmLl9jIHx8IF9oXG4gIHJldHVybiBfYyhcbiAgICBcImEtbGlzdFwiLFxuICAgIHtcbiAgICAgIGF0dHJzOiB7XG4gICAgICAgIHNpemU6IFwibGFyZ2VcIixcbiAgICAgICAgcm93S2V5OiBcImlkXCIsXG4gICAgICAgIGxvYWRpbmc6IF92bS5sb2FkaW5nLFxuICAgICAgICBpdGVtTGF5b3V0OiBcInZlcnRpY2FsXCIsXG4gICAgICAgIGRhdGFTb3VyY2U6IF92bS5kYXRhXG4gICAgICB9LFxuICAgICAgc2NvcGVkU2xvdHM6IF92bS5fdShbXG4gICAgICAgIHtcbiAgICAgICAgICBrZXk6IFwicmVuZGVySXRlbVwiLFxuICAgICAgICAgIGZuOiBmdW5jdGlvbihpdGVtKSB7XG4gICAgICAgICAgICByZXR1cm4gX2MoXG4gICAgICAgICAgICAgIFwiYS1saXN0LWl0ZW1cIixcbiAgICAgICAgICAgICAgeyBrZXk6IGl0ZW0uaWQgfSxcbiAgICAgICAgICAgICAgW1xuICAgICAgICAgICAgICAgIF9jKFxuICAgICAgICAgICAgICAgICAgXCJ0ZW1wbGF0ZVwiLFxuICAgICAgICAgICAgICAgICAgeyBzbG90OiBcImFjdGlvbnNcIiB9LFxuICAgICAgICAgICAgICAgICAgW1xuICAgICAgICAgICAgICAgICAgICBfYyhcImljb24tdGV4dFwiLCB7XG4gICAgICAgICAgICAgICAgICAgICAgYXR0cnM6IHsgdHlwZTogXCJzdGFyLW9cIiwgdGV4dDogaXRlbS5zdGFyIH1cbiAgICAgICAgICAgICAgICAgICAgfSksXG4gICAgICAgICAgICAgICAgICAgIF9jKFwiaWNvbi10ZXh0XCIsIHtcbiAgICAgICAgICAgICAgICAgICAgICBhdHRyczogeyB0eXBlOiBcImxpa2Utb1wiLCB0ZXh0OiBpdGVtLmxpa2UgfVxuICAgICAgICAgICAgICAgICAgICB9KSxcbiAgICAgICAgICAgICAgICAgICAgX2MoXCJpY29uLXRleHRcIiwge1xuICAgICAgICAgICAgICAgICAgICAgIGF0dHJzOiB7IHR5cGU6IFwibWVzc2FnZVwiLCB0ZXh0OiBpdGVtLm1lc3NhZ2UgfVxuICAgICAgICAgICAgICAgICAgICB9KVxuICAgICAgICAgICAgICAgICAgXSxcbiAgICAgICAgICAgICAgICAgIDFcbiAgICAgICAgICAgICAgICApLFxuICAgICAgICAgICAgICAgIF9jKFxuICAgICAgICAgICAgICAgICAgXCJhLWxpc3QtaXRlbS1tZXRhXCIsXG4gICAgICAgICAgICAgICAgICBbXG4gICAgICAgICAgICAgICAgICAgIF9jKFxuICAgICAgICAgICAgICAgICAgICAgIFwiYVwiLFxuICAgICAgICAgICAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICAgICAgICAgIGF0dHJzOiB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgIHNsb3Q6IFwidGl0bGVcIixcbiAgICAgICAgICAgICAgICAgICAgICAgICAgaHJlZjogXCJodHRwczovL3Z1ZS5hbnQuZGVzaWduL1wiXG4gICAgICAgICAgICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICAgICAgICAgICAgc2xvdDogXCJ0aXRsZVwiXG4gICAgICAgICAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICAgICAgICAgICBbX3ZtLl92KF92bS5fcyhpdGVtLnRpdGxlKSldXG4gICAgICAgICAgICAgICAgICAgICksXG4gICAgICAgICAgICAgICAgICAgIF9jKFwidGVtcGxhdGVcIiwgeyBzbG90OiBcImRlc2NyaXB0aW9uXCIgfSwgW1xuICAgICAgICAgICAgICAgICAgICAgIF9jKFxuICAgICAgICAgICAgICAgICAgICAgICAgXCJzcGFuXCIsXG4gICAgICAgICAgICAgICAgICAgICAgICBbXG4gICAgICAgICAgICAgICAgICAgICAgICAgIF9jKFwiYS10YWdcIiwgW192bS5fdihcIkFudCBEZXNpZ25cIildKSxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgX2MoXCJhLXRhZ1wiLCBbX3ZtLl92KFwi6K6+6K6h6K+t6KiAXCIpXSksXG4gICAgICAgICAgICAgICAgICAgICAgICAgIF9jKFwiYS10YWdcIiwgW192bS5fdihcIuiaguiagemHkeacjVwiKV0pXG4gICAgICAgICAgICAgICAgICAgICAgICBdLFxuICAgICAgICAgICAgICAgICAgICAgICAgMVxuICAgICAgICAgICAgICAgICAgICAgIClcbiAgICAgICAgICAgICAgICAgICAgXSlcbiAgICAgICAgICAgICAgICAgIF0sXG4gICAgICAgICAgICAgICAgICAyXG4gICAgICAgICAgICAgICAgKSxcbiAgICAgICAgICAgICAgICBfYyhcImFydGljbGUtbGlzdC1jb250ZW50XCIsIHtcbiAgICAgICAgICAgICAgICAgIGF0dHJzOiB7XG4gICAgICAgICAgICAgICAgICAgIGRlc2NyaXB0aW9uOiBpdGVtLmRlc2NyaXB0aW9uLFxuICAgICAgICAgICAgICAgICAgICBvd25lcjogaXRlbS5vd25lcixcbiAgICAgICAgICAgICAgICAgICAgYXZhdGFyOiBpdGVtLmF2YXRhcixcbiAgICAgICAgICAgICAgICAgICAgaHJlZjogaXRlbS5ocmVmLFxuICAgICAgICAgICAgICAgICAgICB1cGRhdGVBdDogaXRlbS51cGRhdGVkQXRcbiAgICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgICAgICB9KVxuICAgICAgICAgICAgICBdLFxuICAgICAgICAgICAgICAyXG4gICAgICAgICAgICApXG4gICAgICAgICAgfVxuICAgICAgICB9XG4gICAgICBdKVxuICAgIH0sXG4gICAgW1xuICAgICAgX3ZtLmRhdGEubGVuZ3RoID4gMFxuICAgICAgICA/IF9jKFxuICAgICAgICAgICAgXCJkaXZcIixcbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgc3RhdGljU3R5bGU6IHsgXCJ0ZXh0LWFsaWduXCI6IFwiY2VudGVyXCIsIFwibWFyZ2luLXRvcFwiOiBcIjE2cHhcIiB9LFxuICAgICAgICAgICAgICBhdHRyczogeyBzbG90OiBcImZvb3RlclwiIH0sXG4gICAgICAgICAgICAgIHNsb3Q6IFwiZm9vdGVyXCJcbiAgICAgICAgICAgIH0sXG4gICAgICAgICAgICBbXG4gICAgICAgICAgICAgIF9jKFxuICAgICAgICAgICAgICAgIFwiYS1idXR0b25cIixcbiAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICBhdHRyczogeyBsb2FkaW5nOiBfdm0ubG9hZGluZ01vcmUgfSxcbiAgICAgICAgICAgICAgICAgIG9uOiB7IGNsaWNrOiBfdm0ubG9hZE1vcmUgfVxuICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAgW192bS5fdihcIuWKoOi9veabtOWkmlwiKV1cbiAgICAgICAgICAgICAgKVxuICAgICAgICAgICAgXSxcbiAgICAgICAgICAgIDFcbiAgICAgICAgICApXG4gICAgICAgIDogX3ZtLl9lKClcbiAgICBdXG4gIClcbn1cbnZhciBzdGF0aWNSZW5kZXJGbnMgPSBbXVxucmVuZGVyLl93aXRoU3RyaXBwZWQgPSB0cnVlXG5cbmV4cG9ydCB7IHJlbmRlciwgc3RhdGljUmVuZGVyRm5zIH0iXSwibWFwcGluZ3MiOiJBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7Iiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./node_modules/cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"0db9c07d-vue-loader-template\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/Article.vue?vue&type=template&id=087466c4&scoped=true&\n");
/***/ }),
/***/ "./node_modules/cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"0db9c07d-vue-loader-template\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/Project.vue?vue&type=template&id=c0abc932&scoped=true&":
/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0db9c07d-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/account/center/page/Project.vue?vue&type=template&id=c0abc932&scoped=true& ***!
\***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/*! exports provided: render, staticRenderFns */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return render; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return staticRenderFns; });\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n { staticClass: \"ant-pro-pages-account-projects-cardList\" },\n [\n _c(\"a-list\", {\n attrs: {\n loading: _vm.loading,\n \"data-source\": _vm.data,\n grid: { gutter: 24, xxl: 3, xl: 2, lg: 2, md: 2, sm: 2, xs: 1 }\n },\n scopedSlots: _vm._u([\n {\n key: \"renderItem\",\n fn: function(item) {\n return _c(\n \"a-list-item\",\n {},\n [\n _c(\n \"a-card\",\n {\n staticClass: \"ant-pro-pages-account-projects-card\",\n attrs: { hoverable: \"\" }\n },\n [\n _c(\"img\", {\n attrs: {\n slot: \"cover\",\n src: item.cover,\n alt: item.title\n },\n slot: \"cover\"\n }),\n _c(\n \"a-card-meta\",\n { attrs: { title: item.title } },\n [\n _c(\n \"template\",\n { slot: \"description\" },\n [\n _c(\"ellipsis\", { attrs: { length: 50 } }, [\n _vm._v(_vm._s(item.description))\n ])\n ],\n 1\n )\n ],\n 2\n ),\n _c(\"div\", { staticClass: \"cardItemContent\" }, [\n _c(\"span\", [\n _vm._v(_vm._s(_vm._f(\"fromNow\")(item.updatedAt)))\n ]),\n _c(\n \"div\",\n { staticClass: \"avatarList\" },\n [\n _c(\n \"avatar-list\",\n { attrs: { size: \"mini\" } },\n _vm._l(item.members, function(member, i) {\n return _c(\"avatar-list-item\", {\n key: item.id + \"-avatar-\" + i,\n attrs: {\n src: member.avatar,\n tips: member.name\n }\n })\n }),\n 1\n )\n ],\n 1\n )\n ])\n ],\n 1\n )\n ],\n 1\n )\n }\n }\n ])\n })\n ],\n 1\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvY2FjaGUtbG9hZGVyL2Rpc3QvY2pzLmpzP3tcImNhY2hlRGlyZWN0b3J5XCI6XCJub2RlX21vZHVsZXMvLmNhY2hlL3Z1ZS1sb2FkZXJcIixcImNhY2hlSWRlbnRpZmllclwiOlwiMGRiOWMwN2QtdnVlLWxvYWRlci10ZW1wbGF0ZVwifSEuL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9sb2FkZXJzL3RlbXBsYXRlTG9hZGVyLmpzPyEuL25vZGVfbW9kdWxlcy9jYWNoZS1sb2FkZXIvZGlzdC9janMuanM/IS4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2luZGV4LmpzPyEuL3NyYy92aWV3cy9hY2NvdW50L2NlbnRlci9wYWdlL1Byb2plY3QudnVlP3Z1ZSZ0eXBlPXRlbXBsYXRlJmlkPWMwYWJjOTMyJnNjb3BlZD10cnVlJi5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL3NyYy92aWV3cy9hY2NvdW50L2NlbnRlci9wYWdlL1Byb2plY3QudnVlP2QxYTUiXSwic291cmNlc0NvbnRlbnQiOlsidmFyIHJlbmRlciA9IGZ1bmN0aW9uKCkge1xuICB2YXIgX3ZtID0gdGhpc1xuICB2YXIgX2ggPSBfdm0uJGNyZWF0ZUVsZW1lbnRcbiAgdmFyIF9jID0gX3ZtLl9zZWxmLl9jIHx8IF9oXG4gIHJldHVybiBfYyhcbiAgICBcImRpdlwiLFxuICAgIHsgc3RhdGljQ2xhc3M6IFwiYW50LXByby1wYWdlcy1hY2NvdW50LXByb2plY3RzLWNhcmRMaXN0XCIgfSxcbiAgICBbXG4gICAgICBfYyhcImEtbGlzdFwiLCB7XG4gICAgICAgIGF0dHJzOiB7XG4gICAgICAgICAgbG9hZGluZzogX3ZtLmxvYWRpbmcsXG4gICAgICAgICAgXCJkYXRhLXNvdXJjZVwiOiBfdm0uZGF0YSxcbiAgICAgICAgICBncmlkOiB7IGd1dHRlcjogMjQsIHh4bDogMywgeGw6IDIsIGxnOiAyLCBtZDogMiwgc206IDIsIHhzOiAxIH1cbiAgICAgICAgfSxcbiAgICAgICAgc2NvcGVkU2xvdHM6IF92bS5fdShbXG4gICAgICAgICAge1xuICAgICAgICAgICAga2V5OiBcInJlbmRlckl0ZW1cIixcbiAgICAgICAgICAgIGZuOiBmdW5jdGlvbihpdGVtKSB7XG4gICAgICAgICAgICAgIHJldHVybiBfYyhcbiAgICAgICAgICAgICAgICBcImEtbGlzdC1pdGVtXCIsXG4gICAgICAgICAgICAgICAge30sXG4gICAgICAgICAgICAgICAgW1xuICAgICAgICAgICAgICAgICAgX2MoXG4gICAgICAgICAgICAgICAgICAgIFwiYS1jYXJkXCIsXG4gICAgICAgICAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICAgICAgICBzdGF0aWNDbGFzczogXCJhbnQtcHJvLXBhZ2VzLWFjY291bnQtcHJvamVjdHMtY2FyZFwiLFxuICAgICAgICAgICAgICAgICAgICAgIGF0dHJzOiB7IGhvdmVyYWJsZTogXCJcIiB9XG4gICAgICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAgICAgIFtcbiAgICAgICAgICAgICAgICAgICAgICBfYyhcImltZ1wiLCB7XG4gICAgICAgICAgICAgICAgICAgICAgICBhdHRyczoge1xuICAgICAgICAgICAgICAgICAgICAgICAgICBzbG90OiBcImNvdmVyXCIsXG4gICAgICAgICAgICAgICAgICAgICAgICAgIHNyYzogaXRlbS5jb3ZlcixcbiAgICAgICAgICAgICAgICAgICAgICAgICAgYWx0OiBpdGVtLnRpdGxlXG4gICAgICAgICAgICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICAgICAgICAgICAgc2xvdDogXCJjb3ZlclwiXG4gICAgICAgICAgICAgICAgICAgICAgfSksXG4gICAgICAgICAgICAgICAgICAgICAgX2MoXG4gICAgICAgICAgICAgICAgICAgICAgICBcImEtY2FyZC1tZXRhXCIsXG4gICAgICAgICAgICAgICAgICAgICAgICB7IGF0dHJzOiB7IHRpdGxlOiBpdGVtLnRpdGxlIH0gfSxcbiAgICAgICAgICAgICAgICAgICAgICAgIFtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgX2MoXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgXCJ0ZW1wbGF0ZVwiLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHsgc2xvdDogXCJkZXNjcmlwdGlvblwiIH0sXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgW1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgX2MoXCJlbGxpcHNpc1wiLCB7IGF0dHJzOiB7IGxlbmd0aDogNTAgfSB9LCBbXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIF92bS5fdihfdm0uX3MoaXRlbS5kZXNjcmlwdGlvbikpXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICBdKVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIF0sXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgMVxuICAgICAgICAgICAgICAgICAgICAgICAgICApXG4gICAgICAgICAgICAgICAgICAgICAgICBdLFxuICAgICAgICAgICAgICAgICAgICAgICAgMlxuICAgICAgICAgICAgICAgICAgICAgICksXG4gICAgICAgICAgICAgICAgICAgICAgX2MoXCJkaXZcIiwgeyBzdGF0aWNDbGFzczogXCJjYXJkSXRlbUNvbnRlbnRcIiB9LCBbXG4gICAgICAgICAgICAgICAgICAgICAgICBfYyhcInNwYW5cIiwgW1xuICAgICAgICAgICAgICAgICAgICAgICAgICBfdm0uX3YoX3ZtLl9zKF92bS5fZihcImZyb21Ob3dcIikoaXRlbS51cGRhdGVkQXQpKSlcbiAgICAgICAgICAgICAgICAgICAgICAgIF0pLFxuICAgICAgICAgICAgICAgICAgICAgICAgX2MoXG4gICAgICAgICAgICAgICAgICAgICAgICAgIFwiZGl2XCIsXG4gICAgICAgICAgICAgICAgICAgICAgICAgIHsgc3RhdGljQ2xhc3M6IFwiYXZhdGFyTGlzdFwiIH0sXG4gICAgICAgICAgICAgICAgICAgICAgICAgIFtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBfYyhcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFwiYXZhdGFyLWxpc3RcIixcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHsgYXR0cnM6IHsgc2l6ZTogXCJtaW5pXCIgfSB9LFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgX3ZtLl9sKGl0ZW0ubWVtYmVycywgZnVuY3Rpb24obWVtYmVyLCBpKSB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHJldHVybiBfYyhcImF2YXRhci1saXN0LWl0ZW1cIiwge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGtleTogaXRlbS5pZCArIFwiLWF2YXRhci1cIiArIGksXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgYXR0cnM6IHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHNyYzogbWVtYmVyLmF2YXRhcixcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHRpcHM6IG1lbWJlci5uYW1lXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9KVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSksXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAxXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgKVxuICAgICAgICAgICAgICAgICAgICAgICAgICBdLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAxXG4gICAgICAgICAgICAgICAgICAgICAgICApXG4gICAgICAgICAgICAgICAgICAgICAgXSlcbiAgICAgICAgICAgICAgICAgICAgXSxcbiAgICAgICAgICAgICAgICAgICAgMVxuICAgICAgICAgICAgICAgICAgKVxuICAgICAgICAgICAgICAgIF0sXG4gICAgICAgICAgICAgICAgMVxuICAgICAgICAgICAgICApXG4gICAgICAgICAgICB9XG4gICAgICAgICAgfVxuICAgICAgICBdKVxuICAgICAgfSlcbiAgICBdLFxuICAgIDFcbiAgKVxufVxudmFyIHN0YXRpY1JlbmRlckZucyA9IFtdXG5yZW5kZXIuX3dpdGhTdHJpcHBlZCA9IHRydWVcblxuZXhwb3J0IHsgcmVuZGVyLCBzdGF0aWNSZW5kZXJGbnMgfSJdLCJtYXBwaW5ncyI6IkFBQUE7QUFBQTtBQUFBO0FBQUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7Iiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./node_modules/cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"0db9c07d-vue-loader-template\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/Project.vue?vue&type=template&id=c0abc932&scoped=true&\n");
/***/ }),
/***/ "./node_modules/cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"0db9c07d-vue-loader-template\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/list/search/components/IconText.vue?vue&type=template&id=f7839c82&":
/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0db9c07d-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/list/search/components/IconText.vue?vue&type=template&id=f7839c82& ***!
\*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/*! exports provided: render, staticRenderFns */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return render; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return staticRenderFns; });\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"span\",\n [\n _c(\"a-icon\", {\n staticStyle: { \"margin-right\": \"8px\" },\n attrs: { type: _vm.type }\n }),\n _vm._v(\"\\n \" + _vm._s(_vm.text) + \"\\n\")\n ],\n 1\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvY2FjaGUtbG9hZGVyL2Rpc3QvY2pzLmpzP3tcImNhY2hlRGlyZWN0b3J5XCI6XCJub2RlX21vZHVsZXMvLmNhY2hlL3Z1ZS1sb2FkZXJcIixcImNhY2hlSWRlbnRpZmllclwiOlwiMGRiOWMwN2QtdnVlLWxvYWRlci10ZW1wbGF0ZVwifSEuL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9sb2FkZXJzL3RlbXBsYXRlTG9hZGVyLmpzPyEuL25vZGVfbW9kdWxlcy9jYWNoZS1sb2FkZXIvZGlzdC9janMuanM/IS4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2luZGV4LmpzPyEuL3NyYy92aWV3cy9saXN0L3NlYXJjaC9jb21wb25lbnRzL0ljb25UZXh0LnZ1ZT92dWUmdHlwZT10ZW1wbGF0ZSZpZD1mNzgzOWM4MiYuanMiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8vLi9zcmMvdmlld3MvbGlzdC9zZWFyY2gvY29tcG9uZW50cy9JY29uVGV4dC52dWU/ZDQ0NSJdLCJzb3VyY2VzQ29udGVudCI6WyJ2YXIgcmVuZGVyID0gZnVuY3Rpb24oKSB7XG4gIHZhciBfdm0gPSB0aGlzXG4gIHZhciBfaCA9IF92bS4kY3JlYXRlRWxlbWVudFxuICB2YXIgX2MgPSBfdm0uX3NlbGYuX2MgfHwgX2hcbiAgcmV0dXJuIF9jKFxuICAgIFwic3BhblwiLFxuICAgIFtcbiAgICAgIF9jKFwiYS1pY29uXCIsIHtcbiAgICAgICAgc3RhdGljU3R5bGU6IHsgXCJtYXJnaW4tcmlnaHRcIjogXCI4cHhcIiB9LFxuICAgICAgICBhdHRyczogeyB0eXBlOiBfdm0udHlwZSB9XG4gICAgICB9KSxcbiAgICAgIF92bS5fdihcIlxcbiAgXCIgKyBfdm0uX3MoX3ZtLnRleHQpICsgXCJcXG5cIilcbiAgICBdLFxuICAgIDFcbiAgKVxufVxudmFyIHN0YXRpY1JlbmRlckZucyA9IFtdXG5yZW5kZXIuX3dpdGhTdHJpcHBlZCA9IHRydWVcblxuZXhwb3J0IHsgcmVuZGVyLCBzdGF0aWNSZW5kZXJGbnMgfSJdLCJtYXBwaW5ncyI6IkFBQUE7QUFBQTtBQUFBO0FBQUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7Iiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./node_modules/cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"0db9c07d-vue-loader-template\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/list/search/components/IconText.vue?vue&type=template&id=f7839c82&\n");
/***/ }),
/***/ "./node_modules/css-loader/index.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/less-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/Index.vue?vue&type=style&index=0&id=30448598&lang=less&scoped=true&":
/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** ./node_modules/css-loader??ref--10-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--10-oneOf-1-2!./node_modules/less-loader/dist/cjs.js??ref--10-oneOf-1-3!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/account/center/Index.vue?vue&type=style&index=0&id=30448598&lang=less&scoped=true& ***!
\*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
eval("exports = module.exports = __webpack_require__(/*! ../../../../node_modules/css-loader/lib/css-base.js */ \"./node_modules/css-loader/lib/css-base.js\")(false);\n// imports\n\n\n// module\nexports.push([module.i, \".page-header-wrapper-grid-content-main[data-v-30448598] {\\n width: 100%;\\n height: 100%;\\n min-height: 100%;\\n -webkit-transition: 0.3s;\\n transition: 0.3s;\\n}\\n.page-header-wrapper-grid-content-main .account-center-avatarHolder[data-v-30448598] {\\n text-align: center;\\n margin-bottom: 24px;\\n}\\n.page-header-wrapper-grid-content-main .account-center-avatarHolder > .avatar[data-v-30448598] {\\n margin: 0 auto;\\n width: 104px;\\n height: 104px;\\n margin-bottom: 20px;\\n border-radius: 50%;\\n overflow: hidden;\\n}\\n.page-header-wrapper-grid-content-main .account-center-avatarHolder > .avatar img[data-v-30448598] {\\n height: 100%;\\n width: 100%;\\n}\\n.page-header-wrapper-grid-content-main .account-center-avatarHolder .username[data-v-30448598] {\\n color: rgba(0, 0, 0, 0.85);\\n font-size: 20px;\\n line-height: 28px;\\n font-weight: 500;\\n margin-bottom: 4px;\\n}\\n.page-header-wrapper-grid-content-main .account-center-detail p[data-v-30448598] {\\n margin-bottom: 8px;\\n padding-left: 26px;\\n position: relative;\\n}\\n.page-header-wrapper-grid-content-main .account-center-detail i[data-v-30448598] {\\n position: absolute;\\n height: 14px;\\n width: 14px;\\n left: 0;\\n top: 4px;\\n background: url(https://gw.alipayobjects.com/zos/rmsportal/pBjWzVAHnOOtAUvZmZfy.svg);\\n}\\n.page-header-wrapper-grid-content-main .account-center-detail .title[data-v-30448598] {\\n background-position: 0 0;\\n}\\n.page-header-wrapper-grid-content-main .account-center-detail .group[data-v-30448598] {\\n background-position: 0 -22px;\\n}\\n.page-header-wrapper-grid-content-main .account-center-detail .address[data-v-30448598] {\\n background-position: 0 -44px;\\n}\\n.page-header-wrapper-grid-content-main .account-center-tags .ant-tag[data-v-30448598] {\\n margin-bottom: 8px;\\n}\\n.page-header-wrapper-grid-content-main .account-center-team .members a[data-v-30448598] {\\n display: block;\\n margin: 12px 0;\\n line-height: 24px;\\n height: 24px;\\n}\\n.page-header-wrapper-grid-content-main .account-center-team .members a .member[data-v-30448598] {\\n font-size: 14px;\\n color: rgba(0, 0, 0, 0.65);\\n line-height: 24px;\\n max-width: 100px;\\n vertical-align: top;\\n margin-left: 12px;\\n -webkit-transition: all 0.3s;\\n transition: all 0.3s;\\n display: inline-block;\\n}\\n.page-header-wrapper-grid-content-main .account-center-team .members a:hover span[data-v-30448598] {\\n color: #1890ff;\\n}\\n.page-header-wrapper-grid-content-main .tagsTitle[data-v-30448598],\\n.page-header-wrapper-grid-content-main .teamTitle[data-v-30448598] {\\n font-weight: 500;\\n color: rgba(0, 0, 0, 0.85);\\n margin-bottom: 12px;\\n}\\n\", \"\"]);\n\n// exports\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvY3NzLWxvYWRlci9pbmRleC5qcz8hLi9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvbG9hZGVycy9zdHlsZVBvc3RMb2FkZXIuanMhLi9ub2RlX21vZHVsZXMvcG9zdGNzcy1sb2FkZXIvc3JjL2luZGV4LmpzPyEuL25vZGVfbW9kdWxlcy9sZXNzLWxvYWRlci9kaXN0L2Nqcy5qcz8hLi9ub2RlX21vZHVsZXMvY2FjaGUtbG9hZGVyL2Rpc3QvY2pzLmpzPyEuL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9pbmRleC5qcz8hLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvSW5kZXgudnVlP3Z1ZSZ0eXBlPXN0eWxlJmluZGV4PTAmaWQ9MzA0NDg1OTgmbGFuZz1sZXNzJnNjb3BlZD10cnVlJi5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL3NyYy92aWV3cy9hY2NvdW50L2NlbnRlci9JbmRleC52dWU/YzdlOCJdLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnRzID0gbW9kdWxlLmV4cG9ydHMgPSByZXF1aXJlKFwiLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2Nzcy1sb2FkZXIvbGliL2Nzcy1iYXNlLmpzXCIpKGZhbHNlKTtcbi8vIGltcG9ydHNcblxuXG4vLyBtb2R1bGVcbmV4cG9ydHMucHVzaChbbW9kdWxlLmlkLCBcIi5wYWdlLWhlYWRlci13cmFwcGVyLWdyaWQtY29udGVudC1tYWluW2RhdGEtdi0zMDQ0ODU5OF0ge1xcbiAgd2lkdGg6IDEwMCU7XFxuICBoZWlnaHQ6IDEwMCU7XFxuICBtaW4taGVpZ2h0OiAxMDAlO1xcbiAgLXdlYmtpdC10cmFuc2l0aW9uOiAwLjNzO1xcbiAgdHJhbnNpdGlvbjogMC4zcztcXG59XFxuLnBhZ2UtaGVhZGVyLXdyYXBwZXItZ3JpZC1jb250ZW50LW1haW4gLmFjY291bnQtY2VudGVyLWF2YXRhckhvbGRlcltkYXRhLXYtMzA0NDg1OThdIHtcXG4gIHRleHQtYWxpZ246IGNlbnRlcjtcXG4gIG1hcmdpbi1ib3R0b206IDI0cHg7XFxufVxcbi5wYWdlLWhlYWRlci13cmFwcGVyLWdyaWQtY29udGVudC1tYWluIC5hY2NvdW50LWNlbnRlci1hdmF0YXJIb2xkZXIgPiAuYXZhdGFyW2RhdGEtdi0zMDQ0ODU5OF0ge1xcbiAgbWFyZ2luOiAwIGF1dG87XFxuICB3aWR0aDogMTA0cHg7XFxuICBoZWlnaHQ6IDEwNHB4O1xcbiAgbWFyZ2luLWJvdHRvbTogMjBweDtcXG4gIGJvcmRlci1yYWRpdXM6IDUwJTtcXG4gIG92ZXJmbG93OiBoaWRkZW47XFxufVxcbi5wYWdlLWhlYWRlci13cmFwcGVyLWdyaWQtY29udGVudC1tYWluIC5hY2NvdW50LWNlbnRlci1hdmF0YXJIb2xkZXIgPiAuYXZhdGFyIGltZ1tkYXRhLXYtMzA0NDg1OThdIHtcXG4gIGhlaWdodDogMTAwJTtcXG4gIHdpZHRoOiAxMDAlO1xcbn1cXG4ucGFnZS1oZWFkZXItd3JhcHBlci1ncmlkLWNvbnRlbnQtbWFpbiAuYWNjb3VudC1jZW50ZXItYXZhdGFySG9sZGVyIC51c2VybmFtZVtkYXRhLXYtMzA0NDg1OThdIHtcXG4gIGNvbG9yOiByZ2JhKDAsIDAsIDAsIDAuODUpO1xcbiAgZm9udC1zaXplOiAyMHB4O1xcbiAgbGluZS1oZWlnaHQ6IDI4cHg7XFxuICBmb250LXdlaWdodDogNTAwO1xcbiAgbWFyZ2luLWJvdHRvbTogNHB4O1xcbn1cXG4ucGFnZS1oZWFkZXItd3JhcHBlci1ncmlkLWNvbnRlbnQtbWFpbiAuYWNjb3VudC1jZW50ZXItZGV0YWlsIHBbZGF0YS12LTMwNDQ4NTk4XSB7XFxuICBtYXJnaW4tYm90dG9tOiA4cHg7XFxuICBwYWRkaW5nLWxlZnQ6IDI2cHg7XFxuICBwb3NpdGlvbjogcmVsYXRpdmU7XFxufVxcbi5wYWdlLWhlYWRlci13cmFwcGVyLWdyaWQtY29udGVudC1tYWluIC5hY2NvdW50LWNlbnRlci1kZXRhaWwgaVtkYXRhLXYtMzA0NDg1OThdIHtcXG4gIHBvc2l0aW9uOiBhYnNvbHV0ZTtcXG4gIGhlaWdodDogMTRweDtcXG4gIHdpZHRoOiAxNHB4O1xcbiAgbGVmdDogMDtcXG4gIHRvcDogNHB4O1xcbiAgYmFja2dyb3VuZDogdXJsKGh0dHBzOi8vZ3cuYWxpcGF5b2JqZWN0cy5jb20vem9zL3Jtc3BvcnRhbC9wQmpXelZBSG5PT3RBVXZabVpmeS5zdmcpO1xcbn1cXG4ucGFnZS1oZWFkZXItd3JhcHBlci1ncmlkLWNvbnRlbnQtbWFpbiAuYWNjb3VudC1jZW50ZXItZGV0YWlsIC50aXRsZVtkYXRhLXYtMzA0NDg1OThdIHtcXG4gIGJhY2tncm91bmQtcG9zaXRpb246IDAgMDtcXG59XFxuLnBhZ2UtaGVhZGVyLXdyYXBwZXItZ3JpZC1jb250ZW50LW1haW4gLmFjY291bnQtY2VudGVyLWRldGFpbCAuZ3JvdXBbZGF0YS12LTMwNDQ4NTk4XSB7XFxuICBiYWNrZ3JvdW5kLXBvc2l0aW9uOiAwIC0yMnB4O1xcbn1cXG4ucGFnZS1oZWFkZXItd3JhcHBlci1ncmlkLWNvbnRlbnQtbWFpbiAuYWNjb3VudC1jZW50ZXItZGV0YWlsIC5hZGRyZXNzW2RhdGEtdi0zMDQ0ODU5OF0ge1xcbiAgYmFja2dyb3VuZC1wb3NpdGlvbjogMCAtNDRweDtcXG59XFxuLnBhZ2UtaGVhZGVyLXdyYXBwZXItZ3JpZC1jb250ZW50LW1haW4gLmFjY291bnQtY2VudGVyLXRhZ3MgLmFudC10YWdbZGF0YS12LTMwNDQ4NTk4XSB7XFxuICBtYXJnaW4tYm90dG9tOiA4cHg7XFxufVxcbi5wYWdlLWhlYWRlci13cmFwcGVyLWdyaWQtY29udGVudC1tYWluIC5hY2NvdW50LWNlbnRlci10ZWFtIC5tZW1iZXJzIGFbZGF0YS12LTMwNDQ4NTk4XSB7XFxuICBkaXNwbGF5OiBibG9jaztcXG4gIG1hcmdpbjogMTJweCAwO1xcbiAgbGluZS1oZWlnaHQ6IDI0cHg7XFxuICBoZWlnaHQ6IDI0cHg7XFxufVxcbi5wYWdlLWhlYWRlci13cmFwcGVyLWdyaWQtY29udGVudC1tYWluIC5hY2NvdW50LWNlbnRlci10ZWFtIC5tZW1iZXJzIGEgLm1lbWJlcltkYXRhLXYtMzA0NDg1OThdIHtcXG4gIGZvbnQtc2l6ZTogMTRweDtcXG4gIGNvbG9yOiByZ2JhKDAsIDAsIDAsIDAuNjUpO1xcbiAgbGluZS1oZWlnaHQ6IDI0cHg7XFxuICBtYXgtd2lkdGg6IDEwMHB4O1xcbiAgdmVydGljYWwtYWxpZ246IHRvcDtcXG4gIG1hcmdpbi1sZWZ0OiAxMnB4O1xcbiAgLXdlYmtpdC10cmFuc2l0aW9uOiBhbGwgMC4zcztcXG4gIHRyYW5zaXRpb246IGFsbCAwLjNzO1xcbiAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xcbn1cXG4ucGFnZS1oZWFkZXItd3JhcHBlci1ncmlkLWNvbnRlbnQtbWFpbiAuYWNjb3VudC1jZW50ZXItdGVhbSAubWVtYmVycyBhOmhvdmVyIHNwYW5bZGF0YS12LTMwNDQ4NTk4XSB7XFxuICBjb2xvcjogIzE4OTBmZjtcXG59XFxuLnBhZ2UtaGVhZGVyLXdyYXBwZXItZ3JpZC1jb250ZW50LW1haW4gLnRhZ3NUaXRsZVtkYXRhLXYtMzA0NDg1OThdLFxcbi5wYWdlLWhlYWRlci13cmFwcGVyLWdyaWQtY29udGVudC1tYWluIC50ZWFtVGl0bGVbZGF0YS12LTMwNDQ4NTk4XSB7XFxuICBmb250LXdlaWdodDogNTAwO1xcbiAgY29sb3I6IHJnYmEoMCwgMCwgMCwgMC44NSk7XFxuICBtYXJnaW4tYm90dG9tOiAxMnB4O1xcbn1cXG5cIiwgXCJcIl0pO1xuXG4vLyBleHBvcnRzXG4iXSwibWFwcGluZ3MiOiJBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7Iiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./node_modules/css-loader/index.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/less-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/Index.vue?vue&type=style&index=0&id=30448598&lang=less&scoped=true&\n");
/***/ }),
/***/ "./node_modules/css-loader/index.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/less-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/App.vue?vue&type=style&index=0&id=419a116f&lang=less&scoped=true&":
/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** ./node_modules/css-loader??ref--10-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--10-oneOf-1-2!./node_modules/less-loader/dist/cjs.js??ref--10-oneOf-1-3!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/account/center/page/App.vue?vue&type=style&index=0&id=419a116f&lang=less&scoped=true& ***!
\**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
eval("exports = module.exports = __webpack_require__(/*! ../../../../../node_modules/css-loader/lib/css-base.js */ \"./node_modules/css-loader/lib/css-base.js\")(false);\n// imports\n\n\n// module\nexports.push([module.i, \".app-list .meta-cardInfo[data-v-419a116f] {\\n zoom: 1;\\n margin-top: 16px;\\n}\\n.app-list .meta-cardInfo > div[data-v-419a116f] {\\n position: relative;\\n text-align: left;\\n float: left;\\n width: 50%;\\n}\\n.app-list .meta-cardInfo > div p[data-v-419a116f] {\\n line-height: 32px;\\n font-size: 24px;\\n margin: 0;\\n}\\n.app-list .meta-cardInfo > div p[data-v-419a116f]:first-child {\\n color: rgba(0, 0, 0, 0.45);\\n font-size: 12px;\\n line-height: 20px;\\n margin-bottom: 4px;\\n}\\n\", \"\"]);\n\n// exports\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvY3NzLWxvYWRlci9pbmRleC5qcz8hLi9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvbG9hZGVycy9zdHlsZVBvc3RMb2FkZXIuanMhLi9ub2RlX21vZHVsZXMvcG9zdGNzcy1sb2FkZXIvc3JjL2luZGV4LmpzPyEuL25vZGVfbW9kdWxlcy9sZXNzLWxvYWRlci9kaXN0L2Nqcy5qcz8hLi9ub2RlX21vZHVsZXMvY2FjaGUtbG9hZGVyL2Rpc3QvY2pzLmpzPyEuL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9pbmRleC5qcz8hLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvcGFnZS9BcHAudnVlP3Z1ZSZ0eXBlPXN0eWxlJmluZGV4PTAmaWQ9NDE5YTExNmYmbGFuZz1sZXNzJnNjb3BlZD10cnVlJi5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL3NyYy92aWV3cy9hY2NvdW50L2NlbnRlci9wYWdlL0FwcC52dWU/YWI1OSJdLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnRzID0gbW9kdWxlLmV4cG9ydHMgPSByZXF1aXJlKFwiLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2Nzcy1sb2FkZXIvbGliL2Nzcy1iYXNlLmpzXCIpKGZhbHNlKTtcbi8vIGltcG9ydHNcblxuXG4vLyBtb2R1bGVcbmV4cG9ydHMucHVzaChbbW9kdWxlLmlkLCBcIi5hcHAtbGlzdCAubWV0YS1jYXJkSW5mb1tkYXRhLXYtNDE5YTExNmZdIHtcXG4gIHpvb206IDE7XFxuICBtYXJnaW4tdG9wOiAxNnB4O1xcbn1cXG4uYXBwLWxpc3QgLm1ldGEtY2FyZEluZm8gPiBkaXZbZGF0YS12LTQxOWExMTZmXSB7XFxuICBwb3NpdGlvbjogcmVsYXRpdmU7XFxuICB0ZXh0LWFsaWduOiBsZWZ0O1xcbiAgZmxvYXQ6IGxlZnQ7XFxuICB3aWR0aDogNTAlO1xcbn1cXG4uYXBwLWxpc3QgLm1ldGEtY2FyZEluZm8gPiBkaXYgcFtkYXRhLXYtNDE5YTExNmZdIHtcXG4gIGxpbmUtaGVpZ2h0OiAzMnB4O1xcbiAgZm9udC1zaXplOiAyNHB4O1xcbiAgbWFyZ2luOiAwO1xcbn1cXG4uYXBwLWxpc3QgLm1ldGEtY2FyZEluZm8gPiBkaXYgcFtkYXRhLXYtNDE5YTExNmZdOmZpcnN0LWNoaWxkIHtcXG4gIGNvbG9yOiByZ2JhKDAsIDAsIDAsIDAuNDUpO1xcbiAgZm9udC1zaXplOiAxMnB4O1xcbiAgbGluZS1oZWlnaHQ6IDIwcHg7XFxuICBtYXJnaW4tYm90dG9tOiA0cHg7XFxufVxcblwiLCBcIlwiXSk7XG5cbi8vIGV4cG9ydHNcbiJdLCJtYXBwaW5ncyI6IkFBQUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTsiLCJzb3VyY2VSb290IjoiIn0=\n//# sourceURL=webpack-internal:///./node_modules/css-loader/index.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/less-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/App.vue?vue&type=style&index=0&id=419a116f&lang=less&scoped=true&\n");
/***/ }),
/***/ "./node_modules/css-loader/index.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/less-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/Project.vue?vue&type=style&index=0&id=c0abc932&lang=less&scoped=true&":
/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** ./node_modules/css-loader??ref--10-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--10-oneOf-1-2!./node_modules/less-loader/dist/cjs.js??ref--10-oneOf-1-3!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/account/center/page/Project.vue?vue&type=style&index=0&id=c0abc932&lang=less&scoped=true& ***!
\**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
eval("exports = module.exports = __webpack_require__(/*! ../../../../../node_modules/css-loader/lib/css-base.js */ \"./node_modules/css-loader/lib/css-base.js\")(false);\n// imports\n\n\n// module\nexports.push([module.i, \".ant-pro-pages-account-projects-cardList[data-v-c0abc932] {\\n margin-top: 24px;\\n}\\n.ant-pro-pages-account-projects-cardList[data-v-c0abc932] .ant-card-meta-title {\\n margin-bottom: 4px;\\n}\\n.ant-pro-pages-account-projects-cardList[data-v-c0abc932] .ant-card-meta-description {\\n height: 44px;\\n overflow: hidden;\\n line-height: 22px;\\n}\\n.ant-pro-pages-account-projects-cardList .cardItemContent[data-v-c0abc932] {\\n display: -webkit-box;\\n display: -ms-flexbox;\\n display: flex;\\n height: 20px;\\n margin-top: 16px;\\n margin-bottom: -4px;\\n line-height: 20px;\\n}\\n.ant-pro-pages-account-projects-cardList .cardItemContent > span[data-v-c0abc932] {\\n -webkit-box-flex: 1;\\n -ms-flex: 1 1;\\n flex: 1 1;\\n color: rgba(0, 0, 0, 0.45);\\n font-size: 12px;\\n}\\n.ant-pro-pages-account-projects-cardList .cardItemContent[data-v-c0abc932] .ant-pro-avatar-list {\\n -webkit-box-flex: 0;\\n -ms-flex: 0 1 auto;\\n flex: 0 1 auto;\\n}\\n\", \"\"]);\n\n// exports\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvY3NzLWxvYWRlci9pbmRleC5qcz8hLi9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvbG9hZGVycy9zdHlsZVBvc3RMb2FkZXIuanMhLi9ub2RlX21vZHVsZXMvcG9zdGNzcy1sb2FkZXIvc3JjL2luZGV4LmpzPyEuL25vZGVfbW9kdWxlcy9sZXNzLWxvYWRlci9kaXN0L2Nqcy5qcz8hLi9ub2RlX21vZHVsZXMvY2FjaGUtbG9hZGVyL2Rpc3QvY2pzLmpzPyEuL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9pbmRleC5qcz8hLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvcGFnZS9Qcm9qZWN0LnZ1ZT92dWUmdHlwZT1zdHlsZSZpbmRleD0wJmlkPWMwYWJjOTMyJmxhbmc9bGVzcyZzY29wZWQ9dHJ1ZSYuanMiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8vLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvcGFnZS9Qcm9qZWN0LnZ1ZT9iNGJiIl0sInNvdXJjZXNDb250ZW50IjpbImV4cG9ydHMgPSBtb2R1bGUuZXhwb3J0cyA9IHJlcXVpcmUoXCIuLi8uLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvY3NzLWxvYWRlci9saWIvY3NzLWJhc2UuanNcIikoZmFsc2UpO1xuLy8gaW1wb3J0c1xuXG5cbi8vIG1vZHVsZVxuZXhwb3J0cy5wdXNoKFttb2R1bGUuaWQsIFwiLmFudC1wcm8tcGFnZXMtYWNjb3VudC1wcm9qZWN0cy1jYXJkTGlzdFtkYXRhLXYtYzBhYmM5MzJdIHtcXG4gIG1hcmdpbi10b3A6IDI0cHg7XFxufVxcbi5hbnQtcHJvLXBhZ2VzLWFjY291bnQtcHJvamVjdHMtY2FyZExpc3RbZGF0YS12LWMwYWJjOTMyXSAuYW50LWNhcmQtbWV0YS10aXRsZSB7XFxuICBtYXJnaW4tYm90dG9tOiA0cHg7XFxufVxcbi5hbnQtcHJvLXBhZ2VzLWFjY291bnQtcHJvamVjdHMtY2FyZExpc3RbZGF0YS12LWMwYWJjOTMyXSAuYW50LWNhcmQtbWV0YS1kZXNjcmlwdGlvbiB7XFxuICBoZWlnaHQ6IDQ0cHg7XFxuICBvdmVyZmxvdzogaGlkZGVuO1xcbiAgbGluZS1oZWlnaHQ6IDIycHg7XFxufVxcbi5hbnQtcHJvLXBhZ2VzLWFjY291bnQtcHJvamVjdHMtY2FyZExpc3QgLmNhcmRJdGVtQ29udGVudFtkYXRhLXYtYzBhYmM5MzJdIHtcXG4gIGRpc3BsYXk6IC13ZWJraXQtYm94O1xcbiAgZGlzcGxheTogLW1zLWZsZXhib3g7XFxuICBkaXNwbGF5OiBmbGV4O1xcbiAgaGVpZ2h0OiAyMHB4O1xcbiAgbWFyZ2luLXRvcDogMTZweDtcXG4gIG1hcmdpbi1ib3R0b206IC00cHg7XFxuICBsaW5lLWhlaWdodDogMjBweDtcXG59XFxuLmFudC1wcm8tcGFnZXMtYWNjb3VudC1wcm9qZWN0cy1jYXJkTGlzdCAuY2FyZEl0ZW1Db250ZW50ID4gc3BhbltkYXRhLXYtYzBhYmM5MzJdIHtcXG4gIC13ZWJraXQtYm94LWZsZXg6IDE7XFxuICAgICAgLW1zLWZsZXg6IDEgMTtcXG4gICAgICAgICAgZmxleDogMSAxO1xcbiAgY29sb3I6IHJnYmEoMCwgMCwgMCwgMC40NSk7XFxuICBmb250LXNpemU6IDEycHg7XFxufVxcbi5hbnQtcHJvLXBhZ2VzLWFjY291bnQtcHJvamVjdHMtY2FyZExpc3QgLmNhcmRJdGVtQ29udGVudFtkYXRhLXYtYzBhYmM5MzJdIC5hbnQtcHJvLWF2YXRhci1saXN0IHtcXG4gIC13ZWJraXQtYm94LWZsZXg6IDA7XFxuICAgICAgLW1zLWZsZXg6IDAgMSBhdXRvO1xcbiAgICAgICAgICBmbGV4OiAwIDEgYXV0bztcXG59XFxuXCIsIFwiXCJdKTtcblxuLy8gZXhwb3J0c1xuIl0sIm1hcHBpbmdzIjoiQUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOyIsInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///./node_modules/css-loader/index.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/less-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/Project.vue?vue&type=style&index=0&id=c0abc932&lang=less&scoped=true&\n");
/***/ }),
/***/ "./node_modules/vue-style-loader/index.js?!./node_modules/css-loader/index.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/less-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/Index.vue?vue&type=style&index=0&id=30448598&lang=less&scoped=true&":
/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** ./node_modules/vue-style-loader??ref--10-oneOf-1-0!./node_modules/css-loader??ref--10-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--10-oneOf-1-2!./node_modules/less-loader/dist/cjs.js??ref--10-oneOf-1-3!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/account/center/Index.vue?vue&type=style&index=0&id=30448598&lang=less&scoped=true& ***!
\**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
eval("// style-loader: Adds some css to the DOM by adding a <style> tag\n\n// load the styles\nvar content = __webpack_require__(/*! !../../../../node_modules/css-loader??ref--10-oneOf-1-1!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/postcss-loader/src??ref--10-oneOf-1-2!../../../../node_modules/less-loader/dist/cjs.js??ref--10-oneOf-1-3!../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./Index.vue?vue&type=style&index=0&id=30448598&lang=less&scoped=true& */ \"./node_modules/css-loader/index.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/less-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/Index.vue?vue&type=style&index=0&id=30448598&lang=less&scoped=true&\");\nif(typeof content === 'string') content = [[module.i, content, '']];\nif(content.locals) module.exports = content.locals;\n// add the styles to the DOM\nvar add = __webpack_require__(/*! ../../../../node_modules/vue-style-loader/lib/addStylesClient.js */ \"./node_modules/vue-style-loader/lib/addStylesClient.js\").default\nvar update = add(\"d0d10570\", content, false, {\"sourceMap\":false,\"shadowMode\":false});\n// Hot Module Replacement\nif(true) {\n // When the styles change, update the <style> tags\n if(!content.locals) {\n module.hot.accept(/*! !../../../../node_modules/css-loader??ref--10-oneOf-1-1!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/postcss-loader/src??ref--10-oneOf-1-2!../../../../node_modules/less-loader/dist/cjs.js??ref--10-oneOf-1-3!../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./Index.vue?vue&type=style&index=0&id=30448598&lang=less&scoped=true& */ \"./node_modules/css-loader/index.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/less-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/Index.vue?vue&type=style&index=0&id=30448598&lang=less&scoped=true&\", function() {\n var newContent = __webpack_require__(/*! !../../../../node_modules/css-loader??ref--10-oneOf-1-1!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/postcss-loader/src??ref--10-oneOf-1-2!../../../../node_modules/less-loader/dist/cjs.js??ref--10-oneOf-1-3!../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./Index.vue?vue&type=style&index=0&id=30448598&lang=less&scoped=true& */ \"./node_modules/css-loader/index.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/less-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/Index.vue?vue&type=style&index=0&id=30448598&lang=less&scoped=true&\");\n if(typeof newContent === 'string') newContent = [[module.i, newContent, '']];\n update(newContent);\n });\n }\n // When the module is disposed, remove the <style> tags\n module.hot.dispose(function() { update(); });\n}//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvdnVlLXN0eWxlLWxvYWRlci9pbmRleC5qcz8hLi9ub2RlX21vZHVsZXMvY3NzLWxvYWRlci9pbmRleC5qcz8hLi9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvbG9hZGVycy9zdHlsZVBvc3RMb2FkZXIuanMhLi9ub2RlX21vZHVsZXMvcG9zdGNzcy1sb2FkZXIvc3JjL2luZGV4LmpzPyEuL25vZGVfbW9kdWxlcy9sZXNzLWxvYWRlci9kaXN0L2Nqcy5qcz8hLi9ub2RlX21vZHVsZXMvY2FjaGUtbG9hZGVyL2Rpc3QvY2pzLmpzPyEuL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9pbmRleC5qcz8hLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvSW5kZXgudnVlP3Z1ZSZ0eXBlPXN0eWxlJmluZGV4PTAmaWQ9MzA0NDg1OTgmbGFuZz1sZXNzJnNjb3BlZD10cnVlJi5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL3NyYy92aWV3cy9hY2NvdW50L2NlbnRlci9JbmRleC52dWU/MzQ1YiJdLCJzb3VyY2VzQ29udGVudCI6WyIvLyBzdHlsZS1sb2FkZXI6IEFkZHMgc29tZSBjc3MgdG8gdGhlIERPTSBieSBhZGRpbmcgYSA8c3R5bGU+IHRhZ1xuXG4vLyBsb2FkIHRoZSBzdHlsZXNcbnZhciBjb250ZW50ID0gcmVxdWlyZShcIiEhLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2Nzcy1sb2FkZXIvaW5kZXguanM/P3JlZi0tMTAtb25lT2YtMS0xIS4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9sb2FkZXJzL3N0eWxlUG9zdExvYWRlci5qcyEuLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvcG9zdGNzcy1sb2FkZXIvc3JjL2luZGV4LmpzPz9yZWYtLTEwLW9uZU9mLTEtMiEuLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvbGVzcy1sb2FkZXIvZGlzdC9janMuanM/P3JlZi0tMTAtb25lT2YtMS0zIS4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9jYWNoZS1sb2FkZXIvZGlzdC9janMuanM/P3JlZi0tMC0wIS4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9pbmRleC5qcz8/dnVlLWxvYWRlci1vcHRpb25zIS4vSW5kZXgudnVlP3Z1ZSZ0eXBlPXN0eWxlJmluZGV4PTAmaWQ9MzA0NDg1OTgmbGFuZz1sZXNzJnNjb3BlZD10cnVlJlwiKTtcbmlmKHR5cGVvZiBjb250ZW50ID09PSAnc3RyaW5nJykgY29udGVudCA9IFtbbW9kdWxlLmlkLCBjb250ZW50LCAnJ11dO1xuaWYoY29udGVudC5sb2NhbHMpIG1vZHVsZS5leHBvcnRzID0gY29udGVudC5sb2NhbHM7XG4vLyBhZGQgdGhlIHN0eWxlcyB0byB0aGUgRE9NXG52YXIgYWRkID0gcmVxdWlyZShcIiEuLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvdnVlLXN0eWxlLWxvYWRlci9saWIvYWRkU3R5bGVzQ2xpZW50LmpzXCIpLmRlZmF1bHRcbnZhciB1cGRhdGUgPSBhZGQoXCJkMGQxMDU3MFwiLCBjb250ZW50LCBmYWxzZSwge1wic291cmNlTWFwXCI6ZmFsc2UsXCJzaGFkb3dNb2RlXCI6ZmFsc2V9KTtcbi8vIEhvdCBNb2R1bGUgUmVwbGFjZW1lbnRcbmlmKG1vZHVsZS5ob3QpIHtcbiAvLyBXaGVuIHRoZSBzdHlsZXMgY2hhbmdlLCB1cGRhdGUgdGhlIDxzdHlsZT4gdGFnc1xuIGlmKCFjb250ZW50LmxvY2Fscykge1xuICAgbW9kdWxlLmhvdC5hY2NlcHQoXCIhIS4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9jc3MtbG9hZGVyL2luZGV4LmpzPz9yZWYtLTEwLW9uZU9mLTEtMSEuLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvbG9hZGVycy9zdHlsZVBvc3RMb2FkZXIuanMhLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Bvc3Rjc3MtbG9hZGVyL3NyYy9pbmRleC5qcz8/cmVmLS0xMC1vbmVPZi0xLTIhLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2xlc3MtbG9hZGVyL2Rpc3QvY2pzLmpzPz9yZWYtLTEwLW9uZU9mLTEtMyEuLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvY2FjaGUtbG9hZGVyL2Rpc3QvY2pzLmpzPz9yZWYtLTAtMCEuLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvaW5kZXguanM/P3Z1ZS1sb2FkZXItb3B0aW9ucyEuL0luZGV4LnZ1ZT92dWUmdHlwZT1zdHlsZSZpbmRleD0wJmlkPTMwNDQ4NTk4Jmxhbmc9bGVzcyZzY29wZWQ9dHJ1ZSZcIiwgZnVuY3Rpb24oKSB7XG4gICAgIHZhciBuZXdDb250ZW50ID0gcmVxdWlyZShcIiEhLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2Nzcy1sb2FkZXIvaW5kZXguanM/P3JlZi0tMTAtb25lT2YtMS0xIS4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9sb2FkZXJzL3N0eWxlUG9zdExvYWRlci5qcyEuLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvcG9zdGNzcy1sb2FkZXIvc3JjL2luZGV4LmpzPz9yZWYtLTEwLW9uZU9mLTEtMiEuLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvbGVzcy1sb2FkZXIvZGlzdC9janMuanM/P3JlZi0tMTAtb25lT2YtMS0zIS4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9jYWNoZS1sb2FkZXIvZGlzdC9janMuanM/P3JlZi0tMC0wIS4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9pbmRleC5qcz8/dnVlLWxvYWRlci1vcHRpb25zIS4vSW5kZXgudnVlP3Z1ZSZ0eXBlPXN0eWxlJmluZGV4PTAmaWQ9MzA0NDg1OTgmbGFuZz1sZXNzJnNjb3BlZD10cnVlJlwiKTtcbiAgICAgaWYodHlwZW9mIG5ld0NvbnRlbnQgPT09ICdzdHJpbmcnKSBuZXdDb250ZW50ID0gW1ttb2R1bGUuaWQsIG5ld0NvbnRlbnQsICcnXV07XG4gICAgIHVwZGF0ZShuZXdDb250ZW50KTtcbiAgIH0pO1xuIH1cbiAvLyBXaGVuIHRoZSBtb2R1bGUgaXMgZGlzcG9zZWQsIHJlbW92ZSB0aGUgPHN0eWxlPiB0YWdzXG4gbW9kdWxlLmhvdC5kaXNwb3NlKGZ1bmN0aW9uKCkgeyB1cGRhdGUoKTsgfSk7XG59Il0sIm1hcHBpbmdzIjoiQUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSIsInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///./node_modules/vue-style-loader/index.js?!./node_modules/css-loader/index.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/less-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/Index.vue?vue&type=style&index=0&id=30448598&lang=less&scoped=true&\n");
/***/ }),
/***/ "./node_modules/vue-style-loader/index.js?!./node_modules/css-loader/index.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/less-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/App.vue?vue&type=style&index=0&id=419a116f&lang=less&scoped=true&":
/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** ./node_modules/vue-style-loader??ref--10-oneOf-1-0!./node_modules/css-loader??ref--10-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--10-oneOf-1-2!./node_modules/less-loader/dist/cjs.js??ref--10-oneOf-1-3!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/account/center/page/App.vue?vue&type=style&index=0&id=419a116f&lang=less&scoped=true& ***!
\*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
eval("// style-loader: Adds some css to the DOM by adding a <style> tag\n\n// load the styles\nvar content = __webpack_require__(/*! !../../../../../node_modules/css-loader??ref--10-oneOf-1-1!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/postcss-loader/src??ref--10-oneOf-1-2!../../../../../node_modules/less-loader/dist/cjs.js??ref--10-oneOf-1-3!../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../node_modules/vue-loader/lib??vue-loader-options!./App.vue?vue&type=style&index=0&id=419a116f&lang=less&scoped=true& */ \"./node_modules/css-loader/index.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/less-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/App.vue?vue&type=style&index=0&id=419a116f&lang=less&scoped=true&\");\nif(typeof content === 'string') content = [[module.i, content, '']];\nif(content.locals) module.exports = content.locals;\n// add the styles to the DOM\nvar add = __webpack_require__(/*! ../../../../../node_modules/vue-style-loader/lib/addStylesClient.js */ \"./node_modules/vue-style-loader/lib/addStylesClient.js\").default\nvar update = add(\"45ddc1c8\", content, false, {\"sourceMap\":false,\"shadowMode\":false});\n// Hot Module Replacement\nif(true) {\n // When the styles change, update the <style> tags\n if(!content.locals) {\n module.hot.accept(/*! !../../../../../node_modules/css-loader??ref--10-oneOf-1-1!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/postcss-loader/src??ref--10-oneOf-1-2!../../../../../node_modules/less-loader/dist/cjs.js??ref--10-oneOf-1-3!../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../node_modules/vue-loader/lib??vue-loader-options!./App.vue?vue&type=style&index=0&id=419a116f&lang=less&scoped=true& */ \"./node_modules/css-loader/index.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/less-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/App.vue?vue&type=style&index=0&id=419a116f&lang=less&scoped=true&\", function() {\n var newContent = __webpack_require__(/*! !../../../../../node_modules/css-loader??ref--10-oneOf-1-1!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/postcss-loader/src??ref--10-oneOf-1-2!../../../../../node_modules/less-loader/dist/cjs.js??ref--10-oneOf-1-3!../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../node_modules/vue-loader/lib??vue-loader-options!./App.vue?vue&type=style&index=0&id=419a116f&lang=less&scoped=true& */ \"./node_modules/css-loader/index.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/less-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/App.vue?vue&type=style&index=0&id=419a116f&lang=less&scoped=true&\");\n if(typeof newContent === 'string') newContent = [[module.i, newContent, '']];\n update(newContent);\n });\n }\n // When the module is disposed, remove the <style> tags\n module.hot.dispose(function() { update(); });\n}//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvdnVlLXN0eWxlLWxvYWRlci9pbmRleC5qcz8hLi9ub2RlX21vZHVsZXMvY3NzLWxvYWRlci9pbmRleC5qcz8hLi9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvbG9hZGVycy9zdHlsZVBvc3RMb2FkZXIuanMhLi9ub2RlX21vZHVsZXMvcG9zdGNzcy1sb2FkZXIvc3JjL2luZGV4LmpzPyEuL25vZGVfbW9kdWxlcy9sZXNzLWxvYWRlci9kaXN0L2Nqcy5qcz8hLi9ub2RlX21vZHVsZXMvY2FjaGUtbG9hZGVyL2Rpc3QvY2pzLmpzPyEuL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9pbmRleC5qcz8hLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvcGFnZS9BcHAudnVlP3Z1ZSZ0eXBlPXN0eWxlJmluZGV4PTAmaWQ9NDE5YTExNmYmbGFuZz1sZXNzJnNjb3BlZD10cnVlJi5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL3NyYy92aWV3cy9hY2NvdW50L2NlbnRlci9wYWdlL0FwcC52dWU/ZjMwMyJdLCJzb3VyY2VzQ29udGVudCI6WyIvLyBzdHlsZS1sb2FkZXI6IEFkZHMgc29tZSBjc3MgdG8gdGhlIERPTSBieSBhZGRpbmcgYSA8c3R5bGU+IHRhZ1xuXG4vLyBsb2FkIHRoZSBzdHlsZXNcbnZhciBjb250ZW50ID0gcmVxdWlyZShcIiEhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2Nzcy1sb2FkZXIvaW5kZXguanM/P3JlZi0tMTAtb25lT2YtMS0xIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9sb2FkZXJzL3N0eWxlUG9zdExvYWRlci5qcyEuLi8uLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvcG9zdGNzcy1sb2FkZXIvc3JjL2luZGV4LmpzPz9yZWYtLTEwLW9uZU9mLTEtMiEuLi8uLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvbGVzcy1sb2FkZXIvZGlzdC9janMuanM/P3JlZi0tMTAtb25lT2YtMS0zIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9jYWNoZS1sb2FkZXIvZGlzdC9janMuanM/P3JlZi0tMC0wIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9pbmRleC5qcz8/dnVlLWxvYWRlci1vcHRpb25zIS4vQXBwLnZ1ZT92dWUmdHlwZT1zdHlsZSZpbmRleD0wJmlkPTQxOWExMTZmJmxhbmc9bGVzcyZzY29wZWQ9dHJ1ZSZcIik7XG5pZih0eXBlb2YgY29udGVudCA9PT0gJ3N0cmluZycpIGNvbnRlbnQgPSBbW21vZHVsZS5pZCwgY29udGVudCwgJyddXTtcbmlmKGNvbnRlbnQubG9jYWxzKSBtb2R1bGUuZXhwb3J0cyA9IGNvbnRlbnQubG9jYWxzO1xuLy8gYWRkIHRoZSBzdHlsZXMgdG8gdGhlIERPTVxudmFyIGFkZCA9IHJlcXVpcmUoXCIhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Z1ZS1zdHlsZS1sb2FkZXIvbGliL2FkZFN0eWxlc0NsaWVudC5qc1wiKS5kZWZhdWx0XG52YXIgdXBkYXRlID0gYWRkKFwiNDVkZGMxYzhcIiwgY29udGVudCwgZmFsc2UsIHtcInNvdXJjZU1hcFwiOmZhbHNlLFwic2hhZG93TW9kZVwiOmZhbHNlfSk7XG4vLyBIb3QgTW9kdWxlIFJlcGxhY2VtZW50XG5pZihtb2R1bGUuaG90KSB7XG4gLy8gV2hlbiB0aGUgc3R5bGVzIGNoYW5nZSwgdXBkYXRlIHRoZSA8c3R5bGU+IHRhZ3NcbiBpZighY29udGVudC5sb2NhbHMpIHtcbiAgIG1vZHVsZS5ob3QuYWNjZXB0KFwiISEuLi8uLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvY3NzLWxvYWRlci9pbmRleC5qcz8/cmVmLS0xMC1vbmVPZi0xLTEhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2xvYWRlcnMvc3R5bGVQb3N0TG9hZGVyLmpzIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9wb3N0Y3NzLWxvYWRlci9zcmMvaW5kZXguanM/P3JlZi0tMTAtb25lT2YtMS0yIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9sZXNzLWxvYWRlci9kaXN0L2Nqcy5qcz8/cmVmLS0xMC1vbmVPZi0xLTMhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2NhY2hlLWxvYWRlci9kaXN0L2Nqcy5qcz8/cmVmLS0wLTAhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2luZGV4LmpzPz92dWUtbG9hZGVyLW9wdGlvbnMhLi9BcHAudnVlP3Z1ZSZ0eXBlPXN0eWxlJmluZGV4PTAmaWQ9NDE5YTExNmYmbGFuZz1sZXNzJnNjb3BlZD10cnVlJlwiLCBmdW5jdGlvbigpIHtcbiAgICAgdmFyIG5ld0NvbnRlbnQgPSByZXF1aXJlKFwiISEuLi8uLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvY3NzLWxvYWRlci9pbmRleC5qcz8/cmVmLS0xMC1vbmVPZi0xLTEhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2xvYWRlcnMvc3R5bGVQb3N0TG9hZGVyLmpzIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9wb3N0Y3NzLWxvYWRlci9zcmMvaW5kZXguanM/P3JlZi0tMTAtb25lT2YtMS0yIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9sZXNzLWxvYWRlci9kaXN0L2Nqcy5qcz8/cmVmLS0xMC1vbmVPZi0xLTMhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2NhY2hlLWxvYWRlci9kaXN0L2Nqcy5qcz8/cmVmLS0wLTAhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2luZGV4LmpzPz92dWUtbG9hZGVyLW9wdGlvbnMhLi9BcHAudnVlP3Z1ZSZ0eXBlPXN0eWxlJmluZGV4PTAmaWQ9NDE5YTExNmYmbGFuZz1sZXNzJnNjb3BlZD10cnVlJlwiKTtcbiAgICAgaWYodHlwZW9mIG5ld0NvbnRlbnQgPT09ICdzdHJpbmcnKSBuZXdDb250ZW50ID0gW1ttb2R1bGUuaWQsIG5ld0NvbnRlbnQsICcnXV07XG4gICAgIHVwZGF0ZShuZXdDb250ZW50KTtcbiAgIH0pO1xuIH1cbiAvLyBXaGVuIHRoZSBtb2R1bGUgaXMgZGlzcG9zZWQsIHJlbW92ZSB0aGUgPHN0eWxlPiB0YWdzXG4gbW9kdWxlLmhvdC5kaXNwb3NlKGZ1bmN0aW9uKCkgeyB1cGRhdGUoKTsgfSk7XG59Il0sIm1hcHBpbmdzIjoiQUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSIsInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///./node_modules/vue-style-loader/index.js?!./node_modules/css-loader/index.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/less-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/App.vue?vue&type=style&index=0&id=419a116f&lang=less&scoped=true&\n");
/***/ }),
/***/ "./node_modules/vue-style-loader/index.js?!./node_modules/css-loader/index.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/less-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/Project.vue?vue&type=style&index=0&id=c0abc932&lang=less&scoped=true&":
/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** ./node_modules/vue-style-loader??ref--10-oneOf-1-0!./node_modules/css-loader??ref--10-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--10-oneOf-1-2!./node_modules/less-loader/dist/cjs.js??ref--10-oneOf-1-3!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/views/account/center/page/Project.vue?vue&type=style&index=0&id=c0abc932&lang=less&scoped=true& ***!
\*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
eval("// style-loader: Adds some css to the DOM by adding a <style> tag\n\n// load the styles\nvar content = __webpack_require__(/*! !../../../../../node_modules/css-loader??ref--10-oneOf-1-1!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/postcss-loader/src??ref--10-oneOf-1-2!../../../../../node_modules/less-loader/dist/cjs.js??ref--10-oneOf-1-3!../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../node_modules/vue-loader/lib??vue-loader-options!./Project.vue?vue&type=style&index=0&id=c0abc932&lang=less&scoped=true& */ \"./node_modules/css-loader/index.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/less-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/Project.vue?vue&type=style&index=0&id=c0abc932&lang=less&scoped=true&\");\nif(typeof content === 'string') content = [[module.i, content, '']];\nif(content.locals) module.exports = content.locals;\n// add the styles to the DOM\nvar add = __webpack_require__(/*! ../../../../../node_modules/vue-style-loader/lib/addStylesClient.js */ \"./node_modules/vue-style-loader/lib/addStylesClient.js\").default\nvar update = add(\"0057436a\", content, false, {\"sourceMap\":false,\"shadowMode\":false});\n// Hot Module Replacement\nif(true) {\n // When the styles change, update the <style> tags\n if(!content.locals) {\n module.hot.accept(/*! !../../../../../node_modules/css-loader??ref--10-oneOf-1-1!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/postcss-loader/src??ref--10-oneOf-1-2!../../../../../node_modules/less-loader/dist/cjs.js??ref--10-oneOf-1-3!../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../node_modules/vue-loader/lib??vue-loader-options!./Project.vue?vue&type=style&index=0&id=c0abc932&lang=less&scoped=true& */ \"./node_modules/css-loader/index.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/less-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/Project.vue?vue&type=style&index=0&id=c0abc932&lang=less&scoped=true&\", function() {\n var newContent = __webpack_require__(/*! !../../../../../node_modules/css-loader??ref--10-oneOf-1-1!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/postcss-loader/src??ref--10-oneOf-1-2!../../../../../node_modules/less-loader/dist/cjs.js??ref--10-oneOf-1-3!../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../node_modules/vue-loader/lib??vue-loader-options!./Project.vue?vue&type=style&index=0&id=c0abc932&lang=less&scoped=true& */ \"./node_modules/css-loader/index.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/less-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/Project.vue?vue&type=style&index=0&id=c0abc932&lang=less&scoped=true&\");\n if(typeof newContent === 'string') newContent = [[module.i, newContent, '']];\n update(newContent);\n });\n }\n // When the module is disposed, remove the <style> tags\n module.hot.dispose(function() { update(); });\n}//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvdnVlLXN0eWxlLWxvYWRlci9pbmRleC5qcz8hLi9ub2RlX21vZHVsZXMvY3NzLWxvYWRlci9pbmRleC5qcz8hLi9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvbG9hZGVycy9zdHlsZVBvc3RMb2FkZXIuanMhLi9ub2RlX21vZHVsZXMvcG9zdGNzcy1sb2FkZXIvc3JjL2luZGV4LmpzPyEuL25vZGVfbW9kdWxlcy9sZXNzLWxvYWRlci9kaXN0L2Nqcy5qcz8hLi9ub2RlX21vZHVsZXMvY2FjaGUtbG9hZGVyL2Rpc3QvY2pzLmpzPyEuL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9pbmRleC5qcz8hLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvcGFnZS9Qcm9qZWN0LnZ1ZT92dWUmdHlwZT1zdHlsZSZpbmRleD0wJmlkPWMwYWJjOTMyJmxhbmc9bGVzcyZzY29wZWQ9dHJ1ZSYuanMiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8vLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvcGFnZS9Qcm9qZWN0LnZ1ZT82YmYxIl0sInNvdXJjZXNDb250ZW50IjpbIi8vIHN0eWxlLWxvYWRlcjogQWRkcyBzb21lIGNzcyB0byB0aGUgRE9NIGJ5IGFkZGluZyBhIDxzdHlsZT4gdGFnXG5cbi8vIGxvYWQgdGhlIHN0eWxlc1xudmFyIGNvbnRlbnQgPSByZXF1aXJlKFwiISEuLi8uLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvY3NzLWxvYWRlci9pbmRleC5qcz8/cmVmLS0xMC1vbmVPZi0xLTEhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2xvYWRlcnMvc3R5bGVQb3N0TG9hZGVyLmpzIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9wb3N0Y3NzLWxvYWRlci9zcmMvaW5kZXguanM/P3JlZi0tMTAtb25lT2YtMS0yIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9sZXNzLWxvYWRlci9kaXN0L2Nqcy5qcz8/cmVmLS0xMC1vbmVPZi0xLTMhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2NhY2hlLWxvYWRlci9kaXN0L2Nqcy5qcz8/cmVmLS0wLTAhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2luZGV4LmpzPz92dWUtbG9hZGVyLW9wdGlvbnMhLi9Qcm9qZWN0LnZ1ZT92dWUmdHlwZT1zdHlsZSZpbmRleD0wJmlkPWMwYWJjOTMyJmxhbmc9bGVzcyZzY29wZWQ9dHJ1ZSZcIik7XG5pZih0eXBlb2YgY29udGVudCA9PT0gJ3N0cmluZycpIGNvbnRlbnQgPSBbW21vZHVsZS5pZCwgY29udGVudCwgJyddXTtcbmlmKGNvbnRlbnQubG9jYWxzKSBtb2R1bGUuZXhwb3J0cyA9IGNvbnRlbnQubG9jYWxzO1xuLy8gYWRkIHRoZSBzdHlsZXMgdG8gdGhlIERPTVxudmFyIGFkZCA9IHJlcXVpcmUoXCIhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Z1ZS1zdHlsZS1sb2FkZXIvbGliL2FkZFN0eWxlc0NsaWVudC5qc1wiKS5kZWZhdWx0XG52YXIgdXBkYXRlID0gYWRkKFwiMDA1NzQzNmFcIiwgY29udGVudCwgZmFsc2UsIHtcInNvdXJjZU1hcFwiOmZhbHNlLFwic2hhZG93TW9kZVwiOmZhbHNlfSk7XG4vLyBIb3QgTW9kdWxlIFJlcGxhY2VtZW50XG5pZihtb2R1bGUuaG90KSB7XG4gLy8gV2hlbiB0aGUgc3R5bGVzIGNoYW5nZSwgdXBkYXRlIHRoZSA8c3R5bGU+IHRhZ3NcbiBpZighY29udGVudC5sb2NhbHMpIHtcbiAgIG1vZHVsZS5ob3QuYWNjZXB0KFwiISEuLi8uLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvY3NzLWxvYWRlci9pbmRleC5qcz8/cmVmLS0xMC1vbmVPZi0xLTEhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2xvYWRlcnMvc3R5bGVQb3N0TG9hZGVyLmpzIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9wb3N0Y3NzLWxvYWRlci9zcmMvaW5kZXguanM/P3JlZi0tMTAtb25lT2YtMS0yIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9sZXNzLWxvYWRlci9kaXN0L2Nqcy5qcz8/cmVmLS0xMC1vbmVPZi0xLTMhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2NhY2hlLWxvYWRlci9kaXN0L2Nqcy5qcz8/cmVmLS0wLTAhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2luZGV4LmpzPz92dWUtbG9hZGVyLW9wdGlvbnMhLi9Qcm9qZWN0LnZ1ZT92dWUmdHlwZT1zdHlsZSZpbmRleD0wJmlkPWMwYWJjOTMyJmxhbmc9bGVzcyZzY29wZWQ9dHJ1ZSZcIiwgZnVuY3Rpb24oKSB7XG4gICAgIHZhciBuZXdDb250ZW50ID0gcmVxdWlyZShcIiEhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2Nzcy1sb2FkZXIvaW5kZXguanM/P3JlZi0tMTAtb25lT2YtMS0xIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9sb2FkZXJzL3N0eWxlUG9zdExvYWRlci5qcyEuLi8uLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvcG9zdGNzcy1sb2FkZXIvc3JjL2luZGV4LmpzPz9yZWYtLTEwLW9uZU9mLTEtMiEuLi8uLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvbGVzcy1sb2FkZXIvZGlzdC9janMuanM/P3JlZi0tMTAtb25lT2YtMS0zIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9jYWNoZS1sb2FkZXIvZGlzdC9janMuanM/P3JlZi0tMC0wIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9pbmRleC5qcz8/dnVlLWxvYWRlci1vcHRpb25zIS4vUHJvamVjdC52dWU/dnVlJnR5cGU9c3R5bGUmaW5kZXg9MCZpZD1jMGFiYzkzMiZsYW5nPWxlc3Mmc2NvcGVkPXRydWUmXCIpO1xuICAgICBpZih0eXBlb2YgbmV3Q29udGVudCA9PT0gJ3N0cmluZycpIG5ld0NvbnRlbnQgPSBbW21vZHVsZS5pZCwgbmV3Q29udGVudCwgJyddXTtcbiAgICAgdXBkYXRlKG5ld0NvbnRlbnQpO1xuICAgfSk7XG4gfVxuIC8vIFdoZW4gdGhlIG1vZHVsZSBpcyBkaXNwb3NlZCwgcmVtb3ZlIHRoZSA8c3R5bGU+IHRhZ3NcbiBtb2R1bGUuaG90LmRpc3Bvc2UoZnVuY3Rpb24oKSB7IHVwZGF0ZSgpOyB9KTtcbn0iXSwibWFwcGluZ3MiOiJBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBIiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./node_modules/vue-style-loader/index.js?!./node_modules/css-loader/index.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/less-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/Project.vue?vue&type=style&index=0&id=c0abc932&lang=less&scoped=true&\n");
/***/ }),
/***/ "./src/views/account/center/Index.vue":
/*!********************************************!*\
!*** ./src/views/account/center/Index.vue ***!
\********************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _Index_vue_vue_type_template_id_30448598_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Index.vue?vue&type=template&id=30448598&scoped=true& */ \"./src/views/account/center/Index.vue?vue&type=template&id=30448598&scoped=true&\");\n/* harmony import */ var _Index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Index.vue?vue&type=script&lang=js& */ \"./src/views/account/center/Index.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport *//* harmony import */ var _Index_vue_vue_type_style_index_0_id_30448598_lang_less_scoped_true___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Index.vue?vue&type=style&index=0&id=30448598&lang=less&scoped=true& */ \"./src/views/account/center/Index.vue?vue&type=style&index=0&id=30448598&lang=less&scoped=true&\");\n/* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ \"./node_modules/vue-loader/lib/runtime/componentNormalizer.js\");\n\n\n\n\n\n\n/* normalize component */\n\nvar component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(\n _Index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[\"default\"],\n _Index_vue_vue_type_template_id_30448598_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"render\"],\n _Index_vue_vue_type_template_id_30448598_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"],\n false,\n null,\n \"30448598\",\n null\n \n)\n\n/* hot reload */\nif (true) {\n var api = __webpack_require__(/*! ./node_modules/vue-hot-reload-api/dist/index.js */ \"./node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(__webpack_require__(/*! vue */ \"./node_modules/vue/dist/vue.runtime.esm.js\"))\n if (api.compatible) {\n module.hot.accept()\n if (!api.isRecorded('30448598')) {\n api.createRecord('30448598', component.options)\n } else {\n api.reload('30448598', component.options)\n }\n module.hot.accept(/*! ./Index.vue?vue&type=template&id=30448598&scoped=true& */ \"./src/views/account/center/Index.vue?vue&type=template&id=30448598&scoped=true&\", function(__WEBPACK_OUTDATED_DEPENDENCIES__) { /* harmony import */ _Index_vue_vue_type_template_id_30448598_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Index.vue?vue&type=template&id=30448598&scoped=true& */ \"./src/views/account/center/Index.vue?vue&type=template&id=30448598&scoped=true&\");\n(function () {\n api.rerender('30448598', {\n render: _Index_vue_vue_type_template_id_30448598_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"render\"],\n staticRenderFns: _Index_vue_vue_type_template_id_30448598_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"]\n })\n })(__WEBPACK_OUTDATED_DEPENDENCIES__); }.bind(this))\n }\n}\ncomponent.options.__file = \"src/views/account/center/Index.vue\"\n/* harmony default export */ __webpack_exports__[\"default\"] = (component.exports);//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvSW5kZXgudnVlLmpzIiwic291cmNlcyI6WyJ3ZWJwYWNrOi8vLy4vc3JjL3ZpZXdzL2FjY291bnQvY2VudGVyL0luZGV4LnZ1ZT83NDMzIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IHJlbmRlciwgc3RhdGljUmVuZGVyRm5zIH0gZnJvbSBcIi4vSW5kZXgudnVlP3Z1ZSZ0eXBlPXRlbXBsYXRlJmlkPTMwNDQ4NTk4JnNjb3BlZD10cnVlJlwiXG5pbXBvcnQgc2NyaXB0IGZyb20gXCIuL0luZGV4LnZ1ZT92dWUmdHlwZT1zY3JpcHQmbGFuZz1qcyZcIlxuZXhwb3J0ICogZnJvbSBcIi4vSW5kZXgudnVlP3Z1ZSZ0eXBlPXNjcmlwdCZsYW5nPWpzJlwiXG5pbXBvcnQgc3R5bGUwIGZyb20gXCIuL0luZGV4LnZ1ZT92dWUmdHlwZT1zdHlsZSZpbmRleD0wJmlkPTMwNDQ4NTk4Jmxhbmc9bGVzcyZzY29wZWQ9dHJ1ZSZcIlxuXG5cbi8qIG5vcm1hbGl6ZSBjb21wb25lbnQgKi9cbmltcG9ydCBub3JtYWxpemVyIGZyb20gXCIhLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL3J1bnRpbWUvY29tcG9uZW50Tm9ybWFsaXplci5qc1wiXG52YXIgY29tcG9uZW50ID0gbm9ybWFsaXplcihcbiAgc2NyaXB0LFxuICByZW5kZXIsXG4gIHN0YXRpY1JlbmRlckZucyxcbiAgZmFsc2UsXG4gIG51bGwsXG4gIFwiMzA0NDg1OThcIixcbiAgbnVsbFxuICBcbilcblxuLyogaG90IHJlbG9hZCAqL1xuaWYgKG1vZHVsZS5ob3QpIHtcbiAgdmFyIGFwaSA9IHJlcXVpcmUoXCIvbXlQcm9qZWN0L3B5dGhvbi9yYXNpYmVycnlQaVdlYk1hbmFnZXIvcGlib2FyZHByby9ub2RlX21vZHVsZXMvdnVlLWhvdC1yZWxvYWQtYXBpL2Rpc3QvaW5kZXguanNcIilcbiAgYXBpLmluc3RhbGwocmVxdWlyZSgndnVlJykpXG4gIGlmIChhcGkuY29tcGF0aWJsZSkge1xuICAgIG1vZHVsZS5ob3QuYWNjZXB0KClcbiAgICBpZiAoIWFwaS5pc1JlY29yZGVkKCczMDQ0ODU5OCcpKSB7XG4gICAgICBhcGkuY3JlYXRlUmVjb3JkKCczMDQ0ODU5OCcsIGNvbXBvbmVudC5vcHRpb25zKVxuICAgIH0gZWxzZSB7XG4gICAgICBhcGkucmVsb2FkKCczMDQ0ODU5OCcsIGNvbXBvbmVudC5vcHRpb25zKVxuICAgIH1cbiAgICBtb2R1bGUuaG90LmFjY2VwdChcIi4vSW5kZXgudnVlP3Z1ZSZ0eXBlPXRlbXBsYXRlJmlkPTMwNDQ4NTk4JnNjb3BlZD10cnVlJlwiLCBmdW5jdGlvbiAoKSB7XG4gICAgICBhcGkucmVyZW5kZXIoJzMwNDQ4NTk4Jywge1xuICAgICAgICByZW5kZXI6IHJlbmRlcixcbiAgICAgICAgc3RhdGljUmVuZGVyRm5zOiBzdGF0aWNSZW5kZXJGbnNcbiAgICAgIH0pXG4gICAgfSlcbiAgfVxufVxuY29tcG9uZW50Lm9wdGlvbnMuX19maWxlID0gXCJzcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvSW5kZXgudnVlXCJcbmV4cG9ydCBkZWZhdWx0IGNvbXBvbmVudC5leHBvcnRzIl0sIm1hcHBpbmdzIjoiQUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSIsInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///./src/views/account/center/Index.vue\n");
/***/ }),
/***/ "./src/views/account/center/Index.vue?vue&type=script&lang=js&":
/*!*********************************************************************!*\
!*** ./src/views/account/center/Index.vue?vue&type=script&lang=js& ***!
\*********************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_ref_12_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../node_modules/babel-loader/lib!../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./Index.vue?vue&type=script&lang=js& */ \"./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/Index.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__[\"default\"] = (_node_modules_cache_loader_dist_cjs_js_ref_12_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[\"default\"]); //# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvSW5kZXgudnVlP3Z1ZSZ0eXBlPXNjcmlwdCZsYW5nPWpzJi5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL3NyYy92aWV3cy9hY2NvdW50L2NlbnRlci9JbmRleC52dWU/N2ExNCJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgbW9kIGZyb20gXCItIS4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9jYWNoZS1sb2FkZXIvZGlzdC9janMuanM/P3JlZi0tMTItMCEuLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvYmFiZWwtbG9hZGVyL2xpYi9pbmRleC5qcyEuLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvY2FjaGUtbG9hZGVyL2Rpc3QvY2pzLmpzPz9yZWYtLTAtMCEuLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvaW5kZXguanM/P3Z1ZS1sb2FkZXItb3B0aW9ucyEuL0luZGV4LnZ1ZT92dWUmdHlwZT1zY3JpcHQmbGFuZz1qcyZcIjsgZXhwb3J0IGRlZmF1bHQgbW9kOyBleHBvcnQgKiBmcm9tIFwiLSEuLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvY2FjaGUtbG9hZGVyL2Rpc3QvY2pzLmpzPz9yZWYtLTEyLTAhLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2JhYmVsLWxvYWRlci9saWIvaW5kZXguanMhLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2NhY2hlLWxvYWRlci9kaXN0L2Nqcy5qcz8/cmVmLS0wLTAhLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2luZGV4LmpzPz92dWUtbG9hZGVyLW9wdGlvbnMhLi9JbmRleC52dWU/dnVlJnR5cGU9c2NyaXB0Jmxhbmc9anMmXCIiXSwibWFwcGluZ3MiOiJBQUFBO0FBQUE7QUFBQSIsInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///./src/views/account/center/Index.vue?vue&type=script&lang=js&\n");
/***/ }),
/***/ "./src/views/account/center/Index.vue?vue&type=style&index=0&id=30448598&lang=less&scoped=true&":
/*!******************************************************************************************************!*\
!*** ./src/views/account/center/Index.vue?vue&type=style&index=0&id=30448598&lang=less&scoped=true& ***!
\******************************************************************************************************/
/*! no static exports found */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_10_oneOf_1_0_node_modules_css_loader_index_js_ref_10_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_10_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_10_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Index_vue_vue_type_style_index_0_id_30448598_lang_less_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/vue-style-loader??ref--10-oneOf-1-0!../../../../node_modules/css-loader??ref--10-oneOf-1-1!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/postcss-loader/src??ref--10-oneOf-1-2!../../../../node_modules/less-loader/dist/cjs.js??ref--10-oneOf-1-3!../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./Index.vue?vue&type=style&index=0&id=30448598&lang=less&scoped=true& */ \"./node_modules/vue-style-loader/index.js?!./node_modules/css-loader/index.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/less-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/Index.vue?vue&type=style&index=0&id=30448598&lang=less&scoped=true&\");\n/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_10_oneOf_1_0_node_modules_css_loader_index_js_ref_10_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_10_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_10_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Index_vue_vue_type_style_index_0_id_30448598_lang_less_scoped_true___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_10_oneOf_1_0_node_modules_css_loader_index_js_ref_10_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_10_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_10_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Index_vue_vue_type_style_index_0_id_30448598_lang_less_scoped_true___WEBPACK_IMPORTED_MODULE_0__);\n/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_vue_style_loader_index_js_ref_10_oneOf_1_0_node_modules_css_loader_index_js_ref_10_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_10_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_10_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Index_vue_vue_type_style_index_0_id_30448598_lang_less_scoped_true___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_vue_style_loader_index_js_ref_10_oneOf_1_0_node_modules_css_loader_index_js_ref_10_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_10_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_10_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Index_vue_vue_type_style_index_0_id_30448598_lang_less_scoped_true___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));\n /* harmony default export */ __webpack_exports__[\"default\"] = (_node_modules_vue_style_loader_index_js_ref_10_oneOf_1_0_node_modules_css_loader_index_js_ref_10_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_10_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_10_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Index_vue_vue_type_style_index_0_id_30448598_lang_less_scoped_true___WEBPACK_IMPORTED_MODULE_0___default.a); //# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvSW5kZXgudnVlP3Z1ZSZ0eXBlPXN0eWxlJmluZGV4PTAmaWQ9MzA0NDg1OTgmbGFuZz1sZXNzJnNjb3BlZD10cnVlJi5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL3NyYy92aWV3cy9hY2NvdW50L2NlbnRlci9JbmRleC52dWU/MjhkZCJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgbW9kIGZyb20gXCItIS4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy92dWUtc3R5bGUtbG9hZGVyL2luZGV4LmpzPz9yZWYtLTEwLW9uZU9mLTEtMCEuLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvY3NzLWxvYWRlci9pbmRleC5qcz8/cmVmLS0xMC1vbmVPZi0xLTEhLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2xvYWRlcnMvc3R5bGVQb3N0TG9hZGVyLmpzIS4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9wb3N0Y3NzLWxvYWRlci9zcmMvaW5kZXguanM/P3JlZi0tMTAtb25lT2YtMS0yIS4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9sZXNzLWxvYWRlci9kaXN0L2Nqcy5qcz8/cmVmLS0xMC1vbmVPZi0xLTMhLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2NhY2hlLWxvYWRlci9kaXN0L2Nqcy5qcz8/cmVmLS0wLTAhLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2luZGV4LmpzPz92dWUtbG9hZGVyLW9wdGlvbnMhLi9JbmRleC52dWU/dnVlJnR5cGU9c3R5bGUmaW5kZXg9MCZpZD0zMDQ0ODU5OCZsYW5nPWxlc3Mmc2NvcGVkPXRydWUmXCI7IGV4cG9ydCBkZWZhdWx0IG1vZDsgZXhwb3J0ICogZnJvbSBcIi0hLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Z1ZS1zdHlsZS1sb2FkZXIvaW5kZXguanM/P3JlZi0tMTAtb25lT2YtMS0wIS4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9jc3MtbG9hZGVyL2luZGV4LmpzPz9yZWYtLTEwLW9uZU9mLTEtMSEuLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvbG9hZGVycy9zdHlsZVBvc3RMb2FkZXIuanMhLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Bvc3Rjc3MtbG9hZGVyL3NyYy9pbmRleC5qcz8/cmVmLS0xMC1vbmVPZi0xLTIhLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2xlc3MtbG9hZGVyL2Rpc3QvY2pzLmpzPz9yZWYtLTEwLW9uZU9mLTEtMyEuLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvY2FjaGUtbG9hZGVyL2Rpc3QvY2pzLmpzPz9yZWYtLTAtMCEuLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvaW5kZXguanM/P3Z1ZS1sb2FkZXItb3B0aW9ucyEuL0luZGV4LnZ1ZT92dWUmdHlwZT1zdHlsZSZpbmRleD0wJmlkPTMwNDQ4NTk4Jmxhbmc9bGVzcyZzY29wZWQ9dHJ1ZSZcIiJdLCJtYXBwaW5ncyI6IkFBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQSIsInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///./src/views/account/center/Index.vue?vue&type=style&index=0&id=30448598&lang=less&scoped=true&\n");
/***/ }),
/***/ "./src/views/account/center/Index.vue?vue&type=template&id=30448598&scoped=true&":
/*!***************************************************************************************!*\
!*** ./src/views/account/center/Index.vue?vue&type=template&id=30448598&scoped=true& ***!
\***************************************************************************************/
/*! exports provided: render, staticRenderFns */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _cache_loader_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_0db9c07d_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Index_vue_vue_type_template_id_30448598_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!cache-loader?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"0db9c07d-vue-loader-template\"}!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../node_modules/vue-loader/lib??vue-loader-options!./Index.vue?vue&type=template&id=30448598&scoped=true& */ \"./node_modules/cache-loader/dist/cjs.js?{\\\"cacheDirectory\\\":\\\"node_modules/.cache/vue-loader\\\",\\\"cacheIdentifier\\\":\\\"0db9c07d-vue-loader-template\\\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/Index.vue?vue&type=template&id=30448598&scoped=true&\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return _cache_loader_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_0db9c07d_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Index_vue_vue_type_template_id_30448598_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"render\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return _cache_loader_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_0db9c07d_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Index_vue_vue_type_template_id_30448598_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"]; });\n\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvSW5kZXgudnVlP3Z1ZSZ0eXBlPXRlbXBsYXRlJmlkPTMwNDQ4NTk4JnNjb3BlZD10cnVlJi5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL3NyYy92aWV3cy9hY2NvdW50L2NlbnRlci9JbmRleC52dWU/MGI1ZiJdLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tIFwiLSFjYWNoZS1sb2FkZXI/e1xcXCJjYWNoZURpcmVjdG9yeVxcXCI6XFxcIm5vZGVfbW9kdWxlcy8uY2FjaGUvdnVlLWxvYWRlclxcXCIsXFxcImNhY2hlSWRlbnRpZmllclxcXCI6XFxcIjBkYjljMDdkLXZ1ZS1sb2FkZXItdGVtcGxhdGVcXFwifSEuLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvbG9hZGVycy90ZW1wbGF0ZUxvYWRlci5qcz8/dnVlLWxvYWRlci1vcHRpb25zIS4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9jYWNoZS1sb2FkZXIvZGlzdC9janMuanM/P3JlZi0tMC0wIS4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9pbmRleC5qcz8/dnVlLWxvYWRlci1vcHRpb25zIS4vSW5kZXgudnVlP3Z1ZSZ0eXBlPXRlbXBsYXRlJmlkPTMwNDQ4NTk4JnNjb3BlZD10cnVlJlwiIl0sIm1hcHBpbmdzIjoiQUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7Iiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./src/views/account/center/Index.vue?vue&type=template&id=30448598&scoped=true&\n");
/***/ }),
/***/ "./src/views/account/center/page/App.vue":
/*!***********************************************!*\
!*** ./src/views/account/center/page/App.vue ***!
\***********************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _App_vue_vue_type_template_id_419a116f_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./App.vue?vue&type=template&id=419a116f&scoped=true& */ \"./src/views/account/center/page/App.vue?vue&type=template&id=419a116f&scoped=true&\");\n/* harmony import */ var _App_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./App.vue?vue&type=script&lang=js& */ \"./src/views/account/center/page/App.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport *//* harmony import */ var _App_vue_vue_type_style_index_0_id_419a116f_lang_less_scoped_true___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./App.vue?vue&type=style&index=0&id=419a116f&lang=less&scoped=true& */ \"./src/views/account/center/page/App.vue?vue&type=style&index=0&id=419a116f&lang=less&scoped=true&\");\n/* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ \"./node_modules/vue-loader/lib/runtime/componentNormalizer.js\");\n\n\n\n\n\n\n/* normalize component */\n\nvar component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(\n _App_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[\"default\"],\n _App_vue_vue_type_template_id_419a116f_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"render\"],\n _App_vue_vue_type_template_id_419a116f_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"],\n false,\n null,\n \"419a116f\",\n null\n \n)\n\n/* hot reload */\nif (true) {\n var api = __webpack_require__(/*! ./node_modules/vue-hot-reload-api/dist/index.js */ \"./node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(__webpack_require__(/*! vue */ \"./node_modules/vue/dist/vue.runtime.esm.js\"))\n if (api.compatible) {\n module.hot.accept()\n if (!api.isRecorded('419a116f')) {\n api.createRecord('419a116f', component.options)\n } else {\n api.reload('419a116f', component.options)\n }\n module.hot.accept(/*! ./App.vue?vue&type=template&id=419a116f&scoped=true& */ \"./src/views/account/center/page/App.vue?vue&type=template&id=419a116f&scoped=true&\", function(__WEBPACK_OUTDATED_DEPENDENCIES__) { /* harmony import */ _App_vue_vue_type_template_id_419a116f_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./App.vue?vue&type=template&id=419a116f&scoped=true& */ \"./src/views/account/center/page/App.vue?vue&type=template&id=419a116f&scoped=true&\");\n(function () {\n api.rerender('419a116f', {\n render: _App_vue_vue_type_template_id_419a116f_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"render\"],\n staticRenderFns: _App_vue_vue_type_template_id_419a116f_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"]\n })\n })(__WEBPACK_OUTDATED_DEPENDENCIES__); }.bind(this))\n }\n}\ncomponent.options.__file = \"src/views/account/center/page/App.vue\"\n/* harmony default export */ __webpack_exports__[\"default\"] = (component.exports);//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvcGFnZS9BcHAudnVlLmpzIiwic291cmNlcyI6WyJ3ZWJwYWNrOi8vLy4vc3JjL3ZpZXdzL2FjY291bnQvY2VudGVyL3BhZ2UvQXBwLnZ1ZT84ZmExIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IHJlbmRlciwgc3RhdGljUmVuZGVyRm5zIH0gZnJvbSBcIi4vQXBwLnZ1ZT92dWUmdHlwZT10ZW1wbGF0ZSZpZD00MTlhMTE2ZiZzY29wZWQ9dHJ1ZSZcIlxuaW1wb3J0IHNjcmlwdCBmcm9tIFwiLi9BcHAudnVlP3Z1ZSZ0eXBlPXNjcmlwdCZsYW5nPWpzJlwiXG5leHBvcnQgKiBmcm9tIFwiLi9BcHAudnVlP3Z1ZSZ0eXBlPXNjcmlwdCZsYW5nPWpzJlwiXG5pbXBvcnQgc3R5bGUwIGZyb20gXCIuL0FwcC52dWU/dnVlJnR5cGU9c3R5bGUmaW5kZXg9MCZpZD00MTlhMTE2ZiZsYW5nPWxlc3Mmc2NvcGVkPXRydWUmXCJcblxuXG4vKiBub3JtYWxpemUgY29tcG9uZW50ICovXG5pbXBvcnQgbm9ybWFsaXplciBmcm9tIFwiIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9ydW50aW1lL2NvbXBvbmVudE5vcm1hbGl6ZXIuanNcIlxudmFyIGNvbXBvbmVudCA9IG5vcm1hbGl6ZXIoXG4gIHNjcmlwdCxcbiAgcmVuZGVyLFxuICBzdGF0aWNSZW5kZXJGbnMsXG4gIGZhbHNlLFxuICBudWxsLFxuICBcIjQxOWExMTZmXCIsXG4gIG51bGxcbiAgXG4pXG5cbi8qIGhvdCByZWxvYWQgKi9cbmlmIChtb2R1bGUuaG90KSB7XG4gIHZhciBhcGkgPSByZXF1aXJlKFwiL215UHJvamVjdC9weXRob24vcmFzaWJlcnJ5UGlXZWJNYW5hZ2VyL3BpYm9hcmRwcm8vbm9kZV9tb2R1bGVzL3Z1ZS1ob3QtcmVsb2FkLWFwaS9kaXN0L2luZGV4LmpzXCIpXG4gIGFwaS5pbnN0YWxsKHJlcXVpcmUoJ3Z1ZScpKVxuICBpZiAoYXBpLmNvbXBhdGlibGUpIHtcbiAgICBtb2R1bGUuaG90LmFjY2VwdCgpXG4gICAgaWYgKCFhcGkuaXNSZWNvcmRlZCgnNDE5YTExNmYnKSkge1xuICAgICAgYXBpLmNyZWF0ZVJlY29yZCgnNDE5YTExNmYnLCBjb21wb25lbnQub3B0aW9ucylcbiAgICB9IGVsc2Uge1xuICAgICAgYXBpLnJlbG9hZCgnNDE5YTExNmYnLCBjb21wb25lbnQub3B0aW9ucylcbiAgICB9XG4gICAgbW9kdWxlLmhvdC5hY2NlcHQoXCIuL0FwcC52dWU/dnVlJnR5cGU9dGVtcGxhdGUmaWQ9NDE5YTExNmYmc2NvcGVkPXRydWUmXCIsIGZ1bmN0aW9uICgpIHtcbiAgICAgIGFwaS5yZXJlbmRlcignNDE5YTExNmYnLCB7XG4gICAgICAgIHJlbmRlcjogcmVuZGVyLFxuICAgICAgICBzdGF0aWNSZW5kZXJGbnM6IHN0YXRpY1JlbmRlckZuc1xuICAgICAgfSlcbiAgICB9KVxuICB9XG59XG5jb21wb25lbnQub3B0aW9ucy5fX2ZpbGUgPSBcInNyYy92aWV3cy9hY2NvdW50L2NlbnRlci9wYWdlL0FwcC52dWVcIlxuZXhwb3J0IGRlZmF1bHQgY29tcG9uZW50LmV4cG9ydHMiXSwibWFwcGluZ3MiOiJBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBIiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./src/views/account/center/page/App.vue\n");
/***/ }),
/***/ "./src/views/account/center/page/App.vue?vue&type=script&lang=js&":
/*!************************************************************************!*\
!*** ./src/views/account/center/page/App.vue?vue&type=script&lang=js& ***!
\************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_ref_12_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_App_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../node_modules/babel-loader/lib!../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../node_modules/vue-loader/lib??vue-loader-options!./App.vue?vue&type=script&lang=js& */ \"./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/App.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__[\"default\"] = (_node_modules_cache_loader_dist_cjs_js_ref_12_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_App_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[\"default\"]); //# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvcGFnZS9BcHAudnVlP3Z1ZSZ0eXBlPXNjcmlwdCZsYW5nPWpzJi5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL3NyYy92aWV3cy9hY2NvdW50L2NlbnRlci9wYWdlL0FwcC52dWU/YjVmNCJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgbW9kIGZyb20gXCItIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9jYWNoZS1sb2FkZXIvZGlzdC9janMuanM/P3JlZi0tMTItMCEuLi8uLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvYmFiZWwtbG9hZGVyL2xpYi9pbmRleC5qcyEuLi8uLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvY2FjaGUtbG9hZGVyL2Rpc3QvY2pzLmpzPz9yZWYtLTAtMCEuLi8uLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvaW5kZXguanM/P3Z1ZS1sb2FkZXItb3B0aW9ucyEuL0FwcC52dWU/dnVlJnR5cGU9c2NyaXB0Jmxhbmc9anMmXCI7IGV4cG9ydCBkZWZhdWx0IG1vZDsgZXhwb3J0ICogZnJvbSBcIi0hLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2NhY2hlLWxvYWRlci9kaXN0L2Nqcy5qcz8/cmVmLS0xMi0wIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9iYWJlbC1sb2FkZXIvbGliL2luZGV4LmpzIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9jYWNoZS1sb2FkZXIvZGlzdC9janMuanM/P3JlZi0tMC0wIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9pbmRleC5qcz8/dnVlLWxvYWRlci1vcHRpb25zIS4vQXBwLnZ1ZT92dWUmdHlwZT1zY3JpcHQmbGFuZz1qcyZcIiJdLCJtYXBwaW5ncyI6IkFBQUE7QUFBQTtBQUFBIiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./src/views/account/center/page/App.vue?vue&type=script&lang=js&\n");
/***/ }),
/***/ "./src/views/account/center/page/App.vue?vue&type=style&index=0&id=419a116f&lang=less&scoped=true&":
/*!*********************************************************************************************************!*\
!*** ./src/views/account/center/page/App.vue?vue&type=style&index=0&id=419a116f&lang=less&scoped=true& ***!
\*********************************************************************************************************/
/*! no static exports found */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_10_oneOf_1_0_node_modules_css_loader_index_js_ref_10_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_10_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_10_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_App_vue_vue_type_style_index_0_id_419a116f_lang_less_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../node_modules/vue-style-loader??ref--10-oneOf-1-0!../../../../../node_modules/css-loader??ref--10-oneOf-1-1!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/postcss-loader/src??ref--10-oneOf-1-2!../../../../../node_modules/less-loader/dist/cjs.js??ref--10-oneOf-1-3!../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../node_modules/vue-loader/lib??vue-loader-options!./App.vue?vue&type=style&index=0&id=419a116f&lang=less&scoped=true& */ \"./node_modules/vue-style-loader/index.js?!./node_modules/css-loader/index.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/less-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/App.vue?vue&type=style&index=0&id=419a116f&lang=less&scoped=true&\");\n/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_10_oneOf_1_0_node_modules_css_loader_index_js_ref_10_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_10_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_10_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_App_vue_vue_type_style_index_0_id_419a116f_lang_less_scoped_true___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_10_oneOf_1_0_node_modules_css_loader_index_js_ref_10_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_10_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_10_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_App_vue_vue_type_style_index_0_id_419a116f_lang_less_scoped_true___WEBPACK_IMPORTED_MODULE_0__);\n/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_vue_style_loader_index_js_ref_10_oneOf_1_0_node_modules_css_loader_index_js_ref_10_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_10_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_10_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_App_vue_vue_type_style_index_0_id_419a116f_lang_less_scoped_true___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_vue_style_loader_index_js_ref_10_oneOf_1_0_node_modules_css_loader_index_js_ref_10_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_10_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_10_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_App_vue_vue_type_style_index_0_id_419a116f_lang_less_scoped_true___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));\n /* harmony default export */ __webpack_exports__[\"default\"] = (_node_modules_vue_style_loader_index_js_ref_10_oneOf_1_0_node_modules_css_loader_index_js_ref_10_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_10_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_10_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_App_vue_vue_type_style_index_0_id_419a116f_lang_less_scoped_true___WEBPACK_IMPORTED_MODULE_0___default.a); //# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvcGFnZS9BcHAudnVlP3Z1ZSZ0eXBlPXN0eWxlJmluZGV4PTAmaWQ9NDE5YTExNmYmbGFuZz1sZXNzJnNjb3BlZD10cnVlJi5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL3NyYy92aWV3cy9hY2NvdW50L2NlbnRlci9wYWdlL0FwcC52dWU/OTRmZiJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgbW9kIGZyb20gXCItIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy92dWUtc3R5bGUtbG9hZGVyL2luZGV4LmpzPz9yZWYtLTEwLW9uZU9mLTEtMCEuLi8uLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvY3NzLWxvYWRlci9pbmRleC5qcz8/cmVmLS0xMC1vbmVPZi0xLTEhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2xvYWRlcnMvc3R5bGVQb3N0TG9hZGVyLmpzIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9wb3N0Y3NzLWxvYWRlci9zcmMvaW5kZXguanM/P3JlZi0tMTAtb25lT2YtMS0yIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9sZXNzLWxvYWRlci9kaXN0L2Nqcy5qcz8/cmVmLS0xMC1vbmVPZi0xLTMhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2NhY2hlLWxvYWRlci9kaXN0L2Nqcy5qcz8/cmVmLS0wLTAhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2luZGV4LmpzPz92dWUtbG9hZGVyLW9wdGlvbnMhLi9BcHAudnVlP3Z1ZSZ0eXBlPXN0eWxlJmluZGV4PTAmaWQ9NDE5YTExNmYmbGFuZz1sZXNzJnNjb3BlZD10cnVlJlwiOyBleHBvcnQgZGVmYXVsdCBtb2Q7IGV4cG9ydCAqIGZyb20gXCItIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy92dWUtc3R5bGUtbG9hZGVyL2luZGV4LmpzPz9yZWYtLTEwLW9uZU9mLTEtMCEuLi8uLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvY3NzLWxvYWRlci9pbmRleC5qcz8/cmVmLS0xMC1vbmVPZi0xLTEhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2xvYWRlcnMvc3R5bGVQb3N0TG9hZGVyLmpzIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9wb3N0Y3NzLWxvYWRlci9zcmMvaW5kZXguanM/P3JlZi0tMTAtb25lT2YtMS0yIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9sZXNzLWxvYWRlci9kaXN0L2Nqcy5qcz8/cmVmLS0xMC1vbmVPZi0xLTMhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2NhY2hlLWxvYWRlci9kaXN0L2Nqcy5qcz8/cmVmLS0wLTAhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2luZGV4LmpzPz92dWUtbG9hZGVyLW9wdGlvbnMhLi9BcHAudnVlP3Z1ZSZ0eXBlPXN0eWxlJmluZGV4PTAmaWQ9NDE5YTExNmYmbGFuZz1sZXNzJnNjb3BlZD10cnVlJlwiIl0sIm1hcHBpbmdzIjoiQUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBIiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./src/views/account/center/page/App.vue?vue&type=style&index=0&id=419a116f&lang=less&scoped=true&\n");
/***/ }),
/***/ "./src/views/account/center/page/App.vue?vue&type=template&id=419a116f&scoped=true&":
/*!******************************************************************************************!*\
!*** ./src/views/account/center/page/App.vue?vue&type=template&id=419a116f&scoped=true& ***!
\******************************************************************************************/
/*! exports provided: render, staticRenderFns */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _cache_loader_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_0db9c07d_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_App_vue_vue_type_template_id_419a116f_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!cache-loader?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"0db9c07d-vue-loader-template\"}!../../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../node_modules/vue-loader/lib??vue-loader-options!./App.vue?vue&type=template&id=419a116f&scoped=true& */ \"./node_modules/cache-loader/dist/cjs.js?{\\\"cacheDirectory\\\":\\\"node_modules/.cache/vue-loader\\\",\\\"cacheIdentifier\\\":\\\"0db9c07d-vue-loader-template\\\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/App.vue?vue&type=template&id=419a116f&scoped=true&\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return _cache_loader_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_0db9c07d_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_App_vue_vue_type_template_id_419a116f_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"render\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return _cache_loader_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_0db9c07d_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_App_vue_vue_type_template_id_419a116f_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"]; });\n\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvcGFnZS9BcHAudnVlP3Z1ZSZ0eXBlPXRlbXBsYXRlJmlkPTQxOWExMTZmJnNjb3BlZD10cnVlJi5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL3NyYy92aWV3cy9hY2NvdW50L2NlbnRlci9wYWdlL0FwcC52dWU/MTRlNyJdLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tIFwiLSFjYWNoZS1sb2FkZXI/e1xcXCJjYWNoZURpcmVjdG9yeVxcXCI6XFxcIm5vZGVfbW9kdWxlcy8uY2FjaGUvdnVlLWxvYWRlclxcXCIsXFxcImNhY2hlSWRlbnRpZmllclxcXCI6XFxcIjBkYjljMDdkLXZ1ZS1sb2FkZXItdGVtcGxhdGVcXFwifSEuLi8uLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvbG9hZGVycy90ZW1wbGF0ZUxvYWRlci5qcz8/dnVlLWxvYWRlci1vcHRpb25zIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9jYWNoZS1sb2FkZXIvZGlzdC9janMuanM/P3JlZi0tMC0wIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9pbmRleC5qcz8/dnVlLWxvYWRlci1vcHRpb25zIS4vQXBwLnZ1ZT92dWUmdHlwZT10ZW1wbGF0ZSZpZD00MTlhMTE2ZiZzY29wZWQ9dHJ1ZSZcIiJdLCJtYXBwaW5ncyI6IkFBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBOyIsInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///./src/views/account/center/page/App.vue?vue&type=template&id=419a116f&scoped=true&\n");
/***/ }),
/***/ "./src/views/account/center/page/Article.vue":
/*!***************************************************!*\
!*** ./src/views/account/center/page/Article.vue ***!
\***************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _Article_vue_vue_type_template_id_087466c4_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Article.vue?vue&type=template&id=087466c4&scoped=true& */ \"./src/views/account/center/page/Article.vue?vue&type=template&id=087466c4&scoped=true&\");\n/* harmony import */ var _Article_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Article.vue?vue&type=script&lang=js& */ \"./src/views/account/center/page/Article.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport *//* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ \"./node_modules/vue-loader/lib/runtime/componentNormalizer.js\");\n\n\n\n\n\n/* normalize component */\n\nvar component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(\n _Article_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[\"default\"],\n _Article_vue_vue_type_template_id_087466c4_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"render\"],\n _Article_vue_vue_type_template_id_087466c4_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"],\n false,\n null,\n \"087466c4\",\n null\n \n)\n\n/* hot reload */\nif (true) {\n var api = __webpack_require__(/*! ./node_modules/vue-hot-reload-api/dist/index.js */ \"./node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(__webpack_require__(/*! vue */ \"./node_modules/vue/dist/vue.runtime.esm.js\"))\n if (api.compatible) {\n module.hot.accept()\n if (!api.isRecorded('087466c4')) {\n api.createRecord('087466c4', component.options)\n } else {\n api.reload('087466c4', component.options)\n }\n module.hot.accept(/*! ./Article.vue?vue&type=template&id=087466c4&scoped=true& */ \"./src/views/account/center/page/Article.vue?vue&type=template&id=087466c4&scoped=true&\", function(__WEBPACK_OUTDATED_DEPENDENCIES__) { /* harmony import */ _Article_vue_vue_type_template_id_087466c4_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Article.vue?vue&type=template&id=087466c4&scoped=true& */ \"./src/views/account/center/page/Article.vue?vue&type=template&id=087466c4&scoped=true&\");\n(function () {\n api.rerender('087466c4', {\n render: _Article_vue_vue_type_template_id_087466c4_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"render\"],\n staticRenderFns: _Article_vue_vue_type_template_id_087466c4_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"]\n })\n })(__WEBPACK_OUTDATED_DEPENDENCIES__); }.bind(this))\n }\n}\ncomponent.options.__file = \"src/views/account/center/page/Article.vue\"\n/* harmony default export */ __webpack_exports__[\"default\"] = (component.exports);//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvcGFnZS9BcnRpY2xlLnZ1ZS5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL3NyYy92aWV3cy9hY2NvdW50L2NlbnRlci9wYWdlL0FydGljbGUudnVlP2ViN2MiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgcmVuZGVyLCBzdGF0aWNSZW5kZXJGbnMgfSBmcm9tIFwiLi9BcnRpY2xlLnZ1ZT92dWUmdHlwZT10ZW1wbGF0ZSZpZD0wODc0NjZjNCZzY29wZWQ9dHJ1ZSZcIlxuaW1wb3J0IHNjcmlwdCBmcm9tIFwiLi9BcnRpY2xlLnZ1ZT92dWUmdHlwZT1zY3JpcHQmbGFuZz1qcyZcIlxuZXhwb3J0ICogZnJvbSBcIi4vQXJ0aWNsZS52dWU/dnVlJnR5cGU9c2NyaXB0Jmxhbmc9anMmXCJcblxuXG4vKiBub3JtYWxpemUgY29tcG9uZW50ICovXG5pbXBvcnQgbm9ybWFsaXplciBmcm9tIFwiIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9ydW50aW1lL2NvbXBvbmVudE5vcm1hbGl6ZXIuanNcIlxudmFyIGNvbXBvbmVudCA9IG5vcm1hbGl6ZXIoXG4gIHNjcmlwdCxcbiAgcmVuZGVyLFxuICBzdGF0aWNSZW5kZXJGbnMsXG4gIGZhbHNlLFxuICBudWxsLFxuICBcIjA4NzQ2NmM0XCIsXG4gIG51bGxcbiAgXG4pXG5cbi8qIGhvdCByZWxvYWQgKi9cbmlmIChtb2R1bGUuaG90KSB7XG4gIHZhciBhcGkgPSByZXF1aXJlKFwiL215UHJvamVjdC9weXRob24vcmFzaWJlcnJ5UGlXZWJNYW5hZ2VyL3BpYm9hcmRwcm8vbm9kZV9tb2R1bGVzL3Z1ZS1ob3QtcmVsb2FkLWFwaS9kaXN0L2luZGV4LmpzXCIpXG4gIGFwaS5pbnN0YWxsKHJlcXVpcmUoJ3Z1ZScpKVxuICBpZiAoYXBpLmNvbXBhdGlibGUpIHtcbiAgICBtb2R1bGUuaG90LmFjY2VwdCgpXG4gICAgaWYgKCFhcGkuaXNSZWNvcmRlZCgnMDg3NDY2YzQnKSkge1xuICAgICAgYXBpLmNyZWF0ZVJlY29yZCgnMDg3NDY2YzQnLCBjb21wb25lbnQub3B0aW9ucylcbiAgICB9IGVsc2Uge1xuICAgICAgYXBpLnJlbG9hZCgnMDg3NDY2YzQnLCBjb21wb25lbnQub3B0aW9ucylcbiAgICB9XG4gICAgbW9kdWxlLmhvdC5hY2NlcHQoXCIuL0FydGljbGUudnVlP3Z1ZSZ0eXBlPXRlbXBsYXRlJmlkPTA4NzQ2NmM0JnNjb3BlZD10cnVlJlwiLCBmdW5jdGlvbiAoKSB7XG4gICAgICBhcGkucmVyZW5kZXIoJzA4NzQ2NmM0Jywge1xuICAgICAgICByZW5kZXI6IHJlbmRlcixcbiAgICAgICAgc3RhdGljUmVuZGVyRm5zOiBzdGF0aWNSZW5kZXJGbnNcbiAgICAgIH0pXG4gICAgfSlcbiAgfVxufVxuY29tcG9uZW50Lm9wdGlvbnMuX19maWxlID0gXCJzcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvcGFnZS9BcnRpY2xlLnZ1ZVwiXG5leHBvcnQgZGVmYXVsdCBjb21wb25lbnQuZXhwb3J0cyJdLCJtYXBwaW5ncyI6IkFBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSIsInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///./src/views/account/center/page/Article.vue\n");
/***/ }),
/***/ "./src/views/account/center/page/Article.vue?vue&type=script&lang=js&":
/*!****************************************************************************!*\
!*** ./src/views/account/center/page/Article.vue?vue&type=script&lang=js& ***!
\****************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_ref_12_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Article_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../node_modules/babel-loader/lib!../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../node_modules/vue-loader/lib??vue-loader-options!./Article.vue?vue&type=script&lang=js& */ \"./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/Article.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__[\"default\"] = (_node_modules_cache_loader_dist_cjs_js_ref_12_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Article_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[\"default\"]); //# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvcGFnZS9BcnRpY2xlLnZ1ZT92dWUmdHlwZT1zY3JpcHQmbGFuZz1qcyYuanMiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8vLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvcGFnZS9BcnRpY2xlLnZ1ZT81ODNiIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBtb2QgZnJvbSBcIi0hLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2NhY2hlLWxvYWRlci9kaXN0L2Nqcy5qcz8/cmVmLS0xMi0wIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9iYWJlbC1sb2FkZXIvbGliL2luZGV4LmpzIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9jYWNoZS1sb2FkZXIvZGlzdC9janMuanM/P3JlZi0tMC0wIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9pbmRleC5qcz8/dnVlLWxvYWRlci1vcHRpb25zIS4vQXJ0aWNsZS52dWU/dnVlJnR5cGU9c2NyaXB0Jmxhbmc9anMmXCI7IGV4cG9ydCBkZWZhdWx0IG1vZDsgZXhwb3J0ICogZnJvbSBcIi0hLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2NhY2hlLWxvYWRlci9kaXN0L2Nqcy5qcz8/cmVmLS0xMi0wIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9iYWJlbC1sb2FkZXIvbGliL2luZGV4LmpzIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9jYWNoZS1sb2FkZXIvZGlzdC9janMuanM/P3JlZi0tMC0wIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9pbmRleC5qcz8/dnVlLWxvYWRlci1vcHRpb25zIS4vQXJ0aWNsZS52dWU/dnVlJnR5cGU9c2NyaXB0Jmxhbmc9anMmXCIiXSwibWFwcGluZ3MiOiJBQUFBO0FBQUE7QUFBQSIsInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///./src/views/account/center/page/Article.vue?vue&type=script&lang=js&\n");
/***/ }),
/***/ "./src/views/account/center/page/Article.vue?vue&type=template&id=087466c4&scoped=true&":
/*!**********************************************************************************************!*\
!*** ./src/views/account/center/page/Article.vue?vue&type=template&id=087466c4&scoped=true& ***!
\**********************************************************************************************/
/*! exports provided: render, staticRenderFns */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _cache_loader_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_0db9c07d_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Article_vue_vue_type_template_id_087466c4_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!cache-loader?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"0db9c07d-vue-loader-template\"}!../../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../node_modules/vue-loader/lib??vue-loader-options!./Article.vue?vue&type=template&id=087466c4&scoped=true& */ \"./node_modules/cache-loader/dist/cjs.js?{\\\"cacheDirectory\\\":\\\"node_modules/.cache/vue-loader\\\",\\\"cacheIdentifier\\\":\\\"0db9c07d-vue-loader-template\\\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/Article.vue?vue&type=template&id=087466c4&scoped=true&\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return _cache_loader_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_0db9c07d_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Article_vue_vue_type_template_id_087466c4_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"render\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return _cache_loader_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_0db9c07d_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Article_vue_vue_type_template_id_087466c4_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"]; });\n\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvcGFnZS9BcnRpY2xlLnZ1ZT92dWUmdHlwZT10ZW1wbGF0ZSZpZD0wODc0NjZjNCZzY29wZWQ9dHJ1ZSYuanMiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8vLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvcGFnZS9BcnRpY2xlLnZ1ZT9hMjEzIl0sInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gXCItIWNhY2hlLWxvYWRlcj97XFxcImNhY2hlRGlyZWN0b3J5XFxcIjpcXFwibm9kZV9tb2R1bGVzLy5jYWNoZS92dWUtbG9hZGVyXFxcIixcXFwiY2FjaGVJZGVudGlmaWVyXFxcIjpcXFwiMGRiOWMwN2QtdnVlLWxvYWRlci10ZW1wbGF0ZVxcXCJ9IS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9sb2FkZXJzL3RlbXBsYXRlTG9hZGVyLmpzPz92dWUtbG9hZGVyLW9wdGlvbnMhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2NhY2hlLWxvYWRlci9kaXN0L2Nqcy5qcz8/cmVmLS0wLTAhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2luZGV4LmpzPz92dWUtbG9hZGVyLW9wdGlvbnMhLi9BcnRpY2xlLnZ1ZT92dWUmdHlwZT10ZW1wbGF0ZSZpZD0wODc0NjZjNCZzY29wZWQ9dHJ1ZSZcIiJdLCJtYXBwaW5ncyI6IkFBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBOyIsInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///./src/views/account/center/page/Article.vue?vue&type=template&id=087466c4&scoped=true&\n");
/***/ }),
/***/ "./src/views/account/center/page/Project.vue":
/*!***************************************************!*\
!*** ./src/views/account/center/page/Project.vue ***!
\***************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _Project_vue_vue_type_template_id_c0abc932_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Project.vue?vue&type=template&id=c0abc932&scoped=true& */ \"./src/views/account/center/page/Project.vue?vue&type=template&id=c0abc932&scoped=true&\");\n/* harmony import */ var _Project_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Project.vue?vue&type=script&lang=js& */ \"./src/views/account/center/page/Project.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport *//* harmony import */ var _Project_vue_vue_type_style_index_0_id_c0abc932_lang_less_scoped_true___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Project.vue?vue&type=style&index=0&id=c0abc932&lang=less&scoped=true& */ \"./src/views/account/center/page/Project.vue?vue&type=style&index=0&id=c0abc932&lang=less&scoped=true&\");\n/* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ \"./node_modules/vue-loader/lib/runtime/componentNormalizer.js\");\n\n\n\n\n\n\n/* normalize component */\n\nvar component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(\n _Project_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[\"default\"],\n _Project_vue_vue_type_template_id_c0abc932_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"render\"],\n _Project_vue_vue_type_template_id_c0abc932_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"],\n false,\n null,\n \"c0abc932\",\n null\n \n)\n\n/* hot reload */\nif (true) {\n var api = __webpack_require__(/*! ./node_modules/vue-hot-reload-api/dist/index.js */ \"./node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(__webpack_require__(/*! vue */ \"./node_modules/vue/dist/vue.runtime.esm.js\"))\n if (api.compatible) {\n module.hot.accept()\n if (!api.isRecorded('c0abc932')) {\n api.createRecord('c0abc932', component.options)\n } else {\n api.reload('c0abc932', component.options)\n }\n module.hot.accept(/*! ./Project.vue?vue&type=template&id=c0abc932&scoped=true& */ \"./src/views/account/center/page/Project.vue?vue&type=template&id=c0abc932&scoped=true&\", function(__WEBPACK_OUTDATED_DEPENDENCIES__) { /* harmony import */ _Project_vue_vue_type_template_id_c0abc932_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Project.vue?vue&type=template&id=c0abc932&scoped=true& */ \"./src/views/account/center/page/Project.vue?vue&type=template&id=c0abc932&scoped=true&\");\n(function () {\n api.rerender('c0abc932', {\n render: _Project_vue_vue_type_template_id_c0abc932_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"render\"],\n staticRenderFns: _Project_vue_vue_type_template_id_c0abc932_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"]\n })\n })(__WEBPACK_OUTDATED_DEPENDENCIES__); }.bind(this))\n }\n}\ncomponent.options.__file = \"src/views/account/center/page/Project.vue\"\n/* harmony default export */ __webpack_exports__[\"default\"] = (component.exports);//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvcGFnZS9Qcm9qZWN0LnZ1ZS5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL3NyYy92aWV3cy9hY2NvdW50L2NlbnRlci9wYWdlL1Byb2plY3QudnVlPzEzYmMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgcmVuZGVyLCBzdGF0aWNSZW5kZXJGbnMgfSBmcm9tIFwiLi9Qcm9qZWN0LnZ1ZT92dWUmdHlwZT10ZW1wbGF0ZSZpZD1jMGFiYzkzMiZzY29wZWQ9dHJ1ZSZcIlxuaW1wb3J0IHNjcmlwdCBmcm9tIFwiLi9Qcm9qZWN0LnZ1ZT92dWUmdHlwZT1zY3JpcHQmbGFuZz1qcyZcIlxuZXhwb3J0ICogZnJvbSBcIi4vUHJvamVjdC52dWU/dnVlJnR5cGU9c2NyaXB0Jmxhbmc9anMmXCJcbmltcG9ydCBzdHlsZTAgZnJvbSBcIi4vUHJvamVjdC52dWU/dnVlJnR5cGU9c3R5bGUmaW5kZXg9MCZpZD1jMGFiYzkzMiZsYW5nPWxlc3Mmc2NvcGVkPXRydWUmXCJcblxuXG4vKiBub3JtYWxpemUgY29tcG9uZW50ICovXG5pbXBvcnQgbm9ybWFsaXplciBmcm9tIFwiIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9ydW50aW1lL2NvbXBvbmVudE5vcm1hbGl6ZXIuanNcIlxudmFyIGNvbXBvbmVudCA9IG5vcm1hbGl6ZXIoXG4gIHNjcmlwdCxcbiAgcmVuZGVyLFxuICBzdGF0aWNSZW5kZXJGbnMsXG4gIGZhbHNlLFxuICBudWxsLFxuICBcImMwYWJjOTMyXCIsXG4gIG51bGxcbiAgXG4pXG5cbi8qIGhvdCByZWxvYWQgKi9cbmlmIChtb2R1bGUuaG90KSB7XG4gIHZhciBhcGkgPSByZXF1aXJlKFwiL215UHJvamVjdC9weXRob24vcmFzaWJlcnJ5UGlXZWJNYW5hZ2VyL3BpYm9hcmRwcm8vbm9kZV9tb2R1bGVzL3Z1ZS1ob3QtcmVsb2FkLWFwaS9kaXN0L2luZGV4LmpzXCIpXG4gIGFwaS5pbnN0YWxsKHJlcXVpcmUoJ3Z1ZScpKVxuICBpZiAoYXBpLmNvbXBhdGlibGUpIHtcbiAgICBtb2R1bGUuaG90LmFjY2VwdCgpXG4gICAgaWYgKCFhcGkuaXNSZWNvcmRlZCgnYzBhYmM5MzInKSkge1xuICAgICAgYXBpLmNyZWF0ZVJlY29yZCgnYzBhYmM5MzInLCBjb21wb25lbnQub3B0aW9ucylcbiAgICB9IGVsc2Uge1xuICAgICAgYXBpLnJlbG9hZCgnYzBhYmM5MzInLCBjb21wb25lbnQub3B0aW9ucylcbiAgICB9XG4gICAgbW9kdWxlLmhvdC5hY2NlcHQoXCIuL1Byb2plY3QudnVlP3Z1ZSZ0eXBlPXRlbXBsYXRlJmlkPWMwYWJjOTMyJnNjb3BlZD10cnVlJlwiLCBmdW5jdGlvbiAoKSB7XG4gICAgICBhcGkucmVyZW5kZXIoJ2MwYWJjOTMyJywge1xuICAgICAgICByZW5kZXI6IHJlbmRlcixcbiAgICAgICAgc3RhdGljUmVuZGVyRm5zOiBzdGF0aWNSZW5kZXJGbnNcbiAgICAgIH0pXG4gICAgfSlcbiAgfVxufVxuY29tcG9uZW50Lm9wdGlvbnMuX19maWxlID0gXCJzcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvcGFnZS9Qcm9qZWN0LnZ1ZVwiXG5leHBvcnQgZGVmYXVsdCBjb21wb25lbnQuZXhwb3J0cyJdLCJtYXBwaW5ncyI6IkFBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQUE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EiLCJzb3VyY2VSb290IjoiIn0=\n//# sourceURL=webpack-internal:///./src/views/account/center/page/Project.vue\n");
/***/ }),
/***/ "./src/views/account/center/page/Project.vue?vue&type=script&lang=js&":
/*!****************************************************************************!*\
!*** ./src/views/account/center/page/Project.vue?vue&type=script&lang=js& ***!
\****************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_ref_12_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Project_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../node_modules/babel-loader/lib!../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../node_modules/vue-loader/lib??vue-loader-options!./Project.vue?vue&type=script&lang=js& */ \"./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/Project.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__[\"default\"] = (_node_modules_cache_loader_dist_cjs_js_ref_12_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Project_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[\"default\"]); //# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvcGFnZS9Qcm9qZWN0LnZ1ZT92dWUmdHlwZT1zY3JpcHQmbGFuZz1qcyYuanMiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8vLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvcGFnZS9Qcm9qZWN0LnZ1ZT81MDg5Il0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBtb2QgZnJvbSBcIi0hLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2NhY2hlLWxvYWRlci9kaXN0L2Nqcy5qcz8/cmVmLS0xMi0wIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9iYWJlbC1sb2FkZXIvbGliL2luZGV4LmpzIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9jYWNoZS1sb2FkZXIvZGlzdC9janMuanM/P3JlZi0tMC0wIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9pbmRleC5qcz8/dnVlLWxvYWRlci1vcHRpb25zIS4vUHJvamVjdC52dWU/dnVlJnR5cGU9c2NyaXB0Jmxhbmc9anMmXCI7IGV4cG9ydCBkZWZhdWx0IG1vZDsgZXhwb3J0ICogZnJvbSBcIi0hLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2NhY2hlLWxvYWRlci9kaXN0L2Nqcy5qcz8/cmVmLS0xMi0wIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9iYWJlbC1sb2FkZXIvbGliL2luZGV4LmpzIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9jYWNoZS1sb2FkZXIvZGlzdC9janMuanM/P3JlZi0tMC0wIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9pbmRleC5qcz8/dnVlLWxvYWRlci1vcHRpb25zIS4vUHJvamVjdC52dWU/dnVlJnR5cGU9c2NyaXB0Jmxhbmc9anMmXCIiXSwibWFwcGluZ3MiOiJBQUFBO0FBQUE7QUFBQSIsInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///./src/views/account/center/page/Project.vue?vue&type=script&lang=js&\n");
/***/ }),
/***/ "./src/views/account/center/page/Project.vue?vue&type=style&index=0&id=c0abc932&lang=less&scoped=true&":
/*!*************************************************************************************************************!*\
!*** ./src/views/account/center/page/Project.vue?vue&type=style&index=0&id=c0abc932&lang=less&scoped=true& ***!
\*************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_10_oneOf_1_0_node_modules_css_loader_index_js_ref_10_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_10_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_10_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Project_vue_vue_type_style_index_0_id_c0abc932_lang_less_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../node_modules/vue-style-loader??ref--10-oneOf-1-0!../../../../../node_modules/css-loader??ref--10-oneOf-1-1!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/postcss-loader/src??ref--10-oneOf-1-2!../../../../../node_modules/less-loader/dist/cjs.js??ref--10-oneOf-1-3!../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../node_modules/vue-loader/lib??vue-loader-options!./Project.vue?vue&type=style&index=0&id=c0abc932&lang=less&scoped=true& */ \"./node_modules/vue-style-loader/index.js?!./node_modules/css-loader/index.js?!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src/index.js?!./node_modules/less-loader/dist/cjs.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/Project.vue?vue&type=style&index=0&id=c0abc932&lang=less&scoped=true&\");\n/* harmony import */ var _node_modules_vue_style_loader_index_js_ref_10_oneOf_1_0_node_modules_css_loader_index_js_ref_10_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_10_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_10_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Project_vue_vue_type_style_index_0_id_c0abc932_lang_less_scoped_true___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_10_oneOf_1_0_node_modules_css_loader_index_js_ref_10_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_10_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_10_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Project_vue_vue_type_style_index_0_id_c0abc932_lang_less_scoped_true___WEBPACK_IMPORTED_MODULE_0__);\n/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_vue_style_loader_index_js_ref_10_oneOf_1_0_node_modules_css_loader_index_js_ref_10_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_10_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_10_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Project_vue_vue_type_style_index_0_id_c0abc932_lang_less_scoped_true___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_vue_style_loader_index_js_ref_10_oneOf_1_0_node_modules_css_loader_index_js_ref_10_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_10_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_10_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Project_vue_vue_type_style_index_0_id_c0abc932_lang_less_scoped_true___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));\n /* harmony default export */ __webpack_exports__[\"default\"] = (_node_modules_vue_style_loader_index_js_ref_10_oneOf_1_0_node_modules_css_loader_index_js_ref_10_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_10_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_10_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Project_vue_vue_type_style_index_0_id_c0abc932_lang_less_scoped_true___WEBPACK_IMPORTED_MODULE_0___default.a); //# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvcGFnZS9Qcm9qZWN0LnZ1ZT92dWUmdHlwZT1zdHlsZSZpbmRleD0wJmlkPWMwYWJjOTMyJmxhbmc9bGVzcyZzY29wZWQ9dHJ1ZSYuanMiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8vLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvcGFnZS9Qcm9qZWN0LnZ1ZT8zMjBhIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBtb2QgZnJvbSBcIi0hLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Z1ZS1zdHlsZS1sb2FkZXIvaW5kZXguanM/P3JlZi0tMTAtb25lT2YtMS0wIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9jc3MtbG9hZGVyL2luZGV4LmpzPz9yZWYtLTEwLW9uZU9mLTEtMSEuLi8uLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvbG9hZGVycy9zdHlsZVBvc3RMb2FkZXIuanMhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Bvc3Rjc3MtbG9hZGVyL3NyYy9pbmRleC5qcz8/cmVmLS0xMC1vbmVPZi0xLTIhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2xlc3MtbG9hZGVyL2Rpc3QvY2pzLmpzPz9yZWYtLTEwLW9uZU9mLTEtMyEuLi8uLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvY2FjaGUtbG9hZGVyL2Rpc3QvY2pzLmpzPz9yZWYtLTAtMCEuLi8uLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvaW5kZXguanM/P3Z1ZS1sb2FkZXItb3B0aW9ucyEuL1Byb2plY3QudnVlP3Z1ZSZ0eXBlPXN0eWxlJmluZGV4PTAmaWQ9YzBhYmM5MzImbGFuZz1sZXNzJnNjb3BlZD10cnVlJlwiOyBleHBvcnQgZGVmYXVsdCBtb2Q7IGV4cG9ydCAqIGZyb20gXCItIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy92dWUtc3R5bGUtbG9hZGVyL2luZGV4LmpzPz9yZWYtLTEwLW9uZU9mLTEtMCEuLi8uLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvY3NzLWxvYWRlci9pbmRleC5qcz8/cmVmLS0xMC1vbmVPZi0xLTEhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2xvYWRlcnMvc3R5bGVQb3N0TG9hZGVyLmpzIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9wb3N0Y3NzLWxvYWRlci9zcmMvaW5kZXguanM/P3JlZi0tMTAtb25lT2YtMS0yIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9sZXNzLWxvYWRlci9kaXN0L2Nqcy5qcz8/cmVmLS0xMC1vbmVPZi0xLTMhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2NhY2hlLWxvYWRlci9kaXN0L2Nqcy5qcz8/cmVmLS0wLTAhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2luZGV4LmpzPz92dWUtbG9hZGVyLW9wdGlvbnMhLi9Qcm9qZWN0LnZ1ZT92dWUmdHlwZT1zdHlsZSZpbmRleD0wJmlkPWMwYWJjOTMyJmxhbmc9bGVzcyZzY29wZWQ9dHJ1ZSZcIiJdLCJtYXBwaW5ncyI6IkFBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQSIsInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///./src/views/account/center/page/Project.vue?vue&type=style&index=0&id=c0abc932&lang=less&scoped=true&\n");
/***/ }),
/***/ "./src/views/account/center/page/Project.vue?vue&type=template&id=c0abc932&scoped=true&":
/*!**********************************************************************************************!*\
!*** ./src/views/account/center/page/Project.vue?vue&type=template&id=c0abc932&scoped=true& ***!
\**********************************************************************************************/
/*! exports provided: render, staticRenderFns */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _cache_loader_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_0db9c07d_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Project_vue_vue_type_template_id_c0abc932_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!cache-loader?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"0db9c07d-vue-loader-template\"}!../../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../node_modules/vue-loader/lib??vue-loader-options!./Project.vue?vue&type=template&id=c0abc932&scoped=true& */ \"./node_modules/cache-loader/dist/cjs.js?{\\\"cacheDirectory\\\":\\\"node_modules/.cache/vue-loader\\\",\\\"cacheIdentifier\\\":\\\"0db9c07d-vue-loader-template\\\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/account/center/page/Project.vue?vue&type=template&id=c0abc932&scoped=true&\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return _cache_loader_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_0db9c07d_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Project_vue_vue_type_template_id_c0abc932_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"render\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return _cache_loader_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_0db9c07d_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Project_vue_vue_type_template_id_c0abc932_scoped_true___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"]; });\n\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvcGFnZS9Qcm9qZWN0LnZ1ZT92dWUmdHlwZT10ZW1wbGF0ZSZpZD1jMGFiYzkzMiZzY29wZWQ9dHJ1ZSYuanMiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8vLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvcGFnZS9Qcm9qZWN0LnZ1ZT9hZDYwIl0sInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gXCItIWNhY2hlLWxvYWRlcj97XFxcImNhY2hlRGlyZWN0b3J5XFxcIjpcXFwibm9kZV9tb2R1bGVzLy5jYWNoZS92dWUtbG9hZGVyXFxcIixcXFwiY2FjaGVJZGVudGlmaWVyXFxcIjpcXFwiMGRiOWMwN2QtdnVlLWxvYWRlci10ZW1wbGF0ZVxcXCJ9IS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9sb2FkZXJzL3RlbXBsYXRlTG9hZGVyLmpzPz92dWUtbG9hZGVyLW9wdGlvbnMhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2NhY2hlLWxvYWRlci9kaXN0L2Nqcy5qcz8/cmVmLS0wLTAhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2luZGV4LmpzPz92dWUtbG9hZGVyLW9wdGlvbnMhLi9Qcm9qZWN0LnZ1ZT92dWUmdHlwZT10ZW1wbGF0ZSZpZD1jMGFiYzkzMiZzY29wZWQ9dHJ1ZSZcIiJdLCJtYXBwaW5ncyI6IkFBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBOyIsInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///./src/views/account/center/page/Project.vue?vue&type=template&id=c0abc932&scoped=true&\n");
/***/ }),
/***/ "./src/views/account/center/page/index.js":
/*!************************************************!*\
!*** ./src/views/account/center/page/index.js ***!
\************************************************/
/*! exports provided: AppPage, ArticlePage, ProjectPage */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _App__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./App */ \"./src/views/account/center/page/App.vue\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AppPage\", function() { return _App__WEBPACK_IMPORTED_MODULE_0__[\"default\"]; });\n\n/* harmony import */ var _Article__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Article */ \"./src/views/account/center/page/Article.vue\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ArticlePage\", function() { return _Article__WEBPACK_IMPORTED_MODULE_1__[\"default\"]; });\n\n/* harmony import */ var _Project__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Project */ \"./src/views/account/center/page/Project.vue\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProjectPage\", function() { return _Project__WEBPACK_IMPORTED_MODULE_2__[\"default\"]; });\n\n\n\n\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9zcmMvdmlld3MvYWNjb3VudC9jZW50ZXIvcGFnZS9pbmRleC5qcy5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL3NyYy92aWV3cy9hY2NvdW50L2NlbnRlci9wYWdlL2luZGV4LmpzP2NiM2QiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IEFwcFBhZ2UgZnJvbSAnLi9BcHAnXG5pbXBvcnQgQXJ0aWNsZVBhZ2UgZnJvbSAnLi9BcnRpY2xlJ1xuaW1wb3J0IFByb2plY3RQYWdlIGZyb20gJy4vUHJvamVjdCdcblxuZXhwb3J0IHsgQXBwUGFnZSwgQXJ0aWNsZVBhZ2UsIFByb2plY3RQYWdlIH1cbiJdLCJtYXBwaW5ncyI6IkFBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUNBO0FBQ0E7Iiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./src/views/account/center/page/index.js\n");
/***/ }),
/***/ "./src/views/list/search/components/IconText.vue":
/*!*******************************************************!*\
!*** ./src/views/list/search/components/IconText.vue ***!
\*******************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _IconText_vue_vue_type_template_id_f7839c82___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./IconText.vue?vue&type=template&id=f7839c82& */ \"./src/views/list/search/components/IconText.vue?vue&type=template&id=f7839c82&\");\n/* harmony import */ var _IconText_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./IconText.vue?vue&type=script&lang=js& */ \"./src/views/list/search/components/IconText.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport *//* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ \"./node_modules/vue-loader/lib/runtime/componentNormalizer.js\");\n\n\n\n\n\n/* normalize component */\n\nvar component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(\n _IconText_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[\"default\"],\n _IconText_vue_vue_type_template_id_f7839c82___WEBPACK_IMPORTED_MODULE_0__[\"render\"],\n _IconText_vue_vue_type_template_id_f7839c82___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"],\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (true) {\n var api = __webpack_require__(/*! ./node_modules/vue-hot-reload-api/dist/index.js */ \"./node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(__webpack_require__(/*! vue */ \"./node_modules/vue/dist/vue.runtime.esm.js\"))\n if (api.compatible) {\n module.hot.accept()\n if (!api.isRecorded('f7839c82')) {\n api.createRecord('f7839c82', component.options)\n } else {\n api.reload('f7839c82', component.options)\n }\n module.hot.accept(/*! ./IconText.vue?vue&type=template&id=f7839c82& */ \"./src/views/list/search/components/IconText.vue?vue&type=template&id=f7839c82&\", function(__WEBPACK_OUTDATED_DEPENDENCIES__) { /* harmony import */ _IconText_vue_vue_type_template_id_f7839c82___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./IconText.vue?vue&type=template&id=f7839c82& */ \"./src/views/list/search/components/IconText.vue?vue&type=template&id=f7839c82&\");\n(function () {\n api.rerender('f7839c82', {\n render: _IconText_vue_vue_type_template_id_f7839c82___WEBPACK_IMPORTED_MODULE_0__[\"render\"],\n staticRenderFns: _IconText_vue_vue_type_template_id_f7839c82___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"]\n })\n })(__WEBPACK_OUTDATED_DEPENDENCIES__); }.bind(this))\n }\n}\ncomponent.options.__file = \"src/views/list/search/components/IconText.vue\"\n/* harmony default export */ __webpack_exports__[\"default\"] = (component.exports);//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9zcmMvdmlld3MvbGlzdC9zZWFyY2gvY29tcG9uZW50cy9JY29uVGV4dC52dWUuanMiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8vLi9zcmMvdmlld3MvbGlzdC9zZWFyY2gvY29tcG9uZW50cy9JY29uVGV4dC52dWU/OWUwOCJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyByZW5kZXIsIHN0YXRpY1JlbmRlckZucyB9IGZyb20gXCIuL0ljb25UZXh0LnZ1ZT92dWUmdHlwZT10ZW1wbGF0ZSZpZD1mNzgzOWM4MiZcIlxuaW1wb3J0IHNjcmlwdCBmcm9tIFwiLi9JY29uVGV4dC52dWU/dnVlJnR5cGU9c2NyaXB0Jmxhbmc9anMmXCJcbmV4cG9ydCAqIGZyb20gXCIuL0ljb25UZXh0LnZ1ZT92dWUmdHlwZT1zY3JpcHQmbGFuZz1qcyZcIlxuXG5cbi8qIG5vcm1hbGl6ZSBjb21wb25lbnQgKi9cbmltcG9ydCBub3JtYWxpemVyIGZyb20gXCIhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL3J1bnRpbWUvY29tcG9uZW50Tm9ybWFsaXplci5qc1wiXG52YXIgY29tcG9uZW50ID0gbm9ybWFsaXplcihcbiAgc2NyaXB0LFxuICByZW5kZXIsXG4gIHN0YXRpY1JlbmRlckZucyxcbiAgZmFsc2UsXG4gIG51bGwsXG4gIG51bGwsXG4gIG51bGxcbiAgXG4pXG5cbi8qIGhvdCByZWxvYWQgKi9cbmlmIChtb2R1bGUuaG90KSB7XG4gIHZhciBhcGkgPSByZXF1aXJlKFwiL215UHJvamVjdC9weXRob24vcmFzaWJlcnJ5UGlXZWJNYW5hZ2VyL3BpYm9hcmRwcm8vbm9kZV9tb2R1bGVzL3Z1ZS1ob3QtcmVsb2FkLWFwaS9kaXN0L2luZGV4LmpzXCIpXG4gIGFwaS5pbnN0YWxsKHJlcXVpcmUoJ3Z1ZScpKVxuICBpZiAoYXBpLmNvbXBhdGlibGUpIHtcbiAgICBtb2R1bGUuaG90LmFjY2VwdCgpXG4gICAgaWYgKCFhcGkuaXNSZWNvcmRlZCgnZjc4MzljODInKSkge1xuICAgICAgYXBpLmNyZWF0ZVJlY29yZCgnZjc4MzljODInLCBjb21wb25lbnQub3B0aW9ucylcbiAgICB9IGVsc2Uge1xuICAgICAgYXBpLnJlbG9hZCgnZjc4MzljODInLCBjb21wb25lbnQub3B0aW9ucylcbiAgICB9XG4gICAgbW9kdWxlLmhvdC5hY2NlcHQoXCIuL0ljb25UZXh0LnZ1ZT92dWUmdHlwZT10ZW1wbGF0ZSZpZD1mNzgzOWM4MiZcIiwgZnVuY3Rpb24gKCkge1xuICAgICAgYXBpLnJlcmVuZGVyKCdmNzgzOWM4MicsIHtcbiAgICAgICAgcmVuZGVyOiByZW5kZXIsXG4gICAgICAgIHN0YXRpY1JlbmRlckZuczogc3RhdGljUmVuZGVyRm5zXG4gICAgICB9KVxuICAgIH0pXG4gIH1cbn1cbmNvbXBvbmVudC5vcHRpb25zLl9fZmlsZSA9IFwic3JjL3ZpZXdzL2xpc3Qvc2VhcmNoL2NvbXBvbmVudHMvSWNvblRleHQudnVlXCJcbmV4cG9ydCBkZWZhdWx0IGNvbXBvbmVudC5leHBvcnRzIl0sIm1hcHBpbmdzIjoiQUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUFBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBIiwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./src/views/list/search/components/IconText.vue\n");
/***/ }),
/***/ "./src/views/list/search/components/IconText.vue?vue&type=script&lang=js&":
/*!********************************************************************************!*\
!*** ./src/views/list/search/components/IconText.vue?vue&type=script&lang=js& ***!
\********************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _node_modules_cache_loader_dist_cjs_js_ref_12_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_IconText_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../node_modules/babel-loader/lib!../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../node_modules/vue-loader/lib??vue-loader-options!./IconText.vue?vue&type=script&lang=js& */ \"./node_modules/cache-loader/dist/cjs.js?!./node_modules/babel-loader/lib/index.js!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/list/search/components/IconText.vue?vue&type=script&lang=js&\");\n/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__[\"default\"] = (_node_modules_cache_loader_dist_cjs_js_ref_12_0_node_modules_babel_loader_lib_index_js_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_IconText_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[\"default\"]); //# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9zcmMvdmlld3MvbGlzdC9zZWFyY2gvY29tcG9uZW50cy9JY29uVGV4dC52dWU/dnVlJnR5cGU9c2NyaXB0Jmxhbmc9anMmLmpzIiwic291cmNlcyI6WyJ3ZWJwYWNrOi8vLy4vc3JjL3ZpZXdzL2xpc3Qvc2VhcmNoL2NvbXBvbmVudHMvSWNvblRleHQudnVlP2MxZGEiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IG1vZCBmcm9tIFwiLSEuLi8uLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvY2FjaGUtbG9hZGVyL2Rpc3QvY2pzLmpzPz9yZWYtLTEyLTAhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2JhYmVsLWxvYWRlci9saWIvaW5kZXguanMhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2NhY2hlLWxvYWRlci9kaXN0L2Nqcy5qcz8/cmVmLS0wLTAhLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2luZGV4LmpzPz92dWUtbG9hZGVyLW9wdGlvbnMhLi9JY29uVGV4dC52dWU/dnVlJnR5cGU9c2NyaXB0Jmxhbmc9anMmXCI7IGV4cG9ydCBkZWZhdWx0IG1vZDsgZXhwb3J0ICogZnJvbSBcIi0hLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL2NhY2hlLWxvYWRlci9kaXN0L2Nqcy5qcz8/cmVmLS0xMi0wIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9iYWJlbC1sb2FkZXIvbGliL2luZGV4LmpzIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy9jYWNoZS1sb2FkZXIvZGlzdC9janMuanM/P3JlZi0tMC0wIS4uLy4uLy4uLy4uLy4uL25vZGVfbW9kdWxlcy92dWUtbG9hZGVyL2xpYi9pbmRleC5qcz8/dnVlLWxvYWRlci1vcHRpb25zIS4vSWNvblRleHQudnVlP3Z1ZSZ0eXBlPXNjcmlwdCZsYW5nPWpzJlwiIl0sIm1hcHBpbmdzIjoiQUFBQTtBQUFBO0FBQUEiLCJzb3VyY2VSb290IjoiIn0=\n//# sourceURL=webpack-internal:///./src/views/list/search/components/IconText.vue?vue&type=script&lang=js&\n");
/***/ }),
/***/ "./src/views/list/search/components/IconText.vue?vue&type=template&id=f7839c82&":
/*!**************************************************************************************!*\
!*** ./src/views/list/search/components/IconText.vue?vue&type=template&id=f7839c82& ***!
\**************************************************************************************/
/*! exports provided: render, staticRenderFns */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _cache_loader_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_0db9c07d_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_IconText_vue_vue_type_template_id_f7839c82___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!cache-loader?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"0db9c07d-vue-loader-template\"}!../../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../node_modules/vue-loader/lib??vue-loader-options!./IconText.vue?vue&type=template&id=f7839c82& */ \"./node_modules/cache-loader/dist/cjs.js?{\\\"cacheDirectory\\\":\\\"node_modules/.cache/vue-loader\\\",\\\"cacheIdentifier\\\":\\\"0db9c07d-vue-loader-template\\\"}!./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/cache-loader/dist/cjs.js?!./node_modules/vue-loader/lib/index.js?!./src/views/list/search/components/IconText.vue?vue&type=template&id=f7839c82&\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return _cache_loader_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_0db9c07d_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_IconText_vue_vue_type_template_id_f7839c82___WEBPACK_IMPORTED_MODULE_0__[\"render\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"staticRenderFns\", function() { return _cache_loader_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_0db9c07d_vue_loader_template_node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_IconText_vue_vue_type_template_id_f7839c82___WEBPACK_IMPORTED_MODULE_0__[\"staticRenderFns\"]; });\n\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9zcmMvdmlld3MvbGlzdC9zZWFyY2gvY29tcG9uZW50cy9JY29uVGV4dC52dWU/dnVlJnR5cGU9dGVtcGxhdGUmaWQ9Zjc4MzljODImLmpzIiwic291cmNlcyI6WyJ3ZWJwYWNrOi8vLy4vc3JjL3ZpZXdzL2xpc3Qvc2VhcmNoL2NvbXBvbmVudHMvSWNvblRleHQudnVlPzQ4NzciXSwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSBcIi0hY2FjaGUtbG9hZGVyP3tcXFwiY2FjaGVEaXJlY3RvcnlcXFwiOlxcXCJub2RlX21vZHVsZXMvLmNhY2hlL3Z1ZS1sb2FkZXJcXFwiLFxcXCJjYWNoZUlkZW50aWZpZXJcXFwiOlxcXCIwZGI5YzA3ZC12dWUtbG9hZGVyLXRlbXBsYXRlXFxcIn0hLi4vLi4vLi4vLi4vLi4vbm9kZV9tb2R1bGVzL3Z1ZS1sb2FkZXIvbGliL2xvYWRlcnMvdGVtcGxhdGVMb2FkZXIuanM/P3Z1ZS1sb2FkZXItb3B0aW9ucyEuLi8uLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvY2FjaGUtbG9hZGVyL2Rpc3QvY2pzLmpzPz9yZWYtLTAtMCEuLi8uLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvdnVlLWxvYWRlci9saWIvaW5kZXguanM/P3Z1ZS1sb2FkZXItb3B0aW9ucyEuL0ljb25UZXh0LnZ1ZT92dWUmdHlwZT10ZW1wbGF0ZSZpZD1mNzgzOWM4MiZcIiJdLCJtYXBwaW5ncyI6IkFBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBOyIsInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///./src/views/list/search/components/IconText.vue?vue&type=template&id=f7839c82&\n");
/***/ })
}]); | 558.836134 | 25,142 | 0.774964 |
c8c48e3fb3088ab4a9058e0b8b06d8321d3e1a2e | 2,921 | js | JavaScript | web/src/app/schedules/ScheduleRuleEditDialog.js | dctalbot/goalert | 519f41e47dd57281426a8ef7294e561531e2ffe9 | [
"Apache-2.0"
] | null | null | null | web/src/app/schedules/ScheduleRuleEditDialog.js | dctalbot/goalert | 519f41e47dd57281426a8ef7294e561531e2ffe9 | [
"Apache-2.0"
] | null | null | null | web/src/app/schedules/ScheduleRuleEditDialog.js | dctalbot/goalert | 519f41e47dd57281426a8ef7294e561531e2ffe9 | [
"Apache-2.0"
] | null | null | null | import React from 'react'
import p from 'prop-types'
import { Mutation } from 'react-apollo'
import FormDialog from '../dialogs/FormDialog'
import ScheduleRuleForm from './ScheduleRuleForm'
import { fieldErrors, nonFieldErrors } from '../util/errutil'
import gql from 'graphql-tag'
import { startCase, pick } from 'lodash-es'
import Query from '../util/Query'
const query = gql`
query($id: ID!, $tgt: TargetInput!) {
schedule(id: $id) {
id
target(input: $tgt) {
rules {
id
start
end
weekdayFilter
}
}
}
}
`
const mutation = gql`
mutation($input: ScheduleTargetInput!) {
updateScheduleTarget(input: $input)
}
`
export default class ScheduleRuleEditDialog extends React.Component {
static propTypes = {
scheduleID: p.string.isRequired,
target: p.shape({
type: p.oneOf(['rotation', 'user']).isRequired,
id: p.string.isRequired,
}).isRequired,
onClose: p.func,
}
state = {
value: null,
}
shouldComponentUpdate(nextProps, nextState) {
if (this.state !== nextState) return true
return false
}
render() {
return (
<Query
query={query}
variables={{ id: this.props.scheduleID, tgt: this.props.target }}
noPoll
fetchPolicy={'network-only'}
render={({ data }) => this.renderMutation(data.schedule.target)}
/>
)
}
renderMutation(data) {
return (
<Mutation
mutation={mutation}
onCompleted={this.props.onClose}
refetchQueries={['scheduleRules']}
>
{(commit, status) => this.renderDialog(data, commit, status)}
</Mutation>
)
}
renderDialog(data, commit, status) {
const defaults = {
targetID: this.props.target.id,
rules: data.rules.map(r =>
pick(r, ['id', 'start', 'end', 'weekdayFilter']),
),
}
return (
<FormDialog
onClose={this.props.onClose}
title={`Edit Rules for ${startCase(this.props.target.type)}`}
errors={nonFieldErrors(status.error)}
maxWidth='md'
onSubmit={() => {
if (!this.state.value) {
// no changes
this.props.onClose()
return
}
commit({
variables: {
input: {
target: this.props.target,
scheduleID: this.props.scheduleID,
rules: this.state.value.rules,
},
},
})
}}
form={
<ScheduleRuleForm
targetType={this.props.target.type}
targetDisabled
scheduleID={this.props.scheduleID}
disabled={status.loading}
errors={fieldErrors(status.error)}
value={this.state.value || defaults}
onChange={value => this.setState({ value })}
/>
}
/>
)
}
}
| 23.942623 | 73 | 0.551523 |
c8c4d058fb92e08e32ddc7925cd9e9540314c3f7 | 31,841 | js | JavaScript | cn/002702_d.js | daodao10/chart | 216d9b2fe3ebbcf84f4f0d253baf3072e0e4ce5f | [
"MIT"
] | 1 | 2021-07-13T01:51:12.000Z | 2021-07-13T01:51:12.000Z | cn/002702_d.js | daodao10/chart | 216d9b2fe3ebbcf84f4f0d253baf3072e0e4ce5f | [
"MIT"
] | null | null | null | cn/002702_d.js | daodao10/chart | 216d9b2fe3ebbcf84f4f0d253baf3072e0e4ce5f | [
"MIT"
] | null | null | null | var data=[['20121011',3.774],
['20121012',3.631],
['20121015',3.641],
['20121016',3.587],
['20121017',3.526],
['20121018',3.599],
['20121019',3.538],
['20121022',3.566],
['20121023',3.531],
['20121024',3.531],
['20121025',3.526],
['20121026',3.401],
['20121029',3.403],
['20121030',3.391],
['20121031',3.384],
['20121101',3.428],
['20121102',3.440],
['20121105',3.388],
['20121106',3.440],
['20121107',3.413],
['20121108',3.334],
['20121109',3.306],
['20121112',3.328],
['20121113',3.228],
['20121114',3.247],
['20121115',3.150],
['20121116',3.059],
['20121119',3.076],
['20121120',3.103],
['20121121',3.107],
['20121122',3.072],
['20121123',3.135],
['20121126',3.085],
['20121127',2.851],
['20121128',2.800],
['20121129',2.701],
['20121130',2.703],
['20121203',2.641],
['20121204',2.688],
['20121205',2.776],
['20121206',2.737],
['20121207',2.825],
['20121210',2.874],
['20121211',2.846],
['20121212',2.828],
['20121213',2.791],
['20121214',2.918],
['20121217',2.924],
['20121218',2.906],
['20121219',2.935],
['20121220',3.159],
['20121221',3.379],
['20121224',3.500],
['20121225',3.504],
['20121226',3.791],
['20121227',3.771],
['20121228',3.843],
['20121231',3.726],
['20130104',3.821],
['20130107',3.809],
['20130108',4.034],
['20130109',3.978],
['20130110',3.979],
['20130111',4.150],
['20130114',4.218],
['20130115',4.134],
['20130116',4.009],
['20130117',3.887],
['20130118',3.937],
['20130121',3.978],
['20130122',3.671],
['20130123',3.643],
['20130124',3.521],
['20130125',3.594],
['20130128',3.719],
['20130129',3.718],
['20130130',3.615],
['20130131',3.640],
['20130201',3.703],
['20130204',3.610],
['20130205',3.703],
['20130206',3.712],
['20130207',3.700],
['20130208',3.746],
['20130218',3.843],
['20130219',3.747],
['20130220',3.868],
['20130221',3.806],
['20130222',3.850],
['20130225',3.850],
['20130226',3.803],
['20130227',3.749],
['20130228',3.824],
['20130301',3.837],
['20130304',3.726],
['20130305',3.799],
['20130306',3.901],
['20130307',3.925],
['20130308',3.901],
['20130311',3.984],
['20130312',3.690],
['20130313',3.710],
['20130314',3.797],
['20130315',3.757],
['20130318',3.663],
['20130319',3.668],
['20130320',3.741],
['20130321',3.763],
['20130322',3.863],
['20130325',3.879],
['20130326',3.919],
['20130327',3.921],
['20130328',3.796],
['20130329',3.732],
['20130401',3.781],
['20130402',3.772],
['20130403',3.728],
['20130408',3.788],
['20130409',3.818],
['20130410',3.878],
['20130411',3.851],
['20130412',3.868],
['20130415',3.888],
['20130416',3.866],
['20130417',4.044],
['20130418',4.047],
['20130419',4.166],
['20130422',4.599],
['20130423',4.672],
['20130424',5.154],
['20130425',5.012],
['20130426',4.500],
['20130502',4.591],
['20130503',4.941],
['20130506',5.447],
['20130507',5.215],
['20130508',5.265],
['20130509',5.065],
['20130510',5.000],
['20130513',5.024],
['20130514',4.788],
['20130515',4.879],
['20130516',4.812],
['20130517',4.803],
['20130520',4.938],
['20130521',5.074],
['20130522',4.818],
['20130523',4.729],
['20130524',4.818],
['20130527',4.818],
['20130528',5.156],
['20130529',5.094],
['20130530',5.253],
['20130531',5.126],
['20130603',4.853],
['20130604',4.635],
['20130605',4.647],
['20130606',4.512],
['20130607',4.565],
['20130613',4.379],
['20130614',4.547],
['20130617',4.597],
['20130618',4.521],
['20130619',4.359],
['20130620',4.168],
['20130621',4.053],
['20130624',3.929],
['20130625',3.985],
['20130626',4.135],
['20130627',3.979],
['20130628',3.950],
['20130701',4.059],
['20130702',4.150],
['20130703',4.076],
['20130704',4.174],
['20130705',4.091],
['20130708',3.824],
['20130709',3.800],
['20130710',3.926],
['20130711',4.021],
['20130712',4.009],
['20130715',3.894],
['20130716',3.871],
['20130717',3.818],
['20130718',3.703],
['20130719',3.541],
['20130722',3.582],
['20130723',3.682],
['20130724',3.753],
['20130725',3.653],
['20130726',3.582],
['20130729',3.447],
['20130730',3.453],
['20130731',3.429],
['20130801',3.524],
['20130802',3.526],
['20130805',3.774],
['20130806',3.768],
['20130807',4.024],
['20130808',4.000],
['20130809',4.074],
['20130812',4.038],
['20130813',4.003],
['20130814',4.029],
['20130815',3.929],
['20130816',3.809],
['20130819',3.762],
['20130820',3.779],
['20130821',3.797],
['20130822',3.765],
['20130823',3.724],
['20130826',3.865],
['20130827',3.891],
['20130828',3.774],
['20130829',3.791],
['20130830',3.679],
['20130902',3.738],
['20130903',3.756],
['20130904',3.747],
['20130905',3.779],
['20130906',3.803],
['20130909',3.844],
['20130910',3.791],
['20130911',4.097],
['20130912',3.979],
['20130913',3.974],
['20130916',3.879],
['20130917',3.774],
['20130918',3.832],
['20130923',3.956],
['20130924',3.885],
['20130925',4.006],
['20130926',3.950],
['20130927',3.900],
['20130930',3.947],
['20131008',3.874],
['20131009',3.929],
['20131010',3.997],
['20131011',4.024],
['20131014',3.997],
['20131015',4.209],
['20131016',3.994],
['20131017',4.059],
['20131018',4.182],
['20131021',4.300],
['20131022',4.406],
['20131023',4.153],
['20131024',4.074],
['20131025',3.788],
['20131028',3.562],
['20131029',3.394],
['20131030',3.426],
['20131031',3.356],
['20131101',3.418],
['20131104',3.447],
['20131105',3.415],
['20131106',3.315],
['20131107',3.176],
['20131108',3.032],
['20131111',3.126],
['20131112',3.124],
['20131113',3.068],
['20131114',3.126],
['20131115',3.203],
['20131118',3.309],
['20131119',3.356],
['20131120',3.326],
['20131121',3.350],
['20131122',3.376],
['20131125',3.362],
['20131126',3.388],
['20131127',3.512],
['20131128',3.506],
['20131129',3.538],
['20131202',3.215],
['20131203',3.294],
['20131204',3.391],
['20131205',3.447],
['20131206',3.432],
['20131209',3.500],
['20131210',3.506],
['20131211',3.415],
['20131212',3.503],
['20131213',3.771],
['20131216',3.826],
['20131217',3.782],
['20131218',4.006],
['20131219',3.956],
['20131220',3.671],
['20131223',3.750],
['20131224',3.750],
['20131225',3.782],
['20131226',3.641],
['20131227',3.671],
['20131230',3.744],
['20131231',3.712],
['20140102',3.841],
['20140103',3.891],
['20140106',3.776],
['20140107',3.921],
['20140108',3.962],
['20140109',3.935],
['20140110',3.862],
['20140113',3.941],
['20140114',3.988],
['20140115',4.171],
['20140116',4.129],
['20140117',3.941],
['20140120',3.888],
['20140121',3.897],
['20140122',4.132],
['20140123',4.082],
['20140124',4.112],
['20140127',3.944],
['20140128',3.979],
['20140129',3.979],
['20140130',3.862],
['20140207',3.935],
['20140210',4.050],
['20140211',4.068],
['20140212',4.129],
['20140213',4.188],
['20140214',4.276],
['20140217',4.288],
['20140218',4.291],
['20140219',4.479],
['20140220',4.338],
['20140221',4.265],
['20140224',4.288],
['20140225',4.185],
['20140226',4.232],
['20140227',4.097],
['20140228',4.132],
['20140303',4.197],
['20140304',4.232],
['20140305',4.215],
['20140306',4.106],
['20140307',4.118],
['20140310',4.015],
['20140311',3.988],
['20140312',4.024],
['20140313',4.079],
['20140314',4.215],
['20140317',4.235],
['20140318',4.294],
['20140319',4.265],
['20140320',4.126],
['20140321',4.156],
['20140324',4.091],
['20140325',4.118],
['20140326',4.159],
['20140327',4.082],
['20140328',3.891],
['20140331',3.938],
['20140401',3.994],
['20140402',3.962],
['20140403',3.959],
['20140404',3.979],
['20140408',4.038],
['20140409',4.065],
['20140410',4.050],
['20140411',4.029],
['20140414',3.950],
['20140415',3.950],
['20140416',3.979],
['20140417',4.012],
['20140418',4.085],
['20140421',3.985],
['20140422',3.868],
['20140423',3.882],
['20140424',3.944],
['20140425',3.803],
['20140428',3.412],
['20140429',3.326],
['20140430',3.326],
['20140505',3.412],
['20140506',3.465],
['20140507',3.453],
['20140508',3.479],
['20140509',3.509],
['20140512',3.568],
['20140513',3.553],
['20140514',3.553],
['20140515',3.476],
['20140516',3.535],
['20140519',3.571],
['20140520',3.606],
['20140521',3.735],
['20140522',3.779],
['20140523',3.871],
['20140526',4.009],
['20140527',4.000],
['20140528',4.056],
['20140529',4.062],
['20140530',4.038],
['20140603',4.074],
['20140604',4.074],
['20140605',4.044],
['20140606',4.044],
['20140609',4.068],
['20140610',4.182],
['20140611',4.179],
['20140612',4.206],
['20140613',4.200],
['20140616',4.194],
['20140617',4.135],
['20140618',4.029],
['20140619',3.876],
['20140620',3.971],
['20140623',4.041],
['20140624',4.138],
['20140625',4.126],
['20140626',4.126],
['20140627',4.141],
['20140630',4.200],
['20140701',4.141],
['20140702',4.141],
['20140703',4.162],
['20140704',4.238],
['20140707',4.303],
['20140708',4.306],
['20140709',4.332],
['20140710',4.315],
['20140711',4.321],
['20140714',4.450],
['20140715',4.324],
['20140716',4.265],
['20140717',4.265],
['20140718',4.259],
['20140721',4.191],
['20140722',4.203],
['20140723',4.197],
['20140724',4.156],
['20140725',4.191],
['20140728',4.200],
['20140729',4.244],
['20140730',4.221],
['20140731',4.229],
['20140801',4.200],
['20140804',4.450],
['20140805',4.376],
['20140806',4.326],
['20140807',4.303],
['20140808',4.294],
['20140811',4.324],
['20140812',4.332],
['20140813',4.291],
['20140814',4.232],
['20140815',4.259],
['20140818',4.338],
['20140819',4.347],
['20140820',4.450],
['20140821',4.453],
['20140822',4.429],
['20140825',4.432],
['20140826',4.503],
['20140827',4.768],
['20140828',4.682],
['20140829',4.841],
['20140901',4.997],
['20140902',4.979],
['20140903',5.059],
['20140904',5.015],
['20140905',4.971],
['20140909',4.974],
['20140910',5.203],
['20140911',5.265],
['20140912',5.344],
['20140915',5.329],
['20140916',5.035],
['20140917',5.082],
['20140918',5.091],
['20140919',5.156],
['20140922',5.082],
['20140923',5.124],
['20140924',5.124],
['20140925',5.103],
['20140926',5.185],
['20140929',5.306],
['20140930',5.244],
['20141008',5.115],
['20141009',5.091],
['20141010',5.097],
['20141013',5.071],
['20141014',5.065],
['20141015',5.103],
['20141016',5.076],
['20141017',5.088],
['20141020',5.135],
['20141021',5.191],
['20141022',5.215],
['20141023',5.179],
['20141024',5.350],
['20141027',5.524],
['20141028',5.597],
['20141029',5.703],
['20141030',5.494],
['20141031',5.512],
['20141103',5.538],
['20141104',5.488],
['20141105',5.435],
['20141106',5.347],
['20141107',5.388],
['20141110',5.441],
['20141111',5.312],
['20141112',5.265],
['20141113',5.091],
['20141114',5.479],
['20141117',5.388],
['20141118',5.259],
['20141119',5.303],
['20141120',5.359],
['20141121',5.297],
['20141124',5.182],
['20141125',5.200],
['20141126',5.147],
['20141127',5.385],
['20141128',5.262],
['20141201',5.282],
['20141202',5.303],
['20141203',5.268],
['20141204',5.215],
['20141205',5.212],
['20141208',5.009],
['20141209',4.679],
['20141210',4.874],
['20141211',4.918],
['20141212',4.944],
['20141215',4.965],
['20141216',5.006],
['20141217',4.865],
['20141218',4.747],
['20141219',4.659],
['20141222',4.247],
['20141223',4.379],
['20141224',4.750],
['20141225',4.965],
['20141226',4.962],
['20141229',4.941],
['20141230',4.935],
['20141231',4.976],
['20150105',4.921],
['20150106',4.918],
['20150107',5.044],
['20150108',5.029],
['20150109',5.068],
['20150112',5.024],
['20150113',5.144],
['20150114',5.318],
['20150115',5.318],
['20150116',5.318],
['20150119',5.456],
['20150120',5.738],
['20150121',5.721],
['20150122',5.735],
['20150123',5.759],
['20150126',5.935],
['20150127',5.950],
['20150128',5.894],
['20150129',5.882],
['20150130',5.959],
['20150202',6.344],
['20150203',6.803],
['20150204',6.965],
['20150205',7.385],
['20150206',7.715],
['20150209',7.656],
['20150210',7.626],
['20150211',7.862],
['20150212',8.026],
['20150213',8.156],
['20150216',8.238],
['20150217',8.985],
['20150225',8.956],
['20150226',8.821],
['20150227',8.624],
['20150302',8.947],
['20150303',9.253],
['20150304',9.624],
['20150305',9.612],
['20150306',9.979],
['20150309',9.826],
['20150310',9.744],
['20150311',9.803],
['20150312',9.556],
['20150313',9.391],
['20150316',9.229],
['20150317',9.226],
['20150318',9.362],
['20150319',9.371],
['20150320',9.309],
['20150323',9.500],
['20150324',10.009],
['20150325',9.921],
['20150326',9.859],
['20150327',9.912],
['20150330',9.332],
['20150331',9.006],
['20150401',9.153],
['20150402',9.224],
['20150403',9.332],
['20150407',9.779],
['20150408',9.859],
['20150409',10.556],
['20150410',10.612],
['20150413',10.612],
['20150414',10.288],
['20150415',9.803],
['20150416',9.762],
['20150417',9.832],
['20150420',9.626],
['20150421',9.982],
['20150422',9.979],
['20150423',10.126],
['20150424',10.191],
['20150427',10.506],
['20150428',10.288],
['20150429',10.271],
['20150430',10.141],
['20150504',11.038],
['20150505',10.509],
['20150506',10.324],
['20150507',10.338],
['20150508',11.074],
['20150511',11.544],
['20150512',12.703],
['20150513',13.362],
['20150514',14.144],
['20150515',14.944],
['20150518',14.621],
['20150519',14.897],
['20150520',16.274],
['20150521',17.909],
['20150522',17.903],
['20150525',17.509],
['20150526',17.521],
['20150527',17.856],
['20150528',17.891],
['20150529',18.774],
['20150601',19.656],
['20150602',20.350],
['20150603',20.715],
['20150604',21.121],
['20150605',21.721],
['20150608',21.185],
['20150609',21.238],
['20150610',21.762],
['20150611',22.215],
['20150612',22.138],
['20150615',21.562],
['20150616',20.421],
['20150617',20.426],
['20150618',19.526],
['20150619',19.538],
['20150623',18.356],
['20150624',18.291],
['20150625',18.156],
['20150626',16.338],
['20150629',14.697],
['20150916',13.221],
['20150917',11.891],
['20150918',10.697],
['20150921',9.621],
['20150922',10.585],
['20150923',11.650],
['20150924',12.215],
['20151012',12.568],
['20151013',11.721],
['20151014',11.956],
['20151015',11.938],
['20151016',13.138],
['20151019',14.456],
['20151020',15.909],
['20151021',17.503],
['20151022',19.256],
['20151023',21.185],
['20151026',19.062],
['20151027',18.868],
['20151028',19.809],
['20151029',21.797],
['20151030',21.997],
['20151102',19.791],
['20151103',18.226],
['20151104',18.691],
['20151105',17.068],
['20151106',17.038],
['20151109',17.350],
['20151110',16.991],
['20151111',18.121],
['20151112',17.244],
['20151113',17.244],
['20151116',17.274],
['20151117',17.715],
['20151118',16.626],
['20151119',16.715],
['20151120',16.044],
['20151123',15.503],
['20151124',17.056],
['20151125',18.185],
['20151126',17.021],
['20151127',18.726],
['20151130',20.603],
['20151201',18.538],
['20151202',16.679],
['20151203',18.350],
['20151204',18.821],
['20151207',17.656],
['20151208',18.115],
['20151209',18.026],
['20151210',17.144],
['20151211',16.579],
['20151214',16.526],
['20151215',16.715],
['20151216',16.956],
['20151217',17.203],
['20151218',17.868],
['20151221',17.579],
['20151222',18.097],
['20151223',17.403],
['20151224',16.974],
['20151225',17.209],
['20151228',16.579],
['20151229',16.732],
['20151230',16.562],
['20151231',16.126],
['20160104',14.509],
['20160105',13.097],
['20160106',14.415],
['20160107',13.509],
['20160108',14.868],
['20160111',13.479],
['20160112',13.379],
['20160113',12.103],
['20160114',12.479],
['20160115',11.326],
['20160118',11.415],
['20160119',12.344],
['20160120',11.915],
['20160121',10.932],
['20160122',11.232],
['20160125',11.926],
['20160126',10.726],
['20160127',10.556],
['20160128',9.497],
['20160129',10.115],
['20160201',9.597],
['20160202',10.021],
['20160203',11.026],
['20160204',12.132],
['20160205',13.303],
['20160215',12.591],
['20160216',13.856],
['20160217',13.432],
['20160218',13.050],
['20160219',12.774],
['20160222',13.062],
['20160223',12.562],
['20160224',13.009],
['20160225',11.703],
['20160226',11.685],
['20160229',10.515],
['20160301',10.538],
['20160302',11.597],
['20160303',11.185],
['20160304',10.303],
['20160307',10.638],
['20160308',10.838],
['20160309',10.385],
['20160310',10.485],
['20160311',10.232],
['20160314',10.603],
['20160315',10.962],
['20160316',10.644],
['20160317',11.056],
['20160318',11.491],
['20160321',12.297],
['20160322',11.838],
['20160323',11.868],
['20160324',11.979],
['20160325',11.803],
['20160328',11.809],
['20160329',11.232],
['20160330',11.591],
['20160331',11.703],
['20160401',11.415],
['20160405',11.897],
['20160406',11.991],
['20160407',11.609],
['20160408',11.338],
['20160411',11.550],
['20160412',11.362],
['20160413',11.597],
['20160414',11.838],
['20160415',12.303],
['20160418',12.303],
['20160419',12.050],
['20160420',11.385],
['20160421',11.291],
['20160422',12.426],
['20160425',12.185],
['20160426',12.479],
['20160427',12.726],
['20160428',12.915],
['20160429',12.421],
['20160503',13.026],
['20160504',13.579],
['20160505',13.391],
['20160506',12.644],
['20160509',11.785],
['20160510',12.091],
['20160511',12.109],
['20160512',11.762],
['20160513',11.403],
['20160516',11.626],
['20160517',11.726],
['20160518',11.497],
['20160519',11.479],
['20160520',11.421],
['20160523',11.756],
['20160524',11.603],
['20160525',11.815],
['20160526',11.826],
['20160527',11.638],
['20160530',11.438],
['20160531',11.985],
['20160601',11.932],
['20160602',12.268],
['20160603',12.156],
['20160606',12.032],
['20160607',12.038],
['20160608',11.909],
['20160613',10.974],
['20160614',10.944],
['20160615',11.209],
['20160616',11.026],
['20160617',11.056],
['20160620',10.962],
['20160621',10.826],
['20160622',10.979],
['20160623',11.474],
['20160624',11.650],
['20160627',12.262],
['20160628',12.538],
['20160629',12.215],
['20160630',11.885],
['20160701',11.985],
['20160704',12.062],
['20160705',12.009],
['20160706',11.897],
['20160707',12.532],
['20160708',12.103],
['20160711',11.962],
['20160712',12.021],
['20160713',12.121],
['20160714',12.068],
['20160715',11.962],
['20160718',12.168],
['20160719',12.479],
['20160720',12.297],
['20160721',12.256],
['20160722',11.897],
['20160725',11.944],
['20160726',12.038],
['20160727',11.221],
['20160728',11.262],
['20160729',11.168],
['20160801',11.115],
['20160802',11.162],
['20160803',11.150],
['20160804',11.221],
['20160805',11.156],
['20160808',11.168],
['20160809',11.397],
['20160810',11.279],
['20160811',11.068],
['20160812',11.144],
['20160815',11.332],
['20160816',11.709],
['20160817',11.503],
['20160818',11.532],
['20160819',11.426],
['20160822',11.215],
['20160823',11.221],
['20160824',11.326],
['20160825',11.138],
['20160826',11.209],
['20160829',11.232],
['20160830',11.262],
['20160831',11.209],
['20160901',11.144],
['20160902',11.021],
['20160905',11.050],
['20160906',11.156],
['20160907',11.191],
['20160908',11.121],
['20160909',11.103],
['20160912',10.744],
['20160913',10.738],
['20160914',10.756],
['20160919',10.779],
['20160920',10.685],
['20160921',10.774],
['20160922',10.732],
['20160923',10.632],
['20160926',10.209],
['20160927',10.244],
['20160928',10.315],
['20160929',10.256],
['20160930',10.279],
['20161010',10.503],
['20161011',10.597],
['20161012',10.491],
['20161013',10.509],
['20161014',10.432],
['20161017',10.321],
['20161018',10.497],
['20161019',10.421],
['20161020',10.609],
['20161021',10.432],
['20161024',10.579],
['20161025',11.644],
['20161026',11.350],
['20161027',11.121],
['20161028',10.915],
['20161031',11.074],
['20161101',11.197],
['20161102',10.862],
['20161103',10.844],
['20161104',10.850],
['20161107',10.862],
['20161108',10.844],
['20161109',10.568],
['20161110',10.703],
['20161111',10.756],
['20161114',11.215],
['20161115',11.079],
['20161116',11.068],
['20161117',11.268],
['20161118',11.074],
['20161121',11.068],
['20161122',11.162],
['20161123',11.279],
['20161124',10.956],
['20161125',10.921],
['20161128',10.944],
['20161129',10.856],
['20161130',10.885],
['20161201',11.079],
['20161202',11.203],
['20161205',11.297],
['20161206',11.232],
['20161207',11.368],
['20161208',11.056],
['20161209',10.885],
['20161212',10.038],
['20161213',10.038],
['20161214',10.203],
['20161215',10.262],
['20161216',10.309],
['20161219',10.209],
['20161220',10.303],
['20161221',10.332],
['20161222',10.356],
['20161223',10.315],
['20161226',10.444],
['20161227',10.685],
['20161228',11.150],
['20161229',11.074],
['20161230',11.150],
['20170103',11.026],
['20170104',11.068],
['20170105',10.844],
['20170106',10.462],
['20170109',11.515],
['20170110',11.138],
['20170111',11.715],
['20170112',11.344],
['20170113',10.715],
['20170116',10.209],
['20170117',10.338],
['20170118',10.415],
['20170119',10.315],
['20170120',10.397],
['20170123',10.515],
['20170124',10.415],
['20170125',10.362],
['20170126',10.409],
['20170203',10.426],
['20170206',10.462],
['20170207',10.621],
['20170208',10.626],
['20170209',10.650],
['20170210',10.485],
['20170213',10.526],
['20170214',10.515],
['20170215',10.456],
['20170216',10.491],
['20170217',10.203],
['20170220',10.279],
['20170221',10.409],
['20170222',10.368],
['20170223',10.332],
['20170224',10.456],
['20170227',10.356],
['20170228',10.444],
['20170301',10.426],
['20170302',10.356],
['20170303',10.438],
['20170306',10.550],
['20170307',10.526],
['20170308',10.821],
['20170309',10.609],
['20170310',10.544],
['20170313',10.621],
['20170314',10.574],
['20170315',10.491],
['20170316',10.574],
['20170317',10.521],
['20170320',10.579],
['20170321',10.715],
['20170322',10.574],
['20170323',10.603],
['20170324',10.668],
['20170327',10.668],
['20170328',10.538],
['20170329',10.303],
['20170330',10.044],
['20170331',10.074],
['20170405',10.168],
['20170406',10.138],
['20170407',10.174],
['20170410',10.038],
['20170411',10.056],
['20170412',10.250],
['20170413',10.162],
['20170414',10.050],
['20170417',10.032],
['20170418',9.844],
['20170419',9.062],
['20170420',9.003],
['20170421',8.897],
['20170424',8.474],
['20170425',8.632],
['20170426',8.474],
['20170427',8.500],
['20170428',8.530],
['20170502',8.890],
['20170503',8.860],
['20170504',8.640],
['20170505',8.620],
['20170508',8.470],
['20170509',8.500],
['20170510',8.250],
['20170511',8.060],
['20170512',8.130],
['20170515',8.110],
['20170516',8.300],
['20170517',8.290],
['20170518',8.710],
['20170519',8.940],
['20170522',8.750],
['20170523',8.260],
['20170524',8.550],
['20170525',8.450],
['20170526',8.750],
['20170531',8.940],
['20170601',8.780],
['20170602',8.760],
['20170605',8.810],
['20170606',8.750],
['20170607',8.840],
['20170608',8.800],
['20170609',9.050],
['20170612',8.740],
['20170613',8.740],
['20170614',9.170],
['20170615',9.030],
['20170616',8.830],
['20170619',8.750],
['20170620',8.680],
['20170621',8.570],
['20170622',8.380],
['20170623',8.320],
['20170626',8.340],
['20170627',8.330],
['20170628',8.430],
['20170629',8.370],
['20170630',8.220],
['20170703',8.220],
['20170704',8.170],
['20170705',8.250],
['20170706',8.130],
['20170707',8.130],
['20170710',8.140],
['20170711',8.130],
['20170712',7.970],
['20170713',7.920],
['20170714',7.640],
['20170717',6.870],
['20170718',6.750],
['20170719',6.770],
['20170720',6.720],
['20170721',6.630],
['20170724',6.640],
['20170725',6.680],
['20170726',6.620],
['20170727',6.730],
['20170728',7.000],
['20170731',6.970],
['20170801',7.060],
['20170802',6.940],
['20170803',6.950],
['20170804',6.940],
['20170807',6.890],
['20170808',6.880],
['20170809',6.890],
['20170810',6.940],
['20170811',6.890],
['20170814',6.970],
['20170815',6.980],
['20170816',6.970],
['20170817',7.170],
['20170818',7.070],
['20170821',7.070],
['20170822',6.780],
['20170823',6.670],
['20170824',6.620],
['20170825',6.600],
['20170828',6.610],
['20170829',6.790],
['20170830',6.670],
['20170831',6.650],
['20170901',6.680],
['20170904',6.630],
['20170905',6.620],
['20170906',6.710],
['20170907',6.730],
['20170908',6.750],
['20170911',6.860],
['20170912',6.950],
['20170913',7.430],
['20170914',7.180],
['20170915',7.030],
['20170918',7.060],
['20170919',7.000],
['20170920',7.150],
['20170921',7.280],
['20170922',7.180],
['20170925',6.910],
['20170926',6.890],
['20170927',6.920],
['20170928',6.770],
['20170929',6.750],
['20171009',6.890],
['20171010',7.050],
['20171011',7.230],
['20171012',7.070],
['20171013',7.010],
['20171016',6.800],
['20171017',6.870],
['20171018',6.740],
['20171019',6.640],
['20171020',6.710],
['20171023',6.740],
['20171024',6.650],
['20171025',6.680],
['20171026',6.690],
['20171027',6.650],
['20171030',6.300],
['20171031',6.370],
['20171101',6.290],
['20171102',6.090],
['20171103',6.010],
['20171106',6.030],
['20171107',6.110],
['20171108',6.130],
['20171109',6.270],
['20171110',6.150],
['20171113',6.070],
['20171114',6.070],
['20171115',6.030],
['20171116',6.030],
['20171117',5.700],
['20171120',5.620],
['20171121',5.630],
['20171122',5.620],
['20171123',5.490],
['20171124',5.550],
['20171127',5.590],
['20171128',5.680],
['20171129',5.710],
['20171130',5.630],
['20171201',5.630],
['20171204',5.730],
['20171205',5.530],
['20171206',5.510],
['20171207',5.500],
['20171208',5.550],
['20171211',5.660],
['20171212',5.520],
['20171213',5.530],
['20171214',5.540],
['20171215',5.590],
['20171218',5.510],
['20171219',5.580],
['20171220',5.420],
['20171221',5.340],
['20171222',5.270],
['20171225',5.130],
['20171226',5.170],
['20171227',5.280],
['20171228',5.210],
['20171229',5.220],
['20180102',5.250],
['20180103',5.310],
['20180104',5.290],
['20180105',5.310],
['20180108',5.240],
['20180109',5.390],
['20180110',5.430],
['20180111',5.370],
['20180112',5.290],
['20180115',5.110],
['20180116',5.120],
['20180117',5.070],
['20180118',5.010],
['20180119',5.190],
['20180122',5.170],
['20180123',5.130],
['20180124',5.130],
['20180125',5.090],
['20180126',5.100],
['20180129',5.000],
['20180130',5.000],
['20180131',4.580],
['20180201',4.260],
['20180202',4.130],
['20180205',4.100],
['20180206',3.820],
['20180207',3.870],
['20180208',4.030],
['20180209',3.940],
['20180212',4.060],
['20180213',4.050],
['20180214',4.030],
['20180222',4.080],
['20180223',4.070],
['20180226',4.140],
['20180227',4.210],
['20180228',4.160],
['20180301',4.240],
['20180302',4.410],
['20180305',4.360],
['20180306',4.410],
['20180307',4.860],
['20180308',4.970],
['20180309',4.810],
['20180312',4.830],
['20180313',4.730],
['20180314',4.560],
['20180315',5.020],
['20180316',5.530],
['20180319',5.350],
['20180320',5.890],
['20180321',6.000],
['20180322',5.740],
['20180323',5.160],
['20180326',5.190],
['20180327',5.350],
['20180328',5.260],
['20180329',5.210],
['20180330',5.260],
['20180402',5.150],
['20180403',5.000],
['20180404',4.990],
['20180409',4.930],
['20180410',4.960],
['20180411',5.140],
['20180412',4.970],
['20180413',4.920],
['20180416',4.810],
['20180417',4.590],
['20180418',4.650],
['20180419',4.670],
['20180420',4.850],
['20180423',4.740],
['20180424',4.760],
['20180425',4.660],
['20180426',4.550],
['20180427',4.530],
['20180502',4.510],
['20180503',4.540],
['20180504',4.520],
['20180507',4.590],
['20180508',4.750],
['20180509',4.700],
['20180510',5.180],
['20180511',5.020],
['20180514',5.090],
['20180515',5.380],
['20180516',5.480],
['20180517',5.290],
['20180518',5.430],
['20180521',5.450],
['20180522',5.340],
['20180523',5.330],
['20180524',5.180],
['20180525',5.140],
['20180528',5.440],
['20180529',5.280],
['20180530',5.000],
['20180531',5.510],
['20180601',5.920],
['20180604',5.590],
['20180605',6.150],
['20180606',5.980],
['20180607',6.070],
['20180608',5.930],
['20180611',5.690],
['20180612',5.800],
['20180613',5.560],
['20180614',5.550],
['20180615',5.240],
['20180619',4.830],
['20180620',4.920],
['20180621',4.730],
['20180622',4.750],
['20180625',4.820],
['20180626',4.920],
['20180627',4.860],
['20180628',4.750],
['20180629',4.920],
['20180702',5.000],
['20180703',5.050],
['20180704',5.110],
['20180705',4.830],
['20180706',4.690],
['20180709',4.800],
['20180710',4.960],
['20180711',4.740],
['20180712',4.850],
['20180713',5.220],
['20180716',5.240],
['20180717',5.200],
['20180718',5.220],
['20180719',5.060],
['20180720',5.120],
['20180723',5.160],
['20180724',5.260],
['20180725',5.190],
['20180726',5.210],
['20180727',5.400],
['20180730',5.450],
['20180731',5.320],
['20180801',5.060],
['20180802',4.830],
['20180803',4.920],
['20180806',4.750],
['20180807',4.850],
['20180808',4.860],
['20180809',4.920],
['20180810',4.950],
['20180813',4.860],
['20180814',4.910],
['20180815',4.770],
['20180816',4.660],
['20180817',4.460],
['20180820',4.140],
['20180821',4.280],
['20180822',4.170],
['20180823',4.180],
['20180824',4.240],
['20180827',4.300],
['20180828',4.280],
['20180829',4.250],
['20180830',4.160],
['20180831',4.110],
['20180903',4.150],
['20180904',4.210],
['20180905',4.140],
['20180906',4.110],
['20180907',4.130],
['20180910',4.160],
['20180911',4.110],
['20180912',4.100],
['20180913',4.130],
['20180914',4.250],
['20180917',4.460],
['20180918',4.400],
['20180919',4.420],
['20180920',4.350],
['20180921',4.560],
['20180925',4.390],
['20180926',4.400],
['20180927',4.300],
['20180928',4.340],
['20181008',4.150],
['20181009',4.190],
['20181010',4.210],
['20181011',3.810],
['20181012',3.960],
['20181015',3.930],
['20181016',3.920],
['20181017',3.960],
['20181018',3.890],
['20181019',3.980],
['20181022',4.140],
['20181023',4.120],
['20181024',4.130],
['20181025',4.110],
['20181026',4.100],
['20181029',4.080],
['20181030',4.100],
['20181031',4.160],
['20181101',4.130],
['20181102',4.210],
['20181105',4.280],
['20181106',4.200],
['20181107',4.160],
['20181108',4.460],
['20181109',4.390],
['20181112',4.490],
['20181113',4.550],
['20181114',4.490],
['20181115',4.500],
['20181116',4.640],
['20181119',4.540],
['20181120',4.370],
['20181121',4.400],
['20181122',4.400],
['20181123',4.240],
['20181126',4.280],
['20181127',4.280],
['20181128',4.310],
['20181129',4.190],
['20181130',4.170],
['20181203',4.280],
['20181204',4.300],
['20181205',4.230],
['20181206',4.240],
['20181207',4.220],
['20181210',4.160],
['20181211',4.200],
['20181212',4.190],
['20181213',4.220],
['20181214',4.200],
['20181217',4.150],
['20181218',4.110],
['20181219',4.060],
['20181220',4.060],
['20181221',4.050],
['20181224',4.080],
['20181225',4.000],
['20181226',3.990],
['20181227',3.960],
['20181228',3.940],
['20190102',3.970],
['20190103',3.970],
['20190104',4.070],
['20190107',4.120],
['20190108',4.100],
['20190109',4.120],
['20190110',4.110],
['20190111',4.140],
['20190114',4.120],
['20190115',4.180],
['20190116',4.220],
['20190117',4.120],
['20190118',4.130],
['20190121',4.170],
['20190122',4.120],
['20190123',4.110],
['20190124',4.240],
['20190125',4.140],
['20190128',4.120],
['20190129',4.010],
['20190130',3.950],
['20190131',3.890],
['20190201',3.980],
['20190211',4.060],
['20190212',4.130],
['20190213',4.150],
['20190214',4.110],
['20190215',4.150],
['20190218',4.240],
['20190219',4.260],
['20190220',4.270],
['20190221',4.220],
['20190222',4.280],
['20190225',4.460],
['20190226',4.440],
['20190227',4.460],
['20190228',4.500],
['20190301',4.490],
['20190304',4.520],
['20190305',4.790],
['20190306',4.940],
['20190307',4.990],
['20190308',4.650],
['20190311',4.840],
['20190312',4.880],
['20190313',4.850],
['20190314',4.650],
['20190315',4.750],
['20190318',4.940],
['20190319',4.900],
['20190320',4.960],
['20190321',4.980],
['20190322',4.960],
['20190325',5.020],
['20190326',4.850],
['20190327',4.870],
['20190328',4.880],
['20190329',4.980],
['20190401',5.130],
['20190402',5.120],
['20190403',5.250],
['20190404',5.170],
['20190408',5.240],
['20190409',5.770],
['20190410',5.740],
['20190411',5.340],
['20190412',5.340],
['20190415',5.530],
['20190416',5.540],
['20190417',5.460],
['20190418',5.480],
['20190419',5.380],
['20190422',5.270],
['20190423',5.140],
['20190424',5.210],
['20190425',5.090],
['20190426',5.090],
['20190429',4.810],
['20190430',4.920],
['20190506',5.100],
['20190507',5.620],
['20190508',6.180],
['20190509',5.560],
['20190510',5.720],
['20190513',5.480],
['20190514',5.580],
['20190515',5.920],
['20190516',5.860],
['20190517',6.040],
['20190520',5.440],
['20190521',5.270],
['20190522',5.190],
['20190523',4.860],
['20190524',4.870],
['20190527',5.000],
['20190528',4.960],
['20190529',5.050],
['20190530',5.140],
['20190531',4.960],
['20190603',4.820],
['20190604',4.590],
['20190605',4.720],
['20190606',4.620],
['20190610',4.820],
['20190611',5.300],
['20190612',5.260],
['20190613',5.140],
['20190614',4.920],
['20190617',5.020],
['20190618',4.990],
['20190619',5.040],
['20190620',5.060],
['20190621',5.110]];
var source='wstock.net'; | 20.280892 | 29 | 0.605477 |
c8c517033417ee7451ace490ed4ac1717c85b27e | 1,736 | js | JavaScript | app/scripts/modules/openstack/src/region/regionSelectField.directive.js | scopely/deck | 3ac539e6f720985916c0d9c618bd4d08d4697b2e | [
"Apache-2.0"
] | null | null | null | app/scripts/modules/openstack/src/region/regionSelectField.directive.js | scopely/deck | 3ac539e6f720985916c0d9c618bd4d08d4697b2e | [
"Apache-2.0"
] | 3 | 2020-09-04T03:41:36.000Z | 2021-03-11T04:39:10.000Z | app/scripts/modules/openstack/src/region/regionSelectField.directive.js | scopely/deck | 3ac539e6f720985916c0d9c618bd4d08d4697b2e | [
"Apache-2.0"
] | null | null | null | 'use strict';
const angular = require('angular');
import _ from 'lodash';
import { ACCOUNT_SERVICE } from '@spinnaker/core';
module.exports = angular
.module('spinnaker.openstack.region.regionSelectField.directive', [
ACCOUNT_SERVICE,
require('../common/selectField.component.js').name,
])
.directive('osRegionSelectField', function(accountService) {
return {
restrict: 'E',
templateUrl: require('../common/cacheBackedSelectField.template.html'),
scope: {
label: '@',
labelColumnSize: '@',
helpKey: '@',
model: '=',
filter: '=',
account: '<',
onChange: '&',
readOnly: '<',
allowNoSelection: '=',
noOptionsMessage: '@',
noSelectionMessage: '@',
},
link: function(scope) {
_.defaults(scope, {
label: 'Region',
labelColumnSize: 3,
valueColumnSize: 7,
options: [{ label: scope.model, value: scope.model }],
filter: {},
backingCache: 'regions',
updateOptions: function() {
return accountService.getRegionsForAccount(scope.account).then(function(regions) {
scope.options = _.chain(regions)
.map(r => ({ label: r, value: r }))
.sortBy('label')
.value();
return scope.options;
});
},
onValueChanged: function(newValue) {
scope.model = newValue;
if (scope.onChange) {
scope.onChange({ region: newValue });
}
},
});
scope.$watch('account', function() {
scope.$broadcast('updateOptions');
});
},
};
});
| 28.459016 | 94 | 0.520737 |
c8c562440df2b01ba7ac6488448a4462fd553226 | 1,013 | js | JavaScript | assets/js/script.js | RyanMatheuZ/rick-and-morty | 549abef5f8f4d8a405855301636511df26bc0be3 | [
"MIT"
] | null | null | null | assets/js/script.js | RyanMatheuZ/rick-and-morty | 549abef5f8f4d8a405855301636511df26bc0be3 | [
"MIT"
] | null | null | null | assets/js/script.js | RyanMatheuZ/rick-and-morty | 549abef5f8f4d8a405855301636511df26bc0be3 | [
"MIT"
] | null | null | null | document.getElementById('btn-search').addEventListener('click', event => {
event.preventDefault();
const search = document.getElementById('input-number');
const image = document.getElementById('image');
const name = document.getElementById('name');
const gender = document.getElementById('gender');
const origin = document.getElementById('origin');
if (!search.value || search.value < 1 || search.value > 671) {
search.style.boxShadow = '0 0 0.5px 2px #F24D4D';
search.style.caretColor = '#F24D4D';
search.focus();
return;
}
fetch(`https://rickandmortyapi.com/api/character/${search.value}`)
.then(response => response.json())
.then(json => {
image.setAttribute('src', json.image);
name.innerHTML = json.name;
gender.innerHTML = json.gender;
origin.innerHTML = json.origin.name;
search.value = '';
search.style.caretColor = '#062931';
search.style.boxShadow = '';
});
}); | 32.677419 | 74 | 0.624877 |
c8c5d44ee2a30fb92378b198aaa522bd570c365c | 1,167 | js | JavaScript | packages/cra-template-seed/template/src/components/Form/Select/Select.js | miltonchandradas/ui5-webcomponents-react | e6409332314cf70633b63ad999a023112181c93d | [
"Apache-2.0",
"MIT"
] | 249 | 2019-06-28T10:42:37.000Z | 2022-03-17T06:34:17.000Z | packages/cra-template-seed/template/src/components/Form/Select/Select.js | miltonchandradas/ui5-webcomponents-react | e6409332314cf70633b63ad999a023112181c93d | [
"Apache-2.0",
"MIT"
] | 2,527 | 2019-06-17T06:59:53.000Z | 2022-03-31T15:24:15.000Z | packages/cra-template-seed/template/src/components/Form/Select/Select.js | miltonchandradas/ui5-webcomponents-react | e6409332314cf70633b63ad999a023112181c93d | [
"Apache-2.0",
"MIT"
] | 69 | 2019-06-19T10:26:17.000Z | 2022-03-01T10:47:45.000Z | import React from 'react';
import { spacing } from '@ui5/webcomponents-react-base';
import { Select as UI5Select, Option, ValueState } from '@ui5/webcomponents-react';
import FieldBase from '../FieldBase/FieldBase';
const Select = ({ field, options, labelText, form: { touched, errors, setFieldValue }, style, ...props }) => {
const errorMsg = touched[field.name] && errors[field.name];
const errorState = errorMsg ? ValueState.Error : ValueState.None;
const innerStyle = {
...style,
...spacing.sapUiTinyMarginBottom,
width: '100%',
};
return (
<FieldBase labelText={labelText} required={props.required} for={props.for} showColon={props.showColon}>
<UI5Select data-testid="select-wrapper" valueState={errorState} style={innerStyle} onChange={(e) => setFieldValue(field.name, e.detail.selectedOption.dataset.id)} {...props}>
{options.map((option) => (
<Option data-testid="select-option-wrapper" key={option.id} data-id={option.id} selected={option.id === field.value} value={option.id}>
{option.text}
</Option>
))}
</UI5Select>
</FieldBase>
);
};
export default Select;
| 37.645161 | 180 | 0.664953 |
c8c5f9e1d857ee57f82115942ce09cfb2b31a315 | 1,951 | js | JavaScript | app/controllers/searchHandler.server.js | roelver/imgsearch-micro | d11aa6d377615c305f3936162ce73567f635355c | [
"MIT"
] | null | null | null | app/controllers/searchHandler.server.js | roelver/imgsearch-micro | d11aa6d377615c305f3936162ce73567f635355c | [
"MIT"
] | null | null | null | app/controllers/searchHandler.server.js | roelver/imgsearch-micro | d11aa6d377615c305f3936162ce73567f635355c | [
"MIT"
] | null | null | null | 'use strict';
var https = require('https');
var Latest = require('../models/latest.js');
var googleCseURL="https://www.googleapis.com/customsearch/v1?";
// https://www.googleapis.com/customsearch/v1?q=kitten&fileType=jpg&key=AIzaSyAIuL64jP34fZ3ncYGq9rFeXo77Ezbzsoo&cx=016730391293538775067:nebsqphkqba
// https://www.googleapis.com/customsearch/v1?q=kitten&fileType=jpg&key=AIzaSyAIuL64jP34fZ3ncYGq9rFeXo77Ezbzsoo&cx=016730391293538775067:nebsqphkqba&start=11
function SearchHandler () {
this.search = function(req, res, next) {
var searchTerm = req.params.term;
var offset = req.query.offset || 1;
var apiUrl = googleCseURL +
'key=' + process.env.GOOGLE_API_KEY +
'&cx=' + process.env.GOOGLE_CX +
'&searchType=image&fileType=jpg,png'+
'&q=' + searchTerm +
'&start=' + offset;
storeLatest(searchTerm);
https.get( apiUrl, function(data){
var googleResponse='';
data.on("data", function(chunk) {
googleResponse += chunk;
});
data.on("end", function() {
var data = JSON.parse(googleResponse);
var resp = [];
if (data && data.items) {
for (var i=0;i< data.items.length; i++) {
var hit = {};
hit['url'] = data.items[i].link;
hit['snippet'] = data.items[i].htmlSnippet;
hit['thumbnail'] = data.items[i].image.thumbnailLink;
hit['context'] = data.items[i].image.contextLink;
resp.push(hit);
}
}
return res.json(resp);
});
}).on('error', function(e) {
console.log("Got error: " + e.message);
});
};
var storeLatest = function (term) {
var record = new Latest({ term: term, when: new Date() });
record.save(function (err, result) {
if (err) { throw err; }
});
};
}
module.exports = SearchHandler;
| 30.968254 | 157 | 0.576627 |