CoolFace
Apppublic

zh21608/nodejs

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
jquery.js2444 linesDownload Raw Back to static
1/*! jQuery v2.1.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */2!function (a, b) {3    "object" == typeof module && "object" == typeof module.exports ? module.exports = a.document ? b(a, !0) : function (a) {4        if (!a.document) throw new Error("jQuery requires a window with a document");5        return b(a)6    } : b(a)7}("undefined" != typeof window ? window : this, function (a, b) {8    var c = [], d = c.slice, e = c.concat, f = c.push, g = c.indexOf, h = {}, i = h.toString, j = h.hasOwnProperty,9        k = {}, l = a.document, m = "2.1.1", n = function (a, b) {10            return new n.fn.init(a, b)11        }, o = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, p = /^-ms-/, q = /-([\da-z])/gi, r = function (a, b) {12            return b.toUpperCase()13        };14    n.fn = n.prototype = {15        jquery: m, constructor: n, selector: "", length: 0, toArray: function () {16            return d.call(this)17        }, get: function (a) {18            return null != a ? 0 > a ? this[a + this.length] : this[a] : d.call(this)19        }, pushStack: function (a) {20            var b = n.merge(this.constructor(), a);21            return b.prevObject = this, b.context = this.context, b22        }, each: function (a, b) {23            return n.each(this, a, b)24        }, map: function (a) {25            return this.pushStack(n.map(this, function (b, c) {26                return a.call(b, c, b)27            }))28        }, slice: function () {29            return this.pushStack(d.apply(this, arguments))30        }, first: function () {31            return this.eq(0)32        }, last: function () {33            return this.eq(-1)34        }, eq: function (a) {35            var b = this.length, c = +a + (0 > a ? b : 0);36            return this.pushStack(c >= 0 && b > c ? [this[c]] : [])37        }, end: function () {38            return this.prevObject || this.constructor(null)39        }, push: f, sort: c.sort, splice: c.splice40    }, n.extend = n.fn.extend = function () {41        var a, b, c, d, e, f, g = arguments[0] || {}, h = 1, i = arguments.length, j = !1;42        for ("boolean" == typeof g && (j = g, g = arguments[h] || {}, h++), "object" == typeof g || n.isFunction(g) || (g = {}), h === i && (g = this, h--); i > h; h++) if (null != (a = arguments[h])) for (b in a) c = g[b], d = a[b], g !== d && (j && d && (n.isPlainObject(d) || (e = n.isArray(d))) ? (e ? (e = !1, f = c && n.isArray(c) ? c : []) : f = c && n.isPlainObject(c) ? c : {}, g[b] = n.extend(j, f, d)) : void 0 !== d && (g[b] = d));43        return g44    }, n.extend({45        expando: "jQuery" + (m + Math.random()).replace(/\D/g, ""), isReady: !0, error: function (a) {46            throw new Error(a)47        }, noop: function () {48        }, isFunction: function (a) {49            return "function" === n.type(a)50        }, isArray: Array.isArray, isWindow: function (a) {51            return null != a && a === a.window52        }, isNumeric: function (a) {53            return !n.isArray(a) && a - parseFloat(a) >= 054        }, isPlainObject: function (a) {55            return "object" !== n.type(a) || a.nodeType || n.isWindow(a) ? !1 : a.constructor && !j.call(a.constructor.prototype, "isPrototypeOf") ? !1 : !056        }, isEmptyObject: function (a) {57            var b;58            for (b in a) return !1;59            return !060        }, type: function (a) {61            return null == a ? a + "" : "object" == typeof a || "function" == typeof a ? h[i.call(a)] || "object" : typeof a62        }, globalEval: function (a) {63            var b, c = eval;64            a = n.trim(a), a && (1 === a.indexOf("use strict") ? (b = l.createElement("script"), b.text = a, l.head.appendChild(b).parentNode.removeChild(b)) : c(a))65        }, camelCase: function (a) {66            return a.replace(p, "ms-").replace(q, r)67        }, nodeName: function (a, b) {68            return a.nodeName && a.nodeName.toLowerCase() === b.toLowerCase()69        }, each: function (a, b, c) {70            var d, e = 0, f = a.length, g = s(a);71            if (c) {72                if (g) {73                    for (; f > e; e++) if (d = b.apply(a[e], c), d === !1) break74                } else for (e in a) if (d = b.apply(a[e], c), d === !1) break75            } else if (g) {76                for (; f > e; e++) if (d = b.call(a[e], e, a[e]), d === !1) break77            } else for (e in a) if (d = b.call(a[e], e, a[e]), d === !1) break;78            return a79        }, trim: function (a) {80            return null == a ? "" : (a + "").replace(o, "")81        }, makeArray: function (a, b) {82            var c = b || [];83            return null != a && (s(Object(a)) ? n.merge(c, "string" == typeof a ? [a] : a) : f.call(c, a)), c84        }, inArray: function (a, b, c) {85            return null == b ? -1 : g.call(b, a, c)86        }, merge: function (a, b) {87            for (var c = +b.length, d = 0, e = a.length; c > d; d++) a[e++] = b[d];88            return a.length = e, a89        }, grep: function (a, b, c) {90            for (var d, e = [], f = 0, g = a.length, h = !c; g > f; f++) d = !b(a[f], f), d !== h && e.push(a[f]);91            return e92        }, map: function (a, b, c) {93            var d, f = 0, g = a.length, h = s(a), i = [];94            if (h) for (; g > f; f++) d = b(a[f], f, c), null != d && i.push(d); else for (f in a) d = b(a[f], f, c), null != d && i.push(d);95            return e.apply([], i)96        }, guid: 1, proxy: function (a, b) {97            var c, e, f;98            return "string" == typeof b && (c = a[b], b = a, a = c), n.isFunction(a) ? (e = d.call(arguments, 2), f = function () {99                return a.apply(b || this, e.concat(d.call(arguments)))100            }, f.guid = a.guid = a.guid || n.guid++, f) : void 0101        }, now: Date.now, support: k102    }), n.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function (a, b) {103        h["[object " + b + "]"] = b.toLowerCase()104    });105 106    function s(a) {107        var b = a.length, c = n.type(a);108        return "function" === c || n.isWindow(a) ? !1 : 1 === a.nodeType && b ? !0 : "array" === c || 0 === b || "number" == typeof b && b > 0 && b - 1 in a109    }110 111    var t = function (a) {112        var b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u = "sizzle" + -new Date, v = a.document, w = 0,113            x = 0, y = gb(), z = gb(), A = gb(), B = function (a, b) {114                return a === b && (l = !0), 0115            }, C = "undefined", D = 1 << 31, E = {}.hasOwnProperty, F = [], G = F.pop, H = F.push, I = F.push, J = F.slice,116            K = F.indexOf || function (a) {117                for (var b = 0, c = this.length; c > b; b++) if (this[b] === a) return b;118                return -1119            },120            L = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",121            M = "[\\x20\\t\\r\\n\\f]", N = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+", O = N.replace("w", "w#"),122            P = "\\[" + M + "*(" + N + ")(?:" + M + "*([*^$|!~]?=)" + M + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + O + "))|)" + M + "*\\]",123            Q = ":(" + N + ")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|" + P + ")*)|.*)\\)|)",124            R = new RegExp("^" + M + "+|((?:^|[^\\\\])(?:\\\\.)*)" + M + "+$", "g"),125            S = new RegExp("^" + M + "*," + M + "*"), T = new RegExp("^" + M + "*([>+~]|" + M + ")" + M + "*"),126            U = new RegExp("=" + M + "*([^\\]'\"]*?)" + M + "*\\]", "g"), V = new RegExp(Q),127            W = new RegExp("^" + O + "$"), X = {128                ID: new RegExp("^#(" + N + ")"),129                CLASS: new RegExp("^\\.(" + N + ")"),130                TAG: new RegExp("^(" + N.replace("w", "w*") + ")"),131                ATTR: new RegExp("^" + P),132                PSEUDO: new RegExp("^" + Q),133                CHILD: new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + M + "*(even|odd|(([+-]|)(\\d*)n|)" + M + "*(?:([+-]|)" + M + "*(\\d+)|))" + M + "*\\)|)", "i"),134                bool: new RegExp("^(?:" + L + ")$", "i"),135                needsContext: new RegExp("^" + M + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + M + "*((?:-\\d)?\\d*)" + M + "*\\)|)(?=[^-]|$)", "i")136            }, Y = /^(?:input|select|textarea|button)$/i, Z = /^h\d$/i, $ = /^[^{]+\{\s*\[native \w/,137            _ = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, ab = /[+~]/, bb = /'|\\/g,138            cb = new RegExp("\\\\([\\da-f]{1,6}" + M + "?|(" + M + ")|.)", "ig"), db = function (a, b, c) {139                var d = "0x" + b - 65536;140                return d !== d || c ? b : 0 > d ? String.fromCharCode(d + 65536) : String.fromCharCode(d >> 10 | 55296, 1023 & d | 56320)141            };142        try {143            I.apply(F = J.call(v.childNodes), v.childNodes), F[v.childNodes.length].nodeType144        } catch (eb) {145            I = {146                apply: F.length ? function (a, b) {147                    H.apply(a, J.call(b))148                } : function (a, b) {149                    var c = a.length, d = 0;150                    while (a[c++] = b[d++]) ;151                    a.length = c - 1152                }153            }154        }155 156        function fb(a, b, d, e) {157            var f, h, j, k, l, o, r, s, w, x;158            if ((b ? b.ownerDocument || b : v) !== n && m(b), b = b || n, d = d || [], !a || "string" != typeof a) return d;159            if (1 !== (k = b.nodeType) && 9 !== k) return [];160            if (p && !e) {161                if (f = _.exec(a)) if (j = f[1]) {162                    if (9 === k) {163                        if (h = b.getElementById(j), !h || !h.parentNode) return d;164                        if (h.id === j) return d.push(h), d165                    } else if (b.ownerDocument && (h = b.ownerDocument.getElementById(j)) && t(b, h) && h.id === j) return d.push(h), d166                } else {167                    if (f[2]) return I.apply(d, b.getElementsByTagName(a)), d;168                    if ((j = f[3]) && c.getElementsByClassName && b.getElementsByClassName) return I.apply(d, b.getElementsByClassName(j)), d169                }170                if (c.qsa && (!q || !q.test(a))) {171                    if (s = r = u, w = b, x = 9 === k && a, 1 === k && "object" !== b.nodeName.toLowerCase()) {172                        o = g(a), (r = b.getAttribute("id")) ? s = r.replace(bb, "\\$&") : b.setAttribute("id", s), s = "[id='" + s + "'] ", l = o.length;173                        while (l--) o[l] = s + qb(o[l]);174                        w = ab.test(a) && ob(b.parentNode) || b, x = o.join(",")175                    }176                    if (x) try {177                        return I.apply(d, w.querySelectorAll(x)), d178                    } catch (y) {179                    } finally {180                        r || b.removeAttribute("id")181                    }182                }183            }184            return i(a.replace(R, "$1"), b, d, e)185        }186 187        function gb() {188            var a = [];189 190            function b(c, e) {191                return a.push(c + " ") > d.cacheLength && delete b[a.shift()], b[c + " "] = e192            }193 194            return b195        }196 197        function hb(a) {198            return a[u] = !0, a199        }200 201        function ib(a) {202            var b = n.createElement("div");203            try {204                return !!a(b)205            } catch (c) {206                return !1207            } finally {208                b.parentNode && b.parentNode.removeChild(b), b = null209            }210        }211 212        function jb(a, b) {213            var c = a.split("|"), e = a.length;214            while (e--) d.attrHandle[c[e]] = b215        }216 217        function kb(a, b) {218            var c = b && a,219                d = c && 1 === a.nodeType && 1 === b.nodeType && (~b.sourceIndex || D) - (~a.sourceIndex || D);220            if (d) return d;221            if (c) while (c = c.nextSibling) if (c === b) return -1;222            return a ? 1 : -1223        }224 225        function lb(a) {226            return function (b) {227                var c = b.nodeName.toLowerCase();228                return "input" === c && b.type === a229            }230        }231 232        function mb(a) {233            return function (b) {234                var c = b.nodeName.toLowerCase();235                return ("input" === c || "button" === c) && b.type === a236            }237        }238 239        function nb(a) {240            return hb(function (b) {241                return b = +b, hb(function (c, d) {242                    var e, f = a([], c.length, b), g = f.length;243                    while (g--) c[e = f[g]] && (c[e] = !(d[e] = c[e]))244                })245            })246        }247 248        function ob(a) {249            return a && typeof a.getElementsByTagName !== C && a250        }251 252        c = fb.support = {}, f = fb.isXML = function (a) {253            var b = a && (a.ownerDocument || a).documentElement;254            return b ? "HTML" !== b.nodeName : !1255        }, m = fb.setDocument = function (a) {256            var b, e = a ? a.ownerDocument || a : v, g = e.defaultView;257            return e !== n && 9 === e.nodeType && e.documentElement ? (n = e, o = e.documentElement, p = !f(e), g && g !== g.top && (g.addEventListener ? g.addEventListener("unload", function () {258                m()259            }, !1) : g.attachEvent && g.attachEvent("onunload", function () {260                m()261            })), c.attributes = ib(function (a) {262                return a.className = "i", !a.getAttribute("className")263            }), c.getElementsByTagName = ib(function (a) {264                return a.appendChild(e.createComment("")), !a.getElementsByTagName("*").length265            }), c.getElementsByClassName = $.test(e.getElementsByClassName) && ib(function (a) {266                return a.innerHTML = "<div class='a'></div><div class='a i'></div>", a.firstChild.className = "i", 2 === a.getElementsByClassName("i").length267            }), c.getById = ib(function (a) {268                return o.appendChild(a).id = u, !e.getElementsByName || !e.getElementsByName(u).length269            }), c.getById ? (d.find.ID = function (a, b) {270                if (typeof b.getElementById !== C && p) {271                    var c = b.getElementById(a);272                    return c && c.parentNode ? [c] : []273                }274            }, d.filter.ID = function (a) {275                var b = a.replace(cb, db);276                return function (a) {277                    return a.getAttribute("id") === b278                }279            }) : (delete d.find.ID, d.filter.ID = function (a) {280                var b = a.replace(cb, db);281                return function (a) {282                    var c = typeof a.getAttributeNode !== C && a.getAttributeNode("id");283                    return c && c.value === b284                }285            }), d.find.TAG = c.getElementsByTagName ? function (a, b) {286                return typeof b.getElementsByTagName !== C ? b.getElementsByTagName(a) : void 0287            } : function (a, b) {288                var c, d = [], e = 0, f = b.getElementsByTagName(a);289                if ("*" === a) {290                    while (c = f[e++]) 1 === c.nodeType && d.push(c);291                    return d292                }293                return f294            }, d.find.CLASS = c.getElementsByClassName && function (a, b) {295                return typeof b.getElementsByClassName !== C && p ? b.getElementsByClassName(a) : void 0296            }, r = [], q = [], (c.qsa = $.test(e.querySelectorAll)) && (ib(function (a) {297                a.innerHTML = "<select msallowclip=''><option selected=''></option></select>", a.querySelectorAll("[msallowclip^='']").length && q.push("[*^$]=" + M + "*(?:''|\"\")"), a.querySelectorAll("[selected]").length || q.push("\\[" + M + "*(?:value|" + L + ")"), a.querySelectorAll(":checked").length || q.push(":checked")298            }), ib(function (a) {299                var b = e.createElement("input");300                b.setAttribute("type", "hidden"), a.appendChild(b).setAttribute("name", "D"), a.querySelectorAll("[name=d]").length && q.push("name" + M + "*[*^$|!~]?="), a.querySelectorAll(":enabled").length || q.push(":enabled", ":disabled"), a.querySelectorAll("*,:x"), q.push(",.*:")301            })), (c.matchesSelector = $.test(s = o.matches || o.webkitMatchesSelector || o.mozMatchesSelector || o.oMatchesSelector || o.msMatchesSelector)) && ib(function (a) {302                c.disconnectedMatch = s.call(a, "div"), s.call(a, "[s!='']:x"), r.push("!=", Q)303            }), q = q.length && new RegExp(q.join("|")), r = r.length && new RegExp(r.join("|")), b = $.test(o.compareDocumentPosition), t = b || $.test(o.contains) ? function (a, b) {304                var c = 9 === a.nodeType ? a.documentElement : a, d = b && b.parentNode;305                return a === d || !(!d || 1 !== d.nodeType || !(c.contains ? c.contains(d) : a.compareDocumentPosition && 16 & a.compareDocumentPosition(d)))306            } : function (a, b) {307                if (b) while (b = b.parentNode) if (b === a) return !0;308                return !1309            }, B = b ? function (a, b) {310                if (a === b) return l = !0, 0;311                var d = !a.compareDocumentPosition - !b.compareDocumentPosition;312                return d ? d : (d = (a.ownerDocument || a) === (b.ownerDocument || b) ? a.compareDocumentPosition(b) : 1, 1 & d || !c.sortDetached && b.compareDocumentPosition(a) === d ? a === e || a.ownerDocument === v && t(v, a) ? -1 : b === e || b.ownerDocument === v && t(v, b) ? 1 : k ? K.call(k, a) - K.call(k, b) : 0 : 4 & d ? -1 : 1)313            } : function (a, b) {314                if (a === b) return l = !0, 0;315                var c, d = 0, f = a.parentNode, g = b.parentNode, h = [a], i = [b];316                if (!f || !g) return a === e ? -1 : b === e ? 1 : f ? -1 : g ? 1 : k ? K.call(k, a) - K.call(k, b) : 0;317                if (f === g) return kb(a, b);318                c = a;319                while (c = c.parentNode) h.unshift(c);320                c = b;321                while (c = c.parentNode) i.unshift(c);322                while (h[d] === i[d]) d++;323                return d ? kb(h[d], i[d]) : h[d] === v ? -1 : i[d] === v ? 1 : 0324            }, e) : n325        }, fb.matches = function (a, b) {326            return fb(a, null, null, b)327        }, fb.matchesSelector = function (a, b) {328            if ((a.ownerDocument || a) !== n && m(a), b = b.replace(U, "='$1']"), !(!c.matchesSelector || !p || r && r.test(b) || q && q.test(b))) try {329                var d = s.call(a, b);330                if (d || c.disconnectedMatch || a.document && 11 !== a.document.nodeType) return d331            } catch (e) {332            }333            return fb(b, n, null, [a]).length > 0334        }, fb.contains = function (a, b) {335            return (a.ownerDocument || a) !== n && m(a), t(a, b)336        }, fb.attr = function (a, b) {337            (a.ownerDocument || a) !== n && m(a);338            var e = d.attrHandle[b.toLowerCase()],339                f = e && E.call(d.attrHandle, b.toLowerCase()) ? e(a, b, !p) : void 0;340            return void 0 !== f ? f : c.attributes || !p ? a.getAttribute(b) : (f = a.getAttributeNode(b)) && f.specified ? f.value : null341        }, fb.error = function (a) {342            throw new Error("Syntax error, unrecognized expression: " + a)343        }, fb.uniqueSort = function (a) {344            var b, d = [], e = 0, f = 0;345            if (l = !c.detectDuplicates, k = !c.sortStable && a.slice(0), a.sort(B), l) {346                while (b = a[f++]) b === a[f] && (e = d.push(f));347                while (e--) a.splice(d[e], 1)348            }349            return k = null, a350        }, e = fb.getText = function (a) {351            var b, c = "", d = 0, f = a.nodeType;352            if (f) {353                if (1 === f || 9 === f || 11 === f) {354                    if ("string" == typeof a.textContent) return a.textContent;355                    for (a = a.firstChild; a; a = a.nextSibling) c += e(a)356                } else if (3 === f || 4 === f) return a.nodeValue357            } else while (b = a[d++]) c += e(b);358            return c359        }, d = fb.selectors = {360            cacheLength: 50,361            createPseudo: hb,362            match: X,363            attrHandle: {},364            find: {},365            relative: {366                ">": {dir: "parentNode", first: !0},367                " ": {dir: "parentNode"},368                "+": {dir: "previousSibling", first: !0},369                "~": {dir: "previousSibling"}370            },371            preFilter: {372                ATTR: function (a) {373                    return a[1] = a[1].replace(cb, db), a[3] = (a[3] || a[4] || a[5] || "").replace(cb, db), "~=" === a[2] && (a[3] = " " + a[3] + " "), a.slice(0, 4)374                }, CHILD: function (a) {375                    return a[1] = a[1].toLowerCase(), "nth" === a[1].slice(0, 3) ? (a[3] || fb.error(a[0]), a[4] = +(a[4] ? a[5] + (a[6] || 1) : 2 * ("even" === a[3] || "odd" === a[3])), a[5] = +(a[7] + a[8] || "odd" === a[3])) : a[3] && fb.error(a[0]), a376                }, PSEUDO: function (a) {377                    var b, c = !a[6] && a[2];378                    return X.CHILD.test(a[0]) ? null : (a[3] ? a[2] = a[4] || a[5] || "" : c && V.test(c) && (b = g(c, !0)) && (b = c.indexOf(")", c.length - b) - c.length) && (a[0] = a[0].slice(0, b), a[2] = c.slice(0, b)), a.slice(0, 3))379                }380            },381            filter: {382                TAG: function (a) {383                    var b = a.replace(cb, db).toLowerCase();384                    return "*" === a ? function () {385                        return !0386                    } : function (a) {387                        return a.nodeName && a.nodeName.toLowerCase() === b388                    }389                }, CLASS: function (a) {390                    var b = y[a + " "];391                    return b || (b = new RegExp("(^|" + M + ")" + a + "(" + M + "|$)")) && y(a, function (a) {392                        return b.test("string" == typeof a.className && a.className || typeof a.getAttribute !== C && a.getAttribute("class") || "")393                    })394                }, ATTR: function (a, b, c) {395                    return function (d) {396                        var e = fb.attr(d, a);397                        return null == e ? "!=" === b : b ? (e += "", "=" === b ? e === c : "!=" === b ? e !== c : "^=" === b ? c && 0 === e.indexOf(c) : "*=" === b ? c && e.indexOf(c) > -1 : "$=" === b ? c && e.slice(-c.length) === c : "~=" === b ? (" " + e + " ").indexOf(c) > -1 : "|=" === b ? e === c || e.slice(0, c.length + 1) === c + "-" : !1) : !0398                    }399                }, CHILD: function (a, b, c, d, e) {400                    var f = "nth" !== a.slice(0, 3), g = "last" !== a.slice(-4), h = "of-type" === b;401                    return 1 === d && 0 === e ? function (a) {402                        return !!a.parentNode403                    } : function (b, c, i) {404                        var j, k, l, m, n, o, p = f !== g ? "nextSibling" : "previousSibling", q = b.parentNode,405                            r = h && b.nodeName.toLowerCase(), s = !i && !h;406                        if (q) {407                            if (f) {408                                while (p) {409                                    l = b;410                                    while (l = l[p]) if (h ? l.nodeName.toLowerCase() === r : 1 === l.nodeType) return !1;411                                    o = p = "only" === a && !o && "nextSibling"412                                }413                                return !0414                            }415                            if (o = [g ? q.firstChild : q.lastChild], g && s) {416                                k = q[u] || (q[u] = {}), j = k[a] || [], n = j[0] === w && j[1], m = j[0] === w && j[2], l = n && q.childNodes[n];417                                while (l = ++n && l && l[p] || (m = n = 0) || o.pop()) if (1 === l.nodeType && ++m && l === b) {418                                    k[a] = [w, n, m];419                                    break420                                }421                            } else if (s && (j = (b[u] || (b[u] = {}))[a]) && j[0] === w) m = j[1]; else while (l = ++n && l && l[p] || (m = n = 0) || o.pop()) if ((h ? l.nodeName.toLowerCase() === r : 1 === l.nodeType) && ++m && (s && ((l[u] || (l[u] = {}))[a] = [w, m]), l === b)) break;422                            return m -= e, m === d || m % d === 0 && m / d >= 0423                        }424                    }425                }, PSEUDO: function (a, b) {426                    var c, e = d.pseudos[a] || d.setFilters[a.toLowerCase()] || fb.error("unsupported pseudo: " + a);427                    return e[u] ? e(b) : e.length > 1 ? (c = [a, a, "", b], d.setFilters.hasOwnProperty(a.toLowerCase()) ? hb(function (a, c) {428                        var d, f = e(a, b), g = f.length;429                        while (g--) d = K.call(a, f[g]), a[d] = !(c[d] = f[g])430                    }) : function (a) {431                        return e(a, 0, c)432                    }) : e433                }434            },435            pseudos: {436                not: hb(function (a) {437                    var b = [], c = [], d = h(a.replace(R, "$1"));438                    return d[u] ? hb(function (a, b, c, e) {439                        var f, g = d(a, null, e, []), h = a.length;440                        while (h--) (f = g[h]) && (a[h] = !(b[h] = f))441                    }) : function (a, e, f) {442                        return b[0] = a, d(b, null, f, c), !c.pop()443                    }444                }), has: hb(function (a) {445                    return function (b) {446                        return fb(a, b).length > 0447                    }448                }), contains: hb(function (a) {449                    return function (b) {450                        return (b.textContent || b.innerText || e(b)).indexOf(a) > -1451                    }452                }), lang: hb(function (a) {453                    return W.test(a || "") || fb.error("unsupported lang: " + a), a = a.replace(cb, db).toLowerCase(), function (b) {454                        var c;455                        do if (c = p ? b.lang : b.getAttribute("xml:lang") || b.getAttribute("lang")) return c = c.toLowerCase(), c === a || 0 === c.indexOf(a + "-"); while ((b = b.parentNode) && 1 === b.nodeType);456                        return !1457                    }458                }), target: function (b) {459                    var c = a.location && a.location.hash;460                    return c && c.slice(1) === b.id461                }, root: function (a) {462                    return a === o463                }, focus: function (a) {464                    return a === n.activeElement && (!n.hasFocus || n.hasFocus()) && !!(a.type || a.href || ~a.tabIndex)465                }, enabled: function (a) {466                    return a.disabled === !1467                }, disabled: function (a) {468                    return a.disabled === !0469                }, checked: function (a) {470                    var b = a.nodeName.toLowerCase();471                    return "input" === b && !!a.checked || "option" === b && !!a.selected472                }, selected: function (a) {473                    return a.parentNode && a.parentNode.selectedIndex, a.selected === !0474                }, empty: function (a) {475                    for (a = a.firstChild; a; a = a.nextSibling) if (a.nodeType < 6) return !1;476                    return !0477                }, parent: function (a) {478                    return !d.pseudos.empty(a)479                }, header: function (a) {480                    return Z.test(a.nodeName)481                }, input: function (a) {482                    return Y.test(a.nodeName)483                }, button: function (a) {484                    var b = a.nodeName.toLowerCase();485                    return "input" === b && "button" === a.type || "button" === b486                }, text: function (a) {487                    var b;488                    return "input" === a.nodeName.toLowerCase() && "text" === a.type && (null == (b = a.getAttribute("type")) || "text" === b.toLowerCase())489                }, first: nb(function () {490                    return [0]491                }), last: nb(function (a, b) {492                    return [b - 1]493                }), eq: nb(function (a, b, c) {494                    return [0 > c ? c + b : c]495                }), even: nb(function (a, b) {496                    for (var c = 0; b > c; c += 2) a.push(c);497                    return a498                }), odd: nb(function (a, b) {499                    for (var c = 1; b > c; c += 2) a.push(c);500                    return a501                }), lt: nb(function (a, b, c) {502                    for (var d = 0 > c ? c + b : c; --d >= 0;) a.push(d);503                    return a504                }), gt: nb(function (a, b, c) {505                    for (var d = 0 > c ? c + b : c; ++d < b;) a.push(d);506                    return a507                })508            }509        }, d.pseudos.nth = d.pseudos.eq;510        for (b in {radio: !0, checkbox: !0, file: !0, password: !0, image: !0}) d.pseudos[b] = lb(b);511        for (b in {submit: !0, reset: !0}) d.pseudos[b] = mb(b);512 513        function pb() {514        }515 516        pb.prototype = d.filters = d.pseudos, d.setFilters = new pb, g = fb.tokenize = function (a, b) {517            var c, e, f, g, h, i, j, k = z[a + " "];518            if (k) return b ? 0 : k.slice(0);519            h = a, i = [], j = d.preFilter;520            while (h) {521                (!c || (e = S.exec(h))) && (e && (h = h.slice(e[0].length) || h), i.push(f = [])), c = !1, (e = T.exec(h)) && (c = e.shift(), f.push({522                    value: c,523                    type: e[0].replace(R, " ")524                }), h = h.slice(c.length));525                for (g in d.filter) !(e = X[g].exec(h)) || j[g] && !(e = j[g](e)) || (c = e.shift(), f.push({526                    value: c,527                    type: g,528                    matches: e529                }), h = h.slice(c.length));530                if (!c) break531            }532            return b ? h.length : h ? fb.error(a) : z(a, i).slice(0)533        };534 535        function qb(a) {536            for (var b = 0, c = a.length, d = ""; c > b; b++) d += a[b].value;537            return d538        }539 540        function rb(a, b, c) {541            var d = b.dir, e = c && "parentNode" === d, f = x++;542            return b.first ? function (b, c, f) {543                while (b = b[d]) if (1 === b.nodeType || e) return a(b, c, f)544            } : function (b, c, g) {545                var h, i, j = [w, f];546                if (g) {547                    while (b = b[d]) if ((1 === b.nodeType || e) && a(b, c, g)) return !0548                } else while (b = b[d]) if (1 === b.nodeType || e) {549                    if (i = b[u] || (b[u] = {}), (h = i[d]) && h[0] === w && h[1] === f) return j[2] = h[2];550                    if (i[d] = j, j[2] = a(b, c, g)) return !0551                }552            }553        }554 555        function sb(a) {556            return a.length > 1 ? function (b, c, d) {557                var e = a.length;558                while (e--) if (!a[e](b, c, d)) return !1;559                return !0560            } : a[0]561        }562 563        function tb(a, b, c) {564            for (var d = 0, e = b.length; e > d; d++) fb(a, b[d], c);565            return c566        }567 568        function ub(a, b, c, d, e) {569            for (var f, g = [], h = 0, i = a.length, j = null != b; i > h; h++) (f = a[h]) && (!c || c(f, d, e)) && (g.push(f), j && b.push(h));570            return g571        }572 573        function vb(a, b, c, d, e, f) {574            return d && !d[u] && (d = vb(d)), e && !e[u] && (e = vb(e, f)), hb(function (f, g, h, i) {575                var j, k, l, m = [], n = [], o = g.length, p = f || tb(b || "*", h.nodeType ? [h] : h, []),576                    q = !a || !f && b ? p : ub(p, m, a, h, i), r = c ? e || (f ? a : o || d) ? [] : g : q;577                if (c && c(q, r, h, i), d) {578                    j = ub(r, n), d(j, [], h, i), k = j.length;579                    while (k--) (l = j[k]) && (r[n[k]] = !(q[n[k]] = l))580                }581                if (f) {582                    if (e || a) {583                        if (e) {584                            j = [], k = r.length;585                            while (k--) (l = r[k]) && j.push(q[k] = l);586                            e(null, r = [], j, i)587                        }588                        k = r.length;589                        while (k--) (l = r[k]) && (j = e ? K.call(f, l) : m[k]) > -1 && (f[j] = !(g[j] = l))590                    }591                } else r = ub(r === g ? r.splice(o, r.length) : r), e ? e(null, g, r, i) : I.apply(g, r)592            })593        }594 595        function wb(a) {596            for (var b, c, e, f = a.length, g = d.relative[a[0].type], h = g || d.relative[" "], i = g ? 1 : 0, k = rb(function (a) {597                return a === b598            }, h, !0), l = rb(function (a) {599                return K.call(b, a) > -1600            }, h, !0), m = [function (a, c, d) {601                return !g && (d || c !== j) || ((b = c).nodeType ? k(a, c, d) : l(a, c, d))602            }]; f > i; i++) if (c = d.relative[a[i].type]) m = [rb(sb(m), c)]; else {603                if (c = d.filter[a[i].type].apply(null, a[i].matches), c[u]) {604                    for (e = ++i; f > e; e++) if (d.relative[a[e].type]) break;605                    return vb(i > 1 && sb(m), i > 1 && qb(a.slice(0, i - 1).concat({value: " " === a[i - 2].type ? "*" : ""})).replace(R, "$1"), c, e > i && wb(a.slice(i, e)), f > e && wb(a = a.slice(e)), f > e && qb(a))606                }607                m.push(c)608            }609            return sb(m)610        }611 612        function xb(a, b) {613            var c = b.length > 0, e = a.length > 0, f = function (f, g, h, i, k) {614                var l, m, o, p = 0, q = "0", r = f && [], s = [], t = j, u = f || e && d.find.TAG("*", k),615                    v = w += null == t ? 1 : Math.random() || .1, x = u.length;616                for (k && (j = g !== n && g); q !== x && null != (l = u[q]); q++) {617                    if (e && l) {618                        m = 0;619                        while (o = a[m++]) if (o(l, g, h)) {620                            i.push(l);621                            break622                        }623                        k && (w = v)624                    }625                    c && ((l = !o && l) && p--, f && r.push(l))626                }627                if (p += q, c && q !== p) {628                    m = 0;629                    while (o = b[m++]) o(r, s, g, h);630                    if (f) {631                        if (p > 0) while (q--) r[q] || s[q] || (s[q] = G.call(i));632                        s = ub(s)633                    }634                    I.apply(i, s), k && !f && s.length > 0 && p + b.length > 1 && fb.uniqueSort(i)635                }636                return k && (w = v, j = t), r637            };638            return c ? hb(f) : f639        }640 641        return h = fb.compile = function (a, b) {642            var c, d = [], e = [], f = A[a + " "];643            if (!f) {644                b || (b = g(a)), c = b.length;645                while (c--) f = wb(b[c]), f[u] ? d.push(f) : e.push(f);646                f = A(a, xb(e, d)), f.selector = a647            }648            return f649        }, i = fb.select = function (a, b, e, f) {650            var i, j, k, l, m, n = "function" == typeof a && a, o = !f && g(a = n.selector || a);651            if (e = e || [], 1 === o.length) {652                if (j = o[0] = o[0].slice(0), j.length > 2 && "ID" === (k = j[0]).type && c.getById && 9 === b.nodeType && p && d.relative[j[1].type]) {653                    if (b = (d.find.ID(k.matches[0].replace(cb, db), b) || [])[0], !b) return e;654                    n && (b = b.parentNode), a = a.slice(j.shift().value.length)655                }656                i = X.needsContext.test(a) ? 0 : j.length;657                while (i--) {658                    if (k = j[i], d.relative[l = k.type]) break;659                    if ((m = d.find[l]) && (f = m(k.matches[0].replace(cb, db), ab.test(j[0].type) && ob(b.parentNode) || b))) {660                        if (j.splice(i, 1), a = f.length && qb(j), !a) return I.apply(e, f), e;661                        break662                    }663                }664            }665            return (n || h(a, o))(f, b, !p, e, ab.test(a) && ob(b.parentNode) || b), e666        }, c.sortStable = u.split("").sort(B).join("") === u, c.detectDuplicates = !!l, m(), c.sortDetached = ib(function (a) {667            return 1 & a.compareDocumentPosition(n.createElement("div"))668        }), ib(function (a) {669            return a.innerHTML = "<a href='#'></a>", "#" === a.firstChild.getAttribute("href")670        }) || jb("type|href|height|width", function (a, b, c) {671            return c ? void 0 : a.getAttribute(b, "type" === b.toLowerCase() ? 1 : 2)672        }), c.attributes && ib(function (a) {673            return a.innerHTML = "<input/>", a.firstChild.setAttribute("value", ""), "" === a.firstChild.getAttribute("value")674        }) || jb("value", function (a, b, c) {675            return c || "input" !== a.nodeName.toLowerCase() ? void 0 : a.defaultValue676        }), ib(function (a) {677            return null == a.getAttribute("disabled")678        }) || jb(L, function (a, b, c) {679            var d;680            return c ? void 0 : a[b] === !0 ? b.toLowerCase() : (d = a.getAttributeNode(b)) && d.specified ? d.value : null681        }), fb682    }(a);683    n.find = t, n.expr = t.selectors, n.expr[":"] = n.expr.pseudos, n.unique = t.uniqueSort, n.text = t.getText, n.isXMLDoc = t.isXML, n.contains = t.contains;684    var u = n.expr.match.needsContext, v = /^<(\w+)\s*\/?>(?:<\/\1>|)$/, w = /^.[^:#\[\.,]*$/;685 686    function x(a, b, c) {687        if (n.isFunction(b)) return n.grep(a, function (a, d) {688            return !!b.call(a, d, a) !== c689        });690        if (b.nodeType) return n.grep(a, function (a) {691            return a === b !== c692        });693        if ("string" == typeof b) {694            if (w.test(b)) return n.filter(b, a, c);695            b = n.filter(b, a)696        }697        return n.grep(a, function (a) {698            return g.call(b, a) >= 0 !== c699        })700    }701 702    n.filter = function (a, b, c) {703        var d = b[0];704        return c && (a = ":not(" + a + ")"), 1 === b.length && 1 === d.nodeType ? n.find.matchesSelector(d, a) ? [d] : [] : n.find.matches(a, n.grep(b, function (a) {705            return 1 === a.nodeType706        }))707    }, n.fn.extend({708        find: function (a) {709            var b, c = this.length, d = [], e = this;710            if ("string" != typeof a) return this.pushStack(n(a).filter(function () {711                for (b = 0; c > b; b++) if (n.contains(e[b], this)) return !0712            }));713            for (b = 0; c > b; b++) n.find(a, e[b], d);714            return d = this.pushStack(c > 1 ? n.unique(d) : d), d.selector = this.selector ? this.selector + " " + a : a, d715        }, filter: function (a) {716            return this.pushStack(x(this, a || [], !1))717        }, not: function (a) {718            return this.pushStack(x(this, a || [], !0))719        }, is: function (a) {720            return !!x(this, "string" == typeof a && u.test(a) ? n(a) : a || [], !1).length721        }722    });723    var y, z = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/, A = n.fn.init = function (a, b) {724        var c, d;725        if (!a) return this;726        if ("string" == typeof a) {727            if (c = "<" === a[0] && ">" === a[a.length - 1] && a.length >= 3 ? [null, a, null] : z.exec(a), !c || !c[1] && b) return !b || b.jquery ? (b || y).find(a) : this.constructor(b).find(a);728            if (c[1]) {729                if (b = b instanceof n ? b[0] : b, n.merge(this, n.parseHTML(c[1], b && b.nodeType ? b.ownerDocument || b : l, !0)), v.test(c[1]) && n.isPlainObject(b)) for (c in b) n.isFunction(this[c]) ? this[c](b[c]) : this.attr(c, b[c]);730                return this731            }732            return d = l.getElementById(c[2]), d && d.parentNode && (this.length = 1, this[0] = d), this.context = l, this.selector = a, this733        }734        return a.nodeType ? (this.context = this[0] = a, this.length = 1, this) : n.isFunction(a) ? "undefined" != typeof y.ready ? y.ready(a) : a(n) : (void 0 !== a.selector && (this.selector = a.selector, this.context = a.context), n.makeArray(a, this))735    };736    A.prototype = n.fn, y = n(l);737    var B = /^(?:parents|prev(?:Until|All))/, C = {children: !0, contents: !0, next: !0, prev: !0};738    n.extend({739        dir: function (a, b, c) {740            var d = [], e = void 0 !== c;741            while ((a = a[b]) && 9 !== a.nodeType) if (1 === a.nodeType) {742                if (e && n(a).is(c)) break;743                d.push(a)744            }745            return d746        }, sibling: function (a, b) {747            for (var c = []; a; a = a.nextSibling) 1 === a.nodeType && a !== b && c.push(a);748            return c749        }750    }), n.fn.extend({751        has: function (a) {752            var b = n(a, this), c = b.length;753            return this.filter(function () {754                for (var a = 0; c > a; a++) if (n.contains(this, b[a])) return !0755            })756        }, closest: function (a, b) {757            for (var c, d = 0, e = this.length, f = [], g = u.test(a) || "string" != typeof a ? n(a, b || this.context) : 0; e > d; d++) for (c = this[d]; c && c !== b; c = c.parentNode) if (c.nodeType < 11 && (g ? g.index(c) > -1 : 1 === c.nodeType && n.find.matchesSelector(c, a))) {758                f.push(c);759                break760            }761            return this.pushStack(f.length > 1 ? n.unique(f) : f)762        }, index: function (a) {763            return a ? "string" == typeof a ? g.call(n(a), this[0]) : g.call(this, a.jquery ? a[0] : a) : this[0] && this[0].parentNode ? this.first().prevAll().length : -1764        }, add: function (a, b) {765            return this.pushStack(n.unique(n.merge(this.get(), n(a, b))))766        }, addBack: function (a) {767            return this.add(null == a ? this.prevObject : this.prevObject.filter(a))768        }769    });770 771    function D(a, b) {772        while ((a = a[b]) && 1 !== a.nodeType) ;773        return a774    }775 776    n.each({777        parent: function (a) {778            var b = a.parentNode;779            return b && 11 !== b.nodeType ? b : null780        }, parents: function (a) {781            return n.dir(a, "parentNode")782        }, parentsUntil: function (a, b, c) {783            return n.dir(a, "parentNode", c)784        }, next: function (a) {785            return D(a, "nextSibling")786        }, prev: function (a) {787            return D(a, "previousSibling")788        }, nextAll: function (a) {789            return n.dir(a, "nextSibling")790        }, prevAll: function (a) {791            return n.dir(a, "previousSibling")792        }, nextUntil: function (a, b, c) {793            return n.dir(a, "nextSibling", c)794        }, prevUntil: function (a, b, c) {795            return n.dir(a, "previousSibling", c)796        }, siblings: function (a) {797            return n.sibling((a.parentNode || {}).firstChild, a)798        }, children: function (a) {799            return n.sibling(a.firstChild)800        }, contents: function (a) {801            return a.contentDocument || n.merge([], a.childNodes)802        }803    }, function (a, b) {804        n.fn[a] = function (c, d) {805            var e = n.map(this, b, c);806            return "Until" !== a.slice(-5) && (d = c), d && "string" == typeof d && (e = n.filter(d, e)), this.length > 1 && (C[a] || n.unique(e), B.test(a) && e.reverse()), this.pushStack(e)807        }808    });809    var E = /\S+/g, F = {};810 811    function G(a) {812        var b = F[a] = {};813        return n.each(a.match(E) || [], function (a, c) {814            b[c] = !0815        }), b816    }817 818    n.Callbacks = function (a) {819        a = "string" == typeof a ? F[a] || G(a) : n.extend({}, a);820        var b, c, d, e, f, g, h = [], i = !a.once && [], j = function (l) {821            for (b = a.memory && l, c = !0, g = e || 0, e = 0, f = h.length, d = !0; h && f > g; g++) if (h[g].apply(l[0], l[1]) === !1 && a.stopOnFalse) {822                b = !1;823                break824            }825            d = !1, h && (i ? i.length && j(i.shift()) : b ? h = [] : k.disable())826        }, k = {827            add: function () {828                if (h) {829                    var c = h.length;830                    !function g(b) {831                        n.each(b, function (b, c) {832                            var d = n.type(c);833                            "function" === d ? a.unique && k.has(c) || h.push(c) : c && c.length && "string" !== d && g(c)834                        })835                    }(arguments), d ? f = h.length : b && (e = c, j(b))836                }837                return this838            }, remove: function () {839                return h && n.each(arguments, function (a, b) {840                    var c;841                    while ((c = n.inArray(b, h, c)) > -1) h.splice(c, 1), d && (f >= c && f--, g >= c && g--)842                }), this843            }, has: function (a) {844                return a ? n.inArray(a, h) > -1 : !(!h || !h.length)845            }, empty: function () {846                return h = [], f = 0, this847            }, disable: function () {848                return h = i = b = void 0, this849            }, disabled: function () {850                return !h851            }, lock: function () {852                return i = void 0, b || k.disable(), this853            }, locked: function () {854                return !i855            }, fireWith: function (a, b) {856                return !h || c && !i || (b = b || [], b = [a, b.slice ? b.slice() : b], d ? i.push(b) : j(b)), this857            }, fire: function () {858                return k.fireWith(this, arguments), this859            }, fired: function () {860                return !!c861            }862        };863        return k864    }, n.extend({865        Deferred: function (a) {866            var b = [["resolve", "done", n.Callbacks("once memory"), "resolved"], ["reject", "fail", n.Callbacks("once memory"), "rejected"], ["notify", "progress", n.Callbacks("memory")]],867                c = "pending", d = {868                    state: function () {869                        return c870                    }, always: function () {871                        return e.done(arguments).fail(arguments), this872                    }, then: function () {873                        var a = arguments;874                        return n.Deferred(function (c) {875                            n.each(b, function (b, f) {876                                var g = n.isFunction(a[b]) && a[b];877                                e[f[1]](function () {878                                    var a = g && g.apply(this, arguments);879                                    a && n.isFunction(a.promise) ? a.promise().done(c.resolve).fail(c.reject).progress(c.notify) : c[f[0] + "With"](this === d ? c.promise() : this, g ? [a] : arguments)880                                })881                            }), a = null882                        }).promise()883                    }, promise: function (a) {884                        return null != a ? n.extend(a, d) : d885                    }886                }, e = {};887            return d.pipe = d.then, n.each(b, function (a, f) {888                var g = f[2], h = f[3];889                d[f[1]] = g.add, h && g.add(function () {890                    c = h891                }, b[1 ^ a][2].disable, b[2][2].lock), e[f[0]] = function () {892                    return e[f[0] + "With"](this === e ? d : this, arguments), this893                }, e[f[0] + "With"] = g.fireWith894            }), d.promise(e), a && a.call(e, e), e895        }, when: function (a) {896            var b = 0, c = d.call(arguments), e = c.length, f = 1 !== e || a && n.isFunction(a.promise) ? e : 0,897                g = 1 === f ? a : n.Deferred(), h = function (a, b, c) {898                    return function (e) {899                        b[a] = this, c[a] = arguments.length > 1 ? d.call(arguments) : e, c === i ? g.notifyWith(b, c) : --f || g.resolveWith(b, c)900                    }901                }, i, j, k;902            if (e > 1) for (i = new Array(e), j = new Array(e), k = new Array(e); e > b; b++) c[b] && n.isFunction(c[b].promise) ? c[b].promise().done(h(b, k, c)).fail(g.reject).progress(h(b, j, i)) : --f;903            return f || g.resolveWith(k, c), g.promise()904        }905    });906    var H;907    n.fn.ready = function (a) {908        return n.ready.promise().done(a), this909    }, n.extend({910        isReady: !1, readyWait: 1, holdReady: function (a) {911            a ? n.readyWait++ : n.ready(!0)912        }, ready: function (a) {913            (a === !0 ? --n.readyWait : n.isReady) || (n.isReady = !0, a !== !0 && --n.readyWait > 0 || (H.resolveWith(l, [n]), n.fn.triggerHandler && (n(l).triggerHandler("ready"), n(l).off("ready"))))914        }915    });916 917    function I() {918        l.removeEventListener("DOMContentLoaded", I, !1), a.removeEventListener("load", I, !1), n.ready()919    }920 921    n.ready.promise = function (b) {922        return H || (H = n.Deferred(), "complete" === l.readyState ? setTimeout(n.ready) : (l.addEventListener("DOMContentLoaded", I, !1), a.addEventListener("load", I, !1))), H.promise(b)923    }, n.ready.promise();924    var J = n.access = function (a, b, c, d, e, f, g) {925        var h = 0, i = a.length, j = null == c;926        if ("object" === n.type(c)) {927            e = !0;928            for (h in c) n.access(a, b, h, c[h], !0, f, g)929        } else if (void 0 !== d && (e = !0, n.isFunction(d) || (g = !0), j && (g ? (b.call(a, d), b = null) : (j = b, b = function (a, b, c) {930            return j.call(n(a), c)931        })), b)) for (; i > h; h++) b(a[h], c, g ? d : d.call(a[h], h, b(a[h], c)));932        return e ? a : j ? b.call(a) : i ? b(a[0], c) : f933    };934    n.acceptData = function (a) {935        return 1 === a.nodeType || 9 === a.nodeType || !+a.nodeType936    };937 938    function K() {939        Object.defineProperty(this.cache = {}, 0, {940            get: function () {941                return {}942            }943        }), this.expando = n.expando + Math.random()944    }945 946    K.uid = 1, K.accepts = n.acceptData, K.prototype = {947        key: function (a) {948            if (!K.accepts(a)) return 0;949            var b = {}, c = a[this.expando];950            if (!c) {951                c = K.uid++;952                try {953                    b[this.expando] = {value: c}, Object.defineProperties(a, b)954                } catch (d) {955                    b[this.expando] = c, n.extend(a, b)956                }957            }958            return this.cache[c] || (this.cache[c] = {}), c959        }, set: function (a, b, c) {960            var d, e = this.key(a), f = this.cache[e];961            if ("string" == typeof b) f[b] = c; else if (n.isEmptyObject(f)) n.extend(this.cache[e], b); else for (d in b) f[d] = b[d];962            return f963        }, get: function (a, b) {964            var c = this.cache[this.key(a)];965            return void 0 === b ? c : c[b]966        }, access: function (a, b, c) {967            var d;968            return void 0 === b || b && "string" == typeof b && void 0 === c ? (d = this.get(a, b), void 0 !== d ? d : this.get(a, n.camelCase(b))) : (this.set(a, b, c), void 0 !== c ? c : b)969        }, remove: function (a, b) {970            var c, d, e, f = this.key(a), g = this.cache[f];971            if (void 0 === b) this.cache[f] = {}; else {972                n.isArray(b) ? d = b.concat(b.map(n.camelCase)) : (e = n.camelCase(b), b in g ? d = [b, e] : (d = e, d = d in g ? [d] : d.match(E) || [])), c = d.length;973                while (c--) delete g[d[c]]974            }975        }, hasData: function (a) {976            return !n.isEmptyObject(this.cache[a[this.expando]] || {})977        }, discard: function (a) {978            a[this.expando] && delete this.cache[a[this.expando]]979        }980    };981    var L = new K, M = new K, N = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, O = /([A-Z])/g;982 983    function P(a, b, c) {984        var d;985        if (void 0 === c && 1 === a.nodeType) if (d = "data-" + b.replace(O, "-$1").toLowerCase(), c = a.getAttribute(d), "string" == typeof c) {986            try {987                c = "true" === c ? !0 : "false" === c ? !1 : "null" === c ? null : +c + "" === c ? +c : N.test(c) ? n.parseJSON(c) : c988            } catch (e) {989            }990            M.set(a, b, c)991        } else c = void 0;992        return c993    }994 995    n.extend({996        hasData: function (a) {997            return M.hasData(a) || L.hasData(a)998        }, data: function (a, b, c) {999            return M.access(a, b, c)1000        }, removeData: function (a, b) {1001            M.remove(a, b)1002        }, _data: function (a, b, c) {1003            return L.access(a, b, c)1004        }, _removeData: function (a, b) {1005            L.remove(a, b)1006        }1007    }), n.fn.extend({1008        data: function (a, b) {1009            var c, d, e, f = this[0], g = f && f.attributes;1010            if (void 0 === a) {1011                if (this.length && (e = M.get(f), 1 === f.nodeType && !L.get(f, "hasDataAttrs"))) {1012                    c = g.length;1013                    while (c--) g[c] && (d = g[c].name, 0 === d.indexOf("data-") && (d = n.camelCase(d.slice(5)), P(f, d, e[d])));1014                    L.set(f, "hasDataAttrs", !0)1015                }1016                return e1017            }1018            return "object" == typeof a ? this.each(function () {1019                M.set(this, a)1020            }) : J(this, function (b) {1021                var c, d = n.camelCase(a);1022                if (f && void 0 === b) {1023                    if (c = M.get(f, a), void 0 !== c) return c;1024                    if (c = M.get(f, d), void 0 !== c) return c;1025                    if (c = P(f, d, void 0), void 0 !== c) return c1026                } else this.each(function () {1027                    var c = M.get(this, d);1028                    M.set(this, d, b), -1 !== a.indexOf("-") && void 0 !== c && M.set(this, a, b)1029                })1030            }, null, b, arguments.length > 1, null, !0)1031        }, removeData: function (a) {1032            return this.each(function () {1033                M.remove(this, a)1034            })1035        }1036    }), n.extend({1037        queue: function (a, b, c) {1038            var d;1039            return a ? (b = (b || "fx") + "queue", d = L.get(a, b), c && (!d || n.isArray(c) ? d = L.access(a, b, n.makeArray(c)) : d.push(c)), d || []) : void 01040        }, dequeue: function (a, b) {1041            b = b || "fx";1042            var c = n.queue(a, b), d = c.length, e = c.shift(), f = n._queueHooks(a, b), g = function () {1043                n.dequeue(a, b)1044            };1045            "inprogress" === e && (e = c.shift(), d--), e && ("fx" === b && c.unshift("inprogress"), delete f.stop, e.call(a, g, f)), !d && f && f.empty.fire()1046        }, _queueHooks: function (a, b) {1047            var c = b + "queueHooks";1048            return L.get(a, c) || L.access(a, c, {1049                empty: n.Callbacks("once memory").add(function () {1050                    L.remove(a, [b + "queue", c])1051                })1052            })1053        }1054    }), n.fn.extend({1055        queue: function (a, b) {1056            var c = 2;1057            return "string" != typeof a && (b = a, a = "fx", c--), arguments.length < c ? n.queue(this[0], a) : void 0 === b ? this : this.each(function () {1058                var c = n.queue(this, a, b);1059                n._queueHooks(this, a), "fx" === a && "inprogress" !== c[0] && n.dequeue(this, a)1060            })1061        }, dequeue: function (a) {1062            return this.each(function () {1063                n.dequeue(this, a)1064            })1065        }, clearQueue: function (a) {1066            return this.queue(a || "fx", [])1067        }, promise: function (a, b) {1068            var c, d = 1, e = n.Deferred(), f = this, g = this.length, h = function () {1069                --d || e.resolveWith(f, [f])1070            };1071            "string" != typeof a && (b = a, a = void 0), a = a || "fx";1072            while (g--) c = L.get(f[g], a + "queueHooks"), c && c.empty && (d++, c.empty.add(h));1073            return h(), e.promise(b)1074        }1075    });1076    var Q = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source, R = ["Top", "Right", "Bottom", "Left"], S = function (a, b) {1077        return a = b || a, "none" === n.css(a, "display") || !n.contains(a.ownerDocument, a)1078    }, T = /^(?:checkbox|radio)$/i;1079    !function () {1080        var a = l.createDocumentFragment(), b = a.appendChild(l.createElement("div")), c = l.createElement("input");1081        c.setAttribute("type", "radio"), c.setAttribute("checked", "checked"), c.setAttribute("name", "t"), b.appendChild(c), k.checkClone = b.cloneNode(!0).cloneNode(!0).lastChild.checked, b.innerHTML = "<textarea>x</textarea>", k.noCloneChecked = !!b.cloneNode(!0).lastChild.defaultValue1082    }();1083    var U = "undefined";1084    k.focusinBubbles = "onfocusin" in a;1085    var V = /^key/, W = /^(?:mouse|pointer|contextmenu)|click/, X = /^(?:focusinfocus|focusoutblur)$/,1086        Y = /^([^.]*)(?:\.(.+)|)$/;1087 1088    function Z() {1089        return !01090    }1091 1092    function $() {1093        return !11094    }1095 1096    function _() {1097        try {1098            return l.activeElement1099        } catch (a) {1100        }1101    }1102 1103    n.event = {1104        global: {},1105        add: function (a, b, c, d, e) {1106            var f, g, h, i, j, k, l, m, o, p, q, r = L.get(a);1107            if (r) {1108                c.handler && (f = c, c = f.handler, e = f.selector), c.guid || (c.guid = n.guid++), (i = r.events) || (i = r.events = {}), (g = r.handle) || (g = r.handle = function (b) {1109                    return typeof n !== U && n.event.triggered !== b.type ? n.event.dispatch.apply(a, arguments) : void 01110                }), b = (b || "").match(E) || [""], j = b.length;1111                while (j--) h = Y.exec(b[j]) || [], o = q = h[1], p = (h[2] || "").split(".").sort(), o && (l = n.event.special[o] || {}, o = (e ? l.delegateType : l.bindType) || o, l = n.event.special[o] || {}, k = n.extend({1112                    type: o,1113                    origType: q,1114                    data: d,1115                    handler: c,1116                    guid: c.guid,1117                    selector: e,1118                    needsContext: e && n.expr.match.needsContext.test(e),1119                    namespace: p.join(".")1120                }, f), (m = i[o]) || (m = i[o] = [], m.delegateCount = 0, l.setup && l.setup.call(a, d, p, g) !== !1 || a.addEventListener && a.addEventListener(o, g, !1)), l.add && (l.add.call(a, k), k.handler.guid || (k.handler.guid = c.guid)), e ? m.splice(m.delegateCount++, 0, k) : m.push(k), n.event.global[o] = !0)1121            }1122        },1123        remove: function (a, b, c, d, e) {1124            var f, g, h, i, j, k, l, m, o, p, q, r = L.hasData(a) && L.get(a);1125            if (r && (i = r.events)) {1126                b = (b || "").match(E) || [""], j = b.length;1127                while (j--) if (h = Y.exec(b[j]) || [], o = q = h[1], p = (h[2] || "").split(".").sort(), o) {1128                    l = n.event.special[o] || {}, o = (d ? l.delegateType : l.bindType) || o, m = i[o] || [], h = h[2] && new RegExp("(^|\\.)" + p.join("\\.(?:.*\\.|)") + "(\\.|$)"), g = f = m.length;1129                    while (f--) k = m[f], !e && q !== k.origType || c && c.guid !== k.guid || h && !h.test(k.namespace) || d && d !== k.selector && ("**" !== d || !k.selector) || (m.splice(f, 1), k.selector && m.delegateCount--, l.remove && l.remove.call(a, k));1130                    g && !m.length && (l.teardown && l.teardown.call(a, p, r.handle) !== !1 || n.removeEvent(a, o, r.handle), delete i[o])1131                } else for (o in i) n.event.remove(a, o + b[j], c, d, !0);1132                n.isEmptyObject(i) && (delete r.handle, L.remove(a, "events"))1133            }1134        },1135        trigger: function (b, c, d, e) {1136            var f, g, h, i, k, m, o, p = [d || l], q = j.call(b, "type") ? b.type : b,1137                r = j.call(b, "namespace") ? b.namespace.split(".") : [];1138            if (g = h = d = d || l, 3 !== d.nodeType && 8 !== d.nodeType && !X.test(q + n.event.triggered) && (q.indexOf(".") >= 0 && (r = q.split("."), q = r.shift(), r.sort()), k = q.indexOf(":") < 0 && "on" + q, b = b[n.expando] ? b : new n.Event(q, "object" == typeof b && b), b.isTrigger = e ? 2 : 3, b.namespace = r.join("."), b.namespace_re = b.namespace ? new RegExp("(^|\\.)" + r.join("\\.(?:.*\\.|)") + "(\\.|$)") : null, b.result = void 0, b.target || (b.target = d), c = null == c ? [b] : n.makeArray(c, [b]), o = n.event.special[q] || {}, e || !o.trigger || o.trigger.apply(d, c) !== !1)) {1139                if (!e && !o.noBubble && !n.isWindow(d)) {1140                    for (i = o.delegateType || q, X.test(i + q) || (g = g.parentNode); g; g = g.parentNode) p.push(g), h = g;1141                    h === (d.ownerDocument || l) && p.push(h.defaultView || h.parentWindow || a)1142                }1143                f = 0;1144                while ((g = p[f++]) && !b.isPropagationStopped()) b.type = f > 1 ? i : o.bindType || q, m = (L.get(g, "events") || {})[b.type] && L.get(g, "handle"), m && m.apply(g, c), m = k && g[k], m && m.apply && n.acceptData(g) && (b.result = m.apply(g, c), b.result === !1 && b.preventDefault());1145                return b.type = q, e || b.isDefaultPrevented() || o._default && o._default.apply(p.pop(), c) !== !1 || !n.acceptData(d) || k && n.isFunction(d[q]) && !n.isWindow(d) && (h = d[k], h && (d[k] = null), n.event.triggered = q, d[q](), n.event.triggered = void 0, h && (d[k] = h)), b.result1146            }1147        },1148        dispatch: function (a) {1149            a = n.event.fix(a);1150            var b, c, e, f, g, h = [], i = d.call(arguments), j = (L.get(this, "events") || {})[a.type] || [],1151                k = n.event.special[a.type] || {};1152            if (i[0] = a, a.delegateTarget = this, !k.preDispatch || k.preDispatch.call(this, a) !== !1) {1153                h = n.event.handlers.call(this, a, j), b = 0;1154                while ((f = h[b++]) && !a.isPropagationStopped()) {1155                    a.currentTarget = f.elem, c = 0;1156                    while ((g = f.handlers[c++]) && !a.isImmediatePropagationStopped()) (!a.namespace_re || a.namespace_re.test(g.namespace)) && (a.handleObj = g, a.data = g.data, e = ((n.event.special[g.origType] || {}).handle || g.handler).apply(f.elem, i), void 0 !== e && (a.result = e) === !1 && (a.preventDefault(), a.stopPropagation()))1157                }1158                return k.postDispatch && k.postDispatch.call(this, a), a.result1159            }1160        },1161        handlers: function (a, b) {1162            var c, d, e, f, g = [], h = b.delegateCount, i = a.target;1163            if (h && i.nodeType && (!a.button || "click" !== a.type)) for (; i !== this; i = i.parentNode || this) if (i.disabled !== !0 || "click" !== a.type) {1164                for (d = [], c = 0; h > c; c++) f = b[c], e = f.selector + " ", void 0 === d[e] && (d[e] = f.needsContext ? n(e, this).index(i) >= 0 : n.find(e, this, null, [i]).length), d[e] && d.push(f);1165                d.length && g.push({elem: i, handlers: d})1166            }1167            return h < b.length && g.push({elem: this, handlers: b.slice(h)}), g1168        },1169        props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),1170        fixHooks: {},1171        keyHooks: {1172            props: "char charCode key keyCode".split(" "), filter: function (a, b) {1173                return null == a.which && (a.which = null != b.charCode ? b.charCode : b.keyCode), a1174            }1175        },1176        mouseHooks: {1177            props: "button buttons clientX clientY offsetX offsetY pageX pageY screenX screenY toElement".split(" "),1178            filter: function (a, b) {1179                var c, d, e, f = b.button;1180                return null == a.pageX && null != b.clientX && (c = a.target.ownerDocument || l, d = c.documentElement, e = c.body, a.pageX = b.clientX + (d && d.scrollLeft || e && e.scrollLeft || 0) - (d && d.clientLeft || e && e.clientLeft || 0), a.pageY = b.clientY + (d && d.scrollTop || e && e.scrollTop || 0) - (d && d.clientTop || e && e.clientTop || 0)), a.which || void 0 === f || (a.which = 1 & f ? 1 : 2 & f ? 3 : 4 & f ? 2 : 0), a1181            }1182        },1183        fix: function (a) {1184            if (a[n.expando]) return a;1185            var b, c, d, e = a.type, f = a, g = this.fixHooks[e];1186            g || (this.fixHooks[e] = g = W.test(e) ? this.mouseHooks : V.test(e) ? this.keyHooks : {}), d = g.props ? this.props.concat(g.props) : this.props, a = new n.Event(f), b = d.length;1187            while (b--) c = d[b], a[c] = f[c];1188            return a.target || (a.target = l), 3 === a.target.nodeType && (a.target = a.target.parentNode), g.filter ? g.filter(a, f) : a1189        },1190        special: {1191            load: {noBubble: !0}, focus: {1192                trigger: function () {1193                    return this !== _() && this.focus ? (this.focus(), !1) : void 01194                }, delegateType: "focusin"1195            }, blur: {1196                trigger: function () {1197                    return this === _() && this.blur ? (this.blur(), !1) : void 01198                }, delegateType: "focusout"1199            }, click: {1200                trigger: function () {

Showing the first 1,200 of 2444 lines. Download the file for the rest.