From 3f108901f59956a7bc939ca576e736648727210c Mon Sep 17 00:00:00 2001 From: Yandols ZeonX Date: Fri, 3 Jul 2020 23:02:39 +0800 Subject: [PATCH] Initialize repo with current version. --- assets/css/searcher.css | 47 ++++++ assets/css/style.css | 301 ++++++++++++++++++++++++++++++++++++ assets/css/wave.css | 65 ++++++++ assets/img/favicon-full.png | Bin 0 -> 25155 bytes assets/js/iconify.js | 13 ++ assets/js/jquery.js | 2 + assets/js/script.js | 60 +++++++ index.html | 178 +++++++++++++++++++++ 8 files changed, 666 insertions(+) create mode 100644 assets/css/searcher.css create mode 100644 assets/css/style.css create mode 100644 assets/css/wave.css create mode 100644 assets/img/favicon-full.png create mode 100644 assets/js/iconify.js create mode 100644 assets/js/jquery.js create mode 100644 assets/js/script.js create mode 100644 index.html diff --git a/assets/css/searcher.css b/assets/css/searcher.css new file mode 100644 index 0000000..f4203e9 --- /dev/null +++ b/assets/css/searcher.css @@ -0,0 +1,47 @@ +/* + * Searchbar Element + * Stylesheet taken from Tobias' Wave Startpage concept + * Modified by YandolsZX + * Original source can be found here: https://github.com/Tobias-Schoch/startpage-wave + */ + +form .search-field, form .search-submit { + background: none; + outline: none; + border: none; + line-height: 40px; + position: relative; +} + +form .search-field { + width: 93%; + padding-left: 15px; + color: white; + font-size: 30px; + bottom: -1px; +} + +form .search-field::placeholder { + opacity: 0.65; +} + +form .search-submit { + width: 6%; + top: -0.5em; +} + +form .search-submit:hover { + cursor: pointer; +} + +form .search-submit::before { + background-image:url(./google1.svg); + background-position:center center; + fill: white; + content:""; + width:23px; + height:23px; + position:absolute; + right:23px; + bottom: -3px; +} diff --git a/assets/css/style.css b/assets/css/style.css new file mode 100644 index 0000000..80e5745 --- /dev/null +++ b/assets/css/style.css @@ -0,0 +1,301 @@ +/* + * Startpage Stylesheet + * Sheet taken from TB-96's Evening Startpage project + * Modified by YandolsZX + * Original source can found here: https://github.com/TB-96/Evening-Startpage + */ +:root { + --color-theme: #2978ad; + --bg-primary: #212121; + --bg-secondary: rgba(21,21,21,.5); + --bg-hover: rgba(41,120,173,.5); + --color-primary: #eee; + --color-secondary: #74a7ca; + --color-success: #66BB6A; + --color-warning: #F57C00; + --color-danger: #DC3545; + --padding: 1rem; + --rounded: 0.25rem; + --shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.12) +} + +* { + box-sizing: border-box; + padding: 0; + margin: 0; + font-size: 15px; + transition: opacity .3s; + font-family: "Open Sans"; +} + +html { + color: var(--color-primary); + background: var(--bg-primary) url("https://source.unsplash.com/1920x1080/?landscapes") no-repeat fixed center ; + background-size: 100%; +} +body { + margin: 0 auto; + padding: 0; +} + +::-webkit-scrollbar { + width: 5px; + height: 5px; +} +::-webkit-scrollbar-track { + background: #4e4e4e; +} +::-webkit-scrollbar-thumb { + background: var(--bg-secondary); +} + +a, a:visited { + color: var(--color-secondary); + text-decoration: none; +} + +a:hover, a:focus { + text-decoration: underline; + cursor: pointer; + webkit-text-decoration-color: var(--color-text-acc); + webkit-text-decoration-skip: true; +} + +#container { + margin: 2em auto 0; + width: 70%; + background-color: rgba(10, 10, 10, 0.7); + padding: 40px; + -moz-border-radius: 8px; + -webkit-border-radius: 8px; + border-radius: 8px; + -moz-box-shadow: 0 0 10px black; + -webkit-box-shadow: 0 0 10px black; + box-shadow: 0 0 10px black; +} + +h1, h2 { + font-weight: 300; + margin: 0; + padding: 0; +} +h3, h4 { + text-transform: uppercase; + text-align: left; + color: var(--color-secondary); +} +h1 { + font-size: 4em; + font-weight: 700; +} +h3 { + font-size: 20px; + font-weight: 900; + padding: var(--padding); +} +h4 { + font-size: 1.1em; + font-weight: 400; + padding-bottom: .5rem; +} +h5 { + text-align: center; + font-size: 0.7em; +} +h5 a { + font-size: 1.0em; +} +#togglebookmarks { + text-decoration: none!important; +} + +button { + background-color: var(--bg-hover); + color: #fff; + border: none; + padding: 10px 20px; + text-align: center; + text-decoration: none; + display: inline-block; + margin: 4px 2px; + cursor: pointer; + border-radius: 5rem; + text-transform: uppercase; + box-shadow: var(--shadow); +} +button:hover { + background-color: var(--color-theme); +} + +/* ANIMATION */ + +@keyframes fadeseq{ + 100% { + opacity: 1; + } +} + +.fade { + opacity: 0; +} + +.fade { + animation: fadeseq .3s forwards; +} + +.fade:nth-child(2) { + animation-delay: .4s; +} + +/* HEADERS */ + +#header { + text-align: center; +} +#header-time, #header-date { + cursor: default; +} +#header-time { + font-size: 5em; +} +#header-date { + margin-top: -1rem; + margin-bottom: .5rem; +} +#header-quote { + margin-top: 1rem; +} + + +/* LINKS */ + +#apps-container { + display: grid; + grid-column-gap: 0px; + grid-row-gap: 0px; + grid-template-columns: 1fr 1fr 1fr 1fr; +} + +#apps-container a { + text-decoration: none; + color: var(--color-primary); +} + +.apps-item { + display: flex; + flex-direction: row; + flex-wrap: wrap; + height: 64px; + margin: .5rem; + box-shadow: var(--shadow); + background: var(--bg-secondary); + border-radius: var(--rounded); + -o-transition: background-color .3s; + -ms-transition: background-color .3s; + -moz-transition: background-color .3s; + -webkit-transition: background-color .3s; + /* ...and now for the proper property */ + transition: background-color .3s; +} +.apps-item:hover { + background-color: var(--bg-hover)!important; +} + +.apps-icon { + height: 64px; + margin: 0 1em; + padding-top: 13px; +} + +.icon { + font-size: 2.5em; +} + +.apps-text { + text-align: left; + display: flex; + flex-direction: column; + justify-content: center; +} +.apps-text span { + font-size: 1em; + font-weight: 500; + text-transform: uppercase; + text-decoration: none!important; +} +.apps-text span:nth-child(2n) { + color: var(--color-secondary); + font-size: 0.8em; + text-transform: lowercase; +} + +/* BOOKMARKS */ + +#links-container { + display: grid; + flex-wrap: nowrap; + grid-column-gap: 20px; + grid-row-gap: 0px; + grid-template-columns: 1fr 1fr 1fr 1fr; + grid-template-rows: auto; +} + +.links-item { + line-height: 1.5rem; + margin-left: 1rem; + margin-bottom: 2em; + webkit-font-smoothing: antialiased; +} + +.links-item a { + color: var(--color-primary); + display: block; + line-height: 2; + text-decoration: none; + padding-left: .5em; + -o-transition: padding .3s; + -ms-transition: padding .3s; + -moz-transition: padding .3s; + -webkit-transition: padding .3s; + transition: padding .3s; +} +.links-item a:hover { + color: var(--color-secondary); + padding-left: 1em; +} + + +/* MOBILE */ + +@media screen and (max-width: 1100px) { + #container { + width: 90%; + } +} + +@media screen and (max-width: 858px) { + #apps-container { + grid-template-columns: 1fr 1fr 1fr; + width: 90vw; + } + #links-container { + grid-template-columns: 1fr 1fr 1fr; + } +} + +@media screen and (max-width: 666px) { + #apps-container { + grid-column-gap: 0px; + grid-row-gap: 0px; + grid-template-columns: 1fr 1fr; + width: 90vw; + } + #links-container{ + display: grid; + flex-wrap: nowrap; + grid-column-gap: 20px; + grid-row-gap: 0px; + grid-template-columns: 1fr 1fr; + grid-template-rows: auto; + } +} diff --git a/assets/css/wave.css b/assets/css/wave.css new file mode 100644 index 0000000..8afb101 --- /dev/null +++ b/assets/css/wave.css @@ -0,0 +1,65 @@ +/* + * Wave Animation + * Stylesheet taken from Tobias' Wave Startpage concept + * Modified by YandolsZX + * Original source can be found here: https://github.com/Tobias-Schoch/startpage-wave + */ + +.wave-container .wave{ + position:absolute; + bottom:0; + left:0; + width:100%; + height:100px; + background:url('wave.svg'); + background-size:990px 100px; + background-repeat: repeat-x; + -webkit-filter: drop-shadow( 0px 3px 3px rgba(0, 0, 0, .7)); + filter: drop-shadow( 0px 3px 3px rgba(0, 0, 0, .7)); +} + +.wave-container .wave.wave1{ + animation:animate 30s linear infinite; + z-index:1000; + opacity:1; + animation-delay:0s; + bottom: 0; +} +.wave-container .wave.wave2{ + animation:animate2 15s linear infinite; + z-index:999; + opacity:0.5; + animation-delay:-5s; + bottom: 10px; +} +.wave-container .wave.wave3{ + animation:animate 30s linear infinite; + z-index:998; + opacity:0.2; + animation-delay:-2s; + bottom: 15px; + +} +.wave-container .wave.wave4{ + animation:animate2 5s linear infinite; + z-index:997; + opacity:0.7; + animation-delay:-5s; + bottom: 20px; +} +@keyframes animate{ + 0%{ + background-position-x: 0; + } + 100%{ + background-position-x: 990px; + } +} +@keyframes animate2{ + 0%{ + background-position-x: 0; + } + 100%{ + background-position-x: -990px; + } +} diff --git a/assets/img/favicon-full.png b/assets/img/favicon-full.png new file mode 100644 index 0000000000000000000000000000000000000000..1dab9c5e0cb498f04a9b49813aa058a0bd662674 GIT binary patch literal 25155 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 + * + * For the full copyright and license information, please view the license.txt or license.gpl.txt + * files at https://github.com/iconify/iconify + * + * Licensed under Apache 2.0 or GPL 2.0 at your option. + * If derivative product is not compatible with one of licenses, you can pick one of licenses. + * + * @license Apache 2.0 + * @license GPL 2.0 + */ +"use strict";if(void 0===self.Iconify&&(self.Iconify={isReady:!1},self.SimpleSVG=self.Iconify,function(e,t){var i,n,o,r,a,s,c,l,u,d,f,h,p,v,g,b,m,y,w,_,x,O,j,A,I,E,k,C,M,L,S,N,P,T,F,R,D,H,V,G,Q,z,B,q,Y,J,U,W,$,K,X,Z,ee,te,ie,ne,oe,re={config:{},version:"1.0.5"};function ae(e,t){var i;return t=t||{bubbles:!1,cancelable:!1,detail:void 0},(i=document.createEvent("CustomEvent")).initCustomEvent(e,t.bubbles,t.cancelable,t.detail),i}function se(){document.removeEventListener("DOMContentLoaded",se),window.removeEventListener("load",se),o.DOMReadyCallback()}function ce(t,i,e){var n=t;if("_"!==t.slice(0,1)){if(void 0===u[t]){if(!e||void 0===u["_"+t])return;n="_"+t}switch(n){case"API":case"SVGAttributes":Object.keys(i).forEach(function(e){null===i[t]?delete u[n][e]:u[n][e]=i[e]});break;default:u[n]=i}}}function le(e,t){return function(e,t){switch(e){case"rotate":return t=parseInt(t),isNaN(t)?null:t;case"width":case"height":case"inlineHeight":case"inlineTop":case"verticalAlign":return t=parseFloat(t),isNaN(t)?null:t;case"vFlip":case"hFlip":return!!t;case"body":case"parent":return"string"==typeof t?t:null}return t}("rotate",e+t)}function ue(e,t){return!!e!=!!t}function de(e){var i=Object.create(null);return(void 0===e._defaults?[e,v]:[e,e._defaults,v]).forEach(function(t){Object.keys(t).forEach(function(e){"object"!=typeof t[e]&&void 0===i[e]&&(i[e]=t[e])})}),void 0===i.inlineTop&&(i.inlineTop=i.top),void 0===i.inlineHeight&&(i.inlineHeight=i.height),void 0===i.verticalAlign&&(i.height%7==0&&i.height%8!=0?i.verticalAlign=-.143:i.verticalAlign=-.125),i}function fe(){return this._icons=Object.create(null),this._aliases=Object.create(null),this._resolved=Object.create(null),this._add=function(e,t,i){var n=e?"_aliases":"_icons";void 0===this._resolved[t.prefix]?(this._resolved[t.prefix]=Object.create(null),this._icons[t.prefix]=Object.create(null),this._aliases[t.prefix]=Object.create(null)):(delete this._icons[t.prefix][t.icon],delete this._aliases[t.prefix][t.icon]),this._resolved[t.prefix][t.icon]=!1,this[n][t.prefix][t.icon]=i},this._resolveIcon=function(e){var t,i,n,o,r,a;if(void 0===this._resolved[e.prefix]||void 0===this._resolved[e.prefix][e.icon])return null;if(!1!==this._resolved[e.prefix][e.icon])return this._resolved[e.prefix][e.icon];if(void 0!==this._icons[e.prefix][e.icon])return this._resolved[e.prefix][e.icon]=de(this._icons[e.prefix][e.icon]);for(i=0,t=this._aliases[e.prefix][e.icon],n=Object.create(null),Object.keys(t).forEach(function(e){"parent"!==e&&(n[e]=t[e])}),o=t.parent;;){if(5<++i||void 0===this._resolved[e.prefix][o])return this._resolved[e.prefix][e.icon]=null;if(r=void 0===this._icons[e.prefix][o],a=this[r?"_aliases":"_icons"][e.prefix][o],Object.keys(a).forEach(function(e){if(void 0!==n[e])switch(e){case"rotate":n[e]=le(n[e],a[e]);break;case"hFlip":case"vFlip":n[e]=ue(n[e],a[e])}else"parent"!==e&&(n[e]=a[e])}),!r)break;o=a.parent}return this._resolved[e.prefix][e.icon]=de(n)},this.addCollection=function(n){var o=this,r=Object.create(null);g.forEach(function(e){void 0!==n[e]?r[e]=n[e]:void 0!==v[e]&&(r[e]=v[e])}),void 0!==n.icons&&Object.keys(n.icons).forEach(function(e){var t=p(e,n.prefix),i=n.icons[e];void 0!==i.body&&(i._defaults=r,o._add(!1,t,i))}),void 0!==n.aliases&&Object.keys(n.aliases).forEach(function(e){var t=p(e,n.prefix),i=n.aliases[e];if(void 0!==i.parent){if(void 0===n.prefix){if(i.parent.slice(0,t.prefix.length)!==t.prefix)return;i.parent=i.parent.slice(t.prefix.length+1)}o._add(!0,t,i)}})},this.addIcon=function(e,t,i){var n=void 0!==t.parent,o=p(e,i);if(n&&void 0===i){if(t.parent.slice(0,o.prefix.length)!==o.prefix)return;t.parent=t.parent.slice(o.prefix.length+1)}this._add(n,o,t)},this.exists=function(e,t){var i=p(e,t);return void 0!==this._resolved[i.prefix]&&void 0!==this._resolved[i.prefix][i.icon]},this.getIcon=function(e,t){var i=p(e,t);return this._resolveIcon(i)},this.copyIcon=function(e,t){var i,n=this.getIcon(e,t);return null===n?null:(i=Object.create(null),Object.keys(n).forEach(function(e){i[e]=n[e]}),i)},this.list=function(e){var i,n;return void 0!==e?void 0===this._resolved[e]?[]:Object.keys(this._resolved[e]):(i=[],n=this._resolved,Object.keys(n).forEach(function(t){i=i.concat(Object.keys(n[t]).map(function(e){return""===t&&-1===e.indexOf("-")?e:t+":"+e}))}),i)},this}function he(){w&&(w=!1,m.scanDOM())}function pe(e,t,i){var n,o,r,a,s;if(1===t)return e;if(i=void 0===i?100:i,"number"==typeof e)return Math.ceil(e*t*i)/i;if("string"!=typeof e)return e;if(null===(n=e.split(j))||!n.length)return e;for(o=[],r=n.shift(),a=A.test(r);;){if(a?(s=parseFloat(r),isNaN(s)?o.push(r):o.push(Math.ceil(s*t*i)/i)):o.push(r),void 0===(r=n.shift()))return o.join("");a=!a}}function ve(e,t,i){var n,o,r;for(n=0;n"),e=e.slice(i+1)),e=-1!==(i=(e=e.replace("viewbox=","viewBox=").replace("preserveaspectratio=","preserveAspectRatio=")).indexOf("",">"+t+"")}i=re,"function"!=typeof window.CustomEvent&&(ae.prototype=window.Event.prototype,window.CustomEvent=ae),i.event=function(e,t){document.dispatchEvent(new CustomEvent(e,t))},n=e,r=(o=re).config,a=null,o.DOMReadyCallback=function(){o.domready=!0,o.nextInitItem()},o.initTimeout=function(e){function t(){if(null!==a){if(!1!==a.callback())return a.stop(),void o.nextInitItem();a.counter++,10!==a.counter&&25!==a.counter||(window.clearInterval(a.id),a.id=window.setInterval(t,10===a.counter?250:1e3))}}null!==a&&a.stop(),a={id:window.setInterval(t,100),counter:0,callback:e,stop:function(){window.clearInterval(a.id),a=null},nextTick:t}},o.domready=!1,o.ready=!1,o.initQueue=[],o.readyQueue=[],o.nextInitItem=function(){var e;if(!o.ready){if(o.initQueue.length)e=o.initQueue.shift();else{if(!o.domready)return void o.initTimeout(function(){return!o.domready&&document.body&&o.scanDOM(),o.domready});if(!o.readyQueue.length)return o.ready=n.isReady=!0,o.event(r._readyEvent),void o.scanDOM();e=o.readyQueue.shift()}!1!==e()&&o.nextInitItem()}},o.addStylesheet=function(e){var t;if(!document.head||!document.body)return!!o.domready||(e||o.initTimeout(o.addStylesheet.bind(null,!0)),!1);try{(t=document.createElement("style")).type="text/css",t.innerHTML="span.iconify, i.iconify, iconify-icon { display: inline-block; width: 1em; }",null!==document.head.firstChild?document.head.insertBefore(t,document.head.firstChild):document.head.appendChild(t)}catch(e){}return!0},o.initQueue.push(o.addStylesheet.bind(null,!1)),n.ready=function(e){n.isReady?window.setTimeout(e):document.addEventListener(r._readyEvent,e)},window.setTimeout(function(){"complete"===document.readyState||"loading"!==document.readyState&&!document.documentElement.doScroll?o.domready=!0:(document.addEventListener("DOMContentLoaded",se),window.addEventListener("load",se)),o.nextInitItem()}),(s=re.config).SVGAttributes=Object.create(null),s._imageClass="iconify",s._loadingClass="svg-loading",s._iconAttribute="data-icon",s._rotateAttribute="data-rotate",s._flipAttribute="data-flip",s._inlineModeAttribute="data-inline",s._alignAttribute="data-align",s._appendAttribute="data-icon-append",s._appendedClass="svg-appended",s._readyEvent="IconifyReady",s._webComponentsPolyfill="https://cdnjs.cloudflare.com/ajax/libs/webcomponentsjs/0.7.24/webcomponents-lite.min.js",s._classListPolyfill="https://cdnjs.cloudflare.com/ajax/libs/classlist/1.1.20150312/classList.min.js",function(t){t.defaultAPI="https://api.iconify.design/{prefix}.js?icons={icons}",t.API=Object.create(null),t.loaderMaxURLSize=500,t.loadBeforeDOMReady=!(document&&document.body),t._loaderEvent="IconifyAddedIcons",t.sessionStorage=!0;try{t.localStorage=!!(window&&window.localStorage&&window.localStorage.length)}catch(e){t.localStorage=!1}}(re.config),c=e,l=t,u=re.config,c.setConfig=function(e,t){ce(e,t,!1)},c.setCustomAPI=function(e,t){switch(typeof e){case"string":0;break;case"object":if(e instanceof Array){0;break}default:return}e.forEach(function(e){null===t?delete u.API[e]:u.API[e]=t})},c.getConfig=function(e){return void 0===u[e]?void 0===u["_"+e]?null:u["_"+e]:u[e]},["SimpleSVG","Iconify"].forEach(function(e){var t;void 0!==l[e+"Config"]&&"object"==typeof l[e+"Config"]&&(t=l[e+"Config"],Object.keys(t).forEach(function(e){ce(e,t[e],!0)}))}),f=(d=re).config,h=t,d.initQueue.push(function(){var e={observer:!1,classList:!1},t={observer:!1,classList:!1};function i(e){var t;return!e.length||(document.head?((t=document.createElement("script")).setAttribute("src",e),t.setAttribute("type","text/javascript"),document.head.appendChild(t),!0):d.domready)}function n(){if("classList"in document.createElement("div"))return 1;t.classList||(t.classList=i(f._classListPolyfill))}function o(){return h.MutationObserver&&h.WeakMap||t.observer||(t.observer=i(f._webComponentsPolyfill)),1}return e.classList=!n(),e.observer=!o(),!e.classList&&!e.observer||(d.initTimeout(function(){return!(e.observer&&!o()||e.classList&&!n())}),!1)}),re.getPrefix=function(e,t){var i;return"string"==typeof t&&""!==t?{prefix:t,icon:e}:2===(i=e.split(":")).length?{prefix:i[0],icon:i[1]}:1<(i=e.split("-")).length?{prefix:t=i.shift(),icon:i.join("-")}:{prefix:"",icon:e}},p=re.getPrefix,v={left:0,top:0,width:16,height:16,rotate:0,vFlip:!1,hFlip:!1},g=["left","top","width","height","body","rotate","vFlip","hFlip","inlineTop","inlineHeight","verticalAlign"],fe.mergeFlip=ue,fe.mergeRotation=le,fe.blankIcon=function(){return de({body:"",width:16,height:16})},re.Storage=fe,b=e,y=t,w=!1,_=new(m=re).Storage,b.addCollection=function(e,t){_.addCollection(e),w||!0===t||(w=!0,window.setTimeout(he,0))},b.addIcon=function(e,t,i){_.addIcon(e,t),w||!0===i||(w=!0,window.setTimeout(he,0))},b.iconExists=_.exists.bind(_),b.getIcon=_.copyIcon.bind(_),b.listIcons=_.list.bind(_),["SimpleSVG","Iconify"].forEach(function(e){void 0!==y[e+"Preload"]&&y[e+"Preload"]instanceof Array&&y[e+"Preload"].forEach(function(e){"object"==typeof e&&void 0!==e.icons&&b.addCollection(e)})}),x=re.Storage,O=re.config,j=/(-?[0-9.]*[0-9]+[0-9.]*)/g,A=/^-?[0-9.]*[0-9]+[0-9.]*$/g,I=["width","height","inline"],E=["title"],k=0,re.SVG=function(_){return _=_||x.blankIcon(),this.item=_,this.height=function(e,t,i){return void 0===e?t?this.item.inlineHeight:this.item.height:pe(e,(t?this.item.inlineHeight:this.item.height)/this.item.width,i)},this.width=function(e,t,i){return void 0===e?this.item.width:pe(e,this.item.width/(t?this.item.inlineHeight:this.item.height),i)},this.defaultAttributes=function(){return{xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink","aria-hidden":"true",focusable:"false"}},this.preserveAspectRatio=function(e,t,i){var n="";switch(e){case"left":n+="xMin";break;case"right":n+="xMax";break;default:n+="xMid"}switch(t){case"top":n+="YMin";break;case"bottom":n+="YMax";break;default:n+="YMid"}return n+=!0===i?" slice":" meet"},this.htmlspecialchars=function(e){switch(typeof e){case"boolean":case"number":return e+"";case"string":return e.replace(/&/g,"&").replace(//g,">").replace(/"/g,""").replace(/'/g,"'")}return""},this.attributes=function(t){var e,i,n,o,r,a,s,c,l,u,d,f,h,p,v=this,g={horizontal:"center",vertical:"middle",crop:!1},b={rotate:_.rotate,hFlip:_.hFlip,vFlip:_.vFlip},m="",y=this.defaultAttributes(),w=[];if(a=ve(t="object"==typeof t?t:Object.create(null),[O._inlineModeAttribute,"inline"],!0),u=ve(t,[O._appendAttribute],!1),e={left:_.left,top:a?_.inlineTop:_.top,width:_.width,height:a?_.inlineHeight:_.height},"string"==typeof t[O._flipAttribute]&&t[O._flipAttribute].split(/[\s,]+/).forEach(function(e){switch(e=e.toLowerCase()){case"horizontal":b.hFlip=!b.hFlip;break;case"vertical":b.vFlip=!b.vFlip}}),void 0!==t[O._rotateAttribute])if("number"==typeof(c=t[O._rotateAttribute]))b.rotate+=c;else if("string"==typeof c)if(""===(d=c.replace(/^-?[0-9.]*/,"")))c=parseInt(c),isNaN(c)||(b.rotate+=c);else if(d!==c){switch(l=!1,d){case"%":l=25;break;case"deg":l=90}l&&(c=parseInt(c.slice(0,c.length-d.length)),isNaN(c)||(b.rotate+=Math.round(c/l)))}switch(b.hFlip?b.vFlip?b.rotate+=2:(w.push("translate("+(e.width+e.left)+" "+(0-e.top)+")"),w.push("scale(-1 1)"),e.top=e.left=0):b.vFlip&&(w.push("translate("+(0-e.left)+" "+(e.height+e.top)+")"),w.push("scale(1 -1)"),e.top=e.left=0),b.rotate%4){case 1:p=e.height/2+e.top,w.unshift("rotate(90 "+p+" "+p+")"),0===e.left&&0===e.top||(p=e.left,e.left=e.top,e.top=p),e.width!==e.height&&(p=e.width,e.width=e.height,e.height=p);break;case 2:w.unshift("rotate(180 "+(e.width/2+e.left)+" "+(e.height/2+e.top)+")");break;case 3:p=e.width/2+e.left,w.unshift("rotate(-90 "+p+" "+p+")"),0===e.left&&0===e.top||(p=e.left,e.left=e.top,e.top=p),e.width!==e.height&&(p=e.width,e.width=e.height,e.height=p)}return i=ge(t,["data-width","width"],null),n=ge(t,["data-height","height"],null),null===i&&null===n&&(n="1em"),null!==i&&null!==n?(o=i,r=n):null!==i?r=pe(o=i,e.height/e.width):o=pe(r=n,e.width/e.height),!1!==o&&(y.width="auto"===o?e.width:o),!1!==r&&(y.height="auto"===r?e.height:r),a&&0!==_.verticalAlign?m+="vertical-align: "+(h=_.verticalAlign+"em")+";":h="","string"==typeof t[O._alignAttribute]&&t[O._alignAttribute].toLowerCase().split(/[\s,]+/).forEach(function(e){switch(e){case"left":case"right":case"center":g.horizontal=e;break;case"top":case"bottom":case"middle":g.vertical=e;break;case"crop":g.crop=!0;break;case"meet":g.crop=!1}}),m+="-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); transform: rotate(360deg);",y.style=m+(void 0===t.style?"":t.style),y.preserveAspectRatio=this.preserveAspectRatio(g.horizontal,g.vertical,g.crop),y.viewBox=e.left+" "+e.top+" "+e.width+" "+e.height,s=function(i){var e,n,t=/\sid="(\S+)"/g,o=[];function r(e,t,i){for(var n=0;-1!==(n=i.indexOf(e,n));)i=i.slice(0,n)+t+i.slice(n+e.length),n+=t.length;return i}for(;e=t.exec(i);)o.push(e[1]);return o.length&&(n="IconifyId-"+Date.now().toString(16)+"-"+(16777216*Math.random()|0).toString(16)+"-",o.forEach(function(e){var t=n+k;k++,i=r('="'+e+'"','="'+t+'"',i),i=r('="#'+e+'"','="#'+t+'"',i),i=r("(#"+e+")","(#"+t+")",i)})),i}(this.item.body),w.length&&(s=''+s+""),f=Object.create(null),Object.keys(t).forEach(function(e){void 0===y[e]&&(-1!==E.indexOf(e)?s="<"+e+">"+v.htmlspecialchars(t[e])+""+s:-1===I.indexOf(e)&&(f[e]=t[e]))}),{attributes:y,elementAttributes:f,body:s,append:u,verticalAlign:h}},this},M=(C=re).config._loadingClass,C.newImage=function(e,t,i){return{element:e,icon:t,parser:i,loading:e.classList.contains(M)}},C.parsedImage=function(e,t){return{element:e,icon:t}},C.getImageAttributes=function(t){var e,i,n=Object.create(null);if(!t.element.hasAttributes())return n;for(e=0;e=n)return;if("string"!=typeof(i=e.getItem("iconify"+V[t])))return;"object"==typeof(i=JSON.parse(i))&&L.addCollection(i),V[t]++}}catch(e){H[t]=!1}}),G=e,z=(Q=re).config,B=t,Y=0,W={childList:!(U=!1),subtree:!(J=q=null)},G.pauseObserving=function(){null!==q&&(Y||(J=q.takeRecords(),q.disconnect())),Y++},G.resumeObserving=function(){null!==q?Y&&(--Y||(_e(),null!==J&&J.length&&we(J))):Y--},G.isObserverPaused=function(){return null===q||!!Y},Q.readyQueue.push(function(){return q=new B.MutationObserver(we),Y||_e(),!0}),$=e,X=(K=re).config,Z=X._iconAttribute,ee=X._loadingClass,te=X._imageClass,ie=X._appendedClass,K.renderSVG=function(t){var e,i,n,o,r,a,s,c,l,u,d=K.getImageAttributes(t),f=$.getIcon(t.icon);for(d[Z]=t.icon,e=new K.SVG(f),n=document.createElement("svg"),r=e.attributes(d),Object.keys(r.attributes).forEach(function(e){if("style"!==e)try{n.setAttribute(e,r.attributes[e])}catch(e){}}),Object.keys(r.elementAttributes).forEach(function(e){try{(r.append?t.element:n).setAttribute(e,r.elementAttributes[e])}catch(e){}}),t.loading&&(n.classList.remove(ee),r.append&&t.element.classList.remove(ee)),n.classList.add(te),a=xe(n.outerHTML,r.body),(o=document.createElement("span")).innerHTML=a,i=o.childNodes[0],r.append?(t.element.classList.add(ie),t.element.appendChild(i)):(t.element.parentNode.replaceChild(i,t.element),t.element=i),s=i.style,c=t.element.style,r.verticalAlign&&(s.verticalAlign=r.verticalAlign),s.transform="rotate(360deg)",l=0;l=0&&n0&&t-1 in e)}var E=function(e){var t,n,r,i,o,a,s,u,l,c,f,p,d,h,g,y,v,m,x,b="sizzle"+1*new Date,w=e.document,T=0,C=0,E=ae(),k=ae(),S=ae(),D=function(e,t){return e===t&&(f=!0),0},N={}.hasOwnProperty,A=[],j=A.pop,q=A.push,L=A.push,H=A.slice,O=function(e,t){for(var n=0,r=e.length;n+~]|"+M+")"+M+"*"),z=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),X=new RegExp(W),U=new RegExp("^"+R+"$"),V={ID:new RegExp("^#("+R+")"),CLASS:new RegExp("^\\.("+R+")"),TAG:new RegExp("^("+R+"|[*])"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+W),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+P+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},G=/^(?:input|select|textarea|button)$/i,Y=/^h\d$/i,Q=/^[^{]+\{\s*\[native \w/,J=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,K=/[+~]/,Z=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ee=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},te=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ne=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},re=function(){p()},ie=me(function(e){return!0===e.disabled&&("form"in e||"label"in e)},{dir:"parentNode",next:"legend"});try{L.apply(A=H.call(w.childNodes),w.childNodes),A[w.childNodes.length].nodeType}catch(e){L={apply:A.length?function(e,t){q.apply(e,H.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function oe(e,t,r,i){var o,s,l,c,f,h,v,m=t&&t.ownerDocument,T=t?t.nodeType:9;if(r=r||[],"string"!=typeof e||!e||1!==T&&9!==T&&11!==T)return r;if(!i&&((t?t.ownerDocument||t:w)!==d&&p(t),t=t||d,g)){if(11!==T&&(f=J.exec(e)))if(o=f[1]){if(9===T){if(!(l=t.getElementById(o)))return r;if(l.id===o)return r.push(l),r}else if(m&&(l=m.getElementById(o))&&x(t,l)&&l.id===o)return r.push(l),r}else{if(f[2])return L.apply(r,t.getElementsByTagName(e)),r;if((o=f[3])&&n.getElementsByClassName&&t.getElementsByClassName)return L.apply(r,t.getElementsByClassName(o)),r}if(n.qsa&&!S[e+" "]&&(!y||!y.test(e))){if(1!==T)m=t,v=e;else if("object"!==t.nodeName.toLowerCase()){(c=t.getAttribute("id"))?c=c.replace(te,ne):t.setAttribute("id",c=b),s=(h=a(e)).length;while(s--)h[s]="#"+c+" "+ve(h[s]);v=h.join(","),m=K.test(e)&&ge(t.parentNode)||t}if(v)try{return L.apply(r,m.querySelectorAll(v)),r}catch(e){}finally{c===b&&t.removeAttribute("id")}}}return u(e.replace(B,"$1"),t,r,i)}function ae(){var e=[];function t(n,i){return e.push(n+" ")>r.cacheLength&&delete t[e.shift()],t[n+" "]=i}return t}function se(e){return e[b]=!0,e}function ue(e){var t=d.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function le(e,t){var n=e.split("|"),i=n.length;while(i--)r.attrHandle[n[i]]=t}function ce(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function fe(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}function pe(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function de(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ie(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function he(e){return se(function(t){return t=+t,se(function(n,r){var i,o=e([],n.length,t),a=o.length;while(a--)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}function ge(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}n=oe.support={},o=oe.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return!!t&&"HTML"!==t.nodeName},p=oe.setDocument=function(e){var t,i,a=e?e.ownerDocument||e:w;return a!==d&&9===a.nodeType&&a.documentElement?(d=a,h=d.documentElement,g=!o(d),w!==d&&(i=d.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener("unload",re,!1):i.attachEvent&&i.attachEvent("onunload",re)),n.attributes=ue(function(e){return e.className="i",!e.getAttribute("className")}),n.getElementsByTagName=ue(function(e){return e.appendChild(d.createComment("")),!e.getElementsByTagName("*").length}),n.getElementsByClassName=Q.test(d.getElementsByClassName),n.getById=ue(function(e){return h.appendChild(e).id=b,!d.getElementsByName||!d.getElementsByName(b).length}),n.getById?(r.filter.ID=function(e){var t=e.replace(Z,ee);return function(e){return e.getAttribute("id")===t}},r.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&g){var n=t.getElementById(e);return n?[n]:[]}}):(r.filter.ID=function(e){var t=e.replace(Z,ee);return function(e){var n="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},r.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&g){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),r.find.TAG=n.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&g)return t.getElementsByClassName(e)},v=[],y=[],(n.qsa=Q.test(d.querySelectorAll))&&(ue(function(e){h.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&y.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||y.push("\\["+M+"*(?:value|"+P+")"),e.querySelectorAll("[id~="+b+"-]").length||y.push("~="),e.querySelectorAll(":checked").length||y.push(":checked"),e.querySelectorAll("a#"+b+"+*").length||y.push(".#.+[+~]")}),ue(function(e){e.innerHTML="";var t=d.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&y.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&y.push(":enabled",":disabled"),h.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&y.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),y.push(",.*:")})),(n.matchesSelector=Q.test(m=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&ue(function(e){n.disconnectedMatch=m.call(e,"*"),m.call(e,"[s!='']:x"),v.push("!=",W)}),y=y.length&&new RegExp(y.join("|")),v=v.length&&new RegExp(v.join("|")),t=Q.test(h.compareDocumentPosition),x=t||Q.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return f=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e===d||e.ownerDocument===w&&x(w,e)?-1:t===d||t.ownerDocument===w&&x(w,t)?1:c?O(c,e)-O(c,t):0:4&r?-1:1)}:function(e,t){if(e===t)return f=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===d?-1:t===d?1:i?-1:o?1:c?O(c,e)-O(c,t):0;if(i===o)return ce(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?ce(a[r],s[r]):a[r]===w?-1:s[r]===w?1:0},d):d},oe.matches=function(e,t){return oe(e,null,null,t)},oe.matchesSelector=function(e,t){if((e.ownerDocument||e)!==d&&p(e),t=t.replace(z,"='$1']"),n.matchesSelector&&g&&!S[t+" "]&&(!v||!v.test(t))&&(!y||!y.test(t)))try{var r=m.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){}return oe(t,d,null,[e]).length>0},oe.contains=function(e,t){return(e.ownerDocument||e)!==d&&p(e),x(e,t)},oe.attr=function(e,t){(e.ownerDocument||e)!==d&&p(e);var i=r.attrHandle[t.toLowerCase()],o=i&&N.call(r.attrHandle,t.toLowerCase())?i(e,t,!g):void 0;return void 0!==o?o:n.attributes||!g?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},oe.escape=function(e){return(e+"").replace(te,ne)},oe.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},oe.uniqueSort=function(e){var t,r=[],i=0,o=0;if(f=!n.detectDuplicates,c=!n.sortStable&&e.slice(0),e.sort(D),f){while(t=e[o++])t===e[o]&&(i=r.push(o));while(i--)e.splice(r[i],1)}return c=null,e},i=oe.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else while(t=e[r++])n+=i(t);return n},(r=oe.selectors={cacheLength:50,createPseudo:se,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(Z,ee),e[3]=(e[3]||e[4]||e[5]||"").replace(Z,ee),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||oe.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&oe.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return V.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=a(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(Z,ee).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=E[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&E(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=oe.attr(r,e);return null==i?"!="===t:!t||(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i.replace($," ")+" ").indexOf(n)>-1:"|="===t&&(i===n||i.slice(0,n.length+1)===n+"-"))}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,f,p,d,h,g=o!==a?"nextSibling":"previousSibling",y=t.parentNode,v=s&&t.nodeName.toLowerCase(),m=!u&&!s,x=!1;if(y){if(o){while(g){p=t;while(p=p[g])if(s?p.nodeName.toLowerCase()===v:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?y.firstChild:y.lastChild],a&&m){x=(d=(l=(c=(f=(p=y)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1])&&l[2],p=d&&y.childNodes[d];while(p=++d&&p&&p[g]||(x=d=0)||h.pop())if(1===p.nodeType&&++x&&p===t){c[e]=[T,d,x];break}}else if(m&&(x=d=(l=(c=(f=(p=t)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1]),!1===x)while(p=++d&&p&&p[g]||(x=d=0)||h.pop())if((s?p.nodeName.toLowerCase()===v:1===p.nodeType)&&++x&&(m&&((c=(f=p[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]=[T,x]),p===t))break;return(x-=i)===r||x%r==0&&x/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||oe.error("unsupported pseudo: "+e);return i[b]?i(t):i.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?se(function(e,n){var r,o=i(e,t),a=o.length;while(a--)e[r=O(e,o[a])]=!(n[r]=o[a])}):function(e){return i(e,0,n)}):i}},pseudos:{not:se(function(e){var t=[],n=[],r=s(e.replace(B,"$1"));return r[b]?se(function(e,t,n,i){var o,a=r(e,null,i,[]),s=e.length;while(s--)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),t[0]=null,!n.pop()}}),has:se(function(e){return function(t){return oe(e,t).length>0}}),contains:se(function(e){return e=e.replace(Z,ee),function(t){return(t.textContent||t.innerText||i(t)).indexOf(e)>-1}}),lang:se(function(e){return U.test(e||"")||oe.error("unsupported lang: "+e),e=e.replace(Z,ee).toLowerCase(),function(t){var n;do{if(n=g?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===h},focus:function(e){return e===d.activeElement&&(!d.hasFocus||d.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:de(!1),disabled:de(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return Y.test(e.nodeName)},input:function(e){return G.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:he(function(){return[0]}),last:he(function(e,t){return[t-1]}),eq:he(function(e,t,n){return[n<0?n+t:n]}),even:he(function(e,t){for(var n=0;n=0;)e.push(r);return e}),gt:he(function(e,t,n){for(var r=n<0?n+t:n;++r1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function be(e,t,n){for(var r=0,i=t.length;r-1&&(o[l]=!(a[l]=f))}}else v=we(v===a?v.splice(h,v.length):v),i?i(null,a,v,u):L.apply(a,v)})}function Ce(e){for(var t,n,i,o=e.length,a=r.relative[e[0].type],s=a||r.relative[" "],u=a?1:0,c=me(function(e){return e===t},s,!0),f=me(function(e){return O(t,e)>-1},s,!0),p=[function(e,n,r){var i=!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):f(e,n,r));return t=null,i}];u1&&xe(p),u>1&&ve(e.slice(0,u-1).concat({value:" "===e[u-2].type?"*":""})).replace(B,"$1"),n,u0,i=e.length>0,o=function(o,a,s,u,c){var f,h,y,v=0,m="0",x=o&&[],b=[],w=l,C=o||i&&r.find.TAG("*",c),E=T+=null==w?1:Math.random()||.1,k=C.length;for(c&&(l=a===d||a||c);m!==k&&null!=(f=C[m]);m++){if(i&&f){h=0,a||f.ownerDocument===d||(p(f),s=!g);while(y=e[h++])if(y(f,a||d,s)){u.push(f);break}c&&(T=E)}n&&((f=!y&&f)&&v--,o&&x.push(f))}if(v+=m,n&&m!==v){h=0;while(y=t[h++])y(x,b,a,s);if(o){if(v>0)while(m--)x[m]||b[m]||(b[m]=j.call(u));b=we(b)}L.apply(u,b),c&&!o&&b.length>0&&v+t.length>1&&oe.uniqueSort(u)}return c&&(T=E,l=w),x};return n?se(o):o}return s=oe.compile=function(e,t){var n,r=[],i=[],o=S[e+" "];if(!o){t||(t=a(e)),n=t.length;while(n--)(o=Ce(t[n]))[b]?r.push(o):i.push(o);(o=S(e,Ee(i,r))).selector=e}return o},u=oe.select=function(e,t,n,i){var o,u,l,c,f,p="function"==typeof e&&e,d=!i&&a(e=p.selector||e);if(n=n||[],1===d.length){if((u=d[0]=d[0].slice(0)).length>2&&"ID"===(l=u[0]).type&&9===t.nodeType&&g&&r.relative[u[1].type]){if(!(t=(r.find.ID(l.matches[0].replace(Z,ee),t)||[])[0]))return n;p&&(t=t.parentNode),e=e.slice(u.shift().value.length)}o=V.needsContext.test(e)?0:u.length;while(o--){if(l=u[o],r.relative[c=l.type])break;if((f=r.find[c])&&(i=f(l.matches[0].replace(Z,ee),K.test(u[0].type)&&ge(t.parentNode)||t))){if(u.splice(o,1),!(e=i.length&&ve(u)))return L.apply(n,i),n;break}}}return(p||s(e,d))(i,t,!g,n,!t||K.test(e)&&ge(t.parentNode)||t),n},n.sortStable=b.split("").sort(D).join("")===b,n.detectDuplicates=!!f,p(),n.sortDetached=ue(function(e){return 1&e.compareDocumentPosition(d.createElement("fieldset"))}),ue(function(e){return e.innerHTML="","#"===e.firstChild.getAttribute("href")})||le("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),n.attributes&&ue(function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||le("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),ue(function(e){return null==e.getAttribute("disabled")})||le(P,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),oe}(e);w.find=E,w.expr=E.selectors,w.expr[":"]=w.expr.pseudos,w.uniqueSort=w.unique=E.uniqueSort,w.text=E.getText,w.isXMLDoc=E.isXML,w.contains=E.contains,w.escapeSelector=E.escape;var k=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&w(e).is(n))break;r.push(e)}return r},S=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},D=w.expr.match.needsContext;function N(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var A=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,t,n){return g(t)?w.grep(e,function(e,r){return!!t.call(e,r,e)!==n}):t.nodeType?w.grep(e,function(e){return e===t!==n}):"string"!=typeof t?w.grep(e,function(e){return u.call(t,e)>-1!==n}):w.filter(t,e,n)}w.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?w.find.matchesSelector(r,e)?[r]:[]:w.find.matches(e,w.grep(t,function(e){return 1===e.nodeType}))},w.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(w(e).filter(function(){for(t=0;t1?w.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,"string"==typeof e&&D.test(e)?w(e):e||[],!1).length}});var q,L=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(w.fn.init=function(e,t,n){var i,o;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(i="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:L.exec(e))||!i[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(i[1]){if(t=t instanceof w?t[0]:t,w.merge(this,w.parseHTML(i[1],t&&t.nodeType?t.ownerDocument||t:r,!0)),A.test(i[1])&&w.isPlainObject(t))for(i in t)g(this[i])?this[i](t[i]):this.attr(i,t[i]);return this}return(o=r.getElementById(i[2]))&&(this[0]=o,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):g(e)?void 0!==n.ready?n.ready(e):e(w):w.makeArray(e,this)}).prototype=w.fn,q=w(r);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};w.fn.extend({has:function(e){var t=w(e,this),n=t.length;return this.filter(function(){for(var e=0;e-1:1===n.nodeType&&w.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?w.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?u.call(w(e),this[0]):u.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(w.uniqueSort(w.merge(this.get(),w(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}});function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}w.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return k(e,"parentNode")},parentsUntil:function(e,t,n){return k(e,"parentNode",n)},next:function(e){return P(e,"nextSibling")},prev:function(e){return P(e,"previousSibling")},nextAll:function(e){return k(e,"nextSibling")},prevAll:function(e){return k(e,"previousSibling")},nextUntil:function(e,t,n){return k(e,"nextSibling",n)},prevUntil:function(e,t,n){return k(e,"previousSibling",n)},siblings:function(e){return S((e.parentNode||{}).firstChild,e)},children:function(e){return S(e.firstChild)},contents:function(e){return N(e,"iframe")?e.contentDocument:(N(e,"template")&&(e=e.content||e),w.merge([],e.childNodes))}},function(e,t){w.fn[e]=function(n,r){var i=w.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=w.filter(r,i)),this.length>1&&(O[e]||w.uniqueSort(i),H.test(e)&&i.reverse()),this.pushStack(i)}});var M=/[^\x20\t\r\n\f]+/g;function R(e){var t={};return w.each(e.match(M)||[],function(e,n){t[n]=!0}),t}w.Callbacks=function(e){e="string"==typeof e?R(e):w.extend({},e);var t,n,r,i,o=[],a=[],s=-1,u=function(){for(i=i||e.once,r=t=!0;a.length;s=-1){n=a.shift();while(++s-1)o.splice(n,1),n<=s&&s--}),this},has:function(e){return e?w.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n="",this},disabled:function(){return!o},lock:function(){return i=a=[],n||t||(o=n=""),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],a.push(n),t||u()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l};function I(e){return e}function W(e){throw e}function $(e,t,n,r){var i;try{e&&g(i=e.promise)?i.call(e).done(t).fail(n):e&&g(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}w.extend({Deferred:function(t){var n=[["notify","progress",w.Callbacks("memory"),w.Callbacks("memory"),2],["resolve","done",w.Callbacks("once memory"),w.Callbacks("once memory"),0,"resolved"],["reject","fail",w.Callbacks("once memory"),w.Callbacks("once memory"),1,"rejected"]],r="pending",i={state:function(){return r},always:function(){return o.done(arguments).fail(arguments),this},"catch":function(e){return i.then(null,e)},pipe:function(){var e=arguments;return w.Deferred(function(t){w.each(n,function(n,r){var i=g(e[r[4]])&&e[r[4]];o[r[1]](function(){var e=i&&i.apply(this,arguments);e&&g(e.promise)?e.promise().progress(t.notify).done(t.resolve).fail(t.reject):t[r[0]+"With"](this,i?[e]:arguments)})}),e=null}).promise()},then:function(t,r,i){var o=0;function a(t,n,r,i){return function(){var s=this,u=arguments,l=function(){var e,l;if(!(t=o&&(r!==W&&(s=void 0,u=[e]),n.rejectWith(s,u))}};t?c():(w.Deferred.getStackHook&&(c.stackTrace=w.Deferred.getStackHook()),e.setTimeout(c))}}return w.Deferred(function(e){n[0][3].add(a(0,e,g(i)?i:I,e.notifyWith)),n[1][3].add(a(0,e,g(t)?t:I)),n[2][3].add(a(0,e,g(r)?r:W))}).promise()},promise:function(e){return null!=e?w.extend(e,i):i}},o={};return w.each(n,function(e,t){var a=t[2],s=t[5];i[t[1]]=a.add,s&&a.add(function(){r=s},n[3-e][2].disable,n[3-e][3].disable,n[0][2].lock,n[0][3].lock),a.add(t[3].fire),o[t[0]]=function(){return o[t[0]+"With"](this===o?void 0:this,arguments),this},o[t[0]+"With"]=a.fireWith}),i.promise(o),t&&t.call(o,o),o},when:function(e){var t=arguments.length,n=t,r=Array(n),i=o.call(arguments),a=w.Deferred(),s=function(e){return function(n){r[e]=this,i[e]=arguments.length>1?o.call(arguments):n,--t||a.resolveWith(r,i)}};if(t<=1&&($(e,a.done(s(n)).resolve,a.reject,!t),"pending"===a.state()||g(i[n]&&i[n].then)))return a.then();while(n--)$(i[n],s(n),a.reject);return a.promise()}});var B=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;w.Deferred.exceptionHook=function(t,n){e.console&&e.console.warn&&t&&B.test(t.name)&&e.console.warn("jQuery.Deferred exception: "+t.message,t.stack,n)},w.readyException=function(t){e.setTimeout(function(){throw t})};var F=w.Deferred();w.fn.ready=function(e){return F.then(e)["catch"](function(e){w.readyException(e)}),this},w.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--w.readyWait:w.isReady)||(w.isReady=!0,!0!==e&&--w.readyWait>0||F.resolveWith(r,[w]))}}),w.ready.then=F.then;function _(){r.removeEventListener("DOMContentLoaded",_),e.removeEventListener("load",_),w.ready()}"complete"===r.readyState||"loading"!==r.readyState&&!r.documentElement.doScroll?e.setTimeout(w.ready):(r.addEventListener("DOMContentLoaded",_),e.addEventListener("load",_));var z=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===x(n)){i=!0;for(s in n)z(e,t,s,n[s],!0,o,a)}else if(void 0!==r&&(i=!0,g(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(w(e),n)})),t))for(;s1,null,!0)},removeData:function(e){return this.each(function(){K.remove(this,e)})}}),w.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=J.get(e,t),n&&(!r||Array.isArray(n)?r=J.access(e,t,w.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=w.queue(e,t),r=n.length,i=n.shift(),o=w._queueHooks(e,t),a=function(){w.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return J.get(e,n)||J.access(e,n,{empty:w.Callbacks("once memory").add(function(){J.remove(e,[t+"queue",n])})})}}),w.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length\x20\t\r\n\f]+)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};ge.optgroup=ge.option,ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td;function ye(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&N(e,t)?w.merge([e],n):n}function ve(e,t){for(var n=0,r=e.length;n-1)i&&i.push(o);else if(l=w.contains(o.ownerDocument,o),a=ye(f.appendChild(o),"script"),l&&ve(a),n){c=0;while(o=a[c++])he.test(o.type||"")&&n.push(o)}return f}!function(){var e=r.createDocumentFragment().appendChild(r.createElement("div")),t=r.createElement("input");t.setAttribute("type","radio"),t.setAttribute("checked","checked"),t.setAttribute("name","t"),e.appendChild(t),h.checkClone=e.cloneNode(!0).cloneNode(!0).lastChild.checked,e.innerHTML="",h.noCloneChecked=!!e.cloneNode(!0).lastChild.defaultValue}();var be=r.documentElement,we=/^key/,Te=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ce=/^([^.]*)(?:\.(.+)|)/;function Ee(){return!0}function ke(){return!1}function Se(){try{return r.activeElement}catch(e){}}function De(e,t,n,r,i,o){var a,s;if("object"==typeof t){"string"!=typeof n&&(r=r||n,n=void 0);for(s in t)De(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=ke;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return w().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=w.guid++)),e.each(function(){w.event.add(this,t,i,r,n)})}w.event={global:{},add:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,y=J.get(e);if(y){n.handler&&(n=(o=n).handler,i=o.selector),i&&w.find.matchesSelector(be,i),n.guid||(n.guid=w.guid++),(u=y.events)||(u=y.events={}),(a=y.handle)||(a=y.handle=function(t){return"undefined"!=typeof w&&w.event.triggered!==t.type?w.event.dispatch.apply(e,arguments):void 0}),l=(t=(t||"").match(M)||[""]).length;while(l--)d=g=(s=Ce.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=w.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=w.event.special[d]||{},c=w.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&w.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(e,r,h,a)||e.addEventListener&&e.addEventListener(d,a)),f.add&&(f.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),w.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,y=J.hasData(e)&&J.get(e);if(y&&(u=y.events)){l=(t=(t||"").match(M)||[""]).length;while(l--)if(s=Ce.exec(t[l])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){f=w.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,y.handle)||w.removeEvent(e,d,y.handle),delete u[d])}else for(d in u)w.event.remove(e,d+t[l],n,r,!0);w.isEmptyObject(u)&&J.remove(e,"handle events")}},dispatch:function(e){var t=w.event.fix(e),n,r,i,o,a,s,u=new Array(arguments.length),l=(J.get(this,"events")||{})[t.type]||[],c=w.event.special[t.type]||{};for(u[0]=t,n=1;n=1))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n-1:w.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u\x20\t\r\n\f]*)[^>]*)\/>/gi,Ae=/\s*$/g;function Le(e,t){return N(e,"table")&&N(11!==t.nodeType?t:t.firstChild,"tr")?w(e).children("tbody")[0]||e:e}function He(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Oe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Pe(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(J.hasData(e)&&(o=J.access(e),a=J.set(t,o),l=o.events)){delete a.handle,a.events={};for(i in l)for(n=0,r=l[i].length;n1&&"string"==typeof y&&!h.checkClone&&je.test(y))return e.each(function(i){var o=e.eq(i);v&&(t[0]=y.call(this,i,o.html())),Re(o,t,n,r)});if(p&&(i=xe(t,e[0].ownerDocument,!1,e,r),o=i.firstChild,1===i.childNodes.length&&(i=o),o||r)){for(u=(s=w.map(ye(i,"script"),He)).length;f")},clone:function(e,t,n){var r,i,o,a,s=e.cloneNode(!0),u=w.contains(e.ownerDocument,e);if(!(h.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||w.isXMLDoc(e)))for(a=ye(s),r=0,i=(o=ye(e)).length;r0&&ve(a,!u&&ye(e,"script")),s},cleanData:function(e){for(var t,n,r,i=w.event.special,o=0;void 0!==(n=e[o]);o++)if(Y(n)){if(t=n[J.expando]){if(t.events)for(r in t.events)i[r]?w.event.remove(n,r):w.removeEvent(n,r,t.handle);n[J.expando]=void 0}n[K.expando]&&(n[K.expando]=void 0)}}}),w.fn.extend({detach:function(e){return Ie(this,e,!0)},remove:function(e){return Ie(this,e)},text:function(e){return z(this,function(e){return void 0===e?w.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return Re(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||Le(this,e).appendChild(e)})},prepend:function(){return Re(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Le(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return Re(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return Re(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(w.cleanData(ye(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return w.clone(this,e,t)})},html:function(e){return z(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!Ae.test(e)&&!ge[(de.exec(e)||["",""])[1].toLowerCase()]){e=w.htmlPrefilter(e);try{for(;n=0&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))),u}function et(e,t,n){var r=$e(e),i=Fe(e,t,r),o="border-box"===w.css(e,"boxSizing",!1,r),a=o;if(We.test(i)){if(!n)return i;i="auto"}return a=a&&(h.boxSizingReliable()||i===e.style[t]),("auto"===i||!parseFloat(i)&&"inline"===w.css(e,"display",!1,r))&&(i=e["offset"+t[0].toUpperCase()+t.slice(1)],a=!0),(i=parseFloat(i)||0)+Ze(e,t,n||(o?"border":"content"),a,r,i)+"px"}w.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Fe(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=G(t),u=Xe.test(t),l=e.style;if(u||(t=Je(s)),a=w.cssHooks[t]||w.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"==(o=typeof n)&&(i=ie.exec(n))&&i[1]&&(n=ue(e,t,i),o="number"),null!=n&&n===n&&("number"===o&&(n+=i&&i[3]||(w.cssNumber[s]?"":"px")),h.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=G(t);return Xe.test(t)||(t=Je(s)),(a=w.cssHooks[t]||w.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=Fe(e,t,r)),"normal"===i&&t in Ve&&(i=Ve[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),w.each(["height","width"],function(e,t){w.cssHooks[t]={get:function(e,n,r){if(n)return!ze.test(w.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?et(e,t,r):se(e,Ue,function(){return et(e,t,r)})},set:function(e,n,r){var i,o=$e(e),a="border-box"===w.css(e,"boxSizing",!1,o),s=r&&Ze(e,t,r,a,o);return a&&h.scrollboxSize()===o.position&&(s-=Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-parseFloat(o[t])-Ze(e,t,"border",!1,o)-.5)),s&&(i=ie.exec(n))&&"px"!==(i[3]||"px")&&(e.style[t]=n,n=w.css(e,t)),Ke(e,n,s)}}}),w.cssHooks.marginLeft=_e(h.reliableMarginLeft,function(e,t){if(t)return(parseFloat(Fe(e,"marginLeft"))||e.getBoundingClientRect().left-se(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),w.each({margin:"",padding:"",border:"Width"},function(e,t){w.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];r<4;r++)i[e+oe[r]+t]=o[r]||o[r-2]||o[0];return i}},"margin"!==e&&(w.cssHooks[e+t].set=Ke)}),w.fn.extend({css:function(e,t){return z(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=$e(e),i=t.length;a1)}});function tt(e,t,n,r,i){return new tt.prototype.init(e,t,n,r,i)}w.Tween=tt,tt.prototype={constructor:tt,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||w.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(w.cssNumber[n]?"":"px")},cur:function(){var e=tt.propHooks[this.prop];return e&&e.get?e.get(this):tt.propHooks._default.get(this)},run:function(e){var t,n=tt.propHooks[this.prop];return this.options.duration?this.pos=t=w.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):tt.propHooks._default.set(this),this}},tt.prototype.init.prototype=tt.prototype,tt.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=w.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){w.fx.step[e.prop]?w.fx.step[e.prop](e):1!==e.elem.nodeType||null==e.elem.style[w.cssProps[e.prop]]&&!w.cssHooks[e.prop]?e.elem[e.prop]=e.now:w.style(e.elem,e.prop,e.now+e.unit)}}},tt.propHooks.scrollTop=tt.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},w.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},w.fx=tt.prototype.init,w.fx.step={};var nt,rt,it=/^(?:toggle|show|hide)$/,ot=/queueHooks$/;function at(){rt&&(!1===r.hidden&&e.requestAnimationFrame?e.requestAnimationFrame(at):e.setTimeout(at,w.fx.interval),w.fx.tick())}function st(){return e.setTimeout(function(){nt=void 0}),nt=Date.now()}function ut(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=oe[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function lt(e,t,n){for(var r,i=(pt.tweeners[t]||[]).concat(pt.tweeners["*"]),o=0,a=i.length;o1)},removeAttr:function(e){return this.each(function(){w.removeAttr(this,e)})}}),w.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return"undefined"==typeof e.getAttribute?w.prop(e,t,n):(1===o&&w.isXMLDoc(e)||(i=w.attrHooks[t.toLowerCase()]||(w.expr.match.bool.test(t)?dt:void 0)),void 0!==n?null===n?void w.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=w.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!h.radioValue&&"radio"===t&&N(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(M);if(i&&1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),dt={set:function(e,t,n){return!1===t?w.removeAttr(e,n):e.setAttribute(n,n),n}},w.each(w.expr.match.bool.source.match(/\w+/g),function(e,t){var n=ht[t]||w.find.attr;ht[t]=function(e,t,r){var i,o,a=t.toLowerCase();return r||(o=ht[a],ht[a]=i,i=null!=n(e,t,r)?a:null,ht[a]=o),i}});var gt=/^(?:input|select|textarea|button)$/i,yt=/^(?:a|area)$/i;w.fn.extend({prop:function(e,t){return z(this,w.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[w.propFix[e]||e]})}}),w.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&w.isXMLDoc(e)||(t=w.propFix[t]||t,i=w.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=w.find.attr(e,"tabindex");return t?parseInt(t,10):gt.test(e.nodeName)||yt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),h.optSelected||(w.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),w.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){w.propFix[this.toLowerCase()]=this});function vt(e){return(e.match(M)||[]).join(" ")}function mt(e){return e.getAttribute&&e.getAttribute("class")||""}function xt(e){return Array.isArray(e)?e:"string"==typeof e?e.match(M)||[]:[]}w.fn.extend({addClass:function(e){var t,n,r,i,o,a,s,u=0;if(g(e))return this.each(function(t){w(this).addClass(e.call(this,t,mt(this)))});if((t=xt(e)).length)while(n=this[u++])if(i=mt(n),r=1===n.nodeType&&" "+vt(i)+" "){a=0;while(o=t[a++])r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=vt(r))&&n.setAttribute("class",s)}return this},removeClass:function(e){var t,n,r,i,o,a,s,u=0;if(g(e))return this.each(function(t){w(this).removeClass(e.call(this,t,mt(this)))});if(!arguments.length)return this.attr("class","");if((t=xt(e)).length)while(n=this[u++])if(i=mt(n),r=1===n.nodeType&&" "+vt(i)+" "){a=0;while(o=t[a++])while(r.indexOf(" "+o+" ")>-1)r=r.replace(" "+o+" "," ");i!==(s=vt(r))&&n.setAttribute("class",s)}return this},toggleClass:function(e,t){var n=typeof e,r="string"===n||Array.isArray(e);return"boolean"==typeof t&&r?t?this.addClass(e):this.removeClass(e):g(e)?this.each(function(n){w(this).toggleClass(e.call(this,n,mt(this),t),t)}):this.each(function(){var t,i,o,a;if(r){i=0,o=w(this),a=xt(e);while(t=a[i++])o.hasClass(t)?o.removeClass(t):o.addClass(t)}else void 0!==e&&"boolean"!==n||((t=mt(this))&&J.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":J.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;t=" "+e+" ";while(n=this[r++])if(1===n.nodeType&&(" "+vt(mt(n))+" ").indexOf(t)>-1)return!0;return!1}});var bt=/\r/g;w.fn.extend({val:function(e){var t,n,r,i=this[0];{if(arguments.length)return r=g(e),this.each(function(n){var i;1===this.nodeType&&(null==(i=r?e.call(this,n,w(this).val()):e)?i="":"number"==typeof i?i+="":Array.isArray(i)&&(i=w.map(i,function(e){return null==e?"":e+""})),(t=w.valHooks[this.type]||w.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,i,"value")||(this.value=i))});if(i)return(t=w.valHooks[i.type]||w.valHooks[i.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(i,"value"))?n:"string"==typeof(n=i.value)?n.replace(bt,""):null==n?"":n}}}),w.extend({valHooks:{option:{get:function(e){var t=w.find.attr(e,"value");return null!=t?t:vt(w.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r-1)&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),w.each(["radio","checkbox"],function(){w.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=w.inArray(w(e).val(),t)>-1}},h.checkOn||(w.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),h.focusin="onfocusin"in e;var wt=/^(?:focusinfocus|focusoutblur)$/,Tt=function(e){e.stopPropagation()};w.extend(w.event,{trigger:function(t,n,i,o){var a,s,u,l,c,p,d,h,v=[i||r],m=f.call(t,"type")?t.type:t,x=f.call(t,"namespace")?t.namespace.split("."):[];if(s=h=u=i=i||r,3!==i.nodeType&&8!==i.nodeType&&!wt.test(m+w.event.triggered)&&(m.indexOf(".")>-1&&(m=(x=m.split(".")).shift(),x.sort()),c=m.indexOf(":")<0&&"on"+m,t=t[w.expando]?t:new w.Event(m,"object"==typeof t&&t),t.isTrigger=o?2:3,t.namespace=x.join("."),t.rnamespace=t.namespace?new RegExp("(^|\\.)"+x.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=i),n=null==n?[t]:w.makeArray(n,[t]),d=w.event.special[m]||{},o||!d.trigger||!1!==d.trigger.apply(i,n))){if(!o&&!d.noBubble&&!y(i)){for(l=d.delegateType||m,wt.test(l+m)||(s=s.parentNode);s;s=s.parentNode)v.push(s),u=s;u===(i.ownerDocument||r)&&v.push(u.defaultView||u.parentWindow||e)}a=0;while((s=v[a++])&&!t.isPropagationStopped())h=s,t.type=a>1?l:d.bindType||m,(p=(J.get(s,"events")||{})[t.type]&&J.get(s,"handle"))&&p.apply(s,n),(p=c&&s[c])&&p.apply&&Y(s)&&(t.result=p.apply(s,n),!1===t.result&&t.preventDefault());return t.type=m,o||t.isDefaultPrevented()||d._default&&!1!==d._default.apply(v.pop(),n)||!Y(i)||c&&g(i[m])&&!y(i)&&((u=i[c])&&(i[c]=null),w.event.triggered=m,t.isPropagationStopped()&&h.addEventListener(m,Tt),i[m](),t.isPropagationStopped()&&h.removeEventListener(m,Tt),w.event.triggered=void 0,u&&(i[c]=u)),t.result}},simulate:function(e,t,n){var r=w.extend(new w.Event,n,{type:e,isSimulated:!0});w.event.trigger(r,null,t)}}),w.fn.extend({trigger:function(e,t){return this.each(function(){w.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return w.event.trigger(e,t,n,!0)}}),h.focusin||w.each({focus:"focusin",blur:"focusout"},function(e,t){var n=function(e){w.event.simulate(t,e.target,w.event.fix(e))};w.event.special[t]={setup:function(){var r=this.ownerDocument||this,i=J.access(r,t);i||r.addEventListener(e,n,!0),J.access(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this,i=J.access(r,t)-1;i?J.access(r,t,i):(r.removeEventListener(e,n,!0),J.remove(r,t))}}});var Ct=e.location,Et=Date.now(),kt=/\?/;w.parseXML=function(t){var n;if(!t||"string"!=typeof t)return null;try{n=(new e.DOMParser).parseFromString(t,"text/xml")}catch(e){n=void 0}return n&&!n.getElementsByTagName("parsererror").length||w.error("Invalid XML: "+t),n};var St=/\[\]$/,Dt=/\r?\n/g,Nt=/^(?:submit|button|image|reset|file)$/i,At=/^(?:input|select|textarea|keygen)/i;function jt(e,t,n,r){var i;if(Array.isArray(t))w.each(t,function(t,i){n||St.test(e)?r(e,i):jt(e+"["+("object"==typeof i&&null!=i?t:"")+"]",i,n,r)});else if(n||"object"!==x(t))r(e,t);else for(i in t)jt(e+"["+i+"]",t[i],n,r)}w.param=function(e,t){var n,r=[],i=function(e,t){var n=g(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(Array.isArray(e)||e.jquery&&!w.isPlainObject(e))w.each(e,function(){i(this.name,this.value)});else for(n in e)jt(n,e[n],t,i);return r.join("&")},w.fn.extend({serialize:function(){return w.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=w.prop(this,"elements");return e?w.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!w(this).is(":disabled")&&At.test(this.nodeName)&&!Nt.test(e)&&(this.checked||!pe.test(e))}).map(function(e,t){var n=w(this).val();return null==n?null:Array.isArray(n)?w.map(n,function(e){return{name:t.name,value:e.replace(Dt,"\r\n")}}):{name:t.name,value:n.replace(Dt,"\r\n")}}).get()}});var qt=/%20/g,Lt=/#.*$/,Ht=/([?&])_=[^&]*/,Ot=/^(.*?):[ \t]*([^\r\n]*)$/gm,Pt=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Mt=/^(?:GET|HEAD)$/,Rt=/^\/\//,It={},Wt={},$t="*/".concat("*"),Bt=r.createElement("a");Bt.href=Ct.href;function Ft(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(M)||[];if(g(n))while(r=o[i++])"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function _t(e,t,n,r){var i={},o=e===Wt;function a(s){var u;return i[s]=!0,w.each(e[s]||[],function(e,s){var l=s(t,n,r);return"string"!=typeof l||o||i[l]?o?!(u=l):void 0:(t.dataTypes.unshift(l),a(l),!1)}),u}return a(t.dataTypes[0])||!i["*"]&&a("*")}function zt(e,t){var n,r,i=w.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&w.extend(!0,e,r),e}function Xt(e,t,n){var r,i,o,a,s=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}function Ut(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}w.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Ct.href,type:"GET",isLocal:Pt.test(Ct.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":$t,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":w.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?zt(zt(e,w.ajaxSettings),t):zt(w.ajaxSettings,e)},ajaxPrefilter:Ft(It),ajaxTransport:Ft(Wt),ajax:function(t,n){"object"==typeof t&&(n=t,t=void 0),n=n||{};var i,o,a,s,u,l,c,f,p,d,h=w.ajaxSetup({},n),g=h.context||h,y=h.context&&(g.nodeType||g.jquery)?w(g):w.event,v=w.Deferred(),m=w.Callbacks("once memory"),x=h.statusCode||{},b={},T={},C="canceled",E={readyState:0,getResponseHeader:function(e){var t;if(c){if(!s){s={};while(t=Ot.exec(a))s[t[1].toLowerCase()]=t[2]}t=s[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return c?a:null},setRequestHeader:function(e,t){return null==c&&(e=T[e.toLowerCase()]=T[e.toLowerCase()]||e,b[e]=t),this},overrideMimeType:function(e){return null==c&&(h.mimeType=e),this},statusCode:function(e){var t;if(e)if(c)E.always(e[E.status]);else for(t in e)x[t]=[x[t],e[t]];return this},abort:function(e){var t=e||C;return i&&i.abort(t),k(0,t),this}};if(v.promise(E),h.url=((t||h.url||Ct.href)+"").replace(Rt,Ct.protocol+"//"),h.type=n.method||n.type||h.method||h.type,h.dataTypes=(h.dataType||"*").toLowerCase().match(M)||[""],null==h.crossDomain){l=r.createElement("a");try{l.href=h.url,l.href=l.href,h.crossDomain=Bt.protocol+"//"+Bt.host!=l.protocol+"//"+l.host}catch(e){h.crossDomain=!0}}if(h.data&&h.processData&&"string"!=typeof h.data&&(h.data=w.param(h.data,h.traditional)),_t(It,h,n,E),c)return E;(f=w.event&&h.global)&&0==w.active++&&w.event.trigger("ajaxStart"),h.type=h.type.toUpperCase(),h.hasContent=!Mt.test(h.type),o=h.url.replace(Lt,""),h.hasContent?h.data&&h.processData&&0===(h.contentType||"").indexOf("application/x-www-form-urlencoded")&&(h.data=h.data.replace(qt,"+")):(d=h.url.slice(o.length),h.data&&(h.processData||"string"==typeof h.data)&&(o+=(kt.test(o)?"&":"?")+h.data,delete h.data),!1===h.cache&&(o=o.replace(Ht,"$1"),d=(kt.test(o)?"&":"?")+"_="+Et+++d),h.url=o+d),h.ifModified&&(w.lastModified[o]&&E.setRequestHeader("If-Modified-Since",w.lastModified[o]),w.etag[o]&&E.setRequestHeader("If-None-Match",w.etag[o])),(h.data&&h.hasContent&&!1!==h.contentType||n.contentType)&&E.setRequestHeader("Content-Type",h.contentType),E.setRequestHeader("Accept",h.dataTypes[0]&&h.accepts[h.dataTypes[0]]?h.accepts[h.dataTypes[0]]+("*"!==h.dataTypes[0]?", "+$t+"; q=0.01":""):h.accepts["*"]);for(p in h.headers)E.setRequestHeader(p,h.headers[p]);if(h.beforeSend&&(!1===h.beforeSend.call(g,E,h)||c))return E.abort();if(C="abort",m.add(h.complete),E.done(h.success),E.fail(h.error),i=_t(Wt,h,n,E)){if(E.readyState=1,f&&y.trigger("ajaxSend",[E,h]),c)return E;h.async&&h.timeout>0&&(u=e.setTimeout(function(){E.abort("timeout")},h.timeout));try{c=!1,i.send(b,k)}catch(e){if(c)throw e;k(-1,e)}}else k(-1,"No Transport");function k(t,n,r,s){var l,p,d,b,T,C=n;c||(c=!0,u&&e.clearTimeout(u),i=void 0,a=s||"",E.readyState=t>0?4:0,l=t>=200&&t<300||304===t,r&&(b=Xt(h,E,r)),b=Ut(h,b,E,l),l?(h.ifModified&&((T=E.getResponseHeader("Last-Modified"))&&(w.lastModified[o]=T),(T=E.getResponseHeader("etag"))&&(w.etag[o]=T)),204===t||"HEAD"===h.type?C="nocontent":304===t?C="notmodified":(C=b.state,p=b.data,l=!(d=b.error))):(d=C,!t&&C||(C="error",t<0&&(t=0))),E.status=t,E.statusText=(n||C)+"",l?v.resolveWith(g,[p,C,E]):v.rejectWith(g,[E,C,d]),E.statusCode(x),x=void 0,f&&y.trigger(l?"ajaxSuccess":"ajaxError",[E,h,l?p:d]),m.fireWith(g,[E,C]),f&&(y.trigger("ajaxComplete",[E,h]),--w.active||w.event.trigger("ajaxStop")))}return E},getJSON:function(e,t,n){return w.get(e,t,n,"json")},getScript:function(e,t){return w.get(e,void 0,t,"script")}}),w.each(["get","post"],function(e,t){w[t]=function(e,n,r,i){return g(n)&&(i=i||r,r=n,n=void 0),w.ajax(w.extend({url:e,type:t,dataType:i,data:n,success:r},w.isPlainObject(e)&&e))}}),w._evalUrl=function(e){return w.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,"throws":!0})},w.fn.extend({wrapAll:function(e){var t;return this[0]&&(g(e)&&(e=e.call(this[0])),t=w(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(e){return g(e)?this.each(function(t){w(this).wrapInner(e.call(this,t))}):this.each(function(){var t=w(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=g(e);return this.each(function(n){w(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(e){return this.parent(e).not("body").each(function(){w(this).replaceWith(this.childNodes)}),this}}),w.expr.pseudos.hidden=function(e){return!w.expr.pseudos.visible(e)},w.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},w.ajaxSettings.xhr=function(){try{return new e.XMLHttpRequest}catch(e){}};var Vt={0:200,1223:204},Gt=w.ajaxSettings.xhr();h.cors=!!Gt&&"withCredentials"in Gt,h.ajax=Gt=!!Gt,w.ajaxTransport(function(t){var n,r;if(h.cors||Gt&&!t.crossDomain)return{send:function(i,o){var a,s=t.xhr();if(s.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(a in t.xhrFields)s[a]=t.xhrFields[a];t.mimeType&&s.overrideMimeType&&s.overrideMimeType(t.mimeType),t.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest");for(a in i)s.setRequestHeader(a,i[a]);n=function(e){return function(){n&&(n=r=s.onload=s.onerror=s.onabort=s.ontimeout=s.onreadystatechange=null,"abort"===e?s.abort():"error"===e?"number"!=typeof s.status?o(0,"error"):o(s.status,s.statusText):o(Vt[s.status]||s.status,s.statusText,"text"!==(s.responseType||"text")||"string"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=n(),r=s.onerror=s.ontimeout=n("error"),void 0!==s.onabort?s.onabort=r:s.onreadystatechange=function(){4===s.readyState&&e.setTimeout(function(){n&&r()})},n=n("abort");try{s.send(t.hasContent&&t.data||null)}catch(e){if(n)throw e}},abort:function(){n&&n()}}}),w.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),w.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return w.globalEval(e),e}}}),w.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),w.ajaxTransport("script",function(e){if(e.crossDomain){var t,n;return{send:function(i,o){t=w(" + + + + +
+ +
+

> Mainstream Websites

+ +
+ + +
+ +
+
+
+
+
+
+ + + +