From 55efc9d0fdb4232d24ecef84b41b8795106c354f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alvar=20Anthony=20H=C3=A4m=C3=A4l=C3=A4inen?= Date: Tue, 19 Dec 2017 15:42:56 +0200 Subject: [PATCH] Remove deprecated bourbon mixins Removed bourbon mixins that had deprecation warnings Fix #115 --- components/template-cs-style-rules.tpl | 30 +- javascripts/application.js | 28 +- javascripts/application.min.js | 2 +- package-lock.json | 4846 +++++++++++++++++ .../template-cs-style-rules.scss | 4 +- sources/stylesheets/_blog-and-article.scss | 16 +- sources/stylesheets/_comments.scss | 6 +- stylesheets/main.css | 28 +- stylesheets/main.min.css | 2 +- 9 files changed, 4905 insertions(+), 57 deletions(-) create mode 100644 package-lock.json diff --git a/components/template-cs-style-rules.tpl b/components/template-cs-style-rules.tpl index cf724cc..d582449 100644 --- a/components/template-cs-style-rules.tpl +++ b/components/template-cs-style-rules.tpl @@ -624,16 +624,16 @@ body { .dark-background .content-formatted .form_field_textarea::-webkit-input-placeholder { color: var(--third-color); } -.dark-background .content-formatted .form_field_textfield::-moz-placeholder, -.dark-background .content-formatted .form_field_textarea::-moz-placeholder { +.dark-background .content-formatted .form_field_textfield:-ms-input-placeholder, +.dark-background .content-formatted .form_field_textarea:-ms-input-placeholder { color: var(--third-color); } -.dark-background .content-formatted .form_field_textfield:-moz-placeholder, -.dark-background .content-formatted .form_field_textarea:-moz-placeholder { +.dark-background .content-formatted .form_field_textfield::-ms-input-placeholder, +.dark-background .content-formatted .form_field_textarea::-ms-input-placeholder { color: var(--third-color); } -.dark-background .content-formatted .form_field_textfield:-ms-input-placeholder, -.dark-background .content-formatted .form_field_textarea:-ms-input-placeholder { +.dark-background .content-formatted .form_field_textfield::placeholder, +.dark-background .content-formatted .form_field_textarea::placeholder { color: var(--third-color); } .light-background .content-formatted .form_field_textfield, @@ -646,19 +646,19 @@ body { .light-background .content-formatted .form_field_select::-webkit-input-placeholder { color: var(--primary-color); } -.light-background .content-formatted .form_field_textfield::-moz-placeholder, -.light-background .content-formatted .form_field_textarea::-moz-placeholder, -.light-background .content-formatted .form_field_select::-moz-placeholder { +.light-background .content-formatted .form_field_textfield:-ms-input-placeholder, +.light-background .content-formatted .form_field_textarea:-ms-input-placeholder, +.light-background .content-formatted .form_field_select:-ms-input-placeholder { color: var(--primary-color); } -.light-background .content-formatted .form_field_textfield:-moz-placeholder, -.light-background .content-formatted .form_field_textarea:-moz-placeholder, -.light-background .content-formatted .form_field_select:-moz-placeholder { +.light-background .content-formatted .form_field_textfield::-ms-input-placeholder, +.light-background .content-formatted .form_field_textarea::-ms-input-placeholder, +.light-background .content-formatted .form_field_select::-ms-input-placeholder { color: var(--primary-color); } -.light-background .content-formatted .form_field_textfield:-ms-input-placeholder, -.light-background .content-formatted .form_field_textarea:-ms-input-placeholder, -.light-background .content-formatted .form_field_select:-ms-input-placeholder { +.light-background .content-formatted .form_field_textfield::placeholder, +.light-background .content-formatted .form_field_textarea::placeholder, +.light-background .content-formatted .form_field_select::placeholder { color: var(--primary-color); } .comment-form .form_field { diff --git a/javascripts/application.js b/javascripts/application.js index 15be4b8..65901f0 100644 --- a/javascripts/application.js +++ b/javascripts/application.js @@ -10907,7 +10907,7 @@ var matchTimestamp = /[+-]?\d+(\.\d{1,3})?/; // 123456789 123456789.123 // any word (or two) characters or numbers including two/three word month in arabic. // includes scottish gaelic two word and hyphenated months -var matchWord = /[0-9]*['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+|[\u0600-\u06FF\/]+(\s*?[\u0600-\u06FF]+){1,2}/i; +var matchWord = /[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i; var regexes = {}; @@ -11062,7 +11062,7 @@ function get (mom, unit) { function set$1 (mom, unit, value) { if (mom.isValid() && !isNaN(value)) { - if (unit === 'FullYear' && isLeapYear(mom.year())) { + if (unit === 'FullYear' && isLeapYear(mom.year()) && mom.month() === 1 && mom.date() === 29) { mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value, mom.month(), daysInMonth(value, mom.month())); } else { @@ -12168,10 +12168,11 @@ function defineLocale (name, config) { function updateLocale(name, config) { if (config != null) { - var locale, parentConfig = baseConfig; + var locale, tmpLocale, parentConfig = baseConfig; // MERGE - if (locales[name] != null) { - parentConfig = locales[name]._config; + tmpLocale = loadLocale(name); + if (tmpLocale != null) { + parentConfig = tmpLocale._config; } config = mergeConfigs(parentConfig, config); locale = new Locale(config); @@ -12276,7 +12277,7 @@ function currentDateArray(config) { // note: all values past the year are optional and will default to the lowest possible value. // [year, month, day , hour, minute, second, millisecond] function configFromArray (config) { - var i, date, input = [], currentDate, yearToUse; + var i, date, input = [], currentDate, expectedWeekday, yearToUse; if (config._d) { return; @@ -12326,6 +12327,8 @@ function configFromArray (config) { } config._d = (config._useUTC ? createUTCDate : createDate).apply(null, input); + expectedWeekday = config._useUTC ? config._d.getUTCDay() : config._d.getDay(); + // Apply timezone offset from input. The actual utcOffset can be changed // with parseZone. if (config._tzm != null) { @@ -12337,7 +12340,7 @@ function configFromArray (config) { } // check for mismatching day of week - if (config._w && typeof config._w.d !== 'undefined' && config._w.d !== config._d.getDay()) { + if (config._w && typeof config._w.d !== 'undefined' && config._w.d !== expectedWeekday) { getParsingFlags(config).weekdayMismatch = true; } } @@ -13913,7 +13916,7 @@ addRegexToken('Do', function (isStrict, locale) { addParseToken(['D', 'DD'], DATE); addParseToken('Do', function (input, array) { - array[DATE] = toInt(input.match(match1to2)[0], 10); + array[DATE] = toInt(input.match(match1to2)[0]); }); // MOMENTS @@ -14725,12 +14728,12 @@ addParseToken('x', function (input, array, config) { // Side effect imports //! moment.js -//! version : 2.19.1 +//! version : 2.19.4 //! authors : Tim Wood, Iskren Chernev, Moment.js contributors //! license : MIT //! momentjs.com -hooks.version = '2.19.1'; +hooks.version = '2.19.4'; setHookCallback(createLocal); @@ -17350,7 +17353,7 @@ hooks.defineLocale('es-do', { }); //! moment.js locale configuration -//! locale : Spanish(United State) [es-us] +//! locale : Spanish (United States) [es-us] //! author : bustta : https://github.com/bustta var monthsShortDot$1 = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split('_'); @@ -18829,8 +18832,7 @@ hooks.defineLocale('hr', { var weekEndings = 'vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton'.split(' '); function translate$4(number, withoutSuffix, key, isFuture) { - var num = number, - suffix; + var num = number; switch (key) { case 's': return (isFuture || withoutSuffix) ? 'néhány másodperc' : 'néhány másodperce'; diff --git a/javascripts/application.min.js b/javascripts/application.min.js index 38341c4..494d27d 100644 --- a/javascripts/application.min.js +++ b/javascripts/application.min.js @@ -1 +1 @@ -!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(e,t){"use strict";function n(e,t){var n=(t=t||te).createElement("script");n.text=e,t.head.appendChild(n).parentNode.removeChild(n)}function a(e){var t=!!e&&"length"in e&&e.length,n=ce.type(e);return"function"!==n&&!ce.isWindow(e)&&("array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e)}function r(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}function s(e,t,n){return ce.isFunction(t)?ce.grep(e,function(e,a){return!!t.call(e,a,e)!==n}):t.nodeType?ce.grep(e,function(e){return e===t!==n}):"string"!=typeof t?ce.grep(e,function(e){return ie.call(t,e)>-1!==n}):De.test(t)?ce.filter(t,e,n):(t=ce.filter(t,e),ce.grep(e,function(e){return ie.call(t,e)>-1!==n&&1===e.nodeType}))}function i(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}function o(e){var t={};return ce.each(e.match(Se)||[],function(e,n){t[n]=!0}),t}function d(e){return e}function u(e){throw e}function _(e,t,n,a){var r;try{e&&ce.isFunction(r=e.promise)?r.call(e).done(t).fail(n):e&&ce.isFunction(r=e.then)?r.call(e,t,n):t.apply(void 0,[e].slice(a))}catch(e){n.apply(void 0,[e])}}function l(){te.removeEventListener("DOMContentLoaded",l),e.removeEventListener("load",l),ce.ready()}function m(){this.expando=ce.expando+m.uid++}function c(e){return"true"===e||"false"!==e&&("null"===e?null:e===+e+""?+e:We.test(e)?JSON.parse(e):e)}function h(e,t,n){var a;if(void 0===n&&1===e.nodeType)if(a="data-"+t.replace(Ae,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(a))){try{n=c(n)}catch(e){}Ee.set(e,t,n)}else n=void 0;return n}function f(e,t,n,a){var r,s=1,i=20,o=a?function(){return a.cur()}:function(){return ce.css(e,t,"")},d=o(),u=n&&n[3]||(ce.cssNumber[t]?"":"px"),_=(ce.cssNumber[t]||"px"!==u&&+d)&&Fe.exec(ce.css(e,t));if(_&&_[3]!==u){u=u||_[3],n=n||[],_=+d||1;do{_/=s=s||".5",ce.style(e,t,_+u)}while(s!==(s=o()/d)&&1!==s&&--i)}return n&&(_=+_||+d||0,r=n[1]?_+(n[1]+1)*n[2]:+n[2],a&&(a.unit=u,a.start=_,a.end=r)),r}function p(e){var t,n=e.ownerDocument,a=e.nodeName,r=Ie[a];return r||(t=n.body.appendChild(n.createElement(a)),r=ce.css(t,"display"),t.parentNode.removeChild(t),"none"===r&&(r="block"),Ie[a]=r,r)}function M(e,t){for(var n,a,r=[],s=0,i=e.length;s-1)r&&r.push(s);else if(u=ce.contains(s.ownerDocument,s),i=y(l.appendChild(s),"script"),u&&L(i),n)for(_=0;s=i[_++];)Ue.test(s.type||"")&&n.push(s);return l}function g(){return!0}function k(){return!1}function D(){try{return te.activeElement}catch(e){}}function v(e,t,n,a,r,s){var i,o;if("object"==typeof t){"string"!=typeof n&&(a=a||n,n=void 0);for(o in t)v(e,o,n,a,t[o],s);return e}if(null==a&&null==r?(r=n,a=n=void 0):null==r&&("string"==typeof n?(r=a,a=void 0):(r=a,a=n,n=void 0)),!1===r)r=k;else if(!r)return e;return 1===s&&(i=r,(r=function(e){return ce().off(e),i.apply(this,arguments)}).guid=i.guid||(i.guid=ce.guid++)),e.each(function(){ce.event.add(this,t,r,a,n)})}function T(e,t){return r(e,"table")&&r(11!==t.nodeType?t:t.firstChild,"tr")?ce(">tbody",e)[0]||e:e}function w(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function b(e){var t=tt.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function S(e,t){var n,a,r,s,i,o,d,u;if(1===t.nodeType){if(Oe.hasData(e)&&(s=Oe.access(e),i=Oe.set(t,s),u=s.events)){delete i.handle,i.events={};for(r in u)for(n=0,a=u[r].length;n1&&"string"==typeof h&&!me.checkClone&&et.test(h))return e.each(function(n){var s=e.eq(n);f&&(t[0]=h.call(this,n,s.html())),H(s,t,a,r)});if(m&&(s=Y(t,e[0].ownerDocument,!1,e,r),i=s.firstChild,1===s.childNodes.length&&(s=i),i||r)){for(d=(o=ce.map(y(s,"script"),w)).length;l=0&&ng.cacheLength&&delete e[t.shift()],e[n+" "]=a}var t=[];return e}function a(e){return e[F]=!0,e}function r(e){var t=j.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function s(e,t){for(var n=e.split("|"),a=n.length;a--;)g.attrHandle[n[a]]=t}function i(e,t){var n=t&&e,a=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(a)return a;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function o(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&&ke(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function d(e){return a(function(t){return t=+t,a(function(n,a){for(var r,s=e([],n.length,t),i=s.length;i--;)n[r=s[i]]&&(n[r]=!(a[r]=n[r]))})})}function u(e){return e&&void 0!==e.getElementsByTagName&&e}function _(){}function l(e){for(var t=0,n=e.length,a="";t1?function(t,n,a){for(var r=e.length;r--;)if(!e[r](t,n,a))return!1;return!0}:e[0]}function h(e,n,a){for(var r=0,s=n.length;r-1&&(a[u]=!(i[u]=l))}}else L=f(L===i?L.splice(p,L.length):L),s?s(null,i,L,d):K.apply(i,L)})}function M(e){for(var t,n,a,r=e.length,s=g.relative[e[0].type],i=s||g.relative[" "],o=s?1:0,d=m(function(e){return e===t},i,!0),u=m(function(e){return Z(t,e)>-1},i,!0),_=[function(e,n,a){var r=!s&&(a||n!==b)||((t=n).nodeType?d(e,n,a):u(e,n,a));return t=null,r}];o1&&c(_),o>1&&l(e.slice(0,o-1).concat({value:" "===e[o-2].type?"*":""})).replace(se,"$1"),n,o0,s=e.length>0,i=function(a,i,o,d,u){var _,l,m,c=0,h="0",p=a&&[],M=[],y=b,L=a||s&&g.find.TAG("*",u),Y=z+=null==y?1:Math.random()||.1,k=L.length;for(u&&(b=i===j||i||u);h!==k&&null!=(_=L[h]);h++){if(s&&_){for(l=0,i||_.ownerDocument===j||(H(_),o=!O);m=e[l++];)if(m(_,i||j,o)){d.push(_);break}u&&(z=Y)}r&&((_=!m&&_)&&c--,a&&p.push(_))}if(c+=h,r&&h!==c){for(l=0;m=n[l++];)m(p,M,i,o);if(a){if(c>0)for(;h--;)p[h]||M[h]||(M[h]=$.call(d));M=f(M)}K.apply(d,M),u&&!a&&M.length>0&&c+n.length>1&&t.uniqueSort(d)}return u&&(z=Y,b=y),p};return r?a(i):i}var L,Y,g,k,D,v,T,w,b,S,x,H,j,P,O,E,W,A,C,F="sizzle"+1*new Date,N=e.document,z=0,R=0,I=n(),J=n(),q=n(),U=function(e,t){return e===t&&(x=!0),0},B={}.hasOwnProperty,G=[],$=G.pop,V=G.push,K=G.push,Q=G.slice,Z=function(e,t){for(var n=0,a=e.length;n+~]|"+ee+")"+ee+"*"),de=new RegExp("="+ee+"*([^\\]'\"]*?)"+ee+"*\\]","g"),ue=new RegExp(ae),_e=new RegExp("^"+te+"$"),le={ID:new RegExp("^#("+te+")"),CLASS:new RegExp("^\\.("+te+")"),TAG:new RegExp("^("+te+"|[*])"),ATTR:new RegExp("^"+ne),PSEUDO:new RegExp("^"+ae),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+ee+"*(even|odd|(([+-]|)(\\d*)n|)"+ee+"*(?:([+-]|)"+ee+"*(\\d+)|))"+ee+"*\\)|)","i"),bool:new RegExp("^(?:"+X+")$","i"),needsContext:new RegExp("^"+ee+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+ee+"*((?:-\\d)?\\d*)"+ee+"*\\)|)(?=[^-]|$)","i")},me=/^(?:input|select|textarea|button)$/i,ce=/^h\d$/i,he=/^[^{]+\{\s*\[native \w/,fe=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,pe=/[+~]/,Me=new RegExp("\\\\([\\da-f]{1,6}"+ee+"?|("+ee+")|.)","ig"),ye=function(e,t,n){var a="0x"+t-65536;return a!==a||n?t:a<0?String.fromCharCode(a+65536):String.fromCharCode(a>>10|55296,1023&a|56320)},Le=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,Ye=function(e,t){return t?"\0"===e?"�":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},ge=function(){H()},ke=m(function(e){return!0===e.disabled&&("form"in e||"label"in e)},{dir:"parentNode",next:"legend"});try{K.apply(G=Q.call(N.childNodes),N.childNodes),G[N.childNodes.length].nodeType}catch(e){K={apply:G.length?function(e,t){V.apply(e,Q.call(t))}:function(e,t){for(var n=e.length,a=0;e[n++]=t[a++];);e.length=n-1}}}Y=t.support={},D=t.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return!!t&&"HTML"!==t.nodeName},H=t.setDocument=function(e){var t,n,a=e?e.ownerDocument||e:N;return a!==j&&9===a.nodeType&&a.documentElement?(j=a,P=j.documentElement,O=!D(j),N!==j&&(n=j.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",ge,!1):n.attachEvent&&n.attachEvent("onunload",ge)),Y.attributes=r(function(e){return e.className="i",!e.getAttribute("className")}),Y.getElementsByTagName=r(function(e){return e.appendChild(j.createComment("")),!e.getElementsByTagName("*").length}),Y.getElementsByClassName=he.test(j.getElementsByClassName),Y.getById=r(function(e){return P.appendChild(e).id=F,!j.getElementsByName||!j.getElementsByName(F).length}),Y.getById?(g.filter.ID=function(e){var t=e.replace(Me,ye);return function(e){return e.getAttribute("id")===t}},g.find.ID=function(e,t){if(void 0!==t.getElementById&&O){var n=t.getElementById(e);return n?[n]:[]}}):(g.filter.ID=function(e){var t=e.replace(Me,ye);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},g.find.ID=function(e,t){if(void 0!==t.getElementById&&O){var n,a,r,s=t.getElementById(e);if(s){if((n=s.getAttributeNode("id"))&&n.value===e)return[s];for(r=t.getElementsByName(e),a=0;s=r[a++];)if((n=s.getAttributeNode("id"))&&n.value===e)return[s]}return[]}}),g.find.TAG=Y.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):Y.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,a=[],r=0,s=t.getElementsByTagName(e);if("*"===e){for(;n=s[r++];)1===n.nodeType&&a.push(n);return a}return s},g.find.CLASS=Y.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&O)return t.getElementsByClassName(e)},W=[],E=[],(Y.qsa=he.test(j.querySelectorAll))&&(r(function(e){P.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&E.push("[*^$]="+ee+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||E.push("\\["+ee+"*(?:value|"+X+")"),e.querySelectorAll("[id~="+F+"-]").length||E.push("~="),e.querySelectorAll(":checked").length||E.push(":checked"),e.querySelectorAll("a#"+F+"+*").length||E.push(".#.+[+~]")}),r(function(e){e.innerHTML="";var t=j.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&E.push("name"+ee+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&E.push(":enabled",":disabled"),P.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&E.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),E.push(",.*:")})),(Y.matchesSelector=he.test(A=P.matches||P.webkitMatchesSelector||P.mozMatchesSelector||P.oMatchesSelector||P.msMatchesSelector))&&r(function(e){Y.disconnectedMatch=A.call(e,"*"),A.call(e,"[s!='']:x"),W.push("!=",ae)}),E=E.length&&new RegExp(E.join("|")),W=W.length&&new RegExp(W.join("|")),t=he.test(P.compareDocumentPosition),C=t||he.test(P.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,a=t&&t.parentNode;return e===a||!(!a||1!==a.nodeType||!(n.contains?n.contains(a):e.compareDocumentPosition&&16&e.compareDocumentPosition(a)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},U=t?function(e,t){if(e===t)return x=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!Y.sortDetached&&t.compareDocumentPosition(e)===n?e===j||e.ownerDocument===N&&C(N,e)?-1:t===j||t.ownerDocument===N&&C(N,t)?1:S?Z(S,e)-Z(S,t):0:4&n?-1:1)}:function(e,t){if(e===t)return x=!0,0;var n,a=0,r=e.parentNode,s=t.parentNode,o=[e],d=[t];if(!r||!s)return e===j?-1:t===j?1:r?-1:s?1:S?Z(S,e)-Z(S,t):0;if(r===s)return i(e,t);for(n=e;n=n.parentNode;)o.unshift(n);for(n=t;n=n.parentNode;)d.unshift(n);for(;o[a]===d[a];)a++;return a?i(o[a],d[a]):o[a]===N?-1:d[a]===N?1:0},j):j},t.matches=function(e,n){return t(e,null,null,n)},t.matchesSelector=function(e,n){if((e.ownerDocument||e)!==j&&H(e),n=n.replace(de,"='$1']"),Y.matchesSelector&&O&&!q[n+" "]&&(!W||!W.test(n))&&(!E||!E.test(n)))try{var a=A.call(e,n);if(a||Y.disconnectedMatch||e.document&&11!==e.document.nodeType)return a}catch(e){}return t(n,j,null,[e]).length>0},t.contains=function(e,t){return(e.ownerDocument||e)!==j&&H(e),C(e,t)},t.attr=function(e,t){(e.ownerDocument||e)!==j&&H(e);var n=g.attrHandle[t.toLowerCase()],a=n&&B.call(g.attrHandle,t.toLowerCase())?n(e,t,!O):void 0;return void 0!==a?a:Y.attributes||!O?e.getAttribute(t):(a=e.getAttributeNode(t))&&a.specified?a.value:null},t.escape=function(e){return(e+"").replace(Le,Ye)},t.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},t.uniqueSort=function(e){var t,n=[],a=0,r=0;if(x=!Y.detectDuplicates,S=!Y.sortStable&&e.slice(0),e.sort(U),x){for(;t=e[r++];)t===e[r]&&(a=n.push(r));for(;a--;)e.splice(n[a],1)}return S=null,e},k=t.getText=function(e){var t,n="",a=0,r=e.nodeType;if(r){if(1===r||9===r||11===r){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=k(e)}else if(3===r||4===r)return e.nodeValue}else for(;t=e[a++];)n+=k(t);return n},(g=t.selectors={cacheLength:50,createPseudo:a,match:le,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(Me,ye),e[3]=(e[3]||e[4]||e[5]||"").replace(Me,ye),"~="===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]||t.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]&&t.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return le.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&ue.test(n)&&(t=v(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(Me,ye).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=I[e+" "];return t||(t=new RegExp("(^|"+ee+")"+e+"("+ee+"|$)"))&&I(e,function(e){return t.test("string"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(e,n,a){return function(r){var s=t.attr(r,e);return null==s?"!="===n:!n||(s+="","="===n?s===a:"!="===n?s!==a:"^="===n?a&&0===s.indexOf(a):"*="===n?a&&s.indexOf(a)>-1:"$="===n?a&&s.slice(-a.length)===a:"~="===n?(" "+s.replace(re," ")+" ").indexOf(a)>-1:"|="===n&&(s===a||s.slice(0,a.length+1)===a+"-"))}},CHILD:function(e,t,n,a,r){var s="nth"!==e.slice(0,3),i="last"!==e.slice(-4),o="of-type"===t;return 1===a&&0===r?function(e){return!!e.parentNode}:function(t,n,d){var u,_,l,m,c,h,f=s!==i?"nextSibling":"previousSibling",p=t.parentNode,M=o&&t.nodeName.toLowerCase(),y=!d&&!o,L=!1;if(p){if(s){for(;f;){for(m=t;m=m[f];)if(o?m.nodeName.toLowerCase()===M:1===m.nodeType)return!1;h=f="only"===e&&!h&&"nextSibling"}return!0}if(h=[i?p.firstChild:p.lastChild],i&&y){for(L=(c=(u=(_=(l=(m=p)[F]||(m[F]={}))[m.uniqueID]||(l[m.uniqueID]={}))[e]||[])[0]===z&&u[1])&&u[2],m=c&&p.childNodes[c];m=++c&&m&&m[f]||(L=c=0)||h.pop();)if(1===m.nodeType&&++L&&m===t){_[e]=[z,c,L];break}}else if(y&&(L=c=(u=(_=(l=(m=t)[F]||(m[F]={}))[m.uniqueID]||(l[m.uniqueID]={}))[e]||[])[0]===z&&u[1]),!1===L)for(;(m=++c&&m&&m[f]||(L=c=0)||h.pop())&&((o?m.nodeName.toLowerCase()!==M:1!==m.nodeType)||!++L||(y&&((_=(l=m[F]||(m[F]={}))[m.uniqueID]||(l[m.uniqueID]={}))[e]=[z,L]),m!==t)););return(L-=r)===a||L%a==0&&L/a>=0}}},PSEUDO:function(e,n){var r,s=g.pseudos[e]||g.setFilters[e.toLowerCase()]||t.error("unsupported pseudo: "+e);return s[F]?s(n):s.length>1?(r=[e,e,"",n],g.setFilters.hasOwnProperty(e.toLowerCase())?a(function(e,t){for(var a,r=s(e,n),i=r.length;i--;)e[a=Z(e,r[i])]=!(t[a]=r[i])}):function(e){return s(e,0,r)}):s}},pseudos:{not:a(function(e){var t=[],n=[],r=T(e.replace(se,"$1"));return r[F]?a(function(e,t,n,a){for(var s,i=r(e,null,a,[]),o=e.length;o--;)(s=i[o])&&(e[o]=!(t[o]=s))}):function(e,a,s){return t[0]=e,r(t,null,s,n),t[0]=null,!n.pop()}}),has:a(function(e){return function(n){return t(e,n).length>0}}),contains:a(function(e){return e=e.replace(Me,ye),function(t){return(t.textContent||t.innerText||k(t)).indexOf(e)>-1}}),lang:a(function(e){return _e.test(e||"")||t.error("unsupported lang: "+e),e=e.replace(Me,ye).toLowerCase(),function(t){var n;do{if(n=O?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===P},focus:function(e){return e===j.activeElement&&(!j.hasFocus||j.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:o(!1),disabled:o(!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!g.pseudos.empty(e)},header:function(e){return ce.test(e.nodeName)},input:function(e){return me.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:d(function(){return[0]}),last:d(function(e,t){return[t-1]}),eq:d(function(e,t,n){return[n<0?n+t:n]}),even:d(function(e,t){for(var n=0;n=0;)e.push(a);return e}),gt:d(function(e,t,n){for(var a=n<0?n+t:n;++a2&&"ID"===(i=s[0]).type&&9===t.nodeType&&O&&g.relative[s[1].type]){if(!(t=(g.find.ID(i.matches[0].replace(Me,ye),t)||[])[0]))return n;_&&(t=t.parentNode),e=e.slice(s.shift().value.length)}for(r=le.needsContext.test(e)?0:s.length;r--&&(i=s[r],!g.relative[o=i.type]);)if((d=g.find[o])&&(a=d(i.matches[0].replace(Me,ye),pe.test(s[0].type)&&u(t.parentNode)||t))){if(s.splice(r,1),!(e=a.length&&l(s)))return K.apply(n,a),n;break}}return(_||T(e,m))(a,t,!O,n,!t||pe.test(e)&&u(t.parentNode)||t),n},Y.sortStable=F.split("").sort(U).join("")===F,Y.detectDuplicates=!!x,H(),Y.sortDetached=r(function(e){return 1&e.compareDocumentPosition(j.createElement("fieldset"))}),r(function(e){return e.innerHTML="","#"===e.firstChild.getAttribute("href")})||s("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),Y.attributes&&r(function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||s("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),r(function(e){return null==e.getAttribute("disabled")})||s(X,function(e,t,n){var a;if(!n)return!0===e[t]?t.toLowerCase():(a=e.getAttributeNode(t))&&a.specified?a.value:null}),t}(e);ce.find=ye,ce.expr=ye.selectors,ce.expr[":"]=ce.expr.pseudos,ce.uniqueSort=ce.unique=ye.uniqueSort,ce.text=ye.getText,ce.isXMLDoc=ye.isXML,ce.contains=ye.contains,ce.escapeSelector=ye.escape;var Le=function(e,t,n){for(var a=[],r=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(r&&ce(e).is(n))break;a.push(e)}return a},Ye=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},ge=ce.expr.match.needsContext,ke=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i,De=/^.[^:#\[\.,]*$/;ce.filter=function(e,t,n){var a=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===a.nodeType?ce.find.matchesSelector(a,e)?[a]:[]:ce.find.matches(e,ce.grep(t,function(e){return 1===e.nodeType}))},ce.fn.extend({find:function(e){var t,n,a=this.length,r=this;if("string"!=typeof e)return this.pushStack(ce(e).filter(function(){for(t=0;t1?ce.uniqueSort(n):n},filter:function(e){return this.pushStack(s(this,e||[],!1))},not:function(e){return this.pushStack(s(this,e||[],!0))},is:function(e){return!!s(this,"string"==typeof e&&ge.test(e)?ce(e):e||[],!1).length}});var ve,Te=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(ce.fn.init=function(e,t,n){var a,r;if(!e)return this;if(n=n||ve,"string"==typeof e){if(!(a="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:Te.exec(e))||!a[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(a[1]){if(t=t instanceof ce?t[0]:t,ce.merge(this,ce.parseHTML(a[1],t&&t.nodeType?t.ownerDocument||t:te,!0)),ke.test(a[1])&&ce.isPlainObject(t))for(a in t)ce.isFunction(this[a])?this[a](t[a]):this.attr(a,t[a]);return this}return(r=te.getElementById(a[2]))&&(this[0]=r,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):ce.isFunction(e)?void 0!==n.ready?n.ready(e):e(ce):ce.makeArray(e,this)}).prototype=ce.fn,ve=ce(te);var we=/^(?:parents|prev(?:Until|All))/,be={children:!0,contents:!0,next:!0,prev:!0};ce.fn.extend({has:function(e){var t=ce(e,this),n=t.length;return this.filter(function(){for(var e=0;e-1:1===n.nodeType&&ce.find.matchesSelector(n,e))){s.push(n);break}return this.pushStack(s.length>1?ce.uniqueSort(s):s)},index:function(e){return e?"string"==typeof e?ie.call(ce(e),this[0]):ie.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(ce.uniqueSort(ce.merge(this.get(),ce(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),ce.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return Le(e,"parentNode")},parentsUntil:function(e,t,n){return Le(e,"parentNode",n)},next:function(e){return i(e,"nextSibling")},prev:function(e){return i(e,"previousSibling")},nextAll:function(e){return Le(e,"nextSibling")},prevAll:function(e){return Le(e,"previousSibling")},nextUntil:function(e,t,n){return Le(e,"nextSibling",n)},prevUntil:function(e,t,n){return Le(e,"previousSibling",n)},siblings:function(e){return Ye((e.parentNode||{}).firstChild,e)},children:function(e){return Ye(e.firstChild)},contents:function(e){return r(e,"iframe")?e.contentDocument:(r(e,"template")&&(e=e.content||e),ce.merge([],e.childNodes))}},function(e,t){ce.fn[e]=function(n,a){var r=ce.map(this,t,n);return"Until"!==e.slice(-5)&&(a=n),a&&"string"==typeof a&&(r=ce.filter(a,r)),this.length>1&&(be[e]||ce.uniqueSort(r),we.test(e)&&r.reverse()),this.pushStack(r)}});var Se=/[^\x20\t\r\n\f]+/g;ce.Callbacks=function(e){e="string"==typeof e?o(e):ce.extend({},e);var t,n,a,r,s=[],i=[],d=-1,u=function(){for(r=r||e.once,a=t=!0;i.length;d=-1)for(n=i.shift();++d-1;)s.splice(n,1),n<=d&&d--}),this},has:function(e){return e?ce.inArray(e,s)>-1:s.length>0},empty:function(){return s&&(s=[]),this},disable:function(){return r=i=[],s=n="",this},disabled:function(){return!s},lock:function(){return r=i=[],n||t||(s=n=""),this},locked:function(){return!!r},fireWith:function(e,n){return r||(n=[e,(n=n||[]).slice?n.slice():n],i.push(n),t||u()),this},fire:function(){return _.fireWith(this,arguments),this},fired:function(){return!!a}};return _},ce.extend({Deferred:function(t){var n=[["notify","progress",ce.Callbacks("memory"),ce.Callbacks("memory"),2],["resolve","done",ce.Callbacks("once memory"),ce.Callbacks("once memory"),0,"resolved"],["reject","fail",ce.Callbacks("once memory"),ce.Callbacks("once memory"),1,"rejected"]],a="pending",r={state:function(){return a},always:function(){return s.done(arguments).fail(arguments),this},catch:function(e){return r.then(null,e)},pipe:function(){var e=arguments;return ce.Deferred(function(t){ce.each(n,function(n,a){var r=ce.isFunction(e[a[4]])&&e[a[4]];s[a[1]](function(){var e=r&&r.apply(this,arguments);e&&ce.isFunction(e.promise)?e.promise().progress(t.notify).done(t.resolve).fail(t.reject):t[a[0]+"With"](this,r?[e]:arguments)})}),e=null}).promise()},then:function(t,a,r){function s(t,n,a,r){return function(){var o=this,_=arguments,l=function(){var e,l;if(!(t=i&&(a!==u&&(o=void 0,_=[e]),n.rejectWith(o,_))}};t?m():(ce.Deferred.getStackHook&&(m.stackTrace=ce.Deferred.getStackHook()),e.setTimeout(m))}}var i=0;return ce.Deferred(function(e){n[0][3].add(s(0,e,ce.isFunction(r)?r:d,e.notifyWith)),n[1][3].add(s(0,e,ce.isFunction(t)?t:d)),n[2][3].add(s(0,e,ce.isFunction(a)?a:u))}).promise()},promise:function(e){return null!=e?ce.extend(e,r):r}},s={};return ce.each(n,function(e,t){var i=t[2],o=t[5];r[t[1]]=i.add,o&&i.add(function(){a=o},n[3-e][2].disable,n[0][2].lock),i.add(t[3].fire),s[t[0]]=function(){return s[t[0]+"With"](this===s?void 0:this,arguments),this},s[t[0]+"With"]=i.fireWith}),r.promise(s),t&&t.call(s,s),s},when:function(e){var t=arguments.length,n=t,a=Array(n),r=ae.call(arguments),s=ce.Deferred(),i=function(e){return function(n){a[e]=this,r[e]=arguments.length>1?ae.call(arguments):n,--t||s.resolveWith(a,r)}};if(t<=1&&(_(e,s.done(i(n)).resolve,s.reject,!t),"pending"===s.state()||ce.isFunction(r[n]&&r[n].then)))return s.then();for(;n--;)_(r[n],i(n),s.reject);return s.promise()}});var xe=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;ce.Deferred.exceptionHook=function(t,n){e.console&&e.console.warn&&t&&xe.test(t.name)&&e.console.warn("jQuery.Deferred exception: "+t.message,t.stack,n)},ce.readyException=function(t){e.setTimeout(function(){throw t})};var He=ce.Deferred();ce.fn.ready=function(e){return He.then(e).catch(function(e){ce.readyException(e)}),this},ce.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--ce.readyWait:ce.isReady)||(ce.isReady=!0,!0!==e&&--ce.readyWait>0||He.resolveWith(te,[ce]))}}),ce.ready.then=He.then,"complete"===te.readyState||"loading"!==te.readyState&&!te.documentElement.doScroll?e.setTimeout(ce.ready):(te.addEventListener("DOMContentLoaded",l),e.addEventListener("load",l));var je=function(e,t,n,a,r,s,i){var o=0,d=e.length,u=null==n;if("object"===ce.type(n)){r=!0;for(o in n)je(e,t,o,n[o],!0,s,i)}else if(void 0!==a&&(r=!0,ce.isFunction(a)||(i=!0),u&&(i?(t.call(e,a),t=null):(u=t,t=function(e,t,n){return u.call(ce(e),n)})),t))for(;o1,null,!0)},removeData:function(e){return this.each(function(){Ee.remove(this,e)})}}),ce.extend({queue:function(e,t,n){var a;if(e)return t=(t||"fx")+"queue",a=Oe.get(e,t),n&&(!a||Array.isArray(n)?a=Oe.access(e,t,ce.makeArray(n)):a.push(n)),a||[]},dequeue:function(e,t){t=t||"fx";var n=ce.queue(e,t),a=n.length,r=n.shift(),s=ce._queueHooks(e,t);"inprogress"===r&&(r=n.shift(),a--),r&&("fx"===t&&n.unshift("inprogress"),delete s.stop,r.call(e,function(){ce.dequeue(e,t)},s)),!a&&s&&s.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return Oe.get(e,n)||Oe.access(e,n,{empty:ce.Callbacks("once memory").add(function(){Oe.remove(e,[t+"queue",n])})})}}),ce.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,Ue=/^$|\/(?:java|ecma)script/i,Be={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};Be.optgroup=Be.option,Be.tbody=Be.tfoot=Be.colgroup=Be.caption=Be.thead,Be.th=Be.td;var Ge=/<|&#?\w+;/;!function(){var e=te.createDocumentFragment().appendChild(te.createElement("div")),t=te.createElement("input");t.setAttribute("type","radio"),t.setAttribute("checked","checked"),t.setAttribute("name","t"),e.appendChild(t),me.checkClone=e.cloneNode(!0).cloneNode(!0).lastChild.checked,e.innerHTML="",me.noCloneChecked=!!e.cloneNode(!0).lastChild.defaultValue}();var $e=te.documentElement,Ve=/^key/,Ke=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Qe=/^([^.]*)(?:\.(.+)|)/;ce.event={global:{},add:function(e,t,n,a,r){var s,i,o,d,u,_,l,m,c,h,f,p=Oe.get(e);if(p)for(n.handler&&(n=(s=n).handler,r=s.selector),r&&ce.find.matchesSelector($e,r),n.guid||(n.guid=ce.guid++),(d=p.events)||(d=p.events={}),(i=p.handle)||(i=p.handle=function(t){return void 0!==ce&&ce.event.triggered!==t.type?ce.event.dispatch.apply(e,arguments):void 0}),u=(t=(t||"").match(Se)||[""]).length;u--;)c=f=(o=Qe.exec(t[u])||[])[1],h=(o[2]||"").split(".").sort(),c&&(l=ce.event.special[c]||{},c=(r?l.delegateType:l.bindType)||c,l=ce.event.special[c]||{},_=ce.extend({type:c,origType:f,data:a,handler:n,guid:n.guid,selector:r,needsContext:r&&ce.expr.match.needsContext.test(r),namespace:h.join(".")},s),(m=d[c])||((m=d[c]=[]).delegateCount=0,l.setup&&!1!==l.setup.call(e,a,h,i)||e.addEventListener&&e.addEventListener(c,i)),l.add&&(l.add.call(e,_),_.handler.guid||(_.handler.guid=n.guid)),r?m.splice(m.delegateCount++,0,_):m.push(_),ce.event.global[c]=!0)},remove:function(e,t,n,a,r){var s,i,o,d,u,_,l,m,c,h,f,p=Oe.hasData(e)&&Oe.get(e);if(p&&(d=p.events)){for(u=(t=(t||"").match(Se)||[""]).length;u--;)if(o=Qe.exec(t[u])||[],c=f=o[1],h=(o[2]||"").split(".").sort(),c){for(l=ce.event.special[c]||{},m=d[c=(a?l.delegateType:l.bindType)||c]||[],o=o[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=s=m.length;s--;)_=m[s],!r&&f!==_.origType||n&&n.guid!==_.guid||o&&!o.test(_.namespace)||a&&a!==_.selector&&("**"!==a||!_.selector)||(m.splice(s,1),_.selector&&m.delegateCount--,l.remove&&l.remove.call(e,_));i&&!m.length&&(l.teardown&&!1!==l.teardown.call(e,h,p.handle)||ce.removeEvent(e,c,p.handle),delete d[c])}else for(c in d)ce.event.remove(e,c+t[u],n,a,!0);ce.isEmptyObject(d)&&Oe.remove(e,"handle events")}},dispatch:function(e){var t,n,a,r,s,i,o=ce.event.fix(e),d=new Array(arguments.length),u=(Oe.get(this,"events")||{})[o.type]||[],_=ce.event.special[o.type]||{};for(d[0]=o,t=1;t=1))for(;u!==this;u=u.parentNode||this)if(1===u.nodeType&&("click"!==e.type||!0!==u.disabled)){for(s=[],i={},n=0;n-1:ce.find(r,this,null,[u]).length),i[r]&&s.push(a);s.length&&o.push({elem:u,handlers:s})}return u=this,d\x20\t\r\n\f]*)[^>]*)\/>/gi,Xe=/\s*$/g;ce.extend({htmlPrefilter:function(e){return e.replace(Ze,"<$1>")},clone:function(e,t,n){var a,r,s,i,o=e.cloneNode(!0),d=ce.contains(e.ownerDocument,e);if(!(me.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||ce.isXMLDoc(e)))for(i=y(o),a=0,r=(s=y(e)).length;a0&&L(i,!d&&y(e,"script")),o},cleanData:function(e){for(var t,n,a,r=ce.event.special,s=0;void 0!==(n=e[s]);s++)if(Pe(n)){if(t=n[Oe.expando]){if(t.events)for(a in t.events)r[a]?ce.event.remove(n,a):ce.removeEvent(n,a,t.handle);n[Oe.expando]=void 0}n[Ee.expando]&&(n[Ee.expando]=void 0)}}}),ce.fn.extend({detach:function(e){return j(this,e,!0)},remove:function(e){return j(this,e)},text:function(e){return je(this,function(e){return void 0===e?ce.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 H(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||T(this,e).appendChild(e)})},prepend:function(){return H(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=T(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return H(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return H(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&&(ce.cleanData(y(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return ce.clone(this,e,t)})},html:function(e){return je(this,function(e){var t=this[0]||{},n=0,a=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!Xe.test(e)&&!Be[(qe.exec(e)||["",""])[1].toLowerCase()]){e=ce.htmlPrefilter(e);try{for(;n1)}}),ce.Tween=N,N.prototype={constructor:N,init:function(e,t,n,a,r,s){this.elem=e,this.prop=n,this.easing=r||ce.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=a,this.unit=s||(ce.cssNumber[n]?"":"px")},cur:function(){var e=N.propHooks[this.prop];return e&&e.get?e.get(this):N.propHooks._default.get(this)},run:function(e){var t,n=N.propHooks[this.prop];return this.options.duration?this.pos=t=ce.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):N.propHooks._default.set(this),this}},N.prototype.init.prototype=N.prototype,N.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=ce.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){ce.fx.step[e.prop]?ce.fx.step[e.prop](e):1!==e.elem.nodeType||null==e.elem.style[ce.cssProps[e.prop]]&&!ce.cssHooks[e.prop]?e.elem[e.prop]=e.now:ce.style(e.elem,e.prop,e.now+e.unit)}}},N.propHooks.scrollTop=N.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},ce.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},ce.fx=N.prototype.init,ce.fx.step={};var mt,ct,ht=/^(?:toggle|show|hide)$/,ft=/queueHooks$/;ce.Animation=ce.extend(U,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return f(n.elem,e,Fe.exec(t),n),n}]},tweener:function(e,t){ce.isFunction(e)?(t=e,e=["*"]):e=e.match(Se);for(var n,a=0,r=e.length;a1)},removeAttr:function(e){return this.each(function(){ce.removeAttr(this,e)})}}),ce.extend({attr:function(e,t,n){var a,r,s=e.nodeType;if(3!==s&&8!==s&&2!==s)return void 0===e.getAttribute?ce.prop(e,t,n):(1===s&&ce.isXMLDoc(e)||(r=ce.attrHooks[t.toLowerCase()]||(ce.expr.match.bool.test(t)?pt:void 0)),void 0!==n?null===n?void ce.removeAttr(e,t):r&&"set"in r&&void 0!==(a=r.set(e,n,t))?a:(e.setAttribute(t,n+""),n):r&&"get"in r&&null!==(a=r.get(e,t))?a:null==(a=ce.find.attr(e,t))?void 0:a)},attrHooks:{type:{set:function(e,t){if(!me.radioValue&&"radio"===t&&r(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,a=0,r=t&&t.match(Se);if(r&&1===e.nodeType)for(;n=r[a++];)e.removeAttribute(n)}}),pt={set:function(e,t,n){return!1===t?ce.removeAttr(e,n):e.setAttribute(n,n),n}},ce.each(ce.expr.match.bool.source.match(/\w+/g),function(e,t){var n=Mt[t]||ce.find.attr;Mt[t]=function(e,t,a){var r,s,i=t.toLowerCase();return a||(s=Mt[i],Mt[i]=r,r=null!=n(e,t,a)?i:null,Mt[i]=s),r}});var yt=/^(?:input|select|textarea|button)$/i,Lt=/^(?:a|area)$/i;ce.fn.extend({prop:function(e,t){return je(this,ce.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[ce.propFix[e]||e]})}}),ce.extend({prop:function(e,t,n){var a,r,s=e.nodeType;if(3!==s&&8!==s&&2!==s)return 1===s&&ce.isXMLDoc(e)||(t=ce.propFix[t]||t,r=ce.propHooks[t]),void 0!==n?r&&"set"in r&&void 0!==(a=r.set(e,n,t))?a:e[t]=n:r&&"get"in r&&null!==(a=r.get(e,t))?a:e[t]},propHooks:{tabIndex:{get:function(e){var t=ce.find.attr(e,"tabindex");return t?parseInt(t,10):yt.test(e.nodeName)||Lt.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),me.optSelected||(ce.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)}}),ce.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){ce.propFix[this.toLowerCase()]=this}),ce.fn.extend({addClass:function(e){var t,n,a,r,s,i,o,d=0;if(ce.isFunction(e))return this.each(function(t){ce(this).addClass(e.call(this,t,G(this)))});if("string"==typeof e&&e)for(t=e.match(Se)||[];n=this[d++];)if(r=G(n),a=1===n.nodeType&&" "+B(r)+" "){for(i=0;s=t[i++];)a.indexOf(" "+s+" ")<0&&(a+=s+" ");r!==(o=B(a))&&n.setAttribute("class",o)}return this},removeClass:function(e){var t,n,a,r,s,i,o,d=0;if(ce.isFunction(e))return this.each(function(t){ce(this).removeClass(e.call(this,t,G(this)))});if(!arguments.length)return this.attr("class","");if("string"==typeof e&&e)for(t=e.match(Se)||[];n=this[d++];)if(r=G(n),a=1===n.nodeType&&" "+B(r)+" "){for(i=0;s=t[i++];)for(;a.indexOf(" "+s+" ")>-1;)a=a.replace(" "+s+" "," ");r!==(o=B(a))&&n.setAttribute("class",o)}return this},toggleClass:function(e,t){var n=typeof e;return"boolean"==typeof t&&"string"===n?t?this.addClass(e):this.removeClass(e):ce.isFunction(e)?this.each(function(n){ce(this).toggleClass(e.call(this,n,G(this),t),t)}):this.each(function(){var t,a,r,s;if("string"===n)for(a=0,r=ce(this),s=e.match(Se)||[];t=s[a++];)r.hasClass(t)?r.removeClass(t):r.addClass(t);else void 0!==e&&"boolean"!==n||((t=G(this))&&Oe.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":Oe.get(this,"__className__")||""))})},hasClass:function(e){var t,n,a=0;for(t=" "+e+" ";n=this[a++];)if(1===n.nodeType&&(" "+B(G(n))+" ").indexOf(t)>-1)return!0;return!1}});var Yt=/\r/g;ce.fn.extend({val:function(e){var t,n,a,r=this[0];{if(arguments.length)return a=ce.isFunction(e),this.each(function(n){var r;1===this.nodeType&&(null==(r=a?e.call(this,n,ce(this).val()):e)?r="":"number"==typeof r?r+="":Array.isArray(r)&&(r=ce.map(r,function(e){return null==e?"":e+""})),(t=ce.valHooks[this.type]||ce.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,r,"value")||(this.value=r))});if(r)return(t=ce.valHooks[r.type]||ce.valHooks[r.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(r,"value"))?n:"string"==typeof(n=r.value)?n.replace(Yt,""):null==n?"":n}}}),ce.extend({valHooks:{option:{get:function(e){var t=ce.find.attr(e,"value");return null!=t?t:B(ce.text(e))}},select:{get:function(e){var t,n,a,s=e.options,i=e.selectedIndex,o="select-one"===e.type,d=o?null:[],u=o?i+1:s.length;for(a=i<0?u:o?i:0;a-1)&&(n=!0);return n||(e.selectedIndex=-1),s}}}}),ce.each(["radio","checkbox"],function(){ce.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=ce.inArray(ce(e).val(),t)>-1}},me.checkOn||(ce.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var gt=/^(?:focusinfocus|focusoutblur)$/;ce.extend(ce.event,{trigger:function(t,n,a,r){var s,i,o,d,u,_,l,m=[a||te],c=ue.call(t,"type")?t.type:t,h=ue.call(t,"namespace")?t.namespace.split("."):[];if(i=o=a=a||te,3!==a.nodeType&&8!==a.nodeType&&!gt.test(c+ce.event.triggered)&&(c.indexOf(".")>-1&&(c=(h=c.split(".")).shift(),h.sort()),u=c.indexOf(":")<0&&"on"+c,t=t[ce.expando]?t:new ce.Event(c,"object"==typeof t&&t),t.isTrigger=r?2:3,t.namespace=h.join("."),t.rnamespace=t.namespace?new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=a),n=null==n?[t]:ce.makeArray(n,[t]),l=ce.event.special[c]||{},r||!l.trigger||!1!==l.trigger.apply(a,n))){if(!r&&!l.noBubble&&!ce.isWindow(a)){for(d=l.delegateType||c,gt.test(d+c)||(i=i.parentNode);i;i=i.parentNode)m.push(i),o=i;o===(a.ownerDocument||te)&&m.push(o.defaultView||o.parentWindow||e)}for(s=0;(i=m[s++])&&!t.isPropagationStopped();)t.type=s>1?d:l.bindType||c,(_=(Oe.get(i,"events")||{})[t.type]&&Oe.get(i,"handle"))&&_.apply(i,n),(_=u&&i[u])&&_.apply&&Pe(i)&&(t.result=_.apply(i,n),!1===t.result&&t.preventDefault());return t.type=c,r||t.isDefaultPrevented()||l._default&&!1!==l._default.apply(m.pop(),n)||!Pe(a)||u&&ce.isFunction(a[c])&&!ce.isWindow(a)&&((o=a[u])&&(a[u]=null),ce.event.triggered=c,a[c](),ce.event.triggered=void 0,o&&(a[u]=o)),t.result}},simulate:function(e,t,n){var a=ce.extend(new ce.Event,n,{type:e,isSimulated:!0});ce.event.trigger(a,null,t)}}),ce.fn.extend({trigger:function(e,t){return this.each(function(){ce.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return ce.event.trigger(e,t,n,!0)}}),ce.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,t){ce.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),ce.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),me.focusin="onfocusin"in e,me.focusin||ce.each({focus:"focusin",blur:"focusout"},function(e,t){var n=function(e){ce.event.simulate(t,e.target,ce.event.fix(e))};ce.event.special[t]={setup:function(){var a=this.ownerDocument||this,r=Oe.access(a,t);r||a.addEventListener(e,n,!0),Oe.access(a,t,(r||0)+1)},teardown:function(){var a=this.ownerDocument||this,r=Oe.access(a,t)-1;r?Oe.access(a,t,r):(a.removeEventListener(e,n,!0),Oe.remove(a,t))}}});var kt=e.location,Dt=ce.now(),vt=/\?/;ce.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||ce.error("Invalid XML: "+t),n};var Tt=/\[\]$/,wt=/\r?\n/g,bt=/^(?:submit|button|image|reset|file)$/i,St=/^(?:input|select|textarea|keygen)/i;ce.param=function(e,t){var n,a=[],r=function(e,t){var n=ce.isFunction(t)?t():t;a[a.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(Array.isArray(e)||e.jquery&&!ce.isPlainObject(e))ce.each(e,function(){r(this.name,this.value)});else for(n in e)$(n,e[n],t,r);return a.join("&")},ce.fn.extend({serialize:function(){return ce.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=ce.prop(this,"elements");return e?ce.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!ce(this).is(":disabled")&&St.test(this.nodeName)&&!bt.test(e)&&(this.checked||!Je.test(e))}).map(function(e,t){var n=ce(this).val();return null==n?null:Array.isArray(n)?ce.map(n,function(e){return{name:t.name,value:e.replace(wt,"\r\n")}}):{name:t.name,value:n.replace(wt,"\r\n")}}).get()}});var xt=/%20/g,Ht=/#.*$/,jt=/([?&])_=[^&]*/,Pt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Ot=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Et=/^(?:GET|HEAD)$/,Wt=/^\/\//,At={},Ct={},Ft="*/".concat("*"),Nt=te.createElement("a");Nt.href=kt.href,ce.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:kt.href,type:"GET",isLocal:Ot.test(kt.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Ft,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":ce.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Q(Q(e,ce.ajaxSettings),t):Q(ce.ajaxSettings,e)},ajaxPrefilter:V(At),ajaxTransport:V(Ct),ajax:function(t,n){function a(t,n,a,o){var u,m,c,Y,g,k=n;_||(_=!0,d&&e.clearTimeout(d),r=void 0,i=o||"",D.readyState=t>0?4:0,u=t>=200&&t<300||304===t,a&&(Y=Z(h,D,a)),Y=X(h,Y,D,u),u?(h.ifModified&&((g=D.getResponseHeader("Last-Modified"))&&(ce.lastModified[s]=g),(g=D.getResponseHeader("etag"))&&(ce.etag[s]=g)),204===t||"HEAD"===h.type?k="nocontent":304===t?k="notmodified":(k=Y.state,m=Y.data,u=!(c=Y.error))):(c=k,!t&&k||(k="error",t<0&&(t=0))),D.status=t,D.statusText=(n||k)+"",u?M.resolveWith(f,[m,k,D]):M.rejectWith(f,[D,k,c]),D.statusCode(L),L=void 0,l&&p.trigger(u?"ajaxSuccess":"ajaxError",[D,h,u?m:c]),y.fireWith(f,[D,k]),l&&(p.trigger("ajaxComplete",[D,h]),--ce.active||ce.event.trigger("ajaxStop")))}"object"==typeof t&&(n=t,t=void 0),n=n||{};var r,s,i,o,d,u,_,l,m,c,h=ce.ajaxSetup({},n),f=h.context||h,p=h.context&&(f.nodeType||f.jquery)?ce(f):ce.event,M=ce.Deferred(),y=ce.Callbacks("once memory"),L=h.statusCode||{},Y={},g={},k="canceled",D={readyState:0,getResponseHeader:function(e){var t;if(_){if(!o)for(o={};t=Pt.exec(i);)o[t[1].toLowerCase()]=t[2];t=o[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return _?i:null},setRequestHeader:function(e,t){return null==_&&(e=g[e.toLowerCase()]=g[e.toLowerCase()]||e,Y[e]=t),this},overrideMimeType:function(e){return null==_&&(h.mimeType=e),this},statusCode:function(e){var t;if(e)if(_)D.always(e[D.status]);else for(t in e)L[t]=[L[t],e[t]];return this},abort:function(e){var t=e||k;return r&&r.abort(t),a(0,t),this}};if(M.promise(D),h.url=((t||h.url||kt.href)+"").replace(Wt,kt.protocol+"//"),h.type=n.method||n.type||h.method||h.type,h.dataTypes=(h.dataType||"*").toLowerCase().match(Se)||[""],null==h.crossDomain){u=te.createElement("a");try{u.href=h.url,u.href=u.href,h.crossDomain=Nt.protocol+"//"+Nt.host!=u.protocol+"//"+u.host}catch(e){h.crossDomain=!0}}if(h.data&&h.processData&&"string"!=typeof h.data&&(h.data=ce.param(h.data,h.traditional)),K(At,h,n,D),_)return D;(l=ce.event&&h.global)&&0==ce.active++&&ce.event.trigger("ajaxStart"),h.type=h.type.toUpperCase(),h.hasContent=!Et.test(h.type),s=h.url.replace(Ht,""),h.hasContent?h.data&&h.processData&&0===(h.contentType||"").indexOf("application/x-www-form-urlencoded")&&(h.data=h.data.replace(xt,"+")):(c=h.url.slice(s.length),h.data&&(s+=(vt.test(s)?"&":"?")+h.data,delete h.data),!1===h.cache&&(s=s.replace(jt,"$1"),c=(vt.test(s)?"&":"?")+"_="+Dt+++c),h.url=s+c),h.ifModified&&(ce.lastModified[s]&&D.setRequestHeader("If-Modified-Since",ce.lastModified[s]),ce.etag[s]&&D.setRequestHeader("If-None-Match",ce.etag[s])),(h.data&&h.hasContent&&!1!==h.contentType||n.contentType)&&D.setRequestHeader("Content-Type",h.contentType),D.setRequestHeader("Accept",h.dataTypes[0]&&h.accepts[h.dataTypes[0]]?h.accepts[h.dataTypes[0]]+("*"!==h.dataTypes[0]?", "+Ft+"; q=0.01":""):h.accepts["*"]);for(m in h.headers)D.setRequestHeader(m,h.headers[m]);if(h.beforeSend&&(!1===h.beforeSend.call(f,D,h)||_))return D.abort();if(k="abort",y.add(h.complete),D.done(h.success),D.fail(h.error),r=K(Ct,h,n,D)){if(D.readyState=1,l&&p.trigger("ajaxSend",[D,h]),_)return D;h.async&&h.timeout>0&&(d=e.setTimeout(function(){D.abort("timeout")},h.timeout));try{_=!1,r.send(Y,a)}catch(e){if(_)throw e;a(-1,e)}}else a(-1,"No Transport");return D},getJSON:function(e,t,n){return ce.get(e,t,n,"json")},getScript:function(e,t){return ce.get(e,void 0,t,"script")}}),ce.each(["get","post"],function(e,t){ce[t]=function(e,n,a,r){return ce.isFunction(n)&&(r=r||a,a=n,n=void 0),ce.ajax(ce.extend({url:e,type:t,dataType:r,data:n,success:a},ce.isPlainObject(e)&&e))}}),ce._evalUrl=function(e){return ce.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,throws:!0})},ce.fn.extend({wrapAll:function(e){var t;return this[0]&&(ce.isFunction(e)&&(e=e.call(this[0])),t=ce(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(e){return ce.isFunction(e)?this.each(function(t){ce(this).wrapInner(e.call(this,t))}):this.each(function(){var t=ce(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=ce.isFunction(e);return this.each(function(n){ce(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(e){return this.parent(e).not("body").each(function(){ce(this).replaceWith(this.childNodes)}),this}}),ce.expr.pseudos.hidden=function(e){return!ce.expr.pseudos.visible(e)},ce.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},ce.ajaxSettings.xhr=function(){try{return new e.XMLHttpRequest}catch(e){}};var zt={0:200,1223:204},Rt=ce.ajaxSettings.xhr();me.cors=!!Rt&&"withCredentials"in Rt,me.ajax=Rt=!!Rt,ce.ajaxTransport(function(t){var n,a;if(me.cors||Rt&&!t.crossDomain)return{send:function(r,s){var i,o=t.xhr();if(o.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(i in t.xhrFields)o[i]=t.xhrFields[i];t.mimeType&&o.overrideMimeType&&o.overrideMimeType(t.mimeType),t.crossDomain||r["X-Requested-With"]||(r["X-Requested-With"]="XMLHttpRequest");for(i in r)o.setRequestHeader(i,r[i]);n=function(e){return function(){n&&(n=a=o.onload=o.onerror=o.onabort=o.onreadystatechange=null,"abort"===e?o.abort():"error"===e?"number"!=typeof o.status?s(0,"error"):s(o.status,o.statusText):s(zt[o.status]||o.status,o.statusText,"text"!==(o.responseType||"text")||"string"!=typeof o.responseText?{binary:o.response}:{text:o.responseText},o.getAllResponseHeaders()))}},o.onload=n(),a=o.onerror=n("error"),void 0!==o.onabort?o.onabort=a:o.onreadystatechange=function(){4===o.readyState&&e.setTimeout(function(){n&&a()})},n=n("abort");try{o.send(t.hasContent&&t.data||null)}catch(e){if(n)throw e}},abort:function(){n&&n()}}}),ce.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),ce.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 ce.globalEval(e),e}}}),ce.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),ce.ajaxTransport("script",function(e){if(e.crossDomain){var t,n;return{send:function(a,r){t=ce("