Advertisement
jan_dembowski

http://code.jquery.com/jquery-1.11.3.min.js

Jul 9th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*! jQuery v1.11.3 | (c) 2005, 2015 jQuery Foundation, Inc. | jquery.org/license */ ! function(a, b) {
  2.     "object" == typeof module && "object" == typeof module.exports ? module.exports = a.document ? b(a, !0) : function(a) {
  3.         if (!a.document) throw new Error("jQuery requires a window with a document");
  4.         return b(a)
  5.     } : b(a)
  6. }("undefined" != typeof window ? window : this, function(a, b) {
  7.     var c = [],
  8.         d = c.slice,
  9.         e = c.concat,
  10.         f = c.push,
  11.         g = c.indexOf,
  12.         h = {},
  13.         i = h.toString,
  14.         j = h.hasOwnProperty,
  15.         k = {},
  16.         l = "1.11.3",
  17.         m = function(a, b) {
  18.             return new m.fn.init(a, b)
  19.         },
  20.         n = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,
  21.         o = /^-ms-/,
  22.         p = /-([\da-z])/gi,
  23.         q = function(a, b) {
  24.             return b.toUpperCase()
  25.         };
  26.     m.fn = m.prototype = {
  27.         jquery: l,
  28.         constructor: m,
  29.         selector: "",
  30.         length: 0,
  31.         toArray: function() {
  32.             return d.call(this)
  33.         },
  34.         get: function(a) {
  35.             return null != a ? 0 > a ? this[a + this.length] : this[a] : d.call(this)
  36.         },
  37.         pushStack: function(a) {
  38.             var b = m.merge(this.constructor(), a);
  39.             return b.prevObject = this, b.context = this.context, b
  40.         },
  41.         each: function(a, b) {
  42.             return m.each(this, a, b)
  43.         },
  44.         map: function(a) {
  45.             return this.pushStack(m.map(this, function(b, c) {
  46.                 return a.call(b, c, b)
  47.             }))
  48.         },
  49.         slice: function() {
  50.             return this.pushStack(d.apply(this, arguments))
  51.         },
  52.         first: function() {
  53.             return this.eq(0)
  54.         },
  55.         last: function() {
  56.             return this.eq(-1)
  57.         },
  58.         eq: function(a) {
  59.             var b = this.length,
  60.                 c = +a + (0 > a ? b : 0);
  61.             return this.pushStack(c >= 0 && b > c ? [this[c]] : [])
  62.         },
  63.         end: function() {
  64.             return this.prevObject || this.constructor(null)
  65.         },
  66.         push: f,
  67.         sort: c.sort,
  68.         splice: c.splice
  69.     }, m.extend = m.fn.extend = function() {
  70.         var a, b, c, d, e, f, g = arguments[0] || {},
  71.             h = 1,
  72.             i = arguments.length,
  73.             j = !1;
  74.         for ("boolean" == typeof g && (j = g, g = arguments[h] || {}, h++), "object" == typeof g || m.isFunction(g) || (g = {}), h === i && (g = this, h--); i > h; h++)
  75.             if (null != (e = arguments[h]))
  76.                 for (d in e) a = g[d], c = e[d], g !== c && (j && c && (m.isPlainObject(c) || (b = m.isArray(c))) ? (b ? (b = !1, f = a && m.isArray(a) ? a : []) : f = a && m.isPlainObject(a) ? a : {}, g[d] = m.extend(j, f, c)) : void 0 !== c && (g[d] = c));
  77.         return g
  78.     }, m.extend({
  79.         expando: "jQuery" + (l + Math.random()).replace(/\D/g, ""),
  80.         isReady: !0,
  81.         error: function(a) {
  82.             throw new Error(a)
  83.         },
  84.         noop: function() {},
  85.         isFunction: function(a) {
  86.             return "function" === m.type(a)
  87.         },
  88.         isArray: Array.isArray || function(a) {
  89.             return "array" === m.type(a)
  90.         },
  91.         isWindow: function(a) {
  92.             return null != a && a == a.window
  93.         },
  94.         isNumeric: function(a) {
  95.             return !m.isArray(a) && a - parseFloat(a) + 1 >= 0
  96.         },
  97.         isEmptyObject: function(a) {
  98.             var b;
  99.             for (b in a) return !1;
  100.             return !0
  101.         },
  102.         isPlainObject: function(a) {
  103.             var b;
  104.             if (!a || "object" !== m.type(a) || a.nodeType || m.isWindow(a)) return !1;
  105.             try {
  106.                 if (a.constructor && !j.call(a, "constructor") && !j.call(a.constructor.prototype, "isPrototypeOf")) return !1
  107.             } catch (c) {
  108.                 return !1
  109.             }
  110.             if (k.ownLast)
  111.                 for (b in a) return j.call(a, b);
  112.             for (b in a);
  113.             return void 0 === b || j.call(a, b)
  114.         },
  115.         type: function(a) {
  116.             return null == a ? a + "" : "object" == typeof a || "function" == typeof a ? h[i.call(a)] || "object" : typeof a
  117.         },
  118.         globalEval: function(b) {
  119.             b && m.trim(b) && (a.execScript || function(b) {
  120.                 a.eval.call(a, b)
  121.             })(b)
  122.         },
  123.         camelCase: function(a) {
  124.             return a.replace(o, "ms-").replace(p, q)
  125.         },
  126.         nodeName: function(a, b) {
  127.             return a.nodeName && a.nodeName.toLowerCase() === b.toLowerCase()
  128.         },
  129.         each: function(a, b, c) {
  130.             var d, e = 0,
  131.                 f = a.length,
  132.                 g = r(a);
  133.             if (c) {
  134.                 if (g) {
  135.                     for (; f > e; e++)
  136.                         if (d = b.apply(a[e], c), d === !1) break
  137.                 } else
  138.                     for (e in a)
  139.                         if (d = b.apply(a[e], c), d === !1) break
  140.             } else if (g) {
  141.                 for (; f > e; e++)
  142.                     if (d = b.call(a[e], e, a[e]), d === !1) break
  143.             } else
  144.                 for (e in a)
  145.                     if (d = b.call(a[e], e, a[e]), d === !1) break;
  146.             return a
  147.         },
  148.         trim: function(a) {
  149.             return null == a ? "" : (a + "").replace(n, "")
  150.         },
  151.         makeArray: function(a, b) {
  152.             var c = b || [];
  153.             return null != a && (r(Object(a)) ? m.merge(c, "string" == typeof a ? [a] : a) : f.call(c, a)), c
  154.         },
  155.         inArray: function(a, b, c) {
  156.             var d;
  157.             if (b) {
  158.                 if (g) return g.call(b, a, c);
  159.                 for (d = b.length, c = c ? 0 > c ? Math.max(0, d + c) : c : 0; d > c; c++)
  160.                     if (c in b && b[c] === a) return c
  161.             }
  162.             return -1
  163.         },
  164.         merge: function(a, b) {
  165.             var c = +b.length,
  166.                 d = 0,
  167.                 e = a.length;
  168.             while (c > d) a[e++] = b[d++];
  169.             if (c !== c)
  170.                 while (void 0 !== b[d]) a[e++] = b[d++];
  171.             return a.length = e, a
  172.         },
  173.         grep: function(a, b, c) {
  174.             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]);
  175.             return e
  176.         },
  177.         map: function(a, b, c) {
  178.             var d, f = 0,
  179.                 g = a.length,
  180.                 h = r(a),
  181.                 i = [];
  182.             if (h)
  183.                 for (; g > f; f++) d = b(a[f], f, c), null != d && i.push(d);
  184.             else
  185.                 for (f in a) d = b(a[f], f, c), null != d && i.push(d);
  186.             return e.apply([], i)
  187.         },
  188.         guid: 1,
  189.         proxy: function(a, b) {
  190.             var c, e, f;
  191.             return "string" == typeof b && (f = a[b], b = a, a = f), m.isFunction(a) ? (c = d.call(arguments, 2), e = function() {
  192.                 return a.apply(b || this, c.concat(d.call(arguments)))
  193.             }, e.guid = a.guid = a.guid || m.guid++, e) : void 0
  194.         },
  195.         now: function() {
  196.             return +new Date
  197.         },
  198.         support: k
  199.     }), m.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(a, b) {
  200.         h["[object " + b + "]"] = b.toLowerCase()
  201.     });
  202.  
  203.     function r(a) {
  204.         var b = "length" in a && a.length,
  205.             c = m.type(a);
  206.         return "function" === c || m.isWindow(a) ? !1 : 1 === a.nodeType && b ? !0 : "array" === c || 0 === b || "number" == typeof b && b > 0 && b - 1 in a
  207.     }
  208.     var s = function(a) {
  209.         var b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u = "sizzle" + 1 * new Date,
  210.             v = a.document,
  211.             w = 0,
  212.             x = 0,
  213.             y = ha(),
  214.             z = ha(),
  215.             A = ha(),
  216.             B = function(a, b) {
  217.                 return a === b && (l = !0), 0
  218.             },
  219.             C = 1 << 31,
  220.             D = {}.hasOwnProperty,
  221.             E = [],
  222.             F = E.pop,
  223.             G = E.push,
  224.             H = E.push,
  225.             I = E.slice,
  226.             J = function(a, b) {
  227.                 for (var c = 0, d = a.length; d > c; c++)
  228.                     if (a[c] === b) return c;
  229.                 return -1
  230.             },
  231.             K = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",
  232.             L = "[\\x20\\t\\r\\n\\f]",
  233.             M = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",
  234.             N = M.replace("w", "w#"),
  235.             O = "\\[" + L + "*(" + M + ")(?:" + L + "*([*^$|!~]?=)" + L + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + N + "))|)" + L + "*\\]",
  236.             P = ":(" + M + ")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|" + O + ")*)|.*)\\)|)",
  237.             Q = new RegExp(L + "+", "g"),
  238.             R = new RegExp("^" + L + "+|((?:^|[^\\\\])(?:\\\\.)*)" + L + "+$", "g"),
  239.             S = new RegExp("^" + L + "*," + L + "*"),
  240.             T = new RegExp("^" + L + "*([>+~]|" + L + ")" + L + "*"),
  241.             U = new RegExp("=" + L + "*([^\\]'\"]*?)" + L + "*\\]", "g"),
  242.             V = new RegExp(P),
  243.             W = new RegExp("^" + N + "$"),
  244.             X = {
  245.                 ID: new RegExp("^#(" + M + ")"),
  246.                 CLASS: new RegExp("^\\.(" + M + ")"),
  247.                 TAG: new RegExp("^(" + M.replace("w", "w*") + ")"),
  248.                 ATTR: new RegExp("^" + O),
  249.                 PSEUDO: new RegExp("^" + P),
  250.                 CHILD: new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + L + "*(even|odd|(([+-]|)(\\d*)n|)" + L + "*(?:([+-]|)" + L + "*(\\d+)|))" + L + "*\\)|)", "i"),
  251.                 bool: new RegExp("^(?:" + K + ")$", "i"),
  252.                 needsContext: new RegExp("^" + L + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + L + "*((?:-\\d)?\\d*)" + L + "*\\)|)(?=[^-]|$)", "i")
  253.             },
  254.             Y = /^(?:input|select|textarea|button)$/i,
  255.             Z = /^h\d$/i,
  256.             $ = /^[^{]+\{\s*\[native \w/,
  257.             _ = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,
  258.             aa = /[+~]/,
  259.             ba = /'|\\/g,
  260.             ca = new RegExp("\\\\([\\da-f]{1,6}" + L + "?|(" + L + ")|.)", "ig"),
  261.             da = function(a, b, c) {
  262.                 var d = "0x" + b - 65536;
  263.                 return d !== d || c ? b : 0 > d ? String.fromCharCode(d + 65536) : String.fromCharCode(d >> 10 | 55296, 1023 & d | 56320)
  264.             },
  265.             ea = function() {
  266.                 m()
  267.             };
  268.         try {
  269.             H.apply(E = I.call(v.childNodes), v.childNodes), E[v.childNodes.length].nodeType
  270.         } catch (fa) {
  271.             H = {
  272.                 apply: E.length ? function(a, b) {
  273.                     G.apply(a, I.call(b))
  274.                 } : function(a, b) {
  275.                     var c = a.length,
  276.                         d = 0;
  277.                     while (a[c++] = b[d++]);
  278.                     a.length = c - 1
  279.                 }
  280.             }
  281.         }
  282.  
  283.         function ga(a, b, d, e) {
  284.             var f, h, j, k, l, o, r, s, w, x;
  285.             if ((b ? b.ownerDocument || b : v) !== n && m(b), b = b || n, d = d || [], k = b.nodeType, "string" != typeof a || !a || 1 !== k && 9 !== k && 11 !== k) return d;
  286.             if (!e && p) {
  287.                 if (11 !== k && (f = _.exec(a)))
  288.                     if (j = f[1]) {
  289.                         if (9 === k) {
  290.                             if (h = b.getElementById(j), !h || !h.parentNode) return d;
  291.                             if (h.id === j) return d.push(h), d
  292.                         } else if (b.ownerDocument && (h = b.ownerDocument.getElementById(j)) && t(b, h) && h.id === j) return d.push(h), d
  293.                     } else {
  294.                         if (f[2]) return H.apply(d, b.getElementsByTagName(a)), d;
  295.                         if ((j = f[3]) && c.getElementsByClassName) return H.apply(d, b.getElementsByClassName(j)), d
  296.                     } if (c.qsa && (!q || !q.test(a))) {
  297.                     if (s = r = u, w = b, x = 1 !== k && a, 1 === k && "object" !== b.nodeName.toLowerCase()) {
  298.                         o = g(a), (r = b.getAttribute("id")) ? s = r.replace(ba, "\\$&") : b.setAttribute("id", s), s = "[id='" + s + "'] ", l = o.length;
  299.                         while (l--) o[l] = s + ra(o[l]);
  300.                         w = aa.test(a) && pa(b.parentNode) || b, x = o.join(",")
  301.                     }
  302.                     if (x) try {
  303.                         return H.apply(d, w.querySelectorAll(x)), d
  304.                     } catch (y) {} finally {
  305.                         r || b.removeAttribute("id")
  306.                     }
  307.                 }
  308.             }
  309.             return i(a.replace(R, "$1"), b, d, e)
  310.         }
  311.  
  312.         function ha() {
  313.             var a = [];
  314.  
  315.             function b(c, e) {
  316.                 return a.push(c + " ") > d.cacheLength && delete b[a.shift()], b[c + " "] = e
  317.             }
  318.             return b
  319.         }
  320.  
  321.         function ia(a) {
  322.             return a[u] = !0, a
  323.         }
  324.  
  325.         function ja(a) {
  326.             var b = n.createElement("div");
  327.             try {
  328.                 return !!a(b)
  329.             } catch (c) {
  330.                 return !1
  331.             } finally {
  332.                 b.parentNode && b.parentNode.removeChild(b), b = null
  333.             }
  334.         }
  335.  
  336.         function ka(a, b) {
  337.             var c = a.split("|"),
  338.                 e = a.length;
  339.             while (e--) d.attrHandle[c[e]] = b
  340.         }
  341.  
  342.         function la(a, b) {
  343.             var c = b && a,
  344.                 d = c && 1 === a.nodeType && 1 === b.nodeType && (~b.sourceIndex || C) - (~a.sourceIndex || C);
  345.             if (d) return d;
  346.             if (c)
  347.                 while (c = c.nextSibling)
  348.                     if (c === b) return -1;
  349.             return a ? 1 : -1
  350.         }
  351.  
  352.         function ma(a) {
  353.             return function(b) {
  354.                 var c = b.nodeName.toLowerCase();
  355.                 return "input" === c && b.type === a
  356.             }
  357.         }
  358.  
  359.         function na(a) {
  360.             return function(b) {
  361.                 var c = b.nodeName.toLowerCase();
  362.                 return ("input" === c || "button" === c) && b.type === a
  363.             }
  364.         }
  365.  
  366.         function oa(a) {
  367.             return ia(function(b) {
  368.                 return b = +b, ia(function(c, d) {
  369.                     var e, f = a([], c.length, b),
  370.                         g = f.length;
  371.                     while (g--) c[e = f[g]] && (c[e] = !(d[e] = c[e]))
  372.                 })
  373.             })
  374.         }
  375.  
  376.         function pa(a) {
  377.             return a && "undefined" != typeof a.getElementsByTagName && a
  378.         }
  379.         c = ga.support = {}, f = ga.isXML = function(a) {
  380.             var b = a && (a.ownerDocument || a).documentElement;
  381.             return b ? "HTML" !== b.nodeName : !1
  382.         }, m = ga.setDocument = function(a) {
  383.             var b, e, g = a ? a.ownerDocument || a : v;
  384.             return g !== n && 9 === g.nodeType && g.documentElement ? (n = g, o = g.documentElement, e = g.defaultView, e && e !== e.top && (e.addEventListener ? e.addEventListener("unload", ea, !1) : e.attachEvent && e.attachEvent("onunload", ea)), p = !f(g), c.attributes = ja(function(a) {
  385.                 return a.className = "i", !a.getAttribute("className")
  386.             }), c.getElementsByTagName = ja(function(a) {
  387.                 return a.appendChild(g.createComment("")), !a.getElementsByTagName("*").length
  388.             }), c.getElementsByClassName = $.test(g.getElementsByClassName), c.getById = ja(function(a) {
  389.                 return o.appendChild(a).id = u, !g.getElementsByName || !g.getElementsByName(u).length
  390.             }), c.getById ? (d.find.ID = function(a, b) {
  391.                 if ("undefined" != typeof b.getElementById && p) {
  392.                     var c = b.getElementById(a);
  393.                     return c && c.parentNode ? [c] : []
  394.                 }
  395.             }, d.filter.ID = function(a) {
  396.                 var b = a.replace(ca, da);
  397.                 return function(a) {
  398.                     return a.getAttribute("id") === b
  399.                 }
  400.             }) : (delete d.find.ID, d.filter.ID = function(a) {
  401.                 var b = a.replace(ca, da);
  402.                 return function(a) {
  403.                     var c = "undefined" != typeof a.getAttributeNode && a.getAttributeNode("id");
  404.                     return c && c.value === b
  405.                 }
  406.             }), d.find.TAG = c.getElementsByTagName ? function(a, b) {
  407.                 return "undefined" != typeof b.getElementsByTagName ? b.getElementsByTagName(a) : c.qsa ? b.querySelectorAll(a) : void 0
  408.             } : function(a, b) {
  409.                 var c, d = [],
  410.                     e = 0,
  411.                     f = b.getElementsByTagName(a);
  412.                 if ("*" === a) {
  413.                     while (c = f[e++]) 1 === c.nodeType && d.push(c);
  414.                     return d
  415.                 }
  416.                 return f
  417.             }, d.find.CLASS = c.getElementsByClassName && function(a, b) {
  418.                 return p ? b.getElementsByClassName(a) : void 0
  419.             }, r = [], q = [], (c.qsa = $.test(g.querySelectorAll)) && (ja(function(a) {
  420.                 o.appendChild(a).innerHTML = "<a id='" + u + "'></a><select id='" + u + "-\f]' msallowcapture=''><option selected=''></option></select>", a.querySelectorAll("[msallowcapture^='']").length && q.push("[*^$]=" + L + "*(?:''|\"\")"), a.querySelectorAll("[selected]").length || q.push("\\[" + L + "*(?:value|" + K + ")"), a.querySelectorAll("[id~=" + u + "-]").length || q.push("~="), a.querySelectorAll(":checked").length || q.push(":checked"), a.querySelectorAll("a#" + u + "+*").length || q.push(".#.+[+~]")
  421.             }), ja(function(a) {
  422.                 var b = g.createElement("input");
  423.                 b.setAttribute("type", "hidden"), a.appendChild(b).setAttribute("name", "D"), a.querySelectorAll("[name=d]").length && q.push("name" + L + "*[*^$|!~]?="), a.querySelectorAll(":enabled").length || q.push(":enabled", ":disabled"), a.querySelectorAll("*,:x"), q.push(",.*:")
  424.             })), (c.matchesSelector = $.test(s = o.matches || o.webkitMatchesSelector || o.mozMatchesSelector || o.oMatchesSelector || o.msMatchesSelector)) && ja(function(a) {
  425.                 c.disconnectedMatch = s.call(a, "div"), s.call(a, "[s!='']:x"), r.push("!=", P)
  426.             }), 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) {
  427.                 var c = 9 === a.nodeType ? a.documentElement : a,
  428.                     d = b && b.parentNode;
  429.                 return a === d || !(!d || 1 !== d.nodeType || !(c.contains ? c.contains(d) : a.compareDocumentPosition && 16 & a.compareDocumentPosition(d)))
  430.             } : function(a, b) {
  431.                 if (b)
  432.                     while (b = b.parentNode)
  433.                         if (b === a) return !0;
  434.                 return !1
  435.             }, B = b ? function(a, b) {
  436.                 if (a === b) return l = !0, 0;
  437.                 var d = !a.compareDocumentPosition - !b.compareDocumentPosition;
  438.                 return d ? d : (d = (a.ownerDocument || a) === (b.ownerDocument || b) ? a.compareDocumentPosition(b) : 1, 1 & d || !c.sortDetached && b.compareDocumentPosition(a) === d ? a === g || a.ownerDocument === v && t(v, a) ? -1 : b === g || b.ownerDocument === v && t(v, b) ? 1 : k ? J(k, a) - J(k, b) : 0 : 4 & d ? -1 : 1)
  439.             } : function(a, b) {
  440.                 if (a === b) return l = !0, 0;
  441.                 var c, d = 0,
  442.                     e = a.parentNode,
  443.                     f = b.parentNode,
  444.                     h = [a],
  445.                     i = [b];
  446.                 if (!e || !f) return a === g ? -1 : b === g ? 1 : e ? -1 : f ? 1 : k ? J(k, a) - J(k, b) : 0;
  447.                 if (e === f) return la(a, b);
  448.                 c = a;
  449.                 while (c = c.parentNode) h.unshift(c);
  450.                 c = b;
  451.                 while (c = c.parentNode) i.unshift(c);
  452.                 while (h[d] === i[d]) d++;
  453.                 return d ? la(h[d], i[d]) : h[d] === v ? -1 : i[d] === v ? 1 : 0
  454.             }, g) : n
  455.         }, ga.matches = function(a, b) {
  456.             return ga(a, null, null, b)
  457.         }, ga.matchesSelector = function(a, b) {
  458.             if ((a.ownerDocument || a) !== n && m(a), b = b.replace(U, "='$1']"), !(!c.matchesSelector || !p || r && r.test(b) || q && q.test(b))) try {
  459.                 var d = s.call(a, b);
  460.                 if (d || c.disconnectedMatch || a.document && 11 !== a.document.nodeType) return d
  461.             } catch (e) {}
  462.             return ga(b, n, null, [a]).length > 0
  463.         }, ga.contains = function(a, b) {
  464.             return (a.ownerDocument || a) !== n && m(a), t(a, b)
  465.         }, ga.attr = function(a, b) {
  466.             (a.ownerDocument || a) !== n && m(a);
  467.             var e = d.attrHandle[b.toLowerCase()],
  468.                 f = e && D.call(d.attrHandle, b.toLowerCase()) ? e(a, b, !p) : void 0;
  469.             return void 0 !== f ? f : c.attributes || !p ? a.getAttribute(b) : (f = a.getAttributeNode(b)) && f.specified ? f.value : null
  470.         }, ga.error = function(a) {
  471.             throw new Error("Syntax error, unrecognized expression: " + a)
  472.         }, ga.uniqueSort = function(a) {
  473.             var b, d = [],
  474.                 e = 0,
  475.                 f = 0;
  476.             if (l = !c.detectDuplicates, k = !c.sortStable && a.slice(0), a.sort(B), l) {
  477.                 while (b = a[f++]) b === a[f] && (e = d.push(f));
  478.                 while (e--) a.splice(d[e], 1)
  479.             }
  480.             return k = null, a
  481.         }, e = ga.getText = function(a) {
  482.             var b, c = "",
  483.                 d = 0,
  484.                 f = a.nodeType;
  485.             if (f) {
  486.                 if (1 === f || 9 === f || 11 === f) {
  487.                     if ("string" == typeof a.textContent) return a.textContent;
  488.                     for (a = a.firstChild; a; a = a.nextSibling) c += e(a)
  489.                 } else if (3 === f || 4 === f) return a.nodeValue
  490.             } else
  491.                 while (b = a[d++]) c += e(b);
  492.             return c
  493.         }, d = ga.selectors = {
  494.             cacheLength: 50,
  495.             createPseudo: ia,
  496.             match: X,
  497.             attrHandle: {},
  498.             find: {},
  499.             relative: {
  500.                 ">": {
  501.                     dir: "parentNode",
  502.                     first: !0
  503.                 },
  504.                 " ": {
  505.                     dir: "parentNode"
  506.                 },
  507.                 "+": {
  508.                     dir: "previousSibling",
  509.                     first: !0
  510.                 },
  511.                 "~": {
  512.                     dir: "previousSibling"
  513.                 }
  514.             },
  515.             preFilter: {
  516.                 ATTR: function(a) {
  517.                     return a[1] = a[1].replace(ca, da), a[3] = (a[3] || a[4] || a[5] || "").replace(ca, da), "~=" === a[2] && (a[3] = " " + a[3] + " "), a.slice(0, 4)
  518.                 },
  519.                 CHILD: function(a) {
  520.                     return a[1] = a[1].toLowerCase(), "nth" === a[1].slice(0, 3) ? (a[3] || ga.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] && ga.error(a[0]), a
  521.                 },
  522.                 PSEUDO: function(a) {
  523.                     var b, c = !a[6] && a[2];
  524.                     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))
  525.                 }
  526.             },
  527.             filter: {
  528.                 TAG: function(a) {
  529.                     var b = a.replace(ca, da).toLowerCase();
  530.                     return "*" === a ? function() {
  531.                         return !0
  532.                     } : function(a) {
  533.                         return a.nodeName && a.nodeName.toLowerCase() === b
  534.                     }
  535.                 },
  536.                 CLASS: function(a) {
  537.                     var b = y[a + " "];
  538.                     return b || (b = new RegExp("(^|" + L + ")" + a + "(" + L + "|$)")) && y(a, function(a) {
  539.                         return b.test("string" == typeof a.className && a.className || "undefined" != typeof a.getAttribute && a.getAttribute("class") || "")
  540.                     })
  541.                 },
  542.                 ATTR: function(a, b, c) {
  543.                     return function(d) {
  544.                         var e = ga.attr(d, a);
  545.                         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.replace(Q, " ") + " ").indexOf(c) > -1 : "|=" === b ? e === c || e.slice(0, c.length + 1) === c + "-" : !1) : !0
  546.                     }
  547.                 },
  548.                 CHILD: function(a, b, c, d, e) {
  549.                     var f = "nth" !== a.slice(0, 3),
  550.                         g = "last" !== a.slice(-4),
  551.                         h = "of-type" === b;
  552.                     return 1 === d && 0 === e ? function(a) {
  553.                         return !!a.parentNode
  554.                     } : function(b, c, i) {
  555.                         var j, k, l, m, n, o, p = f !== g ? "nextSibling" : "previousSibling",
  556.                             q = b.parentNode,
  557.                             r = h && b.nodeName.toLowerCase(),
  558.                             s = !i && !h;
  559.                         if (q) {
  560.                             if (f) {
  561.                                 while (p) {
  562.                                     l = b;
  563.                                     while (l = l[p])
  564.                                         if (h ? l.nodeName.toLowerCase() === r : 1 === l.nodeType) return !1;
  565.                                     o = p = "only" === a && !o && "nextSibling"
  566.                                 }
  567.                                 return !0
  568.                             }
  569.                             if (o = [g ? q.firstChild : q.lastChild], g && s) {
  570.                                 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];
  571.                                 while (l = ++n && l && l[p] || (m = n = 0) || o.pop())
  572.                                     if (1 === l.nodeType && ++m && l === b) {
  573.                                         k[a] = [w, n, m];
  574.                                         break
  575.                                     }
  576.                             } else if (s && (j = (b[u] || (b[u] = {}))[a]) && j[0] === w) m = j[1];
  577.                             else
  578.                                 while (l = ++n && l && l[p] || (m = n = 0) || o.pop())
  579.                                     if ((h ? l.nodeName.toLowerCase() === r : 1 === l.nodeType) && ++m && (s && ((l[u] || (l[u] = {}))[a] = [w, m]), l === b)) break;
  580.                             return m -= e, m === d || m % d === 0 && m / d >= 0
  581.                         }
  582.                     }
  583.                 },
  584.                 PSEUDO: function(a, b) {
  585.                     var c, e = d.pseudos[a] || d.setFilters[a.toLowerCase()] || ga.error("unsupported pseudo: " + a);
  586.                     return e[u] ? e(b) : e.length > 1 ? (c = [a, a, "", b], d.setFilters.hasOwnProperty(a.toLowerCase()) ? ia(function(a, c) {
  587.                         var d, f = e(a, b),
  588.                             g = f.length;
  589.                         while (g--) d = J(a, f[g]), a[d] = !(c[d] = f[g])
  590.                     }) : function(a) {
  591.                         return e(a, 0, c)
  592.                     }) : e
  593.                 }
  594.             },
  595.             pseudos: {
  596.                 not: ia(function(a) {
  597.                     var b = [],
  598.                         c = [],
  599.                         d = h(a.replace(R, "$1"));
  600.                     return d[u] ? ia(function(a, b, c, e) {
  601.                         var f, g = d(a, null, e, []),
  602.                             h = a.length;
  603.                         while (h--)(f = g[h]) && (a[h] = !(b[h] = f))
  604.                     }) : function(a, e, f) {
  605.                         return b[0] = a, d(b, null, f, c), b[0] = null, !c.pop()
  606.                     }
  607.                 }),
  608.                 has: ia(function(a) {
  609.                     return function(b) {
  610.                         return ga(a, b).length > 0
  611.                     }
  612.                 }),
  613.                 contains: ia(function(a) {
  614.                     return a = a.replace(ca, da),
  615.                         function(b) {
  616.                             return (b.textContent || b.innerText || e(b)).indexOf(a) > -1
  617.                         }
  618.                 }),
  619.                 lang: ia(function(a) {
  620.                     return W.test(a || "") || ga.error("unsupported lang: " + a), a = a.replace(ca, da).toLowerCase(),
  621.                         function(b) {
  622.                             var c;
  623.                             do
  624.                                 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);
  625.                             return !1
  626.                         }
  627.                 }),
  628.                 target: function(b) {
  629.                     var c = a.location && a.location.hash;
  630.                     return c && c.slice(1) === b.id
  631.                 },
  632.                 root: function(a) {
  633.                     return a === o
  634.                 },
  635.                 focus: function(a) {
  636.                     return a === n.activeElement && (!n.hasFocus || n.hasFocus()) && !!(a.type || a.href || ~a.tabIndex)
  637.                 },
  638.                 enabled: function(a) {
  639.                     return a.disabled === !1
  640.                 },
  641.                 disabled: function(a) {
  642.                     return a.disabled === !0
  643.                 },
  644.                 checked: function(a) {
  645.                     var b = a.nodeName.toLowerCase();
  646.                     return "input" === b && !!a.checked || "option" === b && !!a.selected
  647.                 },
  648.                 selected: function(a) {
  649.                     return a.parentNode && a.parentNode.selectedIndex, a.selected === !0
  650.                 },
  651.                 empty: function(a) {
  652.                     for (a = a.firstChild; a; a = a.nextSibling)
  653.                         if (a.nodeType < 6) return !1;
  654.                     return !0
  655.                 },
  656.                 parent: function(a) {
  657.                     return !d.pseudos.empty(a)
  658.                 },
  659.                 header: function(a) {
  660.                     return Z.test(a.nodeName)
  661.                 },
  662.                 input: function(a) {
  663.                     return Y.test(a.nodeName)
  664.                 },
  665.                 button: function(a) {
  666.                     var b = a.nodeName.toLowerCase();
  667.                     return "input" === b && "button" === a.type || "button" === b
  668.                 },
  669.                 text: function(a) {
  670.                     var b;
  671.                     return "input" === a.nodeName.toLowerCase() && "text" === a.type && (null == (b = a.getAttribute("type")) || "text" === b.toLowerCase())
  672.                 },
  673.                 first: oa(function() {
  674.                     return [0]
  675.                 }),
  676.                 last: oa(function(a, b) {
  677.                     return [b - 1]
  678.                 }),
  679.                 eq: oa(function(a, b, c) {
  680.                     return [0 > c ? c + b : c]
  681.                 }),
  682.                 even: oa(function(a, b) {
  683.                     for (var c = 0; b > c; c += 2) a.push(c);
  684.                     return a
  685.                 }),
  686.                 odd: oa(function(a, b) {
  687.                     for (var c = 1; b > c; c += 2) a.push(c);
  688.                     return a
  689.                 }),
  690.                 lt: oa(function(a, b, c) {
  691.                     for (var d = 0 > c ? c + b : c; --d >= 0;) a.push(d);
  692.                     return a
  693.                 }),
  694.                 gt: oa(function(a, b, c) {
  695.                     for (var d = 0 > c ? c + b : c; ++d < b;) a.push(d);
  696.                     return a
  697.                 })
  698.             }
  699.         }, d.pseudos.nth = d.pseudos.eq;
  700.         for (b in {
  701.                 radio: !0,
  702.                 checkbox: !0,
  703.                 file: !0,
  704.                 password: !0,
  705.                 image: !0
  706.             }) d.pseudos[b] = ma(b);
  707.         for (b in {
  708.                 submit: !0,
  709.                 reset: !0
  710.             }) d.pseudos[b] = na(b);
  711.  
  712.         function qa() {}
  713.         qa.prototype = d.filters = d.pseudos, d.setFilters = new qa, g = ga.tokenize = function(a, b) {
  714.             var c, e, f, g, h, i, j, k = z[a + " "];
  715.             if (k) return b ? 0 : k.slice(0);
  716.             h = a, i = [], j = d.preFilter;
  717.             while (h) {
  718.                 (!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({
  719.                     value: c,
  720.                     type: e[0].replace(R, " ")
  721.                 }), h = h.slice(c.length));
  722.                 for (g in d.filter) !(e = X[g].exec(h)) || j[g] && !(e = j[g](e)) || (c = e.shift(), f.push({
  723.                     value: c,
  724.                     type: g,
  725.                     matches: e
  726.                 }), h = h.slice(c.length));
  727.                 if (!c) break
  728.             }
  729.             return b ? h.length : h ? ga.error(a) : z(a, i).slice(0)
  730.         };
  731.  
  732.         function ra(a) {
  733.             for (var b = 0, c = a.length, d = ""; c > b; b++) d += a[b].value;
  734.             return d
  735.         }
  736.  
  737.         function sa(a, b, c) {
  738.             var d = b.dir,
  739.                 e = c && "parentNode" === d,
  740.                 f = x++;
  741.             return b.first ? function(b, c, f) {
  742.                 while (b = b[d])
  743.                     if (1 === b.nodeType || e) return a(b, c, f)
  744.             } : function(b, c, g) {
  745.                 var h, i, j = [w, f];
  746.                 if (g) {
  747.                     while (b = b[d])
  748.                         if ((1 === b.nodeType || e) && a(b, c, g)) return !0
  749.                 } else
  750.                     while (b = b[d])
  751.                         if (1 === b.nodeType || e) {
  752.                             if (i = b[u] || (b[u] = {}), (h = i[d]) && h[0] === w && h[1] === f) return j[2] = h[2];
  753.                             if (i[d] = j, j[2] = a(b, c, g)) return !0
  754.                         }
  755.             }
  756.         }
  757.  
  758.         function ta(a) {
  759.             return a.length > 1 ? function(b, c, d) {
  760.                 var e = a.length;
  761.                 while (e--)
  762.                     if (!a[e](b, c, d)) return !1;
  763.                 return !0
  764.             } : a[0]
  765.         }
  766.  
  767.         function ua(a, b, c) {
  768.             for (var d = 0, e = b.length; e > d; d++) ga(a, b[d], c);
  769.             return c
  770.         }
  771.  
  772.         function va(a, b, c, d, e) {
  773.             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));
  774.             return g
  775.         }
  776.  
  777.         function wa(a, b, c, d, e, f) {
  778.             return d && !d[u] && (d = wa(d)), e && !e[u] && (e = wa(e, f)), ia(function(f, g, h, i) {
  779.                 var j, k, l, m = [],
  780.                     n = [],
  781.                     o = g.length,
  782.                     p = f || ua(b || "*", h.nodeType ? [h] : h, []),
  783.                     q = !a || !f && b ? p : va(p, m, a, h, i),
  784.                     r = c ? e || (f ? a : o || d) ? [] : g : q;
  785.                 if (c && c(q, r, h, i), d) {
  786.                     j = va(r, n), d(j, [], h, i), k = j.length;
  787.                     while (k--)(l = j[k]) && (r[n[k]] = !(q[n[k]] = l))
  788.                 }
  789.                 if (f) {
  790.                     if (e || a) {
  791.                         if (e) {
  792.                             j = [], k = r.length;
  793.                             while (k--)(l = r[k]) && j.push(q[k] = l);
  794.                             e(null, r = [], j, i)
  795.                         }
  796.                         k = r.length;
  797.                         while (k--)(l = r[k]) && (j = e ? J(f, l) : m[k]) > -1 && (f[j] = !(g[j] = l))
  798.                     }
  799.                 } else r = va(r === g ? r.splice(o, r.length) : r), e ? e(null, g, r, i) : H.apply(g, r)
  800.             })
  801.         }
  802.  
  803.         function xa(a) {
  804.             for (var b, c, e, f = a.length, g = d.relative[a[0].type], h = g || d.relative[" "], i = g ? 1 : 0, k = sa(function(a) {
  805.                     return a === b
  806.                 }, h, !0), l = sa(function(a) {
  807.                     return J(b, a) > -1
  808.                 }, h, !0), m = [function(a, c, d) {
  809.                     var e = !g && (d || c !== j) || ((b = c).nodeType ? k(a, c, d) : l(a, c, d));
  810.                     return b = null, e
  811.                 }]; f > i; i++)
  812.                 if (c = d.relative[a[i].type]) m = [sa(ta(m), c)];
  813.                 else {
  814.                     if (c = d.filter[a[i].type].apply(null, a[i].matches), c[u]) {
  815.                         for (e = ++i; f > e; e++)
  816.                             if (d.relative[a[e].type]) break;
  817.                         return wa(i > 1 && ta(m), i > 1 && ra(a.slice(0, i - 1).concat({
  818.                             value: " " === a[i - 2].type ? "*" : ""
  819.                         })).replace(R, "$1"), c, e > i && xa(a.slice(i, e)), f > e && xa(a = a.slice(e)), f > e && ra(a))
  820.                     }
  821.                     m.push(c)
  822.                 } return ta(m)
  823.         }
  824.  
  825.         function ya(a, b) {
  826.             var c = b.length > 0,
  827.                 e = a.length > 0,
  828.                 f = function(f, g, h, i, k) {
  829.                     var l, m, o, p = 0,
  830.                         q = "0",
  831.                         r = f && [],
  832.                         s = [],
  833.                         t = j,
  834.                         u = f || e && d.find.TAG("*", k),
  835.                         v = w += null == t ? 1 : Math.random() || .1,
  836.                         x = u.length;
  837.                     for (k && (j = g !== n && g); q !== x && null != (l = u[q]); q++) {
  838.                         if (e && l) {
  839.                             m = 0;
  840.                             while (o = a[m++])
  841.                                 if (o(l, g, h)) {
  842.                                     i.push(l);
  843.                                     break
  844.                                 } k && (w = v)
  845.                         }
  846.                         c && ((l = !o && l) && p--, f && r.push(l))
  847.                     }
  848.                     if (p += q, c && q !== p) {
  849.                         m = 0;
  850.                         while (o = b[m++]) o(r, s, g, h);
  851.                         if (f) {
  852.                             if (p > 0)
  853.                                 while (q--) r[q] || s[q] || (s[q] = F.call(i));
  854.                             s = va(s)
  855.                         }
  856.                         H.apply(i, s), k && !f && s.length > 0 && p + b.length > 1 && ga.uniqueSort(i)
  857.                     }
  858.                     return k && (w = v, j = t), r
  859.                 };
  860.             return c ? ia(f) : f
  861.         }
  862.         return h = ga.compile = function(a, b) {
  863.             var c, d = [],
  864.                 e = [],
  865.                 f = A[a + " "];
  866.             if (!f) {
  867.                 b || (b = g(a)), c = b.length;
  868.                 while (c--) f = xa(b[c]), f[u] ? d.push(f) : e.push(f);
  869.                 f = A(a, ya(e, d)), f.selector = a
  870.             }
  871.             return f
  872.         }, i = ga.select = function(a, b, e, f) {
  873.             var i, j, k, l, m, n = "function" == typeof a && a,
  874.                 o = !f && g(a = n.selector || a);
  875.             if (e = e || [], 1 === o.length) {
  876.                 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]) {
  877.                     if (b = (d.find.ID(k.matches[0].replace(ca, da), b) || [])[0], !b) return e;
  878.                     n && (b = b.parentNode), a = a.slice(j.shift().value.length)
  879.                 }
  880.                 i = X.needsContext.test(a) ? 0 : j.length;
  881.                 while (i--) {
  882.                     if (k = j[i], d.relative[l = k.type]) break;
  883.                     if ((m = d.find[l]) && (f = m(k.matches[0].replace(ca, da), aa.test(j[0].type) && pa(b.parentNode) || b))) {
  884.                         if (j.splice(i, 1), a = f.length && ra(j), !a) return H.apply(e, f), e;
  885.                         break
  886.                     }
  887.                 }
  888.             }
  889.             return (n || h(a, o))(f, b, !p, e, aa.test(a) && pa(b.parentNode) || b), e
  890.         }, c.sortStable = u.split("").sort(B).join("") === u, c.detectDuplicates = !!l, m(), c.sortDetached = ja(function(a) {
  891.             return 1 & a.compareDocumentPosition(n.createElement("div"))
  892.         }), ja(function(a) {
  893.             return a.innerHTML = "<a href='#'></a>", "#" === a.firstChild.getAttribute("href")
  894.         }) || ka("type|href|height|width", function(a, b, c) {
  895.             return c ? void 0 : a.getAttribute(b, "type" === b.toLowerCase() ? 1 : 2)
  896.         }), c.attributes && ja(function(a) {
  897.             return a.innerHTML = "<input/>", a.firstChild.setAttribute("value", ""), "" === a.firstChild.getAttribute("value")
  898.         }) || ka("value", function(a, b, c) {
  899.             return c || "input" !== a.nodeName.toLowerCase() ? void 0 : a.defaultValue
  900.         }), ja(function(a) {
  901.             return null == a.getAttribute("disabled")
  902.         }) || ka(K, function(a, b, c) {
  903.             var d;
  904.             return c ? void 0 : a[b] === !0 ? b.toLowerCase() : (d = a.getAttributeNode(b)) && d.specified ? d.value : null
  905.         }), ga
  906.     }(a);
  907.     m.find = s, m.expr = s.selectors, m.expr[":"] = m.expr.pseudos, m.unique = s.uniqueSort, m.text = s.getText, m.isXMLDoc = s.isXML, m.contains = s.contains;
  908.     var t = m.expr.match.needsContext,
  909.         u = /^<(\w+)\s*\/?>(?:<\/\1>|)$/,
  910.         v = /^.[^:#\[\.,]*$/;
  911.  
  912.     function w(a, b, c) {
  913.         if (m.isFunction(b)) return m.grep(a, function(a, d) {
  914.             return !!b.call(a, d, a) !== c
  915.         });
  916.         if (b.nodeType) return m.grep(a, function(a) {
  917.             return a === b !== c
  918.         });
  919.         if ("string" == typeof b) {
  920.             if (v.test(b)) return m.filter(b, a, c);
  921.             b = m.filter(b, a)
  922.         }
  923.         return m.grep(a, function(a) {
  924.             return m.inArray(a, b) >= 0 !== c
  925.         })
  926.     }
  927.     m.filter = function(a, b, c) {
  928.         var d = b[0];
  929.         return c && (a = ":not(" + a + ")"), 1 === b.length && 1 === d.nodeType ? m.find.matchesSelector(d, a) ? [d] : [] : m.find.matches(a, m.grep(b, function(a) {
  930.             return 1 === a.nodeType
  931.         }))
  932.     }, m.fn.extend({
  933.         find: function(a) {
  934.             var b, c = [],
  935.                 d = this,
  936.                 e = d.length;
  937.             if ("string" != typeof a) return this.pushStack(m(a).filter(function() {
  938.                 for (b = 0; e > b; b++)
  939.                     if (m.contains(d[b], this)) return !0
  940.             }));
  941.             for (b = 0; e > b; b++) m.find(a, d[b], c);
  942.             return c = this.pushStack(e > 1 ? m.unique(c) : c), c.selector = this.selector ? this.selector + " " + a : a, c
  943.         },
  944.         filter: function(a) {
  945.             return this.pushStack(w(this, a || [], !1))
  946.         },
  947.         not: function(a) {
  948.             return this.pushStack(w(this, a || [], !0))
  949.         },
  950.         is: function(a) {
  951.             return !!w(this, "string" == typeof a && t.test(a) ? m(a) : a || [], !1).length
  952.         }
  953.     });
  954.     var x, y = a.document,
  955.         z = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,
  956.         A = m.fn.init = function(a, b) {
  957.             var c, d;
  958.             if (!a) return this;
  959.             if ("string" == typeof a) {
  960.                 if (c = "<" === a.charAt(0) && ">" === a.charAt(a.length - 1) && a.length >= 3 ? [null, a, null] : z.exec(a), !c || !c[1] && b) return !b || b.jquery ? (b || x).find(a) : this.constructor(b).find(a);
  961.                 if (c[1]) {
  962.                     if (b = b instanceof m ? b[0] : b, m.merge(this, m.parseHTML(c[1], b && b.nodeType ? b.ownerDocument || b : y, !0)), u.test(c[1]) && m.isPlainObject(b))
  963.                         for (c in b) m.isFunction(this[c]) ? this[c](b[c]) : this.attr(c, b[c]);
  964.                     return this
  965.                 }
  966.                 if (d = y.getElementById(c[2]), d && d.parentNode) {
  967.                     if (d.id !== c[2]) return x.find(a);
  968.                     this.length = 1, this[0] = d
  969.                 }
  970.                 return this.context = y, this.selector = a, this
  971.             }
  972.             return a.nodeType ? (this.context = this[0] = a, this.length = 1, this) : m.isFunction(a) ? "undefined" != typeof x.ready ? x.ready(a) : a(m) : (void 0 !== a.selector && (this.selector = a.selector, this.context = a.context), m.makeArray(a, this))
  973.         };
  974.     A.prototype = m.fn, x = m(y);
  975.     var B = /^(?:parents|prev(?:Until|All))/,
  976.         C = {
  977.             children: !0,
  978.             contents: !0,
  979.             next: !0,
  980.             prev: !0
  981.         };
  982.     m.extend({
  983.         dir: function(a, b, c) {
  984.             var d = [],
  985.                 e = a[b];
  986.             while (e && 9 !== e.nodeType && (void 0 === c || 1 !== e.nodeType || !m(e).is(c))) 1 === e.nodeType && d.push(e), e = e[b];
  987.             return d
  988.         },
  989.         sibling: function(a, b) {
  990.             for (var c = []; a; a = a.nextSibling) 1 === a.nodeType && a !== b && c.push(a);
  991.             return c
  992.         }
  993.     }), m.fn.extend({
  994.         has: function(a) {
  995.             var b, c = m(a, this),
  996.                 d = c.length;
  997.             return this.filter(function() {
  998.                 for (b = 0; d > b; b++)
  999.                     if (m.contains(this, c[b])) return !0
  1000.             })
  1001.         },
  1002.         closest: function(a, b) {
  1003.             for (var c, d = 0, e = this.length, f = [], g = t.test(a) || "string" != typeof a ? m(a, b || this.context) : 0; e > d; d++)
  1004.                 for (c = this[d]; c && c !== b; c = c.parentNode)
  1005.                     if (c.nodeType < 11 && (g ? g.index(c) > -1 : 1 === c.nodeType && m.find.matchesSelector(c, a))) {
  1006.                         f.push(c);
  1007.                         break
  1008.                     } return this.pushStack(f.length > 1 ? m.unique(f) : f)
  1009.         },
  1010.         index: function(a) {
  1011.             return a ? "string" == typeof a ? m.inArray(this[0], m(a)) : m.inArray(a.jquery ? a[0] : a, this) : this[0] && this[0].parentNode ? this.first().prevAll().length : -1
  1012.         },
  1013.         add: function(a, b) {
  1014.             return this.pushStack(m.unique(m.merge(this.get(), m(a, b))))
  1015.         },
  1016.         addBack: function(a) {
  1017.             return this.add(null == a ? this.prevObject : this.prevObject.filter(a))
  1018.         }
  1019.     });
  1020.  
  1021.     function D(a, b) {
  1022.         do a = a[b]; while (a && 1 !== a.nodeType);
  1023.         return a
  1024.     }
  1025.     m.each({
  1026.         parent: function(a) {
  1027.             var b = a.parentNode;
  1028.             return b && 11 !== b.nodeType ? b : null
  1029.         },
  1030.         parents: function(a) {
  1031.             return m.dir(a, "parentNode")
  1032.         },
  1033.         parentsUntil: function(a, b, c) {
  1034.             return m.dir(a, "parentNode", c)
  1035.         },
  1036.         next: function(a) {
  1037.             return D(a, "nextSibling")
  1038.         },
  1039.         prev: function(a) {
  1040.             return D(a, "previousSibling")
  1041.         },
  1042.         nextAll: function(a) {
  1043.             return m.dir(a, "nextSibling")
  1044.         },
  1045.         prevAll: function(a) {
  1046.             return m.dir(a, "previousSibling")
  1047.         },
  1048.         nextUntil: function(a, b, c) {
  1049.             return m.dir(a, "nextSibling", c)
  1050.         },
  1051.         prevUntil: function(a, b, c) {
  1052.             return m.dir(a, "previousSibling", c)
  1053.         },
  1054.         siblings: function(a) {
  1055.             return m.sibling((a.parentNode || {}).firstChild, a)
  1056.         },
  1057.         children: function(a) {
  1058.             return m.sibling(a.firstChild)
  1059.         },
  1060.         contents: function(a) {
  1061.             return m.nodeName(a, "iframe") ? a.contentDocument || a.contentWindow.document : m.merge([], a.childNodes)
  1062.         }
  1063.     }, function(a, b) {
  1064.         m.fn[a] = function(c, d) {
  1065.             var e = m.map(this, b, c);
  1066.             return "Until" !== a.slice(-5) && (d = c), d && "string" == typeof d && (e = m.filter(d, e)), this.length > 1 && (C[a] || (e = m.unique(e)), B.test(a) && (e = e.reverse())), this.pushStack(e)
  1067.         }
  1068.     });
  1069.     var E = /\S+/g,
  1070.         F = {};
  1071.  
  1072.     function G(a) {
  1073.         var b = F[a] = {};
  1074.         return m.each(a.match(E) || [], function(a, c) {
  1075.             b[c] = !0
  1076.         }), b
  1077.     }
  1078.     m.Callbacks = function(a) {
  1079.         a = "string" == typeof a ? F[a] || G(a) : m.extend({}, a);
  1080.         var b, c, d, e, f, g, h = [],
  1081.             i = !a.once && [],
  1082.             j = function(l) {
  1083.                 for (c = a.memory && l, d = !0, f = g || 0, g = 0, e = h.length, b = !0; h && e > f; f++)
  1084.                     if (h[f].apply(l[0], l[1]) === !1 && a.stopOnFalse) {
  1085.                         c = !1;
  1086.                         break
  1087.                     } b = !1, h && (i ? i.length && j(i.shift()) : c ? h = [] : k.disable())
  1088.             },
  1089.             k = {
  1090.                 add: function() {
  1091.                     if (h) {
  1092.                         var d = h.length;
  1093.                         ! function f(b) {
  1094.                             m.each(b, function(b, c) {
  1095.                                 var d = m.type(c);
  1096.                                 "function" === d ? a.unique && k.has(c) || h.push(c) : c && c.length && "string" !== d && f(c)
  1097.                             })
  1098.                         }(arguments), b ? e = h.length : c && (g = d, j(c))
  1099.                     }
  1100.                     return this
  1101.                 },
  1102.                 remove: function() {
  1103.                     return h && m.each(arguments, function(a, c) {
  1104.                         var d;
  1105.                         while ((d = m.inArray(c, h, d)) > -1) h.splice(d, 1), b && (e >= d && e--, f >= d && f--)
  1106.                     }), this
  1107.                 },
  1108.                 has: function(a) {
  1109.                     return a ? m.inArray(a, h) > -1 : !(!h || !h.length)
  1110.                 },
  1111.                 empty: function() {
  1112.                     return h = [], e = 0, this
  1113.                 },
  1114.                 disable: function() {
  1115.                     return h = i = c = void 0, this
  1116.                 },
  1117.                 disabled: function() {
  1118.                     return !h
  1119.                 },
  1120.                 lock: function() {
  1121.                     return i = void 0, c || k.disable(), this
  1122.                 },
  1123.                 locked: function() {
  1124.                     return !i
  1125.                 },
  1126.                 fireWith: function(a, c) {
  1127.                     return !h || d && !i || (c = c || [], c = [a, c.slice ? c.slice() : c], b ? i.push(c) : j(c)), this
  1128.                 },
  1129.                 fire: function() {
  1130.                     return k.fireWith(this, arguments), this
  1131.                 },
  1132.                 fired: function() {
  1133.                     return !!d
  1134.                 }
  1135.             };
  1136.         return k
  1137.     }, m.extend({
  1138.         Deferred: function(a) {
  1139.             var b = [
  1140.                     ["resolve", "done", m.Callbacks("once memory"), "resolved"],
  1141.                     ["reject", "fail", m.Callbacks("once memory"), "rejected"],
  1142.                     ["notify", "progress", m.Callbacks("memory")]
  1143.                 ],
  1144.                 c = "pending",
  1145.                 d = {
  1146.                     state: function() {
  1147.                         return c
  1148.                     },
  1149.                     always: function() {
  1150.                         return e.done(arguments).fail(arguments), this
  1151.                     },
  1152.                     then: function() {
  1153.                         var a = arguments;
  1154.                         return m.Deferred(function(c) {
  1155.                             m.each(b, function(b, f) {
  1156.                                 var g = m.isFunction(a[b]) && a[b];
  1157.                                 e[f[1]](function() {
  1158.                                     var a = g && g.apply(this, arguments);
  1159.                                     a && m.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)
  1160.                                 })
  1161.                             }), a = null
  1162.                         }).promise()
  1163.                     },
  1164.                     promise: function(a) {
  1165.                         return null != a ? m.extend(a, d) : d
  1166.                     }
  1167.                 },
  1168.                 e = {};
  1169.             return d.pipe = d.then, m.each(b, function(a, f) {
  1170.                 var g = f[2],
  1171.                     h = f[3];
  1172.                 d[f[1]] = g.add, h && g.add(function() {
  1173.                     c = h
  1174.                 }, b[1 ^ a][2].disable, b[2][2].lock), e[f[0]] = function() {
  1175.                     return e[f[0] + "With"](this === e ? d : this, arguments), this
  1176.                 }, e[f[0] + "With"] = g.fireWith
  1177.             }), d.promise(e), a && a.call(e, e), e
  1178.         },
  1179.         when: function(a) {
  1180.             var b = 0,
  1181.                 c = d.call(arguments),
  1182.                 e = c.length,
  1183.                 f = 1 !== e || a && m.isFunction(a.promise) ? e : 0,
  1184.                 g = 1 === f ? a : m.Deferred(),
  1185.                 h = function(a, b, c) {
  1186.                     return function(e) {
  1187.                         b[a] = this, c[a] = arguments.length > 1 ? d.call(arguments) : e, c === i ? g.notifyWith(b, c) : --f || g.resolveWith(b, c)
  1188.                     }
  1189.                 },
  1190.                 i, j, k;
  1191.             if (e > 1)
  1192.                 for (i = new Array(e), j = new Array(e), k = new Array(e); e > b; b++) c[b] && m.isFunction(c[b].promise) ? c[b].promise().done(h(b, k, c)).fail(g.reject).progress(h(b, j, i)) : --f;
  1193.             return f || g.resolveWith(k, c), g.promise()
  1194.         }
  1195.     });
  1196.     var H;
  1197.     m.fn.ready = function(a) {
  1198.         return m.ready.promise().done(a), this
  1199.     }, m.extend({
  1200.         isReady: !1,
  1201.         readyWait: 1,
  1202.         holdReady: function(a) {
  1203.             a ? m.readyWait++ : m.ready(!0)
  1204.         },
  1205.         ready: function(a) {
  1206.             if (a === !0 ? !--m.readyWait : !m.isReady) {
  1207.                 if (!y.body) return setTimeout(m.ready);
  1208.                 m.isReady = !0, a !== !0 && --m.readyWait > 0 || (H.resolveWith(y, [m]), m.fn.triggerHandler && (m(y).triggerHandler("ready"), m(y).off("ready")))
  1209.             }
  1210.         }
  1211.     });
  1212.  
  1213.     function I() {
  1214.         y.addEventListener ? (y.removeEventListener("DOMContentLoaded", J, !1), a.removeEventListener("load", J, !1)) : (y.detachEvent("onreadystatechange", J), a.detachEvent("onload", J))
  1215.     }
  1216.  
  1217.     function J() {
  1218.         (y.addEventListener || "load" === event.type || "complete" === y.readyState) && (I(), m.ready())
  1219.     }
  1220.     m.ready.promise = function(b) {
  1221.         if (!H)
  1222.             if (H = m.Deferred(), "complete" === y.readyState) setTimeout(m.ready);
  1223.             else if (y.addEventListener) y.addEventListener("DOMContentLoaded", J, !1), a.addEventListener("load", J, !1);
  1224.         else {
  1225.             y.attachEvent("onreadystatechange", J), a.attachEvent("onload", J);
  1226.             var c = !1;
  1227.             try {
  1228.                 c = null == a.frameElement && y.documentElement
  1229.             } catch (d) {}
  1230.             c && c.doScroll && ! function e() {
  1231.                 if (!m.isReady) {
  1232.                     try {
  1233.                         c.doScroll("left")
  1234.                     } catch (a) {
  1235.                         return setTimeout(e, 50)
  1236.                     }
  1237.                     I(), m.ready()
  1238.                 }
  1239.             }()
  1240.         }
  1241.         return H.promise(b)
  1242.     };
  1243.     var K = "undefined",
  1244.         L;
  1245.     for (L in m(k)) break;
  1246.     k.ownLast = "0" !== L, k.inlineBlockNeedsLayout = !1, m(function() {
  1247.             var a, b, c, d;
  1248.             c = y.getElementsByTagName("body")[0], c && c.style && (b = y.createElement("div"), d = y.createElement("div"), d.style.cssText = "position:absolute;border:0;width:0;height:0;top:0;left:-9999px", c.appendChild(d).appendChild(b), typeof b.style.zoom !== K && (b.style.cssText = "display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1", k.inlineBlockNeedsLayout = a = 3 === b.offsetWidth, a && (c.style.zoom = 1)), c.removeChild(d))
  1249.         }),
  1250.         function() {
  1251.             var a = y.createElement("div");
  1252.             if (null == k.deleteExpando) {
  1253.                 k.deleteExpando = !0;
  1254.                 try {
  1255.                     delete a.test
  1256.                 } catch (b) {
  1257.                     k.deleteExpando = !1
  1258.                 }
  1259.             }
  1260.             a = null
  1261.         }(), m.acceptData = function(a) {
  1262.             var b = m.noData[(a.nodeName + " ").toLowerCase()],
  1263.                 c = +a.nodeType || 1;
  1264.             return 1 !== c && 9 !== c ? !1 : !b || b !== !0 && a.getAttribute("classid") === b
  1265.         };
  1266.     var M = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,
  1267.         N = /([A-Z])/g;
  1268.  
  1269.     function O(a, b, c) {
  1270.         if (void 0 === c && 1 === a.nodeType) {
  1271.             var d = "data-" + b.replace(N, "-$1").toLowerCase();
  1272.             if (c = a.getAttribute(d), "string" == typeof c) {
  1273.                 try {
  1274.                     c = "true" === c ? !0 : "false" === c ? !1 : "null" === c ? null : +c + "" === c ? +c : M.test(c) ? m.parseJSON(c) : c
  1275.                 } catch (e) {}
  1276.                 m.data(a, b, c)
  1277.             } else c = void 0
  1278.         }
  1279.         return c
  1280.     }
  1281.  
  1282.     function P(a) {
  1283.         var b;
  1284.         for (b in a)
  1285.             if (("data" !== b || !m.isEmptyObject(a[b])) && "toJSON" !== b) return !1;
  1286.  
  1287.         return !0
  1288.     }
  1289.  
  1290.     function Q(a, b, d, e) {
  1291.         if (m.acceptData(a)) {
  1292.             var f, g, h = m.expando,
  1293.                 i = a.nodeType,
  1294.                 j = i ? m.cache : a,
  1295.                 k = i ? a[h] : a[h] && h;
  1296.             if (k && j[k] && (e || j[k].data) || void 0 !== d || "string" != typeof b) return k || (k = i ? a[h] = c.pop() || m.guid++ : h), j[k] || (j[k] = i ? {} : {
  1297.                 toJSON: m.noop
  1298.             }), ("object" == typeof b || "function" == typeof b) && (e ? j[k] = m.extend(j[k], b) : j[k].data = m.extend(j[k].data, b)), g = j[k], e || (g.data || (g.data = {}), g = g.data), void 0 !== d && (g[m.camelCase(b)] = d), "string" == typeof b ? (f = g[b], null == f && (f = g[m.camelCase(b)])) : f = g, f
  1299.         }
  1300.     }
  1301.  
  1302.     function R(a, b, c) {
  1303.         if (m.acceptData(a)) {
  1304.             var d, e, f = a.nodeType,
  1305.                 g = f ? m.cache : a,
  1306.                 h = f ? a[m.expando] : m.expando;
  1307.             if (g[h]) {
  1308.                 if (b && (d = c ? g[h] : g[h].data)) {
  1309.                     m.isArray(b) ? b = b.concat(m.map(b, m.camelCase)) : b in d ? b = [b] : (b = m.camelCase(b), b = b in d ? [b] : b.split(" ")), e = b.length;
  1310.                     while (e--) delete d[b[e]];
  1311.                     if (c ? !P(d) : !m.isEmptyObject(d)) return
  1312.                 }(c || (delete g[h].data, P(g[h]))) && (f ? m.cleanData([a], !0) : k.deleteExpando || g != g.window ? delete g[h] : g[h] = null)
  1313.             }
  1314.         }
  1315.     }
  1316.     m.extend({
  1317.         cache: {},
  1318.         noData: {
  1319.             "applet ": !0,
  1320.             "embed ": !0,
  1321.             "object ": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
  1322.         },
  1323.         hasData: function(a) {
  1324.             return a = a.nodeType ? m.cache[a[m.expando]] : a[m.expando], !!a && !P(a)
  1325.         },
  1326.         data: function(a, b, c) {
  1327.             return Q(a, b, c)
  1328.         },
  1329.         removeData: function(a, b) {
  1330.             return R(a, b)
  1331.         },
  1332.         _data: function(a, b, c) {
  1333.             return Q(a, b, c, !0)
  1334.         },
  1335.         _removeData: function(a, b) {
  1336.             return R(a, b, !0)
  1337.         }
  1338.     }), m.fn.extend({
  1339.         data: function(a, b) {
  1340.             var c, d, e, f = this[0],
  1341.                 g = f && f.attributes;
  1342.             if (void 0 === a) {
  1343.                 if (this.length && (e = m.data(f), 1 === f.nodeType && !m._data(f, "parsedAttrs"))) {
  1344.                     c = g.length;
  1345.                     while (c--) g[c] && (d = g[c].name, 0 === d.indexOf("data-") && (d = m.camelCase(d.slice(5)), O(f, d, e[d])));
  1346.                     m._data(f, "parsedAttrs", !0)
  1347.                 }
  1348.                 return e
  1349.             }
  1350.             return "object" == typeof a ? this.each(function() {
  1351.                 m.data(this, a)
  1352.             }) : arguments.length > 1 ? this.each(function() {
  1353.                 m.data(this, a, b)
  1354.             }) : f ? O(f, a, m.data(f, a)) : void 0
  1355.         },
  1356.         removeData: function(a) {
  1357.             return this.each(function() {
  1358.                 m.removeData(this, a)
  1359.             })
  1360.         }
  1361.     }), m.extend({
  1362.         queue: function(a, b, c) {
  1363.             var d;
  1364.             return a ? (b = (b || "fx") + "queue", d = m._data(a, b), c && (!d || m.isArray(c) ? d = m._data(a, b, m.makeArray(c)) : d.push(c)), d || []) : void 0
  1365.         },
  1366.         dequeue: function(a, b) {
  1367.             b = b || "fx";
  1368.             var c = m.queue(a, b),
  1369.                 d = c.length,
  1370.                 e = c.shift(),
  1371.                 f = m._queueHooks(a, b),
  1372.                 g = function() {
  1373.                     m.dequeue(a, b)
  1374.                 };
  1375.             "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()
  1376.         },
  1377.         _queueHooks: function(a, b) {
  1378.             var c = b + "queueHooks";
  1379.             return m._data(a, c) || m._data(a, c, {
  1380.                 empty: m.Callbacks("once memory").add(function() {
  1381.                     m._removeData(a, b + "queue"), m._removeData(a, c)
  1382.                 })
  1383.             })
  1384.         }
  1385.     }), m.fn.extend({
  1386.         queue: function(a, b) {
  1387.             var c = 2;
  1388.             return "string" != typeof a && (b = a, a = "fx", c--), arguments.length < c ? m.queue(this[0], a) : void 0 === b ? this : this.each(function() {
  1389.                 var c = m.queue(this, a, b);
  1390.                 m._queueHooks(this, a), "fx" === a && "inprogress" !== c[0] && m.dequeue(this, a)
  1391.             })
  1392.         },
  1393.         dequeue: function(a) {
  1394.             return this.each(function() {
  1395.                 m.dequeue(this, a)
  1396.             })
  1397.         },
  1398.         clearQueue: function(a) {
  1399.             return this.queue(a || "fx", [])
  1400.         },
  1401.         promise: function(a, b) {
  1402.             var c, d = 1,
  1403.                 e = m.Deferred(),
  1404.                 f = this,
  1405.                 g = this.length,
  1406.                 h = function() {
  1407.                     --d || e.resolveWith(f, [f])
  1408.                 };
  1409.             "string" != typeof a && (b = a, a = void 0), a = a || "fx";
  1410.             while (g--) c = m._data(f[g], a + "queueHooks"), c && c.empty && (d++, c.empty.add(h));
  1411.             return h(), e.promise(b)
  1412.         }
  1413.     });
  1414.     var S = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,
  1415.         T = ["Top", "Right", "Bottom", "Left"],
  1416.         U = function(a, b) {
  1417.             return a = b || a, "none" === m.css(a, "display") || !m.contains(a.ownerDocument, a)
  1418.         },
  1419.         V = m.access = function(a, b, c, d, e, f, g) {
  1420.             var h = 0,
  1421.                 i = a.length,
  1422.                 j = null == c;
  1423.             if ("object" === m.type(c)) {
  1424.                 e = !0;
  1425.                 for (h in c) m.access(a, b, h, c[h], !0, f, g)
  1426.             } else if (void 0 !== d && (e = !0, m.isFunction(d) || (g = !0), j && (g ? (b.call(a, d), b = null) : (j = b, b = function(a, b, c) {
  1427.                     return j.call(m(a), c)
  1428.                 })), b))
  1429.                 for (; i > h; h++) b(a[h], c, g ? d : d.call(a[h], h, b(a[h], c)));
  1430.             return e ? a : j ? b.call(a) : i ? b(a[0], c) : f
  1431.         },
  1432.         W = /^(?:checkbox|radio)$/i;
  1433.     ! function() {
  1434.         var a = y.createElement("input"),
  1435.             b = y.createElement("div"),
  1436.             c = y.createDocumentFragment();
  1437.         if (b.innerHTML = "  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>", k.leadingWhitespace = 3 === b.firstChild.nodeType, k.tbody = !b.getElementsByTagName("tbody").length, k.htmlSerialize = !!b.getElementsByTagName("link").length, k.html5Clone = "<:nav></:nav>" !== y.createElement("nav").cloneNode(!0).outerHTML, a.type = "checkbox", a.checked = !0, c.appendChild(a), k.appendChecked = a.checked, b.innerHTML = "<textarea>x</textarea>", k.noCloneChecked = !!b.cloneNode(!0).lastChild.defaultValue, c.appendChild(b), b.innerHTML = "<input type='radio' checked='checked' name='t'/>", k.checkClone = b.cloneNode(!0).cloneNode(!0).lastChild.checked, k.noCloneEvent = !0, b.attachEvent && (b.attachEvent("onclick", function() {
  1438.                 k.noCloneEvent = !1
  1439.             }), b.cloneNode(!0).click()), null == k.deleteExpando) {
  1440.             k.deleteExpando = !0;
  1441.             try {
  1442.                 delete b.test
  1443.             } catch (d) {
  1444.                 k.deleteExpando = !1
  1445.             }
  1446.         }
  1447.     }(),
  1448.     function() {
  1449.         var b, c, d = y.createElement("div");
  1450.         for (b in {
  1451.                 submit: !0,
  1452.                 change: !0,
  1453.                 focusin: !0
  1454.             }) c = "on" + b, (k[b + "Bubbles"] = c in a) || (d.setAttribute(c, "t"), k[b + "Bubbles"] = d.attributes[c].expando === !1);
  1455.         d = null
  1456.     }();
  1457.     var X = /^(?:input|select|textarea)$/i,
  1458.         Y = /^key/,
  1459.         Z = /^(?:mouse|pointer|contextmenu)|click/,
  1460.         $ = /^(?:focusinfocus|focusoutblur)$/,
  1461.         _ = /^([^.]*)(?:\.(.+)|)$/;
  1462.  
  1463.     function aa() {
  1464.         return !0
  1465.     }
  1466.  
  1467.     function ba() {
  1468.         return !1
  1469.     }
  1470.  
  1471.     function ca() {
  1472.         try {
  1473.             return y.activeElement
  1474.         } catch (a) {}
  1475.     }
  1476.     m.event = {
  1477.         global: {},
  1478.         add: function(a, b, c, d, e) {
  1479.             var f, g, h, i, j, k, l, n, o, p, q, r = m._data(a);
  1480.             if (r) {
  1481.                 c.handler && (i = c, c = i.handler, e = i.selector), c.guid || (c.guid = m.guid++), (g = r.events) || (g = r.events = {}), (k = r.handle) || (k = r.handle = function(a) {
  1482.                     return typeof m === K || a && m.event.triggered === a.type ? void 0 : m.event.dispatch.apply(k.elem, arguments)
  1483.                 }, k.elem = a), b = (b || "").match(E) || [""], h = b.length;
  1484.                 while (h--) f = _.exec(b[h]) || [], o = q = f[1], p = (f[2] || "").split(".").sort(), o && (j = m.event.special[o] || {}, o = (e ? j.delegateType : j.bindType) || o, j = m.event.special[o] || {}, l = m.extend({
  1485.                     type: o,
  1486.                     origType: q,
  1487.                     data: d,
  1488.                     handler: c,
  1489.                     guid: c.guid,
  1490.                     selector: e,
  1491.                     needsContext: e && m.expr.match.needsContext.test(e),
  1492.                     namespace: p.join(".")
  1493.                 }, i), (n = g[o]) || (n = g[o] = [], n.delegateCount = 0, j.setup && j.setup.call(a, d, p, k) !== !1 || (a.addEventListener ? a.addEventListener(o, k, !1) : a.attachEvent && a.attachEvent("on" + o, k))), j.add && (j.add.call(a, l), l.handler.guid || (l.handler.guid = c.guid)), e ? n.splice(n.delegateCount++, 0, l) : n.push(l), m.event.global[o] = !0);
  1494.                 a = null
  1495.             }
  1496.         },
  1497.         remove: function(a, b, c, d, e) {
  1498.             var f, g, h, i, j, k, l, n, o, p, q, r = m.hasData(a) && m._data(a);
  1499.             if (r && (k = r.events)) {
  1500.                 b = (b || "").match(E) || [""], j = b.length;
  1501.                 while (j--)
  1502.                     if (h = _.exec(b[j]) || [], o = q = h[1], p = (h[2] || "").split(".").sort(), o) {
  1503.                         l = m.event.special[o] || {}, o = (d ? l.delegateType : l.bindType) || o, n = k[o] || [], h = h[2] && new RegExp("(^|\\.)" + p.join("\\.(?:.*\\.|)") + "(\\.|$)"), i = f = n.length;
  1504.                         while (f--) g = n[f], !e && q !== g.origType || c && c.guid !== g.guid || h && !h.test(g.namespace) || d && d !== g.selector && ("**" !== d || !g.selector) || (n.splice(f, 1), g.selector && n.delegateCount--, l.remove && l.remove.call(a, g));
  1505.                         i && !n.length && (l.teardown && l.teardown.call(a, p, r.handle) !== !1 || m.removeEvent(a, o, r.handle), delete k[o])
  1506.                     } else
  1507.                         for (o in k) m.event.remove(a, o + b[j], c, d, !0);
  1508.                 m.isEmptyObject(k) && (delete r.handle, m._removeData(a, "events"))
  1509.             }
  1510.         },
  1511.         trigger: function(b, c, d, e) {
  1512.             var f, g, h, i, k, l, n, o = [d || y],
  1513.                 p = j.call(b, "type") ? b.type : b,
  1514.                 q = j.call(b, "namespace") ? b.namespace.split(".") : [];
  1515.             if (h = l = d = d || y, 3 !== d.nodeType && 8 !== d.nodeType && !$.test(p + m.event.triggered) && (p.indexOf(".") >= 0 && (q = p.split("."), p = q.shift(), q.sort()), g = p.indexOf(":") < 0 && "on" + p, b = b[m.expando] ? b : new m.Event(p, "object" == typeof b && b), b.isTrigger = e ? 2 : 3, b.namespace = q.join("."), b.namespace_re = b.namespace ? new RegExp("(^|\\.)" + q.join("\\.(?:.*\\.|)") + "(\\.|$)") : null, b.result = void 0, b.target || (b.target = d), c = null == c ? [b] : m.makeArray(c, [b]), k = m.event.special[p] || {}, e || !k.trigger || k.trigger.apply(d, c) !== !1)) {
  1516.                 if (!e && !k.noBubble && !m.isWindow(d)) {
  1517.                     for (i = k.delegateType || p, $.test(i + p) || (h = h.parentNode); h; h = h.parentNode) o.push(h), l = h;
  1518.                     l === (d.ownerDocument || y) && o.push(l.defaultView || l.parentWindow || a)
  1519.                 }
  1520.                 n = 0;
  1521.                 while ((h = o[n++]) && !b.isPropagationStopped()) b.type = n > 1 ? i : k.bindType || p, f = (m._data(h, "events") || {})[b.type] && m._data(h, "handle"), f && f.apply(h, c), f = g && h[g], f && f.apply && m.acceptData(h) && (b.result = f.apply(h, c), b.result === !1 && b.preventDefault());
  1522.                 if (b.type = p, !e && !b.isDefaultPrevented() && (!k._default || k._default.apply(o.pop(), c) === !1) && m.acceptData(d) && g && d[p] && !m.isWindow(d)) {
  1523.                     l = d[g], l && (d[g] = null), m.event.triggered = p;
  1524.                     try {
  1525.                         d[p]()
  1526.                     } catch (r) {}
  1527.                     m.event.triggered = void 0, l && (d[g] = l)
  1528.                 }
  1529.                 return b.result
  1530.             }
  1531.         },
  1532.         dispatch: function(a) {
  1533.             a = m.event.fix(a);
  1534.             var b, c, e, f, g, h = [],
  1535.                 i = d.call(arguments),
  1536.                 j = (m._data(this, "events") || {})[a.type] || [],
  1537.                 k = m.event.special[a.type] || {};
  1538.             if (i[0] = a, a.delegateTarget = this, !k.preDispatch || k.preDispatch.call(this, a) !== !1) {
  1539.                 h = m.event.handlers.call(this, a, j), b = 0;
  1540.                 while ((f = h[b++]) && !a.isPropagationStopped()) {
  1541.                     a.currentTarget = f.elem, g = 0;
  1542.                     while ((e = f.handlers[g++]) && !a.isImmediatePropagationStopped())(!a.namespace_re || a.namespace_re.test(e.namespace)) && (a.handleObj = e, a.data = e.data, c = ((m.event.special[e.origType] || {}).handle || e.handler).apply(f.elem, i), void 0 !== c && (a.result = c) === !1 && (a.preventDefault(), a.stopPropagation()))
  1543.                 }
  1544.                 return k.postDispatch && k.postDispatch.call(this, a), a.result
  1545.             }
  1546.         },
  1547.         handlers: function(a, b) {
  1548.             var c, d, e, f, g = [],
  1549.                 h = b.delegateCount,
  1550.                 i = a.target;
  1551.             if (h && i.nodeType && (!a.button || "click" !== a.type))
  1552.                 for (; i != this; i = i.parentNode || this)
  1553.                     if (1 === i.nodeType && (i.disabled !== !0 || "click" !== a.type)) {
  1554.                         for (e = [], f = 0; h > f; f++) d = b[f], c = d.selector + " ", void 0 === e[c] && (e[c] = d.needsContext ? m(c, this).index(i) >= 0 : m.find(c, this, null, [i]).length), e[c] && e.push(d);
  1555.                         e.length && g.push({
  1556.                             elem: i,
  1557.                             handlers: e
  1558.                         })
  1559.                     } return h < b.length && g.push({
  1560.                 elem: this,
  1561.                 handlers: b.slice(h)
  1562.             }), g
  1563.         },
  1564.         fix: function(a) {
  1565.             if (a[m.expando]) return a;
  1566.             var b, c, d, e = a.type,
  1567.                 f = a,
  1568.                 g = this.fixHooks[e];
  1569.             g || (this.fixHooks[e] = g = Z.test(e) ? this.mouseHooks : Y.test(e) ? this.keyHooks : {}), d = g.props ? this.props.concat(g.props) : this.props, a = new m.Event(f), b = d.length;
  1570.             while (b--) c = d[b], a[c] = f[c];
  1571.             return a.target || (a.target = f.srcElement || y), 3 === a.target.nodeType && (a.target = a.target.parentNode), a.metaKey = !!a.metaKey, g.filter ? g.filter(a, f) : a
  1572.         },
  1573.         props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),
  1574.         fixHooks: {},
  1575.         keyHooks: {
  1576.             props: "char charCode key keyCode".split(" "),
  1577.             filter: function(a, b) {
  1578.                 return null == a.which && (a.which = null != b.charCode ? b.charCode : b.keyCode), a
  1579.             }
  1580.         },
  1581.         mouseHooks: {
  1582.             props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),
  1583.             filter: function(a, b) {
  1584.                 var c, d, e, f = b.button,
  1585.                     g = b.fromElement;
  1586.                 return null == a.pageX && null != b.clientX && (d = a.target.ownerDocument || y, e = d.documentElement, c = d.body, a.pageX = b.clientX + (e && e.scrollLeft || c && c.scrollLeft || 0) - (e && e.clientLeft || c && c.clientLeft || 0), a.pageY = b.clientY + (e && e.scrollTop || c && c.scrollTop || 0) - (e && e.clientTop || c && c.clientTop || 0)), !a.relatedTarget && g && (a.relatedTarget = g === a.target ? b.toElement : g), a.which || void 0 === f || (a.which = 1 & f ? 1 : 2 & f ? 3 : 4 & f ? 2 : 0), a
  1587.             }
  1588.         },
  1589.         special: {
  1590.             load: {
  1591.                 noBubble: !0
  1592.             },
  1593.             focus: {
  1594.                 trigger: function() {
  1595.                     if (this !== ca() && this.focus) try {
  1596.                         return this.focus(), !1
  1597.                     } catch (a) {}
  1598.                 },
  1599.                 delegateType: "focusin"
  1600.             },
  1601.             blur: {
  1602.                 trigger: function() {
  1603.                     return this === ca() && this.blur ? (this.blur(), !1) : void 0
  1604.                 },
  1605.                 delegateType: "focusout"
  1606.             },
  1607.             click: {
  1608.                 trigger: function() {
  1609.                     return m.nodeName(this, "input") && "checkbox" === this.type && this.click ? (this.click(), !1) : void 0
  1610.                 },
  1611.                 _default: function(a) {
  1612.                     return m.nodeName(a.target, "a")
  1613.                 }
  1614.             },
  1615.             beforeunload: {
  1616.                 postDispatch: function(a) {
  1617.                     void 0 !== a.result && a.originalEvent && (a.originalEvent.returnValue = a.result)
  1618.                 }
  1619.             }
  1620.         },
  1621.         simulate: function(a, b, c, d) {
  1622.             var e = m.extend(new m.Event, c, {
  1623.                 type: a,
  1624.                 isSimulated: !0,
  1625.                 originalEvent: {}
  1626.             });
  1627.             d ? m.event.trigger(e, null, b) : m.event.dispatch.call(b, e), e.isDefaultPrevented() && c.preventDefault()
  1628.         }
  1629.     }, m.removeEvent = y.removeEventListener ? function(a, b, c) {
  1630.         a.removeEventListener && a.removeEventListener(b, c, !1)
  1631.     } : function(a, b, c) {
  1632.         var d = "on" + b;
  1633.         a.detachEvent && (typeof a[d] === K && (a[d] = null), a.detachEvent(d, c))
  1634.     }, m.Event = function(a, b) {
  1635.         return this instanceof m.Event ? (a && a.type ? (this.originalEvent = a, this.type = a.type, this.isDefaultPrevented = a.defaultPrevented || void 0 === a.defaultPrevented && a.returnValue === !1 ? aa : ba) : this.type = a, b && m.extend(this, b), this.timeStamp = a && a.timeStamp || m.now(), void(this[m.expando] = !0)) : new m.Event(a, b)
  1636.     }, m.Event.prototype = {
  1637.         isDefaultPrevented: ba,
  1638.         isPropagationStopped: ba,
  1639.         isImmediatePropagationStopped: ba,
  1640.         preventDefault: function() {
  1641.             var a = this.originalEvent;
  1642.             this.isDefaultPrevented = aa, a && (a.preventDefault ? a.preventDefault() : a.returnValue = !1)
  1643.         },
  1644.         stopPropagation: function() {
  1645.             var a = this.originalEvent;
  1646.             this.isPropagationStopped = aa, a && (a.stopPropagation && a.stopPropagation(), a.cancelBubble = !0)
  1647.         },
  1648.         stopImmediatePropagation: function() {
  1649.             var a = this.originalEvent;
  1650.             this.isImmediatePropagationStopped = aa, a && a.stopImmediatePropagation && a.stopImmediatePropagation(), this.stopPropagation()
  1651.         }
  1652.     }, m.each({
  1653.         mouseenter: "mouseover",
  1654.         mouseleave: "mouseout",
  1655.         pointerenter: "pointerover",
  1656.         pointerleave: "pointerout"
  1657.     }, function(a, b) {
  1658.         m.event.special[a] = {
  1659.             delegateType: b,
  1660.             bindType: b,
  1661.             handle: function(a) {
  1662.                 var c, d = this,
  1663.                     e = a.relatedTarget,
  1664.                     f = a.handleObj;
  1665.                 return (!e || e !== d && !m.contains(d, e)) && (a.type = f.origType, c = f.handler.apply(this, arguments), a.type = b), c
  1666.             }
  1667.         }
  1668.     }), k.submitBubbles || (m.event.special.submit = {
  1669.         setup: function() {
  1670.             return m.nodeName(this, "form") ? !1 : void m.event.add(this, "click._submit keypress._submit", function(a) {
  1671.                 var b = a.target,
  1672.                     c = m.nodeName(b, "input") || m.nodeName(b, "button") ? b.form : void 0;
  1673.                 c && !m._data(c, "submitBubbles") && (m.event.add(c, "submit._submit", function(a) {
  1674.                     a._submit_bubble = !0
  1675.                 }), m._data(c, "submitBubbles", !0))
  1676.             })
  1677.         },
  1678.         postDispatch: function(a) {
  1679.             a._submit_bubble && (delete a._submit_bubble, this.parentNode && !a.isTrigger && m.event.simulate("submit", this.parentNode, a, !0))
  1680.         },
  1681.         teardown: function() {
  1682.             return m.nodeName(this, "form") ? !1 : void m.event.remove(this, "._submit")
  1683.         }
  1684.     }), k.changeBubbles || (m.event.special.change = {
  1685.         setup: function() {
  1686.             return X.test(this.nodeName) ? (("checkbox" === this.type || "radio" === this.type) && (m.event.add(this, "propertychange._change", function(a) {
  1687.                 "checked" === a.originalEvent.propertyName && (this._just_changed = !0)
  1688.             }), m.event.add(this, "click._change", function(a) {
  1689.                 this._just_changed && !a.isTrigger && (this._just_changed = !1), m.event.simulate("change", this, a, !0)
  1690.             })), !1) : void m.event.add(this, "beforeactivate._change", function(a) {
  1691.                 var b = a.target;
  1692.                 X.test(b.nodeName) && !m._data(b, "changeBubbles") && (m.event.add(b, "change._change", function(a) {
  1693.                     !this.parentNode || a.isSimulated || a.isTrigger || m.event.simulate("change", this.parentNode, a, !0)
  1694.                 }), m._data(b, "changeBubbles", !0))
  1695.             })
  1696.         },
  1697.         handle: function(a) {
  1698.             var b = a.target;
  1699.             return this !== b || a.isSimulated || a.isTrigger || "radio" !== b.type && "checkbox" !== b.type ? a.handleObj.handler.apply(this, arguments) : void 0
  1700.         },
  1701.         teardown: function() {
  1702.             return m.event.remove(this, "._change"), !X.test(this.nodeName)
  1703.         }
  1704.     }), k.focusinBubbles || m.each({
  1705.         focus: "focusin",
  1706.         blur: "focusout"
  1707.     }, function(a, b) {
  1708.         var c = function(a) {
  1709.             m.event.simulate(b, a.target, m.event.fix(a), !0)
  1710.         };
  1711.         m.event.special[b] = {
  1712.             setup: function() {
  1713.                 var d = this.ownerDocument || this,
  1714.                     e = m._data(d, b);
  1715.                 e || d.addEventListener(a, c, !0), m._data(d, b, (e || 0) + 1)
  1716.             },
  1717.             teardown: function() {
  1718.                 var d = this.ownerDocument || this,
  1719.                     e = m._data(d, b) - 1;
  1720.                 e ? m._data(d, b, e) : (d.removeEventListener(a, c, !0), m._removeData(d, b))
  1721.             }
  1722.         }
  1723.     }), m.fn.extend({
  1724.         on: function(a, b, c, d, e) {
  1725.             var f, g;
  1726.             if ("object" == typeof a) {
  1727.                 "string" != typeof b && (c = c || b, b = void 0);
  1728.                 for (f in a) this.on(f, b, c, a[f], e);
  1729.                 return this
  1730.             }
  1731.             if (null == c && null == d ? (d = b, c = b = void 0) : null == d && ("string" == typeof b ? (d = c, c = void 0) : (d = c, c = b, b = void 0)), d === !1) d = ba;
  1732.             else if (!d) return this;
  1733.             return 1 === e && (g = d, d = function(a) {
  1734.                 return m().off(a), g.apply(this, arguments)
  1735.             }, d.guid = g.guid || (g.guid = m.guid++)), this.each(function() {
  1736.                 m.event.add(this, a, d, c, b)
  1737.             })
  1738.         },
  1739.         one: function(a, b, c, d) {
  1740.             return this.on(a, b, c, d, 1)
  1741.         },
  1742.         off: function(a, b, c) {
  1743.             var d, e;
  1744.             if (a && a.preventDefault && a.handleObj) return d = a.handleObj, m(a.delegateTarget).off(d.namespace ? d.origType + "." + d.namespace : d.origType, d.selector, d.handler), this;
  1745.             if ("object" == typeof a) {
  1746.                 for (e in a) this.off(e, b, a[e]);
  1747.                 return this
  1748.             }
  1749.             return (b === !1 || "function" == typeof b) && (c = b, b = void 0), c === !1 && (c = ba), this.each(function() {
  1750.                 m.event.remove(this, a, c, b)
  1751.             })
  1752.         },
  1753.         trigger: function(a, b) {
  1754.             return this.each(function() {
  1755.                 m.event.trigger(a, b, this)
  1756.             })
  1757.         },
  1758.         triggerHandler: function(a, b) {
  1759.             var c = this[0];
  1760.             return c ? m.event.trigger(a, b, c, !0) : void 0
  1761.         }
  1762.     });
  1763.  
  1764.     function da(a) {
  1765.         var b = ea.split("|"),
  1766.             c = a.createDocumentFragment();
  1767.         if (c.createElement)
  1768.             while (b.length) c.createElement(b.pop());
  1769.         return c
  1770.     }
  1771.     var ea = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",
  1772.         fa = / jQuery\d+="(?:null|\d+)"/g,
  1773.         ga = new RegExp("<(?:" + ea + ")[\\s/>]", "i"),
  1774.         ha = /^\s+/,
  1775.         ia = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,
  1776.         ja = /<([\w:]+)/,
  1777.         ka = /<tbody/i,
  1778.         la = /<|&#?\w+;/,
  1779.         ma = /<(?:script|style|link)/i,
  1780.         na = /checked\s*(?:[^=]|=\s*.checked.)/i,
  1781.         oa = /^$|\/(?:java|ecma)script/i,
  1782.         pa = /^true\/(.*)/,
  1783.         qa = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,
  1784.         ra = {
  1785.             option: [1, "<select multiple='multiple'>", "</select>"],
  1786.             legend: [1, "<fieldset>", "</fieldset>"],
  1787.             area: [1, "<map>", "</map>"],
  1788.             param: [1, "<object>", "</object>"],
  1789.             thead: [1, "<table>", "</table>"],
  1790.             tr: [2, "<table><tbody>", "</tbody></table>"],
  1791.             col: [2, "<table><tbody></tbody><colgroup>", "</colgroup></table>"],
  1792.             td: [3, "<table><tbody><tr>", "</tr></tbody></table>"],
  1793.             _default: k.htmlSerialize ? [0, "", ""] : [1, "X<div>", "</div>"]
  1794.         },
  1795.         sa = da(y),
  1796.         ta = sa.appendChild(y.createElement("div"));
  1797.     ra.optgroup = ra.option, ra.tbody = ra.tfoot = ra.colgroup = ra.caption = ra.thead, ra.th = ra.td;
  1798.  
  1799.     function ua(a, b) {
  1800.         var c, d, e = 0,
  1801.             f = typeof a.getElementsByTagName !== K ? a.getElementsByTagName(b || "*") : typeof a.querySelectorAll !== K ? a.querySelectorAll(b || "*") : void 0;
  1802.         if (!f)
  1803.             for (f = [], c = a.childNodes || a; null != (d = c[e]); e++) !b || m.nodeName(d, b) ? f.push(d) : m.merge(f, ua(d, b));
  1804.         return void 0 === b || b && m.nodeName(a, b) ? m.merge([a], f) : f
  1805.     }
  1806.  
  1807.     function va(a) {
  1808.         W.test(a.type) && (a.defaultChecked = a.checked)
  1809.     }
  1810.  
  1811.     function wa(a, b) {
  1812.         return m.nodeName(a, "table") && m.nodeName(11 !== b.nodeType ? b : b.firstChild, "tr") ? a.getElementsByTagName("tbody")[0] || a.appendChild(a.ownerDocument.createElement("tbody")) : a
  1813.     }
  1814.  
  1815.     function xa(a) {
  1816.         return a.type = (null !== m.find.attr(a, "type")) + "/" + a.type, a
  1817.     }
  1818.  
  1819.     function ya(a) {
  1820.         var b = pa.exec(a.type);
  1821.         return b ? a.type = b[1] : a.removeAttribute("type"), a
  1822.     }
  1823.  
  1824.     function za(a, b) {
  1825.         for (var c, d = 0; null != (c = a[d]); d++) m._data(c, "globalEval", !b || m._data(b[d], "globalEval"))
  1826.     }
  1827.  
  1828.     function Aa(a, b) {
  1829.         if (1 === b.nodeType && m.hasData(a)) {
  1830.             var c, d, e, f = m._data(a),
  1831.                 g = m._data(b, f),
  1832.                 h = f.events;
  1833.             if (h) {
  1834.                 delete g.handle, g.events = {};
  1835.                 for (c in h)
  1836.                     for (d = 0, e = h[c].length; e > d; d++) m.event.add(b, c, h[c][d])
  1837.             }
  1838.             g.data && (g.data = m.extend({}, g.data))
  1839.         }
  1840.     }
  1841.  
  1842.     function Ba(a, b) {
  1843.         var c, d, e;
  1844.         if (1 === b.nodeType) {
  1845.             if (c = b.nodeName.toLowerCase(), !k.noCloneEvent && b[m.expando]) {
  1846.                 e = m._data(b);
  1847.                 for (d in e.events) m.removeEvent(b, d, e.handle);
  1848.                 b.removeAttribute(m.expando)
  1849.             }
  1850.             "script" === c && b.text !== a.text ? (xa(b).text = a.text, ya(b)) : "object" === c ? (b.parentNode && (b.outerHTML = a.outerHTML), k.html5Clone && a.innerHTML && !m.trim(b.innerHTML) && (b.innerHTML = a.innerHTML)) : "input" === c && W.test(a.type) ? (b.defaultChecked = b.checked = a.checked, b.value !== a.value && (b.value = a.value)) : "option" === c ? b.defaultSelected = b.selected = a.defaultSelected : ("input" === c || "textarea" === c) && (b.defaultValue = a.defaultValue)
  1851.         }
  1852.     }
  1853.     m.extend({
  1854.         clone: function(a, b, c) {
  1855.             var d, e, f, g, h, i = m.contains(a.ownerDocument, a);
  1856.             if (k.html5Clone || m.isXMLDoc(a) || !ga.test("<" + a.nodeName + ">") ? f = a.cloneNode(!0) : (ta.innerHTML = a.outerHTML, ta.removeChild(f = ta.firstChild)), !(k.noCloneEvent && k.noCloneChecked || 1 !== a.nodeType && 11 !== a.nodeType || m.isXMLDoc(a)))
  1857.                 for (d = ua(f), h = ua(a), g = 0; null != (e = h[g]); ++g) d[g] && Ba(e, d[g]);
  1858.             if (b)
  1859.                 if (c)
  1860.                     for (h = h || ua(a), d = d || ua(f), g = 0; null != (e = h[g]); g++) Aa(e, d[g]);
  1861.                 else Aa(a, f);
  1862.             return d = ua(f, "script"), d.length > 0 && za(d, !i && ua(a, "script")), d = h = e = null, f
  1863.         },
  1864.         buildFragment: function(a, b, c, d) {
  1865.             for (var e, f, g, h, i, j, l, n = a.length, o = da(b), p = [], q = 0; n > q; q++)
  1866.                 if (f = a[q], f || 0 === f)
  1867.                     if ("object" === m.type(f)) m.merge(p, f.nodeType ? [f] : f);
  1868.                     else if (la.test(f)) {
  1869.                 h = h || o.appendChild(b.createElement("div")), i = (ja.exec(f) || ["", ""])[1].toLowerCase(), l = ra[i] || ra._default, h.innerHTML = l[1] + f.replace(ia, "<$1></$2>") + l[2], e = l[0];
  1870.                 while (e--) h = h.lastChild;
  1871.                 if (!k.leadingWhitespace && ha.test(f) && p.push(b.createTextNode(ha.exec(f)[0])), !k.tbody) {
  1872.                     f = "table" !== i || ka.test(f) ? "<table>" !== l[1] || ka.test(f) ? 0 : h : h.firstChild, e = f && f.childNodes.length;
  1873.                     while (e--) m.nodeName(j = f.childNodes[e], "tbody") && !j.childNodes.length && f.removeChild(j)
  1874.                 }
  1875.                 m.merge(p, h.childNodes), h.textContent = "";
  1876.                 while (h.firstChild) h.removeChild(h.firstChild);
  1877.                 h = o.lastChild
  1878.             } else p.push(b.createTextNode(f));
  1879.             h && o.removeChild(h), k.appendChecked || m.grep(ua(p, "input"), va), q = 0;
  1880.             while (f = p[q++])
  1881.                 if ((!d || -1 === m.inArray(f, d)) && (g = m.contains(f.ownerDocument, f), h = ua(o.appendChild(f), "script"), g && za(h), c)) {
  1882.                     e = 0;
  1883.                     while (f = h[e++]) oa.test(f.type || "") && c.push(f)
  1884.                 } return h = null, o
  1885.         },
  1886.         cleanData: function(a, b) {
  1887.             for (var d, e, f, g, h = 0, i = m.expando, j = m.cache, l = k.deleteExpando, n = m.event.special; null != (d = a[h]); h++)
  1888.                 if ((b || m.acceptData(d)) && (f = d[i], g = f && j[f])) {
  1889.                     if (g.events)
  1890.                         for (e in g.events) n[e] ? m.event.remove(d, e) : m.removeEvent(d, e, g.handle);
  1891.                     j[f] && (delete j[f], l ? delete d[i] : typeof d.removeAttribute !== K ? d.removeAttribute(i) : d[i] = null, c.push(f))
  1892.                 }
  1893.         }
  1894.     }), m.fn.extend({
  1895.         text: function(a) {
  1896.             return V(this, function(a) {
  1897.                 return void 0 === a ? m.text(this) : this.empty().append((this[0] && this[0].ownerDocument || y).createTextNode(a))
  1898.             }, null, a, arguments.length)
  1899.         },
  1900.         append: function() {
  1901.             return this.domManip(arguments, function(a) {
  1902.                 if (1 === this.nodeType || 11 === this.nodeType || 9 === this.nodeType) {
  1903.                     var b = wa(this, a);
  1904.                     b.appendChild(a)
  1905.                 }
  1906.             })
  1907.         },
  1908.         prepend: function() {
  1909.             return this.domManip(arguments, function(a) {
  1910.                 if (1 === this.nodeType || 11 === this.nodeType || 9 === this.nodeType) {
  1911.                     var b = wa(this, a);
  1912.                     b.insertBefore(a, b.firstChild)
  1913.                 }
  1914.             })
  1915.         },
  1916.         before: function() {
  1917.             return this.domManip(arguments, function(a) {
  1918.                 this.parentNode && this.parentNode.insertBefore(a, this)
  1919.             })
  1920.         },
  1921.         after: function() {
  1922.             return this.domManip(arguments, function(a) {
  1923.                 this.parentNode && this.parentNode.insertBefore(a, this.nextSibling)
  1924.             })
  1925.         },
  1926.         remove: function(a, b) {
  1927.             for (var c, d = a ? m.filter(a, this) : this, e = 0; null != (c = d[e]); e++) b || 1 !== c.nodeType || m.cleanData(ua(c)), c.parentNode && (b && m.contains(c.ownerDocument, c) && za(ua(c, "script")), c.parentNode.removeChild(c));
  1928.             return this
  1929.         },
  1930.         empty: function() {
  1931.             for (var a, b = 0; null != (a = this[b]); b++) {
  1932.                 1 === a.nodeType && m.cleanData(ua(a, !1));
  1933.                 while (a.firstChild) a.removeChild(a.firstChild);
  1934.                 a.options && m.nodeName(a, "select") && (a.options.length = 0)
  1935.             }
  1936.             return this
  1937.         },
  1938.         clone: function(a, b) {
  1939.             return a = null == a ? !1 : a, b = null == b ? a : b, this.map(function() {
  1940.                 return m.clone(this, a, b)
  1941.             })
  1942.         },
  1943.         html: function(a) {
  1944.             return V(this, function(a) {
  1945.                 var b = this[0] || {},
  1946.                     c = 0,
  1947.                     d = this.length;
  1948.                 if (void 0 === a) return 1 === b.nodeType ? b.innerHTML.replace(fa, "") : void 0;
  1949.                 if (!("string" != typeof a || ma.test(a) || !k.htmlSerialize && ga.test(a) || !k.leadingWhitespace && ha.test(a) || ra[(ja.exec(a) || ["", ""])[1].toLowerCase()])) {
  1950.                     a = a.replace(ia, "<$1></$2>");
  1951.                     try {
  1952.                         for (; d > c; c++) b = this[c] || {}, 1 === b.nodeType && (m.cleanData(ua(b, !1)), b.innerHTML = a);
  1953.                         b = 0
  1954.                     } catch (e) {}
  1955.                 }
  1956.                 b && this.empty().append(a)
  1957.             }, null, a, arguments.length)
  1958.         },
  1959.         replaceWith: function() {
  1960.             var a = arguments[0];
  1961.             return this.domManip(arguments, function(b) {
  1962.                 a = this.parentNode, m.cleanData(ua(this)), a && a.replaceChild(b, this)
  1963.             }), a && (a.length || a.nodeType) ? this : this.remove()
  1964.         },
  1965.         detach: function(a) {
  1966.             return this.remove(a, !0)
  1967.         },
  1968.         domManip: function(a, b) {
  1969.             a = e.apply([], a);
  1970.             var c, d, f, g, h, i, j = 0,
  1971.                 l = this.length,
  1972.                 n = this,
  1973.                 o = l - 1,
  1974.                 p = a[0],
  1975.                 q = m.isFunction(p);
  1976.             if (q || l > 1 && "string" == typeof p && !k.checkClone && na.test(p)) return this.each(function(c) {
  1977.                 var d = n.eq(c);
  1978.                 q && (a[0] = p.call(this, c, d.html())), d.domManip(a, b)
  1979.             });
  1980.             if (l && (i = m.buildFragment(a, this[0].ownerDocument, !1, this), c = i.firstChild, 1 === i.childNodes.length && (i = c), c)) {
  1981.                 for (g = m.map(ua(i, "script"), xa), f = g.length; l > j; j++) d = i, j !== o && (d = m.clone(d, !0, !0), f && m.merge(g, ua(d, "script"))), b.call(this[j], d, j);
  1982.                 if (f)
  1983.                     for (h = g[g.length - 1].ownerDocument, m.map(g, ya), j = 0; f > j; j++) d = g[j], oa.test(d.type || "") && !m._data(d, "globalEval") && m.contains(h, d) && (d.src ? m._evalUrl && m._evalUrl(d.src) : m.globalEval((d.text || d.textContent || d.innerHTML || "").replace(qa, "")));
  1984.                 i = c = null
  1985.             }
  1986.             return this
  1987.         }
  1988.     }), m.each({
  1989.         appendTo: "append",
  1990.         prependTo: "prepend",
  1991.         insertBefore: "before",
  1992.         insertAfter: "after",
  1993.         replaceAll: "replaceWith"
  1994.     }, function(a, b) {
  1995.         m.fn[a] = function(a) {
  1996.             for (var c, d = 0, e = [], g = m(a), h = g.length - 1; h >= d; d++) c = d === h ? this : this.clone(!0), m(g[d])[b](c), f.apply(e, c.get());
  1997.             return this.pushStack(e)
  1998.         }
  1999.     });
  2000.     var Ca, Da = {};
  2001.  
  2002.     function Ea(b, c) {
  2003.         var d, e = m(c.createElement(b)).appendTo(c.body),
  2004.             f = a.getDefaultComputedStyle && (d = a.getDefaultComputedStyle(e[0])) ? d.display : m.css(e[0], "display");
  2005.         return e.detach(), f
  2006.     }
  2007.  
  2008.     function Fa(a) {
  2009.         var b = y,
  2010.             c = Da[a];
  2011.         return c || (c = Ea(a, b), "none" !== c && c || (Ca = (Ca || m("<iframe frameborder='0' width='0' height='0'/>")).appendTo(b.documentElement), b = (Ca[0].contentWindow || Ca[0].contentDocument).document, b.write(), b.close(), c = Ea(a, b), Ca.detach()), Da[a] = c), c
  2012.     }! function() {
  2013.         var a;
  2014.         k.shrinkWrapBlocks = function() {
  2015.             if (null != a) return a;
  2016.             a = !1;
  2017.             var b, c, d;
  2018.             return c = y.getElementsByTagName("body")[0], c && c.style ? (b = y.createElement("div"), d = y.createElement("div"), d.style.cssText = "position:absolute;border:0;width:0;height:0;top:0;left:-9999px", c.appendChild(d).appendChild(b), typeof b.style.zoom !== K && (b.style.cssText = "-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:1px;width:1px;zoom:1", b.appendChild(y.createElement("div")).style.width = "5px", a = 3 !== b.offsetWidth), c.removeChild(d), a) : void 0
  2019.         }
  2020.     }();
  2021.     var Ga = /^margin/,
  2022.         Ha = new RegExp("^(" + S + ")(?!px)[a-z%]+$", "i"),
  2023.         Ia, Ja, Ka = /^(top|right|bottom|left)$/;
  2024.     a.getComputedStyle ? (Ia = function(b) {
  2025.         return b.ownerDocument.defaultView.opener ? b.ownerDocument.defaultView.getComputedStyle(b, null) : a.getComputedStyle(b, null)
  2026.     }, Ja = function(a, b, c) {
  2027.         var d, e, f, g, h = a.style;
  2028.         return c = c || Ia(a), g = c ? c.getPropertyValue(b) || c[b] : void 0, c && ("" !== g || m.contains(a.ownerDocument, a) || (g = m.style(a, b)), Ha.test(g) && Ga.test(b) && (d = h.width, e = h.minWidth, f = h.maxWidth, h.minWidth = h.maxWidth = h.width = g, g = c.width, h.width = d, h.minWidth = e, h.maxWidth = f)), void 0 === g ? g : g + ""
  2029.     }) : y.documentElement.currentStyle && (Ia = function(a) {
  2030.         return a.currentStyle
  2031.     }, Ja = function(a, b, c) {
  2032.         var d, e, f, g, h = a.style;
  2033.         return c = c || Ia(a), g = c ? c[b] : void 0, null == g && h && h[b] && (g = h[b]), Ha.test(g) && !Ka.test(b) && (d = h.left, e = a.runtimeStyle, f = e && e.left, f && (e.left = a.currentStyle.left), h.left = "fontSize" === b ? "1em" : g, g = h.pixelLeft + "px", h.left = d, f && (e.left = f)), void 0 === g ? g : g + "" || "auto"
  2034.     });
  2035.  
  2036.     function La(a, b) {
  2037.         return {
  2038.             get: function() {
  2039.                 var c = a();
  2040.                 if (null != c) return c ? void delete this.get : (this.get = b).apply(this, arguments)
  2041.             }
  2042.         }
  2043.     }! function() {
  2044.         var b, c, d, e, f, g, h;
  2045.         if (b = y.createElement("div"), b.innerHTML = "  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>", d = b.getElementsByTagName("a")[0], c = d && d.style) {
  2046.             c.cssText = "float:left;opacity:.5", k.opacity = "0.5" === c.opacity, k.cssFloat = !!c.cssFloat, b.style.backgroundClip = "content-box", b.cloneNode(!0).style.backgroundClip = "", k.clearCloneStyle = "content-box" === b.style.backgroundClip, k.boxSizing = "" === c.boxSizing || "" === c.MozBoxSizing || "" === c.WebkitBoxSizing, m.extend(k, {
  2047.                 reliableHiddenOffsets: function() {
  2048.                     return null == g && i(), g
  2049.                 },
  2050.                 boxSizingReliable: function() {
  2051.                     return null == f && i(), f
  2052.                 },
  2053.                 pixelPosition: function() {
  2054.                     return null == e && i(), e
  2055.                 },
  2056.                 reliableMarginRight: function() {
  2057.                     return null == h && i(), h
  2058.                 }
  2059.             });
  2060.  
  2061.             function i() {
  2062.                 var b, c, d, i;
  2063.                 c = y.getElementsByTagName("body")[0], c && c.style && (b = y.createElement("div"), d = y.createElement("div"), d.style.cssText = "position:absolute;border:0;width:0;height:0;top:0;left:-9999px", c.appendChild(d).appendChild(b), b.style.cssText = "-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;margin-top:1%;top:1%;border:1px;padding:1px;width:4px;position:absolute", e = f = !1, h = !0, a.getComputedStyle && (e = "1%" !== (a.getComputedStyle(b, null) || {}).top, f = "4px" === (a.getComputedStyle(b, null) || {
  2064.                     width: "4px"
  2065.                 }).width, i = b.appendChild(y.createElement("div")), i.style.cssText = b.style.cssText = "-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0", i.style.marginRight = i.style.width = "0", b.style.width = "1px", h = !parseFloat((a.getComputedStyle(i, null) || {}).marginRight), b.removeChild(i)), b.innerHTML = "<table><tr><td></td><td>t</td></tr></table>", i = b.getElementsByTagName("td"), i[0].style.cssText = "margin:0;border:0;padding:0;display:none", g = 0 === i[0].offsetHeight, g && (i[0].style.display = "", i[1].style.display = "none", g = 0 === i[0].offsetHeight), c.removeChild(d))
  2066.             }
  2067.         }
  2068.     }(), m.swap = function(a, b, c, d) {
  2069.         var e, f, g = {};
  2070.         for (f in b) g[f] = a.style[f], a.style[f] = b[f];
  2071.         e = c.apply(a, d || []);
  2072.         for (f in b) a.style[f] = g[f];
  2073.         return e
  2074.     };
  2075.     var Ma = /alpha\([^)]*\)/i,
  2076.         Na = /opacity\s*=\s*([^)]*)/,
  2077.         Oa = /^(none|table(?!-c[ea]).+)/,
  2078.         Pa = new RegExp("^(" + S + ")(.*)$", "i"),
  2079.         Qa = new RegExp("^([+-])=(" + S + ")", "i"),
  2080.         Ra = {
  2081.             position: "absolute",
  2082.             visibility: "hidden",
  2083.             display: "block"
  2084.         },
  2085.         Sa = {
  2086.             letterSpacing: "0",
  2087.             fontWeight: "400"
  2088.         },
  2089.         Ta = ["Webkit", "O", "Moz", "ms"];
  2090.  
  2091.     function Ua(a, b) {
  2092.         if (b in a) return b;
  2093.         var c = b.charAt(0).toUpperCase() + b.slice(1),
  2094.             d = b,
  2095.             e = Ta.length;
  2096.         while (e--)
  2097.             if (b = Ta[e] + c, b in a) return b;
  2098.         return d
  2099.     }
  2100.  
  2101.     function Va(a, b) {
  2102.         for (var c, d, e, f = [], g = 0, h = a.length; h > g; g++) d = a[g], d.style && (f[g] = m._data(d, "olddisplay"), c = d.style.display, b ? (f[g] || "none" !== c || (d.style.display = ""), "" === d.style.display && U(d) && (f[g] = m._data(d, "olddisplay", Fa(d.nodeName)))) : (e = U(d), (c && "none" !== c || !e) && m._data(d, "olddisplay", e ? c : m.css(d, "display"))));
  2103.         for (g = 0; h > g; g++) d = a[g], d.style && (b && "none" !== d.style.display && "" !== d.style.display || (d.style.display = b ? f[g] || "" : "none"));
  2104.         return a
  2105.     }
  2106.  
  2107.     function Wa(a, b, c) {
  2108.         var d = Pa.exec(b);
  2109.         return d ? Math.max(0, d[1] - (c || 0)) + (d[2] || "px") : b
  2110.     }
  2111.  
  2112.     function Xa(a, b, c, d, e) {
  2113.         for (var f = c === (d ? "border" : "content") ? 4 : "width" === b ? 1 : 0, g = 0; 4 > f; f += 2) "margin" === c && (g += m.css(a, c + T[f], !0, e)), d ? ("content" === c && (g -= m.css(a, "padding" + T[f], !0, e)), "margin" !== c && (g -= m.css(a, "border" + T[f] + "Width", !0, e))) : (g += m.css(a, "padding" + T[f], !0, e), "padding" !== c && (g += m.css(a, "border" + T[f] + "Width", !0, e)));
  2114.         return g
  2115.     }
  2116.  
  2117.     function Ya(a, b, c) {
  2118.         var d = !0,
  2119.             e = "width" === b ? a.offsetWidth : a.offsetHeight,
  2120.             f = Ia(a),
  2121.             g = k.boxSizing && "border-box" === m.css(a, "boxSizing", !1, f);
  2122.         if (0 >= e || null == e) {
  2123.             if (e = Ja(a, b, f), (0 > e || null == e) && (e = a.style[b]), Ha.test(e)) return e;
  2124.             d = g && (k.boxSizingReliable() || e === a.style[b]), e = parseFloat(e) || 0
  2125.         }
  2126.         return e + Xa(a, b, c || (g ? "border" : "content"), d, f) + "px"
  2127.     }
  2128.     m.extend({
  2129.         cssHooks: {
  2130.             opacity: {
  2131.                 get: function(a, b) {
  2132.                     if (b) {
  2133.                         var c = Ja(a, "opacity");
  2134.                         return "" === c ? "1" : c
  2135.                     }
  2136.                 }
  2137.             }
  2138.         },
  2139.         cssNumber: {
  2140.             columnCount: !0,
  2141.             fillOpacity: !0,
  2142.             flexGrow: !0,
  2143.             flexShrink: !0,
  2144.             fontWeight: !0,
  2145.             lineHeight: !0,
  2146.             opacity: !0,
  2147.             order: !0,
  2148.             orphans: !0,
  2149.             widows: !0,
  2150.             zIndex: !0,
  2151.             zoom: !0
  2152.         },
  2153.         cssProps: {
  2154.             "float": k.cssFloat ? "cssFloat" : "styleFloat"
  2155.         },
  2156.         style: function(a, b, c, d) {
  2157.             if (a && 3 !== a.nodeType && 8 !== a.nodeType && a.style) {
  2158.                 var e, f, g, h = m.camelCase(b),
  2159.                     i = a.style;
  2160.                 if (b = m.cssProps[h] || (m.cssProps[h] = Ua(i, h)), g = m.cssHooks[b] || m.cssHooks[h], void 0 === c) return g && "get" in g && void 0 !== (e = g.get(a, !1, d)) ? e : i[b];
  2161.                 if (f = typeof c, "string" === f && (e = Qa.exec(c)) && (c = (e[1] + 1) * e[2] + parseFloat(m.css(a, b)), f = "number"), null != c && c === c && ("number" !== f || m.cssNumber[h] || (c += "px"), k.clearCloneStyle || "" !== c || 0 !== b.indexOf("background") || (i[b] = "inherit"), !(g && "set" in g && void 0 === (c = g.set(a, c, d))))) try {
  2162.                     i[b] = c
  2163.                 } catch (j) {}
  2164.             }
  2165.         },
  2166.         css: function(a, b, c, d) {
  2167.             var e, f, g, h = m.camelCase(b);
  2168.             return b = m.cssProps[h] || (m.cssProps[h] = Ua(a.style, h)), g = m.cssHooks[b] || m.cssHooks[h], g && "get" in g && (f = g.get(a, !0, c)), void 0 === f && (f = Ja(a, b, d)), "normal" === f && b in Sa && (f = Sa[b]), "" === c || c ? (e = parseFloat(f), c === !0 || m.isNumeric(e) ? e || 0 : f) : f
  2169.         }
  2170.     }), m.each(["height", "width"], function(a, b) {
  2171.         m.cssHooks[b] = {
  2172.             get: function(a, c, d) {
  2173.                 return c ? Oa.test(m.css(a, "display")) && 0 === a.offsetWidth ? m.swap(a, Ra, function() {
  2174.                     return Ya(a, b, d)
  2175.                 }) : Ya(a, b, d) : void 0
  2176.             },
  2177.             set: function(a, c, d) {
  2178.                 var e = d && Ia(a);
  2179.                 return Wa(a, c, d ? Xa(a, b, d, k.boxSizing && "border-box" === m.css(a, "boxSizing", !1, e), e) : 0)
  2180.             }
  2181.         }
  2182.     }), k.opacity || (m.cssHooks.opacity = {
  2183.         get: function(a, b) {
  2184.             return Na.test((b && a.currentStyle ? a.currentStyle.filter : a.style.filter) || "") ? .01 * parseFloat(RegExp.$1) + "" : b ? "1" : ""
  2185.         },
  2186.         set: function(a, b) {
  2187.             var c = a.style,
  2188.                 d = a.currentStyle,
  2189.                 e = m.isNumeric(b) ? "alpha(opacity=" + 100 * b + ")" : "",
  2190.                 f = d && d.filter || c.filter || "";
  2191.             c.zoom = 1, (b >= 1 || "" === b) && "" === m.trim(f.replace(Ma, "")) && c.removeAttribute && (c.removeAttribute("filter"), "" === b || d && !d.filter) || (c.filter = Ma.test(f) ? f.replace(Ma, e) : f + " " + e)
  2192.         }
  2193.     }), m.cssHooks.marginRight = La(k.reliableMarginRight, function(a, b) {
  2194.         return b ? m.swap(a, {
  2195.             display: "inline-block"
  2196.         }, Ja, [a, "marginRight"]) : void 0
  2197.     }), m.each({
  2198.         margin: "",
  2199.         padding: "",
  2200.         border: "Width"
  2201.     }, function(a, b) {
  2202.         m.cssHooks[a + b] = {
  2203.             expand: function(c) {
  2204.                 for (var d = 0, e = {}, f = "string" == typeof c ? c.split(" ") : [c]; 4 > d; d++) e[a + T[d] + b] = f[d] || f[d - 2] || f[0];
  2205.                 return e
  2206.             }
  2207.         }, Ga.test(a) || (m.cssHooks[a + b].set = Wa)
  2208.     }), m.fn.extend({
  2209.         css: function(a, b) {
  2210.             return V(this, function(a, b, c) {
  2211.                 var d, e, f = {},
  2212.                     g = 0;
  2213.                 if (m.isArray(b)) {
  2214.                     for (d = Ia(a), e = b.length; e > g; g++) f[b[g]] = m.css(a, b[g], !1, d);
  2215.                     return f
  2216.                 }
  2217.                 return void 0 !== c ? m.style(a, b, c) : m.css(a, b)
  2218.             }, a, b, arguments.length > 1)
  2219.         },
  2220.         show: function() {
  2221.             return Va(this, !0)
  2222.         },
  2223.         hide: function() {
  2224.             return Va(this)
  2225.         },
  2226.         toggle: function(a) {
  2227.             return "boolean" == typeof a ? a ? this.show() : this.hide() : this.each(function() {
  2228.                 U(this) ? m(this).show() : m(this).hide()
  2229.             })
  2230.         }
  2231.     });
  2232.  
  2233.     function Za(a, b, c, d, e) {
  2234.         return new Za.prototype.init(a, b, c, d, e)
  2235.     }
  2236.     m.Tween = Za, Za.prototype = {
  2237.         constructor: Za,
  2238.         init: function(a, b, c, d, e, f) {
  2239.             this.elem = a, this.prop = c, this.easing = e || "swing", this.options = b, this.start = this.now = this.cur(), this.end = d, this.unit = f || (m.cssNumber[c] ? "" : "px")
  2240.         },
  2241.         cur: function() {
  2242.             var a = Za.propHooks[this.prop];
  2243.             return a && a.get ? a.get(this) : Za.propHooks._default.get(this)
  2244.         },
  2245.         run: function(a) {
  2246.             var b, c = Za.propHooks[this.prop];
  2247.             return this.options.duration ? this.pos = b = m.easing[this.easing](a, this.options.duration * a, 0, 1, this.options.duration) : this.pos = b = a, this.now = (this.end - this.start) * b + this.start, this.options.step && this.options.step.call(this.elem, this.now, this), c && c.set ? c.set(this) : Za.propHooks._default.set(this), this
  2248.         }
  2249.     }, Za.prototype.init.prototype = Za.prototype, Za.propHooks = {
  2250.         _default: {
  2251.             get: function(a) {
  2252.                 var b;
  2253.                 return null == a.elem[a.prop] || a.elem.style && null != a.elem.style[a.prop] ? (b = m.css(a.elem, a.prop, ""), b && "auto" !== b ? b : 0) : a.elem[a.prop]
  2254.             },
  2255.             set: function(a) {
  2256.                 m.fx.step[a.prop] ? m.fx.step[a.prop](a) : a.elem.style && (null != a.elem.style[m.cssProps[a.prop]] || m.cssHooks[a.prop]) ? m.style(a.elem, a.prop, a.now + a.unit) : a.elem[a.prop] = a.now
  2257.             }
  2258.         }
  2259.     }, Za.propHooks.scrollTop = Za.propHooks.scrollLeft = {
  2260.         set: function(a) {
  2261.             a.elem.nodeType && a.elem.parentNode && (a.elem[a.prop] = a.now)
  2262.         }
  2263.     }, m.easing = {
  2264.         linear: function(a) {
  2265.             return a
  2266.         },
  2267.         swing: function(a) {
  2268.             return .5 - Math.cos(a * Math.PI) / 2
  2269.         }
  2270.     }, m.fx = Za.prototype.init, m.fx.step = {};
  2271.     var $a, _a, ab = /^(?:toggle|show|hide)$/,
  2272.         bb = new RegExp("^(?:([+-])=|)(" + S + ")([a-z%]*)$", "i"),
  2273.         cb = /queueHooks$/,
  2274.         db = [ib],
  2275.         eb = {
  2276.             "*": [function(a, b) {
  2277.                 var c = this.createTween(a, b),
  2278.                     d = c.cur(),
  2279.                     e = bb.exec(b),
  2280.                     f = e && e[3] || (m.cssNumber[a] ? "" : "px"),
  2281.                     g = (m.cssNumber[a] || "px" !== f && +d) && bb.exec(m.css(c.elem, a)),
  2282.                     h = 1,
  2283.                     i = 20;
  2284.                 if (g && g[3] !== f) {
  2285.                     f = f || g[3], e = e || [], g = +d || 1;
  2286.                     do h = h || ".5", g /= h, m.style(c.elem, a, g + f); while (h !== (h = c.cur() / d) && 1 !== h && --i)
  2287.                 }
  2288.                 return e && (g = c.start = +g || +d || 0, c.unit = f, c.end = e[1] ? g + (e[1] + 1) * e[2] : +e[2]), c
  2289.             }]
  2290.         };
  2291.  
  2292.     function fb() {
  2293.         return setTimeout(function() {
  2294.             $a = void 0
  2295.         }), $a = m.now()
  2296.     }
  2297.  
  2298.     function gb(a, b) {
  2299.         var c, d = {
  2300.                 height: a
  2301.             },
  2302.             e = 0;
  2303.         for (b = b ? 1 : 0; 4 > e; e += 2 - b) c = T[e], d["margin" + c] = d["padding" + c] = a;
  2304.         return b && (d.opacity = d.width = a), d
  2305.     }
  2306.  
  2307.     function hb(a, b, c) {
  2308.         for (var d, e = (eb[b] || []).concat(eb["*"]), f = 0, g = e.length; g > f; f++)
  2309.             if (d = e[f].call(c, b, a)) return d
  2310.     }
  2311.  
  2312.     function ib(a, b, c) {
  2313.         var d, e, f, g, h, i, j, l, n = this,
  2314.             o = {},
  2315.             p = a.style,
  2316.             q = a.nodeType && U(a),
  2317.             r = m._data(a, "fxshow");
  2318.         c.queue || (h = m._queueHooks(a, "fx"), null == h.unqueued && (h.unqueued = 0, i = h.empty.fire, h.empty.fire = function() {
  2319.             h.unqueued || i()
  2320.         }), h.unqueued++, n.always(function() {
  2321.             n.always(function() {
  2322.                 h.unqueued--, m.queue(a, "fx").length || h.empty.fire()
  2323.             })
  2324.         })), 1 === a.nodeType && ("height" in b || "width" in b) && (c.overflow = [p.overflow, p.overflowX, p.overflowY], j = m.css(a, "display"), l = "none" === j ? m._data(a, "olddisplay") || Fa(a.nodeName) : j, "inline" === l && "none" === m.css(a, "float") && (k.inlineBlockNeedsLayout && "inline" !== Fa(a.nodeName) ? p.zoom = 1 : p.display = "inline-block")), c.overflow && (p.overflow = "hidden", k.shrinkWrapBlocks() || n.always(function() {
  2325.             p.overflow = c.overflow[0], p.overflowX = c.overflow[1], p.overflowY = c.overflow[2]
  2326.         }));
  2327.         for (d in b)
  2328.             if (e = b[d], ab.exec(e)) {
  2329.                 if (delete b[d], f = f || "toggle" === e, e === (q ? "hide" : "show")) {
  2330.                     if ("show" !== e || !r || void 0 === r[d]) continue;
  2331.                     q = !0
  2332.                 }
  2333.                 o[d] = r && r[d] || m.style(a, d)
  2334.             } else j = void 0;
  2335.         if (m.isEmptyObject(o)) "inline" === ("none" === j ? Fa(a.nodeName) : j) && (p.display = j);
  2336.         else {
  2337.             r ? "hidden" in r && (q = r.hidden) : r = m._data(a, "fxshow", {}), f && (r.hidden = !q), q ? m(a).show() : n.done(function() {
  2338.                 m(a).hide()
  2339.             }), n.done(function() {
  2340.                 var b;
  2341.                 m._removeData(a, "fxshow");
  2342.                 for (b in o) m.style(a, b, o[b])
  2343.             });
  2344.             for (d in o) g = hb(q ? r[d] : 0, d, n), d in r || (r[d] = g.start, q && (g.end = g.start, g.start = "width" === d || "height" === d ? 1 : 0))
  2345.         }
  2346.     }
  2347.  
  2348.     function jb(a, b) {
  2349.         var c, d, e, f, g;
  2350.         for (c in a)
  2351.             if (d = m.camelCase(c), e = b[d], f = a[c], m.isArray(f) && (e = f[1], f = a[c] = f[0]), c !== d && (a[d] = f, delete a[c]), g = m.cssHooks[d], g && "expand" in g) {
  2352.                 f = g.expand(f), delete a[d];
  2353.                 for (c in f) c in a || (a[c] = f[c], b[c] = e)
  2354.             } else b[d] = e
  2355.     }
  2356.  
  2357.     function kb(a, b, c) {
  2358.         var d, e, f = 0,
  2359.             g = db.length,
  2360.             h = m.Deferred().always(function() {
  2361.                 delete i.elem
  2362.             }),
  2363.             i = function() {
  2364.                 if (e) return !1;
  2365.                 for (var b = $a || fb(), c = Math.max(0, j.startTime + j.duration - b), d = c / j.duration || 0, f = 1 - d, g = 0, i = j.tweens.length; i > g; g++) j.tweens[g].run(f);
  2366.                 return h.notifyWith(a, [j, f, c]), 1 > f && i ? c : (h.resolveWith(a, [j]), !1)
  2367.             },
  2368.             j = h.promise({
  2369.                 elem: a,
  2370.                 props: m.extend({}, b),
  2371.                 opts: m.extend(!0, {
  2372.                     specialEasing: {}
  2373.                 }, c),
  2374.                 originalProperties: b,
  2375.                 originalOptions: c,
  2376.                 startTime: $a || fb(),
  2377.                 duration: c.duration,
  2378.                 tweens: [],
  2379.                 createTween: function(b, c) {
  2380.                     var d = m.Tween(a, j.opts, b, c, j.opts.specialEasing[b] || j.opts.easing);
  2381.                     return j.tweens.push(d), d
  2382.                 },
  2383.                 stop: function(b) {
  2384.                     var c = 0,
  2385.                         d = b ? j.tweens.length : 0;
  2386.                     if (e) return this;
  2387.                     for (e = !0; d > c; c++) j.tweens[c].run(1);
  2388.                     return b ? h.resolveWith(a, [j, b]) : h.rejectWith(a, [j, b]), this
  2389.                 }
  2390.             }),
  2391.             k = j.props;
  2392.         for (jb(k, j.opts.specialEasing); g > f; f++)
  2393.             if (d = db[f].call(j, a, k, j.opts)) return d;
  2394.         return m.map(k, hb, j), m.isFunction(j.opts.start) && j.opts.start.call(a, j), m.fx.timer(m.extend(i, {
  2395.             elem: a,
  2396.             anim: j,
  2397.             queue: j.opts.queue
  2398.         })), j.progress(j.opts.progress).done(j.opts.done, j.opts.complete).fail(j.opts.fail).always(j.opts.always)
  2399.     }
  2400.     m.Animation = m.extend(kb, {
  2401.             tweener: function(a, b) {
  2402.                 m.isFunction(a) ? (b = a, a = ["*"]) : a = a.split(" ");
  2403.                 for (var c, d = 0, e = a.length; e > d; d++) c = a[d], eb[c] = eb[c] || [], eb[c].unshift(b)
  2404.             },
  2405.             prefilter: function(a, b) {
  2406.                 b ? db.unshift(a) : db.push(a)
  2407.             }
  2408.         }), m.speed = function(a, b, c) {
  2409.             var d = a && "object" == typeof a ? m.extend({}, a) : {
  2410.                 complete: c || !c && b || m.isFunction(a) && a,
  2411.                 duration: a,
  2412.                 easing: c && b || b && !m.isFunction(b) && b
  2413.             };
  2414.             return d.duration = m.fx.off ? 0 : "number" == typeof d.duration ? d.duration : d.duration in m.fx.speeds ? m.fx.speeds[d.duration] : m.fx.speeds._default, (null == d.queue || d.queue === !0) && (d.queue = "fx"), d.old = d.complete, d.complete = function() {
  2415.                 m.isFunction(d.old) && d.old.call(this), d.queue && m.dequeue(this, d.queue)
  2416.             }, d
  2417.         }, m.fn.extend({
  2418.             fadeTo: function(a, b, c, d) {
  2419.                 return this.filter(U).css("opacity", 0).show().end().animate({
  2420.                     opacity: b
  2421.                 }, a, c, d)
  2422.             },
  2423.             animate: function(a, b, c, d) {
  2424.                 var e = m.isEmptyObject(a),
  2425.                     f = m.speed(b, c, d),
  2426.                     g = function() {
  2427.                         var b = kb(this, m.extend({}, a), f);
  2428.                         (e || m._data(this, "finish")) && b.stop(!0)
  2429.                     };
  2430.                 return g.finish = g, e || f.queue === !1 ? this.each(g) : this.queue(f.queue, g)
  2431.             },
  2432.             stop: function(a, b, c) {
  2433.                 var d = function(a) {
  2434.                     var b = a.stop;
  2435.                     delete a.stop, b(c)
  2436.                 };
  2437.                 return "string" != typeof a && (c = b, b = a, a = void 0), b && a !== !1 && this.queue(a || "fx", []), this.each(function() {
  2438.                     var b = !0,
  2439.                         e = null != a && a + "queueHooks",
  2440.                         f = m.timers,
  2441.                         g = m._data(this);
  2442.                     if (e) g[e] && g[e].stop && d(g[e]);
  2443.                     else
  2444.                         for (e in g) g[e] && g[e].stop && cb.test(e) && d(g[e]);
  2445.                     for (e = f.length; e--;) f[e].elem !== this || null != a && f[e].queue !== a || (f[e].anim.stop(c), b = !1, f.splice(e, 1));
  2446.                     (b || !c) && m.dequeue(this, a)
  2447.                 })
  2448.             },
  2449.             finish: function(a) {
  2450.                 return a !== !1 && (a = a || "fx"), this.each(function() {
  2451.                     var b, c = m._data(this),
  2452.                         d = c[a + "queue"],
  2453.                         e = c[a + "queueHooks"],
  2454.                         f = m.timers,
  2455.                         g = d ? d.length : 0;
  2456.                     for (c.finish = !0, m.queue(this, a, []), e && e.stop && e.stop.call(this, !0), b = f.length; b--;) f[b].elem === this && f[b].queue === a && (f[b].anim.stop(!0), f.splice(b, 1));
  2457.                     for (b = 0; g > b; b++) d[b] && d[b].finish && d[b].finish.call(this);
  2458.                     delete c.finish
  2459.                 })
  2460.             }
  2461.         }), m.each(["toggle", "show", "hide"], function(a, b) {
  2462.             var c = m.fn[b];
  2463.             m.fn[b] = function(a, d, e) {
  2464.                 return null == a || "boolean" == typeof a ? c.apply(this, arguments) : this.animate(gb(b, !0), a, d, e)
  2465.             }
  2466.         }), m.each({
  2467.             slideDown: gb("show"),
  2468.             slideUp: gb("hide"),
  2469.             slideToggle: gb("toggle"),
  2470.             fadeIn: {
  2471.                 opacity: "show"
  2472.             },
  2473.             fadeOut: {
  2474.                 opacity: "hide"
  2475.             },
  2476.             fadeToggle: {
  2477.                 opacity: "toggle"
  2478.             }
  2479.         }, function(a, b) {
  2480.             m.fn[a] = function(a, c, d) {
  2481.                 return this.animate(b, a, c, d)
  2482.             }
  2483.         }), m.timers = [], m.fx.tick = function() {
  2484.             var a, b = m.timers,
  2485.                 c = 0;
  2486.             for ($a = m.now(); c < b.length; c++) a = b[c], a() || b[c] !== a || b.splice(c--, 1);
  2487.             b.length || m.fx.stop(), $a = void 0
  2488.         }, m.fx.timer = function(a) {
  2489.             m.timers.push(a), a() ? m.fx.start() : m.timers.pop()
  2490.         }, m.fx.interval = 13, m.fx.start = function() {
  2491.             _a || (_a = setInterval(m.fx.tick, m.fx.interval))
  2492.         }, m.fx.stop = function() {
  2493.             clearInterval(_a), _a = null
  2494.         }, m.fx.speeds = {
  2495.             slow: 600,
  2496.             fast: 200,
  2497.             _default: 400
  2498.         }, m.fn.delay = function(a, b) {
  2499.             return a = m.fx ? m.fx.speeds[a] || a : a, b = b || "fx", this.queue(b, function(b, c) {
  2500.                 var d = setTimeout(b, a);
  2501.                 c.stop = function() {
  2502.                     clearTimeout(d)
  2503.                 }
  2504.             })
  2505.         },
  2506.         function() {
  2507.             var a, b, c, d, e;
  2508.             b = y.createElement("div"), b.setAttribute("className", "t"), b.innerHTML = "  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>", d = b.getElementsByTagName("a")[0], c = y.createElement("select"), e = c.appendChild(y.createElement("option")), a = b.getElementsByTagName("input")[0], d.style.cssText = "top:1px", k.getSetAttribute = "t" !== b.className, k.style = /top/.test(d.getAttribute("style")), k.hrefNormalized = "/a" === d.getAttribute("href"), k.checkOn = !!a.value, k.optSelected = e.selected, k.enctype = !!y.createElement("form").enctype, c.disabled = !0, k.optDisabled = !e.disabled, a = y.createElement("input"), a.setAttribute("value", ""), k.input = "" === a.getAttribute("value"), a.value = "t", a.setAttribute("type", "radio"), k.radioValue = "t" === a.value
  2509.         }();
  2510.     var lb = /\r/g;
  2511.     m.fn.extend({
  2512.         val: function(a) {
  2513.             var b, c, d, e = this[0]; {
  2514.                 if (arguments.length) return d = m.isFunction(a), this.each(function(c) {
  2515.                     var e;
  2516.                     1 === this.nodeType && (e = d ? a.call(this, c, m(this).val()) : a, null == e ? e = "" : "number" == typeof e ? e += "" : m.isArray(e) && (e = m.map(e, function(a) {
  2517.                         return null == a ? "" : a + ""
  2518.                     })), b = m.valHooks[this.type] || m.valHooks[this.nodeName.toLowerCase()], b && "set" in b && void 0 !== b.set(this, e, "value") || (this.value = e))
  2519.                 });
  2520.                 if (e) return b = m.valHooks[e.type] || m.valHooks[e.nodeName.toLowerCase()], b && "get" in b && void 0 !== (c = b.get(e, "value")) ? c : (c = e.value, "string" == typeof c ? c.replace(lb, "") : null == c ? "" : c)
  2521.             }
  2522.         }
  2523.     }), m.extend({
  2524.         valHooks: {
  2525.             option: {
  2526.                 get: function(a) {
  2527.                     var b = m.find.attr(a, "value");
  2528.                     return null != b ? b : m.trim(m.text(a))
  2529.                 }
  2530.             },
  2531.             select: {
  2532.                 get: function(a) {
  2533.                     for (var b, c, d = a.options, e = a.selectedIndex, f = "select-one" === a.type || 0 > e, g = f ? null : [], h = f ? e + 1 : d.length, i = 0 > e ? h : f ? e : 0; h > i; i++)
  2534.                         if (c = d[i], !(!c.selected && i !== e || (k.optDisabled ? c.disabled : null !== c.getAttribute("disabled")) || c.parentNode.disabled && m.nodeName(c.parentNode, "optgroup"))) {
  2535.                             if (b = m(c).val(), f) return b;
  2536.                             g.push(b)
  2537.                         } return g
  2538.                 },
  2539.                 set: function(a, b) {
  2540.                     var c, d, e = a.options,
  2541.                         f = m.makeArray(b),
  2542.                         g = e.length;
  2543.                     while (g--)
  2544.                         if (d = e[g], m.inArray(m.valHooks.option.get(d), f) >= 0) try {
  2545.                             d.selected = c = !0
  2546.                         } catch (h) {
  2547.                             d.scrollHeight
  2548.                         } else d.selected = !1;
  2549.                     return c || (a.selectedIndex = -1), e
  2550.                 }
  2551.             }
  2552.         }
  2553.     }), m.each(["radio", "checkbox"], function() {
  2554.         m.valHooks[this] = {
  2555.             set: function(a, b) {
  2556.                 return m.isArray(b) ? a.checked = m.inArray(m(a).val(), b) >= 0 : void 0
  2557.             }
  2558.         }, k.checkOn || (m.valHooks[this].get = function(a) {
  2559.             return null === a.getAttribute("value") ? "on" : a.value
  2560.         })
  2561.     });
  2562.     var mb, nb, ob = m.expr.attrHandle,
  2563.         pb = /^(?:checked|selected)$/i,
  2564.         qb = k.getSetAttribute,
  2565.         rb = k.input;
  2566.     m.fn.extend({
  2567.         attr: function(a, b) {
  2568.             return V(this, m.attr, a, b, arguments.length > 1)
  2569.         },
  2570.         removeAttr: function(a) {
  2571.             return this.each(function() {
  2572.                 m.removeAttr(this, a)
  2573.             })
  2574.         }
  2575.     }), m.extend({
  2576.         attr: function(a, b, c) {
  2577.             var d, e, f = a.nodeType;
  2578.             if (a && 3 !== f && 8 !== f && 2 !== f) return typeof a.getAttribute === K ? m.prop(a, b, c) : (1 === f && m.isXMLDoc(a) || (b = b.toLowerCase(), d = m.attrHooks[b] || (m.expr.match.bool.test(b) ? nb : mb)), void 0 === c ? d && "get" in d && null !== (e = d.get(a, b)) ? e : (e = m.find.attr(a, b), null == e ? void 0 : e) : null !== c ? d && "set" in d && void 0 !== (e = d.set(a, c, b)) ? e : (a.setAttribute(b, c + ""), c) : void m.removeAttr(a, b))
  2579.         },
  2580.         removeAttr: function(a, b) {
  2581.             var c, d, e = 0,
  2582.                 f = b && b.match(E);
  2583.             if (f && 1 === a.nodeType)
  2584.                 while (c = f[e++]) d = m.propFix[c] || c, m.expr.match.bool.test(c) ? rb && qb || !pb.test(c) ? a[d] = !1 : a[m.camelCase("default-" + c)] = a[d] = !1 : m.attr(a, c, ""), a.removeAttribute(qb ? c : d)
  2585.         },
  2586.         attrHooks: {
  2587.             type: {
  2588.                 set: function(a, b) {
  2589.                     if (!k.radioValue && "radio" === b && m.nodeName(a, "input")) {
  2590.                         var c = a.value;
  2591.                         return a.setAttribute("type", b), c && (a.value = c), b
  2592.                     }
  2593.                 }
  2594.             }
  2595.         }
  2596.     }), nb = {
  2597.         set: function(a, b, c) {
  2598.             return b === !1 ? m.removeAttr(a, c) : rb && qb || !pb.test(c) ? a.setAttribute(!qb && m.propFix[c] || c, c) : a[m.camelCase("default-" + c)] = a[c] = !0, c
  2599.         }
  2600.     }, m.each(m.expr.match.bool.source.match(/\w+/g), function(a, b) {
  2601.         var c = ob[b] || m.find.attr;
  2602.         ob[b] = rb && qb || !pb.test(b) ? function(a, b, d) {
  2603.             var e, f;
  2604.             return d || (f = ob[b], ob[b] = e, e = null != c(a, b, d) ? b.toLowerCase() : null, ob[b] = f), e
  2605.         } : function(a, b, c) {
  2606.             return c ? void 0 : a[m.camelCase("default-" + b)] ? b.toLowerCase() : null
  2607.         }
  2608.     }), rb && qb || (m.attrHooks.value = {
  2609.         set: function(a, b, c) {
  2610.             return m.nodeName(a, "input") ? void(a.defaultValue = b) : mb && mb.set(a, b, c)
  2611.         }
  2612.     }), qb || (mb = {
  2613.         set: function(a, b, c) {
  2614.             var d = a.getAttributeNode(c);
  2615.             return d || a.setAttributeNode(d = a.ownerDocument.createAttribute(c)), d.value = b += "", "value" === c || b === a.getAttribute(c) ? b : void 0
  2616.         }
  2617.     }, ob.id = ob.name = ob.coords = function(a, b, c) {
  2618.         var d;
  2619.         return c ? void 0 : (d = a.getAttributeNode(b)) && "" !== d.value ? d.value : null
  2620.     }, m.valHooks.button = {
  2621.         get: function(a, b) {
  2622.             var c = a.getAttributeNode(b);
  2623.             return c && c.specified ? c.value : void 0
  2624.         },
  2625.         set: mb.set
  2626.     }, m.attrHooks.contenteditable = {
  2627.         set: function(a, b, c) {
  2628.             mb.set(a, "" === b ? !1 : b, c)
  2629.         }
  2630.     }, m.each(["width", "height"], function(a, b) {
  2631.         m.attrHooks[b] = {
  2632.             set: function(a, c) {
  2633.                 return "" === c ? (a.setAttribute(b, "auto"), c) : void 0
  2634.             }
  2635.         }
  2636.     })), k.style || (m.attrHooks.style = {
  2637.         get: function(a) {
  2638.             return a.style.cssText || void 0
  2639.         },
  2640.         set: function(a, b) {
  2641.             return a.style.cssText = b + ""
  2642.         }
  2643.     });
  2644.     var sb = /^(?:input|select|textarea|button|object)$/i,
  2645.         tb = /^(?:a|area)$/i;
  2646.     m.fn.extend({
  2647.         prop: function(a, b) {
  2648.             return V(this, m.prop, a, b, arguments.length > 1)
  2649.         },
  2650.         removeProp: function(a) {
  2651.             return a = m.propFix[a] || a, this.each(function() {
  2652.                 try {
  2653.                     this[a] = void 0, delete this[a]
  2654.                 } catch (b) {}
  2655.             })
  2656.         }
  2657.     }), m.extend({
  2658.         propFix: {
  2659.             "for": "htmlFor",
  2660.             "class": "className"
  2661.         },
  2662.         prop: function(a, b, c) {
  2663.             var d, e, f, g = a.nodeType;
  2664.             if (a && 3 !== g && 8 !== g && 2 !== g) return f = 1 !== g || !m.isXMLDoc(a), f && (b = m.propFix[b] || b, e = m.propHooks[b]), void 0 !== c ? e && "set" in e && void 0 !== (d = e.set(a, c, b)) ? d : a[b] = c : e && "get" in e && null !== (d = e.get(a, b)) ? d : a[b]
  2665.         },
  2666.         propHooks: {
  2667.             tabIndex: {
  2668.                 get: function(a) {
  2669.                     var b = m.find.attr(a, "tabindex");
  2670.                     return b ? parseInt(b, 10) : sb.test(a.nodeName) || tb.test(a.nodeName) && a.href ? 0 : -1
  2671.                 }
  2672.             }
  2673.         }
  2674.     }), k.hrefNormalized || m.each(["href", "src"], function(a, b) {
  2675.         m.propHooks[b] = {
  2676.             get: function(a) {
  2677.                 return a.getAttribute(b, 4)
  2678.             }
  2679.         }
  2680.     }), k.optSelected || (m.propHooks.selected = {
  2681.         get: function(a) {
  2682.             var b = a.parentNode;
  2683.             return b && (b.selectedIndex, b.parentNode && b.parentNode.selectedIndex), null
  2684.         }
  2685.     }), m.each(["tabIndex", "readOnly", "maxLength", "cellSpacing", "cellPadding", "rowSpan", "colSpan", "useMap", "frameBorder", "contentEditable"], function() {
  2686.         m.propFix[this.toLowerCase()] = this
  2687.     }), k.enctype || (m.propFix.enctype = "encoding");
  2688.     var ub = /[\t\r\n\f]/g;
  2689.     m.fn.extend({
  2690.         addClass: function(a) {
  2691.             var b, c, d, e, f, g, h = 0,
  2692.                 i = this.length,
  2693.                 j = "string" == typeof a && a;
  2694.             if (m.isFunction(a)) return this.each(function(b) {
  2695.                 m(this).addClass(a.call(this, b, this.className))
  2696.             });
  2697.             if (j)
  2698.                 for (b = (a || "").match(E) || []; i > h; h++)
  2699.                     if (c = this[h], d = 1 === c.nodeType && (c.className ? (" " + c.className + " ").replace(ub, " ") : " ")) {
  2700.                         f = 0;
  2701.                         while (e = b[f++]) d.indexOf(" " + e + " ") < 0 && (d += e + " ");
  2702.                         g = m.trim(d), c.className !== g && (c.className = g)
  2703.                     } return this
  2704.         },
  2705.         removeClass: function(a) {
  2706.             var b, c, d, e, f, g, h = 0,
  2707.                 i = this.length,
  2708.                 j = 0 === arguments.length || "string" == typeof a && a;
  2709.             if (m.isFunction(a)) return this.each(function(b) {
  2710.                 m(this).removeClass(a.call(this, b, this.className))
  2711.             });
  2712.             if (j)
  2713.                 for (b = (a || "").match(E) || []; i > h; h++)
  2714.                     if (c = this[h], d = 1 === c.nodeType && (c.className ? (" " + c.className + " ").replace(ub, " ") : "")) {
  2715.                         f = 0;
  2716.                         while (e = b[f++])
  2717.                             while (d.indexOf(" " + e + " ") >= 0) d = d.replace(" " + e + " ", " ");
  2718.                         g = a ? m.trim(d) : "", c.className !== g && (c.className = g)
  2719.                     } return this
  2720.         },
  2721.         toggleClass: function(a, b) {
  2722.             var c = typeof a;
  2723.             return "boolean" == typeof b && "string" === c ? b ? this.addClass(a) : this.removeClass(a) : this.each(m.isFunction(a) ? function(c) {
  2724.                 m(this).toggleClass(a.call(this, c, this.className, b), b)
  2725.             } : function() {
  2726.                 if ("string" === c) {
  2727.                     var b, d = 0,
  2728.                         e = m(this),
  2729.                         f = a.match(E) || [];
  2730.                     while (b = f[d++]) e.hasClass(b) ? e.removeClass(b) : e.addClass(b)
  2731.                 } else(c === K || "boolean" === c) && (this.className && m._data(this, "__className__", this.className), this.className = this.className || a === !1 ? "" : m._data(this, "__className__") || "")
  2732.             })
  2733.         },
  2734.         hasClass: function(a) {
  2735.             for (var b = " " + a + " ", c = 0, d = this.length; d > c; c++)
  2736.                 if (1 === this[c].nodeType && (" " + this[c].className + " ").replace(ub, " ").indexOf(b) >= 0) return !0;
  2737.             return !1
  2738.         }
  2739.     }), m.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "), function(a, b) {
  2740.         m.fn[b] = function(a, c) {
  2741.             return arguments.length > 0 ? this.on(b, null, a, c) : this.trigger(b)
  2742.         }
  2743.     }), m.fn.extend({
  2744.         hover: function(a, b) {
  2745.             return this.mouseenter(a).mouseleave(b || a)
  2746.         },
  2747.         bind: function(a, b, c) {
  2748.             return this.on(a, null, b, c)
  2749.         },
  2750.         unbind: function(a, b) {
  2751.             return this.off(a, null, b)
  2752.         },
  2753.         delegate: function(a, b, c, d) {
  2754.             return this.on(b, a, c, d)
  2755.         },
  2756.         undelegate: function(a, b, c) {
  2757.             return 1 === arguments.length ? this.off(a, "**") : this.off(b, a || "**", c)
  2758.         }
  2759.     });
  2760.     var vb = m.now(),
  2761.         wb = /\?/,
  2762.         xb = /(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;
  2763.     m.parseJSON = function(b) {
  2764.         if (a.JSON && a.JSON.parse) return a.JSON.parse(b + "");
  2765.         var c, d = null,
  2766.             e = m.trim(b + "");
  2767.         return e && !m.trim(e.replace(xb, function(a, b, e, f) {
  2768.             return c && b && (d = 0), 0 === d ? a : (c = e || b, d += !f - !e, "")
  2769.         })) ? Function("return " + e)() : m.error("Invalid JSON: " + b)
  2770.     }, m.parseXML = function(b) {
  2771.         var c, d;
  2772.         if (!b || "string" != typeof b) return null;
  2773.         try {
  2774.             a.DOMParser ? (d = new DOMParser, c = d.parseFromString(b, "text/xml")) : (c = new ActiveXObject("Microsoft.XMLDOM"), c.async = "false", c.loadXML(b))
  2775.         } catch (e) {
  2776.             c = void 0
  2777.         }
  2778.         return c && c.documentElement && !c.getElementsByTagName("parsererror").length || m.error("Invalid XML: " + b), c
  2779.     };
  2780.     var yb, zb, Ab = /#.*$/,
  2781.         Bb = /([?&])_=[^&]*/,
  2782.         Cb = /^(.*?):[ \t]*([^\r\n]*)\r?$/gm,
  2783.         Db = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,
  2784.         Eb = /^(?:GET|HEAD)$/,
  2785.         Fb = /^\/\//,
  2786.         Gb = /^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,
  2787.         Hb = {},
  2788.         Ib = {},
  2789.         Jb = "*/".concat("*");
  2790.     try {
  2791.         zb = location.href
  2792.     } catch (Kb) {
  2793.         zb = y.createElement("a"), zb.href = "", zb = zb.href
  2794.     }
  2795.     yb = Gb.exec(zb.toLowerCase()) || [];
  2796.  
  2797.     function Lb(a) {
  2798.         return function(b, c) {
  2799.             "string" != typeof b && (c = b, b = "*");
  2800.             var d, e = 0,
  2801.                 f = b.toLowerCase().match(E) || [];
  2802.             if (m.isFunction(c))
  2803.                 while (d = f[e++]) "+" === d.charAt(0) ? (d = d.slice(1) || "*", (a[d] = a[d] || []).unshift(c)) : (a[d] = a[d] || []).push(c)
  2804.         }
  2805.     }
  2806.  
  2807.     function Mb(a, b, c, d) {
  2808.         var e = {},
  2809.             f = a === Ib;
  2810.  
  2811.         function g(h) {
  2812.             var i;
  2813.             return e[h] = !0, m.each(a[h] || [], function(a, h) {
  2814.                 var j = h(b, c, d);
  2815.                 return "string" != typeof j || f || e[j] ? f ? !(i = j) : void 0 : (b.dataTypes.unshift(j), g(j), !1)
  2816.             }), i
  2817.         }
  2818.         return g(b.dataTypes[0]) || !e["*"] && g("*")
  2819.     }
  2820.  
  2821.     function Nb(a, b) {
  2822.         var c, d, e = m.ajaxSettings.flatOptions || {};
  2823.         for (d in b) void 0 !== b[d] && ((e[d] ? a : c || (c = {}))[d] = b[d]);
  2824.         return c && m.extend(!0, a, c), a
  2825.     }
  2826.  
  2827.     function Ob(a, b, c) {
  2828.         var d, e, f, g, h = a.contents,
  2829.             i = a.dataTypes;
  2830.         while ("*" === i[0]) i.shift(), void 0 === e && (e = a.mimeType || b.getResponseHeader("Content-Type"));
  2831.         if (e)
  2832.             for (g in h)
  2833.                 if (h[g] && h[g].test(e)) {
  2834.                     i.unshift(g);
  2835.                     break
  2836.                 } if (i[0] in c) f = i[0];
  2837.         else {
  2838.             for (g in c) {
  2839.                 if (!i[0] || a.converters[g + " " + i[0]]) {
  2840.                     f = g;
  2841.                     break
  2842.                 }
  2843.                 d || (d = g)
  2844.             }
  2845.             f = f || d
  2846.         }
  2847.         return f ? (f !== i[0] && i.unshift(f), c[f]) : void 0
  2848.     }
  2849.  
  2850.     function Pb(a, b, c, d) {
  2851.         var e, f, g, h, i, j = {},
  2852.             k = a.dataTypes.slice();
  2853.         if (k[1])
  2854.             for (g in a.converters) j[g.toLowerCase()] = a.converters[g];
  2855.         f = k.shift();
  2856.         while (f)
  2857.             if (a.responseFields[f] && (c[a.responseFields[f]] = b), !i && d && a.dataFilter && (b = a.dataFilter(b, a.dataType)), i = f, f = k.shift())
  2858.                 if ("*" === f) f = i;
  2859.                 else if ("*" !== i && i !== f) {
  2860.             if (g = j[i + " " + f] || j["* " + f], !g)
  2861.                 for (e in j)
  2862.                     if (h = e.split(" "), h[1] === f && (g = j[i + " " + h[0]] || j["* " + h[0]])) {
  2863.                         g === !0 ? g = j[e] : j[e] !== !0 && (f = h[0], k.unshift(h[1]));
  2864.                         break
  2865.                     } if (g !== !0)
  2866.                 if (g && a["throws"]) b = g(b);
  2867.                 else try {
  2868.                     b = g(b)
  2869.                 } catch (l) {
  2870.                     return {
  2871.                         state: "parsererror",
  2872.                         error: g ? l : "No conversion from " + i + " to " + f
  2873.                     }
  2874.                 }
  2875.         }
  2876.         return {
  2877.             state: "success",
  2878.             data: b
  2879.         }
  2880.     }
  2881.     m.extend({
  2882.         active: 0,
  2883.         lastModified: {},
  2884.         etag: {},
  2885.         ajaxSettings: {
  2886.             url: zb,
  2887.             type: "GET",
  2888.             isLocal: Db.test(yb[1]),
  2889.             global: !0,
  2890.             processData: !0,
  2891.             async: !0,
  2892.             contentType: "application/x-www-form-urlencoded; charset=UTF-8",
  2893.             accepts: {
  2894.                 "*": Jb,
  2895.                 text: "text/plain",
  2896.                 html: "text/html",
  2897.                 xml: "application/xml, text/xml",
  2898.                 json: "application/json, text/javascript"
  2899.             },
  2900.             contents: {
  2901.                 xml: /xml/,
  2902.                 html: /html/,
  2903.                 json: /json/
  2904.             },
  2905.             responseFields: {
  2906.                 xml: "responseXML",
  2907.                 text: "responseText",
  2908.                 json: "responseJSON"
  2909.             },
  2910.             converters: {
  2911.                 "* text": String,
  2912.                 "text html": !0,
  2913.                 "text json": m.parseJSON,
  2914.                 "text xml": m.parseXML
  2915.             },
  2916.             flatOptions: {
  2917.                 url: !0,
  2918.                 context: !0
  2919.             }
  2920.         },
  2921.         ajaxSetup: function(a, b) {
  2922.             return b ? Nb(Nb(a, m.ajaxSettings), b) : Nb(m.ajaxSettings, a)
  2923.         },
  2924.         ajaxPrefilter: Lb(Hb),
  2925.         ajaxTransport: Lb(Ib),
  2926.         ajax: function(a, b) {
  2927.             "object" == typeof a && (b = a, a = void 0), b = b || {};
  2928.             var c, d, e, f, g, h, i, j, k = m.ajaxSetup({}, b),
  2929.                 l = k.context || k,
  2930.                 n = k.context && (l.nodeType || l.jquery) ? m(l) : m.event,
  2931.                 o = m.Deferred(),
  2932.                 p = m.Callbacks("once memory"),
  2933.                 q = k.statusCode || {},
  2934.                 r = {},
  2935.                 s = {},
  2936.                 t = 0,
  2937.                 u = "canceled",
  2938.                 v = {
  2939.                     readyState: 0,
  2940.                     getResponseHeader: function(a) {
  2941.                         var b;
  2942.                         if (2 === t) {
  2943.                             if (!j) {
  2944.                                 j = {};
  2945.                                 while (b = Cb.exec(f)) j[b[1].toLowerCase()] = b[2]
  2946.                             }
  2947.                             b = j[a.toLowerCase()]
  2948.                         }
  2949.                         return null == b ? null : b
  2950.                     },
  2951.                     getAllResponseHeaders: function() {
  2952.                         return 2 === t ? f : null
  2953.                     },
  2954.                     setRequestHeader: function(a, b) {
  2955.                         var c = a.toLowerCase();
  2956.                         return t || (a = s[c] = s[c] || a, r[a] = b), this
  2957.                     },
  2958.                     overrideMimeType: function(a) {
  2959.                         return t || (k.mimeType = a), this
  2960.                     },
  2961.                     statusCode: function(a) {
  2962.                         var b;
  2963.                         if (a)
  2964.                             if (2 > t)
  2965.                                 for (b in a) q[b] = [q[b], a[b]];
  2966.                             else v.always(a[v.status]);
  2967.                         return this
  2968.                     },
  2969.                     abort: function(a) {
  2970.                         var b = a || u;
  2971.                         return i && i.abort(b), x(0, b), this
  2972.                     }
  2973.                 };
  2974.             if (o.promise(v).complete = p.add, v.success = v.done, v.error = v.fail, k.url = ((a || k.url || zb) + "").replace(Ab, "").replace(Fb, yb[1] + "//"), k.type = b.method || b.type || k.method || k.type, k.dataTypes = m.trim(k.dataType || "*").toLowerCase().match(E) || [""], null == k.crossDomain && (c = Gb.exec(k.url.toLowerCase()), k.crossDomain = !(!c || c[1] === yb[1] && c[2] === yb[2] && (c[3] || ("http:" === c[1] ? "80" : "443")) === (yb[3] || ("http:" === yb[1] ? "80" : "443")))), k.data && k.processData && "string" != typeof k.data && (k.data = m.param(k.data, k.traditional)), Mb(Hb, k, b, v), 2 === t) return v;
  2975.             h = m.event && k.global, h && 0 === m.active++ && m.event.trigger("ajaxStart"), k.type = k.type.toUpperCase(), k.hasContent = !Eb.test(k.type), e = k.url, k.hasContent || (k.data && (e = k.url += (wb.test(e) ? "&" : "?") + k.data, delete k.data), k.cache === !1 && (k.url = Bb.test(e) ? e.replace(Bb, "$1_=" + vb++) : e + (wb.test(e) ? "&" : "?") + "_=" + vb++)), k.ifModified && (m.lastModified[e] && v.setRequestHeader("If-Modified-Since", m.lastModified[e]), m.etag[e] && v.setRequestHeader("If-None-Match", m.etag[e])), (k.data && k.hasContent && k.contentType !== !1 || b.contentType) && v.setRequestHeader("Content-Type", k.contentType), v.setRequestHeader("Accept", k.dataTypes[0] && k.accepts[k.dataTypes[0]] ? k.accepts[k.dataTypes[0]] + ("*" !== k.dataTypes[0] ? ", " + Jb + "; q=0.01" : "") : k.accepts["*"]);
  2976.             for (d in k.headers) v.setRequestHeader(d, k.headers[d]);
  2977.             if (k.beforeSend && (k.beforeSend.call(l, v, k) === !1 || 2 === t)) return v.abort();
  2978.             u = "abort";
  2979.             for (d in {
  2980.                     success: 1,
  2981.                     error: 1,
  2982.                     complete: 1
  2983.                 }) v[d](k[d]);
  2984.             if (i = Mb(Ib, k, b, v)) {
  2985.                 v.readyState = 1, h && n.trigger("ajaxSend", [v, k]), k.async && k.timeout > 0 && (g = setTimeout(function() {
  2986.                     v.abort("timeout")
  2987.                 }, k.timeout));
  2988.                 try {
  2989.                     t = 1, i.send(r, x)
  2990.                 } catch (w) {
  2991.                     if (!(2 > t)) throw w;
  2992.                     x(-1, w)
  2993.                 }
  2994.             } else x(-1, "No Transport");
  2995.  
  2996.             function x(a, b, c, d) {
  2997.                 var j, r, s, u, w, x = b;
  2998.                 2 !== t && (t = 2, g && clearTimeout(g), i = void 0, f = d || "", v.readyState = a > 0 ? 4 : 0, j = a >= 200 && 300 > a || 304 === a, c && (u = Ob(k, v, c)), u = Pb(k, u, v, j), j ? (k.ifModified && (w = v.getResponseHeader("Last-Modified"), w && (m.lastModified[e] = w), w = v.getResponseHeader("etag"), w && (m.etag[e] = w)), 204 === a || "HEAD" === k.type ? x = "nocontent" : 304 === a ? x = "notmodified" : (x = u.state, r = u.data, s = u.error, j = !s)) : (s = x, (a || !x) && (x = "error", 0 > a && (a = 0))), v.status = a, v.statusText = (b || x) + "", j ? o.resolveWith(l, [r, x, v]) : o.rejectWith(l, [v, x, s]), v.statusCode(q), q = void 0, h && n.trigger(j ? "ajaxSuccess" : "ajaxError", [v, k, j ? r : s]), p.fireWith(l, [v, x]), h && (n.trigger("ajaxComplete", [v, k]), --m.active || m.event.trigger("ajaxStop")))
  2999.             }
  3000.             return v
  3001.         },
  3002.         getJSON: function(a, b, c) {
  3003.             return m.get(a, b, c, "json")
  3004.         },
  3005.         getScript: function(a, b) {
  3006.             return m.get(a, void 0, b, "script")
  3007.         }
  3008.     }), m.each(["get", "post"], function(a, b) {
  3009.         m[b] = function(a, c, d, e) {
  3010.             return m.isFunction(c) && (e = e || d, d = c, c = void 0), m.ajax({
  3011.                 url: a,
  3012.                 type: b,
  3013.                 dataType: e,
  3014.                 data: c,
  3015.                 success: d
  3016.             })
  3017.         }
  3018.     }), m._evalUrl = function(a) {
  3019.         return m.ajax({
  3020.             url: a,
  3021.             type: "GET",
  3022.             dataType: "script",
  3023.             async: !1,
  3024.             global: !1,
  3025.             "throws": !0
  3026.         })
  3027.     }, m.fn.extend({
  3028.         wrapAll: function(a) {
  3029.             if (m.isFunction(a)) return this.each(function(b) {
  3030.                 m(this).wrapAll(a.call(this, b))
  3031.             });
  3032.             if (this[0]) {
  3033.                 var b = m(a, this[0].ownerDocument).eq(0).clone(!0);
  3034.                 this[0].parentNode && b.insertBefore(this[0]), b.map(function() {
  3035.                     var a = this;
  3036.                     while (a.firstChild && 1 === a.firstChild.nodeType) a = a.firstChild;
  3037.                     return a
  3038.                 }).append(this)
  3039.             }
  3040.             return this
  3041.         },
  3042.         wrapInner: function(a) {
  3043.             return this.each(m.isFunction(a) ? function(b) {
  3044.                 m(this).wrapInner(a.call(this, b))
  3045.             } : function() {
  3046.                 var b = m(this),
  3047.                     c = b.contents();
  3048.                 c.length ? c.wrapAll(a) : b.append(a)
  3049.             })
  3050.         },
  3051.         wrap: function(a) {
  3052.             var b = m.isFunction(a);
  3053.             return this.each(function(c) {
  3054.                 m(this).wrapAll(b ? a.call(this, c) : a)
  3055.             })
  3056.         },
  3057.         unwrap: function() {
  3058.             return this.parent().each(function() {
  3059.                 m.nodeName(this, "body") || m(this).replaceWith(this.childNodes)
  3060.             }).end()
  3061.         }
  3062.     }), m.expr.filters.hidden = function(a) {
  3063.         return a.offsetWidth <= 0 && a.offsetHeight <= 0 || !k.reliableHiddenOffsets() && "none" === (a.style && a.style.display || m.css(a, "display"))
  3064.     }, m.expr.filters.visible = function(a) {
  3065.         return !m.expr.filters.hidden(a)
  3066.     };
  3067.     var Qb = /%20/g,
  3068.         Rb = /\[\]$/,
  3069.         Sb = /\r?\n/g,
  3070.         Tb = /^(?:submit|button|image|reset|file)$/i,
  3071.         Ub = /^(?:input|select|textarea|keygen)/i;
  3072.  
  3073.     function Vb(a, b, c, d) {
  3074.         var e;
  3075.         if (m.isArray(b)) m.each(b, function(b, e) {
  3076.             c || Rb.test(a) ? d(a, e) : Vb(a + "[" + ("object" == typeof e ? b : "") + "]", e, c, d)
  3077.         });
  3078.         else if (c || "object" !== m.type(b)) d(a, b);
  3079.         else
  3080.             for (e in b) Vb(a + "[" + e + "]", b[e], c, d)
  3081.     }
  3082.     m.param = function(a, b) {
  3083.         var c, d = [],
  3084.             e = function(a, b) {
  3085.                 b = m.isFunction(b) ? b() : null == b ? "" : b, d[d.length] = encodeURIComponent(a) + "=" + encodeURIComponent(b)
  3086.             };
  3087.         if (void 0 === b && (b = m.ajaxSettings && m.ajaxSettings.traditional), m.isArray(a) || a.jquery && !m.isPlainObject(a)) m.each(a, function() {
  3088.             e(this.name, this.value)
  3089.         });
  3090.         else
  3091.             for (c in a) Vb(c, a[c], b, e);
  3092.         return d.join("&").replace(Qb, "+")
  3093.     }, m.fn.extend({
  3094.         serialize: function() {
  3095.             return m.param(this.serializeArray())
  3096.         },
  3097.         serializeArray: function() {
  3098.             return this.map(function() {
  3099.                 var a = m.prop(this, "elements");
  3100.                 return a ? m.makeArray(a) : this
  3101.             }).filter(function() {
  3102.                 var a = this.type;
  3103.                 return this.name && !m(this).is(":disabled") && Ub.test(this.nodeName) && !Tb.test(a) && (this.checked || !W.test(a))
  3104.             }).map(function(a, b) {
  3105.                 var c = m(this).val();
  3106.                 return null == c ? null : m.isArray(c) ? m.map(c, function(a) {
  3107.                     return {
  3108.                         name: b.name,
  3109.                         value: a.replace(Sb, "\r\n")
  3110.                     }
  3111.                 }) : {
  3112.                     name: b.name,
  3113.                     value: c.replace(Sb, "\r\n")
  3114.                 }
  3115.             }).get()
  3116.         }
  3117.     }), m.ajaxSettings.xhr = void 0 !== a.ActiveXObject ? function() {
  3118.         return !this.isLocal && /^(get|post|head|put|delete|options)$/i.test(this.type) && Zb() || $b()
  3119.     } : Zb;
  3120.     var Wb = 0,
  3121.         Xb = {},
  3122.         Yb = m.ajaxSettings.xhr();
  3123.     a.attachEvent && a.attachEvent("onunload", function() {
  3124.         for (var a in Xb) Xb[a](void 0, !0)
  3125.     }), k.cors = !!Yb && "withCredentials" in Yb, Yb = k.ajax = !!Yb, Yb && m.ajaxTransport(function(a) {
  3126.         if (!a.crossDomain || k.cors) {
  3127.             var b;
  3128.             return {
  3129.                 send: function(c, d) {
  3130.                     var e, f = a.xhr(),
  3131.                         g = ++Wb;
  3132.                     if (f.open(a.type, a.url, a.async, a.username, a.password), a.xhrFields)
  3133.                         for (e in a.xhrFields) f[e] = a.xhrFields[e];
  3134.                     a.mimeType && f.overrideMimeType && f.overrideMimeType(a.mimeType), a.crossDomain || c["X-Requested-With"] || (c["X-Requested-With"] = "XMLHttpRequest");
  3135.                     for (e in c) void 0 !== c[e] && f.setRequestHeader(e, c[e] + "");
  3136.                     f.send(a.hasContent && a.data || null), b = function(c, e) {
  3137.                         var h, i, j;
  3138.                         if (b && (e || 4 === f.readyState))
  3139.                             if (delete Xb[g], b = void 0, f.onreadystatechange = m.noop, e) 4 !== f.readyState && f.abort();
  3140.                             else {
  3141.                                 j = {}, h = f.status, "string" == typeof f.responseText && (j.text = f.responseText);
  3142.                                 try {
  3143.                                     i = f.statusText
  3144.                                 } catch (k) {
  3145.                                     i = ""
  3146.                                 }
  3147.                                 h || !a.isLocal || a.crossDomain ? 1223 === h && (h = 204) : h = j.text ? 200 : 404
  3148.                             } j && d(h, i, j, f.getAllResponseHeaders())
  3149.                     }, a.async ? 4 === f.readyState ? setTimeout(b) : f.onreadystatechange = Xb[g] = b : b()
  3150.                 },
  3151.                 abort: function() {
  3152.                     b && b(void 0, !0)
  3153.                 }
  3154.             }
  3155.         }
  3156.     });
  3157.  
  3158.     function Zb() {
  3159.         try {
  3160.             return new a.XMLHttpRequest
  3161.         } catch (b) {}
  3162.     }
  3163.  
  3164.     function $b() {
  3165.         try {
  3166.             return new a.ActiveXObject("Microsoft.XMLHTTP")
  3167.         } catch (b) {}
  3168.     }
  3169.     m.ajaxSetup({
  3170.         accepts: {
  3171.             script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"
  3172.         },
  3173.         contents: {
  3174.             script: /(?:java|ecma)script/
  3175.         },
  3176.         converters: {
  3177.             "text script": function(a) {
  3178.                 return m.globalEval(a), a
  3179.             }
  3180.         }
  3181.     }), m.ajaxPrefilter("script", function(a) {
  3182.         void 0 === a.cache && (a.cache = !1), a.crossDomain && (a.type = "GET", a.global = !1)
  3183.     }), m.ajaxTransport("script", function(a) {
  3184.         if (a.crossDomain) {
  3185.             var b, c = y.head || m("head")[0] || y.documentElement;
  3186.             return {
  3187.                 send: function(d, e) {
  3188.                     b = y.createElement("script"), b.async = !0, a.scriptCharset && (b.charset = a.scriptCharset), b.src = a.url, b.onload = b.onreadystatechange = function(a, c) {
  3189.                         (c || !b.readyState || /loaded|complete/.test(b.readyState)) && (b.onload = b.onreadystatechange = null, b.parentNode && b.parentNode.removeChild(b), b = null, c || e(200, "success"))
  3190.                     }, c.insertBefore(b, c.firstChild)
  3191.                 },
  3192.                 abort: function() {
  3193.                     b && b.onload(void 0, !0)
  3194.                 }
  3195.             }
  3196.         }
  3197.     });
  3198.     var _b = [],
  3199.         ac = /(=)\?(?=&|$)|\?\?/;
  3200.     m.ajaxSetup({
  3201.         jsonp: "callback",
  3202.         jsonpCallback: function() {
  3203.             var a = _b.pop() || m.expando + "_" + vb++;
  3204.             return this[a] = !0, a
  3205.         }
  3206.     }), m.ajaxPrefilter("json jsonp", function(b, c, d) {
  3207.         var e, f, g, h = b.jsonp !== !1 && (ac.test(b.url) ? "url" : "string" == typeof b.data && !(b.contentType || "").indexOf("application/x-www-form-urlencoded") && ac.test(b.data) && "data");
  3208.         return h || "jsonp" === b.dataTypes[0] ? (e = b.jsonpCallback = m.isFunction(b.jsonpCallback) ? b.jsonpCallback() : b.jsonpCallback, h ? b[h] = b[h].replace(ac, "$1" + e) : b.jsonp !== !1 && (b.url += (wb.test(b.url) ? "&" : "?") + b.jsonp + "=" + e), b.converters["script json"] = function() {
  3209.             return g || m.error(e + " was not called"), g[0]
  3210.         }, b.dataTypes[0] = "json", f = a[e], a[e] = function() {
  3211.             g = arguments
  3212.         }, d.always(function() {
  3213.             a[e] = f, b[e] && (b.jsonpCallback = c.jsonpCallback, _b.push(e)), g && m.isFunction(f) && f(g[0]), g = f = void 0
  3214.         }), "script") : void 0
  3215.     }), m.parseHTML = function(a, b, c) {
  3216.         if (!a || "string" != typeof a) return null;
  3217.         "boolean" == typeof b && (c = b, b = !1), b = b || y;
  3218.         var d = u.exec(a),
  3219.             e = !c && [];
  3220.         return d ? [b.createElement(d[1])] : (d = m.buildFragment([a], b, e), e && e.length && m(e).remove(), m.merge([], d.childNodes))
  3221.     };
  3222.     var bc = m.fn.load;
  3223.     m.fn.load = function(a, b, c) {
  3224.         if ("string" != typeof a && bc) return bc.apply(this, arguments);
  3225.         var d, e, f, g = this,
  3226.             h = a.indexOf(" ");
  3227.         return h >= 0 && (d = m.trim(a.slice(h, a.length)), a = a.slice(0, h)), m.isFunction(b) ? (c = b, b = void 0) : b && "object" == typeof b && (f = "POST"), g.length > 0 && m.ajax({
  3228.             url: a,
  3229.             type: f,
  3230.             dataType: "html",
  3231.             data: b
  3232.         }).done(function(a) {
  3233.             e = arguments, g.html(d ? m("<div>").append(m.parseHTML(a)).find(d) : a)
  3234.         }).complete(c && function(a, b) {
  3235.             g.each(c, e || [a.responseText, b, a])
  3236.         }), this
  3237.     }, m.each(["ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend"], function(a, b) {
  3238.         m.fn[b] = function(a) {
  3239.             return this.on(b, a)
  3240.         }
  3241.     }), m.expr.filters.animated = function(a) {
  3242.         return m.grep(m.timers, function(b) {
  3243.             return a === b.elem
  3244.         }).length
  3245.     };
  3246.     var cc = a.document.documentElement;
  3247.  
  3248.     function dc(a) {
  3249.         return m.isWindow(a) ? a : 9 === a.nodeType ? a.defaultView || a.parentWindow : !1
  3250.     }
  3251.     m.offset = {
  3252.         setOffset: function(a, b, c) {
  3253.             var d, e, f, g, h, i, j, k = m.css(a, "position"),
  3254.                 l = m(a),
  3255.                 n = {};
  3256.             "static" === k && (a.style.position = "relative"), h = l.offset(), f = m.css(a, "top"), i = m.css(a, "left"), j = ("absolute" === k || "fixed" === k) && m.inArray("auto", [f, i]) > -1, j ? (d = l.position(), g = d.top, e = d.left) : (g = parseFloat(f) || 0, e = parseFloat(i) || 0), m.isFunction(b) && (b = b.call(a, c, h)), null != b.top && (n.top = b.top - h.top + g), null != b.left && (n.left = b.left - h.left + e), "using" in b ? b.using.call(a, n) : l.css(n)
  3257.         }
  3258.     }, m.fn.extend({
  3259.         offset: function(a) {
  3260.             if (arguments.length) return void 0 === a ? this : this.each(function(b) {
  3261.                 m.offset.setOffset(this, a, b)
  3262.             });
  3263.             var b, c, d = {
  3264.                     top: 0,
  3265.                     left: 0
  3266.                 },
  3267.                 e = this[0],
  3268.                 f = e && e.ownerDocument;
  3269.             if (f) return b = f.documentElement, m.contains(b, e) ? (typeof e.getBoundingClientRect !== K && (d = e.getBoundingClientRect()), c = dc(f), {
  3270.                 top: d.top + (c.pageYOffset || b.scrollTop) - (b.clientTop || 0),
  3271.                 left: d.left + (c.pageXOffset || b.scrollLeft) - (b.clientLeft || 0)
  3272.             }) : d
  3273.         },
  3274.         position: function() {
  3275.             if (this[0]) {
  3276.                 var a, b, c = {
  3277.                         top: 0,
  3278.                         left: 0
  3279.                     },
  3280.                     d = this[0];
  3281.                 return "fixed" === m.css(d, "position") ? b = d.getBoundingClientRect() : (a = this.offsetParent(), b = this.offset(), m.nodeName(a[0], "html") || (c = a.offset()), c.top += m.css(a[0], "borderTopWidth", !0), c.left += m.css(a[0], "borderLeftWidth", !0)), {
  3282.                     top: b.top - c.top - m.css(d, "marginTop", !0),
  3283.                     left: b.left - c.left - m.css(d, "marginLeft", !0)
  3284.                 }
  3285.             }
  3286.         },
  3287.         offsetParent: function() {
  3288.             return this.map(function() {
  3289.                 var a = this.offsetParent || cc;
  3290.                 while (a && !m.nodeName(a, "html") && "static" === m.css(a, "position")) a = a.offsetParent;
  3291.                 return a || cc
  3292.             })
  3293.         }
  3294.     }), m.each({
  3295.         scrollLeft: "pageXOffset",
  3296.         scrollTop: "pageYOffset"
  3297.     }, function(a, b) {
  3298.         var c = /Y/.test(b);
  3299.         m.fn[a] = function(d) {
  3300.             return V(this, function(a, d, e) {
  3301.                 var f = dc(a);
  3302.                 return void 0 === e ? f ? b in f ? f[b] : f.document.documentElement[d] : a[d] : void(f ? f.scrollTo(c ? m(f).scrollLeft() : e, c ? e : m(f).scrollTop()) : a[d] = e)
  3303.             }, a, d, arguments.length, null)
  3304.         }
  3305.     }), m.each(["top", "left"], function(a, b) {
  3306.         m.cssHooks[b] = La(k.pixelPosition, function(a, c) {
  3307.             return c ? (c = Ja(a, b), Ha.test(c) ? m(a).position()[b] + "px" : c) : void 0
  3308.         })
  3309.     }), m.each({
  3310.         Height: "height",
  3311.         Width: "width"
  3312.     }, function(a, b) {
  3313.         m.each({
  3314.             padding: "inner" + a,
  3315.             content: b,
  3316.             "": "outer" + a
  3317.         }, function(c, d) {
  3318.             m.fn[d] = function(d, e) {
  3319.                 var f = arguments.length && (c || "boolean" != typeof d),
  3320.                     g = c || (d === !0 || e === !0 ? "margin" : "border");
  3321.                 return V(this, function(b, c, d) {
  3322.                     var e;
  3323.                     return m.isWindow(b) ? b.document.documentElement["client" + a] : 9 === b.nodeType ? (e = b.documentElement, Math.max(b.body["scroll" + a], e["scroll" + a], b.body["offset" + a], e["offset" + a], e["client" + a])) : void 0 === d ? m.css(b, c, g) : m.style(b, c, d, g)
  3324.                 }, b, f ? d : void 0, f, null)
  3325.             }
  3326.         })
  3327.     }), m.fn.size = function() {
  3328.         return this.length
  3329.     }, m.fn.andSelf = m.fn.addBack, "function" == typeof define && define.amd && define("jquery", [], function() {
  3330.         return m
  3331.     });
  3332.     var ec = a.jQuery,
  3333.         fc = a.$;
  3334.     return m.noConflict = function(b) {
  3335.         return a.$ === m && (a.$ = fc), b && a.jQuery === m && (a.jQuery = ec), m
  3336.     }, typeof b === K && (a.jQuery = a.$ = m), m
  3337. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement