mn-video-player 1.2.0 → 1.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,11 +1,11 @@
1
- function ht(R) {
1
+ function dt(R) {
2
2
  this.gl = R, this.texture = R.createTexture(), R.bindTexture(R.TEXTURE_2D, this.texture), R.texParameteri(R.TEXTURE_2D, R.TEXTURE_MAG_FILTER, R.LINEAR), R.texParameteri(R.TEXTURE_2D, R.TEXTURE_MIN_FILTER, R.LINEAR), R.texParameteri(R.TEXTURE_2D, R.TEXTURE_WRAP_S, R.CLAMP_TO_EDGE), R.texParameteri(R.TEXTURE_2D, R.TEXTURE_WRAP_T, R.CLAMP_TO_EDGE);
3
3
  }
4
- ht.prototype.bind = function(R, a, p) {
4
+ dt.prototype.bind = function(R, a, p) {
5
5
  var y = this.gl;
6
6
  y.activeTexture([y.TEXTURE0, y.TEXTURE1, y.TEXTURE2][R]), y.bindTexture(y.TEXTURE_2D, this.texture), y.uniform1i(y.getUniformLocation(a, p), R);
7
7
  };
8
- ht.prototype.fill = function(R, a, p) {
8
+ dt.prototype.fill = function(R, a, p) {
9
9
  var y = this.gl;
10
10
  y.bindTexture(y.TEXTURE_2D, this.texture), y.texImage2D(y.TEXTURE_2D, 0, y.LUMINANCE, R, a, 0, y.LUMINANCE, y.UNSIGNED_BYTE, p);
11
11
  };
@@ -51,12 +51,12 @@ Je.prototype.initGL = function(R) {
51
51
  a.shaderSource(D, w), a.compileShader(D), a.attachShader(p, k), a.attachShader(p, D), a.linkProgram(p), a.useProgram(p), a.getProgramParameter(p, a.LINK_STATUS) || console.log("[ER] Shader link failed.");
52
52
  var $ = a.getAttribLocation(p, "aVertexPosition");
53
53
  a.enableVertexAttribArray($);
54
- var q = a.getAttribLocation(p, "aTextureCoord");
55
- a.enableVertexAttribArray(q);
54
+ var M = a.getAttribLocation(p, "aTextureCoord");
55
+ a.enableVertexAttribArray(M);
56
56
  var F = a.createBuffer();
57
57
  a.bindBuffer(a.ARRAY_BUFFER, F), a.bufferData(a.ARRAY_BUFFER, new Float32Array([1, 1, 0, -1, 1, 0, 1, -1, 0, -1, -1, 0]), a.STATIC_DRAW), a.vertexAttribPointer($, 3, a.FLOAT, !1, 0, 0);
58
58
  var re = a.createBuffer();
59
- a.bindBuffer(a.ARRAY_BUFFER, re), a.bufferData(a.ARRAY_BUFFER, new Float32Array([1, 0, 0, 0, 1, 1, 0, 1]), a.STATIC_DRAW), a.vertexAttribPointer(q, 2, a.FLOAT, !1, 0, 0), a.y = new ht(a), a.u = new ht(a), a.v = new ht(a), a.y.bind(0, p, "YTexture"), a.u.bind(1, p, "UTexture"), a.v.bind(2, p, "VTexture");
59
+ a.bindBuffer(a.ARRAY_BUFFER, re), a.bufferData(a.ARRAY_BUFFER, new Float32Array([1, 0, 0, 0, 1, 1, 0, 1]), a.STATIC_DRAW), a.vertexAttribPointer(M, 2, a.FLOAT, !1, 0, 0), a.y = new dt(a), a.u = new dt(a), a.v = new dt(a), a.y.bind(0, p, "YTexture"), a.u.bind(1, p, "UTexture"), a.v.bind(2, p, "VTexture");
60
60
  };
61
61
  Je.prototype.renderFrame = function(R, a, p, y, k) {
62
62
  if (!this.gl) {
@@ -166,28 +166,28 @@ class Jn {
166
166
  let w = 0;
167
167
  for (const L of p)
168
168
  k.set(L.data, w), w += L.data.length;
169
- const D = this.audioCtx.createBufferSource(), $ = k.length / this.option.channels, q = this.audioCtx.createBuffer(
169
+ const D = this.audioCtx.createBufferSource(), $ = k.length / this.option.channels, M = this.audioCtx.createBuffer(
170
170
  this.option.channels,
171
171
  $,
172
172
  this.option.sampleRate
173
173
  );
174
- let F, re, Z, ie, he;
174
+ let F, re, Z, ie, de;
175
175
  for (re = 0; re < this.option.channels; re++)
176
- for (F = q.getChannelData(re), Z = re, he = 50, ie = 0; ie < $; ie++)
177
- F[ie] = k[Z], ie < 50 && (F[ie] = F[ie] * ie / 50), ie >= $ - 51 && (F[ie] = F[ie] * he-- / 50), Z += this.option.channels;
176
+ for (F = M.getChannelData(re), Z = re, de = 50, ie = 0; ie < $; ie++)
177
+ F[ie] = k[Z], ie < 50 && (F[ie] = F[ie] * ie / 50), ie >= $ - 51 && (F[ie] = F[ie] * de-- / 50), Z += this.option.channels;
178
178
  let j;
179
- p[0].timestamp !== null ? j = Math.max(p[0].timestamp, this.startTime) : j = Math.max(a, this.startTime), D.buffer = q, D.connect(this.gainNode), D.playbackRate.value = this.playbackRate;
179
+ p[0].timestamp !== null ? j = Math.max(p[0].timestamp, this.startTime) : j = Math.max(a, this.startTime), D.buffer = M, D.connect(this.gainNode), D.playbackRate.value = this.playbackRate;
180
180
  const W = {
181
181
  bufferSource: D,
182
- buffer: q,
182
+ buffer: M,
183
183
  startTime: j,
184
- endTime: j + q.duration / this.playbackRate,
184
+ endTime: j + M.duration / this.playbackRate,
185
185
  rawData: p
186
186
  };
187
187
  this.playingBuffers.push(W), D.onended = () => {
188
188
  const L = this.playingBuffers.findIndex((Le) => Le.bufferSource === D);
189
189
  L !== -1 && this.playingBuffers.splice(L, 1);
190
- }, D.start(j), this.startTime = j + q.duration / this.playbackRate;
190
+ }, D.start(j), this.startTime = j + M.duration / this.playbackRate;
191
191
  const Ne = new Set(p.map(
192
192
  (L, Le) => this.cacheDataList.findIndex(
193
193
  (Ke) => Ke.data === L.data && Ke.timestamp === L.timestamp
@@ -208,10 +208,10 @@ class Jn {
208
208
  k,
209
209
  this.option.sampleRate
210
210
  );
211
- let D, $, q, F, re;
211
+ let D, $, M, F, re;
212
212
  for ($ = 0; $ < this.option.channels; $++)
213
- for (D = w.getChannelData($), q = $, re = 50, F = 0; F < k; F++)
214
- D[F] = a[q], F < 50 && (D[F] = D[F] * F / 50), F >= k - 51 && (D[F] = D[F] * re-- / 50), q += this.option.channels;
213
+ for (D = w.getChannelData($), M = $, re = 50, F = 0; F < k; F++)
214
+ D[F] = a[M], F < 50 && (D[F] = D[F] * F / 50), F >= k - 51 && (D[F] = D[F] * re-- / 50), M += this.option.channels;
215
215
  let Z;
216
216
  p !== null ? this.baseTime !== null ? Z = this.baseAudioTime + (p - this.baseTime) : Z = this.audioCtx.currentTime : Z = Math.max(this.audioCtx.currentTime, this.startTime), y.buffer = w, y.connect(this.gainNode), y.playbackRate.value = this.playbackRate;
217
217
  const ie = {
@@ -222,8 +222,8 @@ class Jn {
222
222
  rawData: [{ data: a, timestamp: p }]
223
223
  };
224
224
  this.playingBuffers.push(ie), y.onended = () => {
225
- const he = this.playingBuffers.findIndex((j) => j.bufferSource === y);
226
- he !== -1 && this.playingBuffers.splice(he, 1);
225
+ const de = this.playingBuffers.findIndex((j) => j.bufferSource === y);
226
+ de !== -1 && this.playingBuffers.splice(de, 1);
227
227
  }, y.start(Z), this.startTime = Z + w.duration / this.playbackRate;
228
228
  }
229
229
  pause() {
@@ -234,7 +234,7 @@ class Jn {
234
234
  }
235
235
  }
236
236
  console.log("innercommon");
237
- const Kn = 2, Zn = 1, er = 3, tr = 4, ir = 5, nr = 6, rr = 7, or = 9, sr = 10, ar = 11, ur = 12, lr = 13, fr = 2, cr = 4, hr = 5, dr = 6, pr = 7, gr = 8, yr = 13, mr = 14, vr = 15, xr = 16;
237
+ const Kn = 2, Zn = 1, er = 3, tr = 4, ir = 5, nr = 6, rr = 7, or = 9, sr = 10, ar = 11, ur = 12, lr = 13, fr = 2, cr = 4, dr = 5, hr = 6, pr = 7, gr = 8, yr = 13, mr = 14, vr = 15, xr = 16;
238
238
  class br {
239
239
  constructor(a) {
240
240
  this.module = a;
@@ -252,8 +252,8 @@ class br {
252
252
  console.log("[" + this.currentTimeStr() + "][" + this.module + "][DT] " + a);
253
253
  }
254
254
  currentTimeStr() {
255
- const a = new Date(Date.now()), p = a.getFullYear(), y = a.getMonth() + 1, k = a.getDate(), w = a.getHours(), D = a.getMinutes(), $ = a.getSeconds(), q = a.getMilliseconds();
256
- return p + "-" + y + "-" + k + " " + w + ":" + D + ":" + $ + ":" + q;
255
+ const a = new Date(Date.now()), p = a.getFullYear(), y = a.getMonth() + 1, k = a.getDate(), w = a.getHours(), D = a.getMinutes(), $ = a.getSeconds(), M = a.getMilliseconds();
256
+ return p + "-" + y + "-" + k + " " + w + ":" + D + ":" + $ + ":" + M;
257
257
  }
258
258
  }
259
259
  const G = {
@@ -271,8 +271,8 @@ const G = {
271
271
  kReplayReq: lr,
272
272
  kOpenDecoderRsp: fr,
273
273
  kVideoReady: cr,
274
- kVideoFrame: hr,
275
- kAudioFrame: dr,
274
+ kVideoFrame: dr,
275
+ kAudioFrame: hr,
276
276
  kStringFrame: pr,
277
277
  kNetSpeedFrame: gr,
278
278
  kSocketErrorRsp: yr,
@@ -317,10 +317,10 @@ class ee {
317
317
  $.online();
318
318
  }), window.addEventListener("offline", function() {
319
319
  $.offline();
320
- }), this.isSupportH264().then((q) => {
321
- this.supportH264 = q;
322
- }), this.isSupportH265().then((q) => {
323
- this.supportH265 = q;
320
+ }), this.isSupportH264().then((M) => {
321
+ this.supportH264 = M;
322
+ }), this.isSupportH265().then((M) => {
323
+ this.supportH265 = M;
324
324
  });
325
325
  }
326
326
  /**
@@ -379,12 +379,9 @@ class ee {
379
379
  a.onVideoReady(y);
380
380
  break;
381
381
  case G.kVideoFrame:
382
- a.onVideoFrame(y), y.ti && (console.log(
383
- "时间",
382
+ a.onVideoFrame(y), y.ti && ee.timeCallback && typeof ee.timeCallback == "function" && ee.timeCallback(
384
383
  new Date(y.ti - 1e3 * 60 * 60 * 8).getTime()
385
- ), ee.timeCallback && typeof ee.timeCallback == "function" && ee.timeCallback(
386
- new Date(y.ti - 1e3 * 60 * 60 * 8).getTime()
387
- ));
384
+ );
388
385
  break;
389
386
  case G.kAudioFrame:
390
387
  a.onAudioFrame(y);
@@ -495,7 +492,9 @@ class ee {
495
492
  let a = {
496
493
  t: G.kResumeDecodingReq
497
494
  };
498
- this.mnWorker.postMessage(a), this.playerState = ct;
495
+ this.mnWorker.postMessage(a), this.playerState = ct, this.beginTime || (this.intervalTimer = setInterval(() => {
496
+ this.drawOne();
497
+ }, 33));
499
498
  }
500
499
  /**
501
500
  * 暂停播放
@@ -794,7 +793,7 @@ class ee {
794
793
  const a = this.canvas.getContext("2d");
795
794
  if (!a || this.frameCache.length < 5) return;
796
795
  const p = this.frameCache.shift();
797
- p && (a.drawImage(p, 0, 0, this.canvas.width, this.canvas.height), console.log("画图", new Date(p.timestamp / 1e3 - 480 * 60 * 1e3)), console.log("timeCallback", ee.timeCallback), ee.timeCallback && typeof ee.timeCallback == "function" && ee.timeCallback(p.timestamp / 1e3 - 480 * 60 * 1e3), p.close());
796
+ p && (a.drawImage(p, 0, 0, this.canvas.width, this.canvas.height), ee.timeCallback && typeof ee.timeCallback == "function" && ee.timeCallback(p.timestamp / 1e3 - 480 * 60 * 1e3), p.close());
798
797
  }
799
798
  /**
800
799
  * 处理解码器错误
@@ -837,12 +836,12 @@ class ee {
837
836
  for (; k + 4 < a.length; )
838
837
  if (a[k] === 0 && a[k + 1] === 0 && (a[k + 2] === 1 || a[k + 2] === 0 && a[k + 3] === 1)) {
839
838
  const w = a[k + 2] === 1 ? 3 : 4, D = k + w, $ = a[D] & 31;
840
- let q = D + 1;
841
- for (; q + 3 < a.length && !(a[q] === 0 && a[q + 1] === 0 && (a[q + 2] === 1 || a[q + 2] === 0 && a[q + 3] === 1)); )
842
- q++;
843
- const F = a.slice(D, q);
839
+ let M = D + 1;
840
+ for (; M + 3 < a.length && !(a[M] === 0 && a[M + 1] === 0 && (a[M + 2] === 1 || a[M + 2] === 0 && a[M + 3] === 1)); )
841
+ M++;
842
+ const F = a.slice(D, M);
844
843
  if ($ === 7 && !p && (p = F), $ === 8 && !y && (y = F), $ === 32 && !p && (p = F), $ === 33 && !y && (y = F), p && y) break;
845
- k = q;
844
+ k = M;
846
845
  } else
847
846
  k++;
848
847
  return { sps: p, pps: y };
@@ -850,21 +849,21 @@ class ee {
850
849
  extractVpsSpsPps(a) {
851
850
  const p = [];
852
851
  let y = 0;
853
- function k(q) {
854
- for (let F = q; F + 3 < a.length; F++)
852
+ function k(M) {
853
+ for (let F = M; F + 3 < a.length; F++)
855
854
  if (a[F] === 0 && a[F + 1] === 0 && (a[F + 2] === 1 || a[F + 2] === 0 && a[F + 3] === 1))
856
855
  return F;
857
856
  return -1;
858
857
  }
859
858
  for (; y < a.length; ) {
860
- const q = k(y);
861
- if (q === -1) break;
862
- let F = a[q + 2] === 1 ? 3 : 4, re = q + F, Z = k(re);
859
+ const M = k(y);
860
+ if (M === -1) break;
861
+ let F = a[M + 2] === 1 ? 3 : 4, re = M + F, Z = k(re);
863
862
  Z === -1 && (Z = a.length);
864
- const ie = a.subarray(re, Z), he = ie[0] >> 1 & 63;
865
- (he === 32 || he === 33 || he === 34) && p.push({ type: he, data: ie }), y = Z;
863
+ const ie = a.subarray(re, Z), de = ie[0] >> 1 & 63;
864
+ (de === 32 || de === 33 || de === 34) && p.push({ type: de, data: ie }), y = Z;
866
865
  }
867
- const w = p.find((q) => q.type === 32)?.data, D = p.find((q) => q.type === 33)?.data, $ = p.find((q) => q.type === 34)?.data;
866
+ const w = p.find((M) => M.type === 32)?.data, D = p.find((M) => M.type === 33)?.data, $ = p.find((M) => M.type === 34)?.data;
868
867
  return { vps: w, sps: D, pps: $ };
869
868
  }
870
869
  guessCodec(a) {
@@ -929,9 +928,9 @@ class ee {
929
928
  const { sps: w, pps: D } = this.extractSpsPps(a);
930
929
  if (!w || !D) return;
931
930
  this.sps = w, this.pps = D, this.avcC = this.makeAvcC(w, D), console.warn("avcC", this.avcC);
932
- let q = $(w);
933
- if (console.log("codec", q), this.videoDecoder.configure({
934
- codec: q,
931
+ let M = $(w);
932
+ if (console.log("codec", M), this.videoDecoder.configure({
933
+ codec: M,
935
934
  // ⚠️ 要和 SPS 一致
936
935
  codedWidth: this.width || 640,
937
936
  codedHeight: this.height || 480,
@@ -1031,7 +1030,7 @@ function Cr() {
1031
1030
  return y.flat.call(e);
1032
1031
  } : function(e) {
1033
1032
  return y.concat.apply([], e);
1034
- }, $ = y.push, q = y.indexOf, F = {}, re = F.toString, Z = F.hasOwnProperty, ie = Z.toString, he = ie.call(Object), j = {}, W = function(t) {
1033
+ }, $ = y.push, M = y.indexOf, F = {}, re = F.toString, Z = F.hasOwnProperty, ie = Z.toString, de = ie.call(Object), j = {}, W = function(t) {
1035
1034
  return typeof t == "function" && typeof t.nodeType != "number" && typeof t.item != "function";
1036
1035
  }, Ne = function(t) {
1037
1036
  return t != null && t === t.window;
@@ -1116,11 +1115,11 @@ function Cr() {
1116
1115
  sort: y.sort,
1117
1116
  splice: y.splice
1118
1117
  }, r.extend = r.fn.extend = function() {
1119
- var e, t, i, n, o, s, u = arguments[0] || {}, c = 1, f = arguments.length, d = !1;
1120
- for (typeof u == "boolean" && (d = u, u = arguments[c] || {}, c++), typeof u != "object" && !W(u) && (u = {}), c === f && (u = this, c--); c < f; c++)
1118
+ var e, t, i, n, o, s, u = arguments[0] || {}, c = 1, f = arguments.length, h = !1;
1119
+ for (typeof u == "boolean" && (h = u, u = arguments[c] || {}, c++), typeof u != "object" && !W(u) && (u = {}), c === f && (u = this, c--); c < f; c++)
1121
1120
  if ((e = arguments[c]) != null)
1122
1121
  for (t in e)
1123
- n = e[t], !(t === "__proto__" || u === n) && (d && n && (r.isPlainObject(n) || (o = Array.isArray(n))) ? (i = u[t], o && !Array.isArray(i) ? s = [] : !o && !r.isPlainObject(i) ? s = {} : s = i, o = !1, u[t] = r.extend(d, s, n)) : n !== void 0 && (u[t] = n));
1122
+ n = e[t], !(t === "__proto__" || u === n) && (h && n && (r.isPlainObject(n) || (o = Array.isArray(n))) ? (i = u[t], o && !Array.isArray(i) ? s = [] : !o && !r.isPlainObject(i) ? s = {} : s = i, o = !1, u[t] = r.extend(h, s, n)) : n !== void 0 && (u[t] = n));
1124
1123
  return u;
1125
1124
  }, r.extend({
1126
1125
  // Unique for each copy of jQuery on the page
@@ -1134,7 +1133,7 @@ function Cr() {
1134
1133
  },
1135
1134
  isPlainObject: function(e) {
1136
1135
  var t, i;
1137
- return !e || re.call(e) !== "[object Object]" ? !1 : (t = k(e), t ? (i = Z.call(t, "constructor") && t.constructor, typeof i == "function" && ie.call(i) === he) : !0);
1136
+ return !e || re.call(e) !== "[object Object]" ? !1 : (t = k(e), t ? (i = Z.call(t, "constructor") && t.constructor, typeof i == "function" && ie.call(i) === de) : !0);
1138
1137
  },
1139
1138
  isEmptyObject: function(e) {
1140
1139
  var t;
@@ -1175,7 +1174,7 @@ function Cr() {
1175
1174
  ) : $.call(i, e)), i;
1176
1175
  },
1177
1176
  inArray: function(e, t, i) {
1178
- return t == null ? -1 : q.call(t, e, i);
1177
+ return t == null ? -1 : M.call(t, e, i);
1179
1178
  },
1180
1179
  isXMLDoc: function(e) {
1181
1180
  var t = e && e.namespaceURI, i = e && (e.ownerDocument || e).documentElement;
@@ -1241,8 +1240,8 @@ function Cr() {
1241
1240
  };
1242
1241
  var ke = L, At = $;
1243
1242
  (function() {
1244
- var e, t, i, n, o, s = At, u, c, f, d, x, T = r.expando, m = 0, S = 0, P = bt(), z = bt(), _ = bt(), oe = bt(), ne = function(l, h) {
1245
- return l === h && (o = !0), 0;
1243
+ var e, t, i, n, o, s = At, u, c, f, h, x, T = r.expando, m = 0, S = 0, P = bt(), z = bt(), _ = bt(), oe = bt(), ne = function(l, d) {
1244
+ return l === d && (o = !0), 0;
1246
1245
  }, be = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", Te = "(?:\\\\[\\da-fA-F]{1,6}" + Q + "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", U = "\\[" + Q + "*(" + Te + ")(?:" + Q + // Operator (capture 2)
1247
1246
  "*([*^$|!~]?=)" + Q + // "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]"
1248
1247
  `*(?:'((?:\\\\.|[^\\\\'])*)'|"((?:\\\\.|[^\\\\"])*)"|(` + Te + "))|)" + Q + "*\\]", Fe = ":(" + Te + `)(?:\\((('((?:\\\\.|[^\\\\'])*)'|"((?:\\\\.|[^\\\\"])*)")|((?:\\\\.|[^\\\\()[\\]]|` + U + ")*)|.*)\\)|)", X = new RegExp(Q + "+", "g"), te = new RegExp("^" + Q + "*," + Q + "*"), ut = new RegExp("^" + Q + "*([>+~]|" + Q + ")" + Q + "*"), Ut = new RegExp(Q + "|>"), we = new RegExp(Fe), lt = new RegExp("^" + Te + "$"), Se = {
@@ -1259,11 +1258,11 @@ function Cr() {
1259
1258
  // For use in libraries implementing .is()
1260
1259
  // We use this for POS matching in `select`
1261
1260
  needsContext: new RegExp("^" + Q + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + Q + "*((?:-\\d)?\\d*)" + Q + "*\\)|)(?=[^-]|$)", "i")
1262
- }, Ie = /^(?:input|select|textarea|button)$/i, qe = /^h\d$/i, pe = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, $t = /[+~]/, De = new RegExp("\\\\[\\da-fA-F]{1,6}" + Q + "?|\\\\([^\\r\\n\\f])", "g"), Re = function(l, h) {
1261
+ }, Ie = /^(?:input|select|textarea|button)$/i, Me = /^h\d$/i, pe = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, $t = /[+~]/, De = new RegExp("\\\\[\\da-fA-F]{1,6}" + Q + "?|\\\\([^\\r\\n\\f])", "g"), Re = function(l, d) {
1263
1262
  var g = "0x" + l.slice(1) - 65536;
1264
- return h || (g < 0 ? String.fromCharCode(g + 65536) : String.fromCharCode(g >> 10 | 55296, g & 1023 | 56320));
1263
+ return d || (g < 0 ? String.fromCharCode(g + 65536) : String.fromCharCode(g >> 10 | 55296, g & 1023 | 56320));
1265
1264
  }, Un = function() {
1266
- Me();
1265
+ qe();
1267
1266
  }, $n = wt(
1268
1267
  function(l) {
1269
1268
  return l.disabled === !0 && K(l, "fieldset");
@@ -1283,38 +1282,38 @@ function Cr() {
1283
1282
  ), y[ke.childNodes.length].nodeType;
1284
1283
  } catch {
1285
1284
  s = {
1286
- apply: function(h, g) {
1287
- At.apply(h, w.call(g));
1285
+ apply: function(d, g) {
1286
+ At.apply(d, w.call(g));
1288
1287
  },
1289
- call: function(h) {
1290
- At.apply(h, w.call(arguments, 1));
1288
+ call: function(d) {
1289
+ At.apply(d, w.call(arguments, 1));
1291
1290
  }
1292
1291
  };
1293
1292
  }
1294
- function Y(l, h, g, v) {
1295
- var b, C, E, N, A, B, H, O = h && h.ownerDocument, V = h ? h.nodeType : 9;
1293
+ function Y(l, d, g, v) {
1294
+ var b, C, E, N, A, B, H, O = d && d.ownerDocument, V = d ? d.nodeType : 9;
1296
1295
  if (g = g || [], typeof l != "string" || !l || V !== 1 && V !== 9 && V !== 11)
1297
1296
  return g;
1298
- if (!v && (Me(h), h = h || u, f)) {
1297
+ if (!v && (qe(d), d = d || u, f)) {
1299
1298
  if (V !== 11 && (A = pe.exec(l)))
1300
1299
  if (b = A[1]) {
1301
1300
  if (V === 9)
1302
- if (E = h.getElementById(b)) {
1301
+ if (E = d.getElementById(b)) {
1303
1302
  if (E.id === b)
1304
1303
  return s.call(g, E), g;
1305
1304
  } else
1306
1305
  return g;
1307
- else if (O && (E = O.getElementById(b)) && Y.contains(h, E) && E.id === b)
1306
+ else if (O && (E = O.getElementById(b)) && Y.contains(d, E) && E.id === b)
1308
1307
  return s.call(g, E), g;
1309
1308
  } else {
1310
1309
  if (A[2])
1311
- return s.apply(g, h.getElementsByTagName(l)), g;
1312
- if ((b = A[3]) && h.getElementsByClassName)
1313
- return s.apply(g, h.getElementsByClassName(b)), g;
1310
+ return s.apply(g, d.getElementsByTagName(l)), g;
1311
+ if ((b = A[3]) && d.getElementsByClassName)
1312
+ return s.apply(g, d.getElementsByClassName(b)), g;
1314
1313
  }
1315
- if (!oe[l + " "] && (!d || !d.test(l))) {
1316
- if (H = l, O = h, V === 1 && (Ut.test(l) || ut.test(l))) {
1317
- for (O = $t.test(l) && zt(h.parentNode) || h, (O != h || !j.scope) && ((N = h.getAttribute("id")) ? N = r.escapeSelector(N) : h.setAttribute("id", N = T)), B = ft(l), C = B.length; C--; )
1314
+ if (!oe[l + " "] && (!h || !h.test(l))) {
1315
+ if (H = l, O = d, V === 1 && (Ut.test(l) || ut.test(l))) {
1316
+ for (O = $t.test(l) && zt(d.parentNode) || d, (O != d || !j.scope) && ((N = d.getAttribute("id")) ? N = r.escapeSelector(N) : d.setAttribute("id", N = T)), B = ft(l), C = B.length; C--; )
1318
1317
  B[C] = (N ? "#" + N : ":scope") + " " + Tt(B[C]);
1319
1318
  H = B.join(",");
1320
1319
  }
@@ -1326,52 +1325,52 @@ function Cr() {
1326
1325
  } catch {
1327
1326
  oe(l, !0);
1328
1327
  } finally {
1329
- N === T && h.removeAttribute("id");
1328
+ N === T && d.removeAttribute("id");
1330
1329
  }
1331
1330
  }
1332
1331
  }
1333
- return Oi(l.replace(Ze, "$1"), h, g, v);
1332
+ return Oi(l.replace(Ze, "$1"), d, g, v);
1334
1333
  }
1335
1334
  function bt() {
1336
1335
  var l = [];
1337
- function h(g, v) {
1338
- return l.push(g + " ") > t.cacheLength && delete h[l.shift()], h[g + " "] = v;
1336
+ function d(g, v) {
1337
+ return l.push(g + " ") > t.cacheLength && delete d[l.shift()], d[g + " "] = v;
1339
1338
  }
1340
- return h;
1339
+ return d;
1341
1340
  }
1342
1341
  function me(l) {
1343
1342
  return l[T] = !0, l;
1344
1343
  }
1345
1344
  function Ye(l) {
1346
- var h = u.createElement("fieldset");
1345
+ var d = u.createElement("fieldset");
1347
1346
  try {
1348
- return !!l(h);
1347
+ return !!l(d);
1349
1348
  } catch {
1350
1349
  return !1;
1351
1350
  } finally {
1352
- h.parentNode && h.parentNode.removeChild(h), h = null;
1351
+ d.parentNode && d.parentNode.removeChild(d), d = null;
1353
1352
  }
1354
1353
  }
1355
1354
  function Xn(l) {
1356
- return function(h) {
1357
- return K(h, "input") && h.type === l;
1355
+ return function(d) {
1356
+ return K(d, "input") && d.type === l;
1358
1357
  };
1359
1358
  }
1360
1359
  function Gn(l) {
1361
- return function(h) {
1362
- return (K(h, "input") || K(h, "button")) && h.type === l;
1360
+ return function(d) {
1361
+ return (K(d, "input") || K(d, "button")) && d.type === l;
1363
1362
  };
1364
1363
  }
1365
1364
  function Pi(l) {
1366
- return function(h) {
1367
- return "form" in h ? h.parentNode && h.disabled === !1 ? "label" in h ? "label" in h.parentNode ? h.parentNode.disabled === l : h.disabled === l : h.isDisabled === l || // Where there is no isDisabled, check manually
1368
- h.isDisabled !== !l && $n(h) === l : h.disabled === l : "label" in h ? h.disabled === l : !1;
1365
+ return function(d) {
1366
+ return "form" in d ? d.parentNode && d.disabled === !1 ? "label" in d ? "label" in d.parentNode ? d.parentNode.disabled === l : d.disabled === l : d.isDisabled === l || // Where there is no isDisabled, check manually
1367
+ d.isDisabled !== !l && $n(d) === l : d.disabled === l : "label" in d ? d.disabled === l : !1;
1369
1368
  };
1370
1369
  }
1371
1370
  function Oe(l) {
1372
- return me(function(h) {
1373
- return h = +h, me(function(g, v) {
1374
- for (var b, C = l([], g.length, h), E = C.length; E--; )
1371
+ return me(function(d) {
1372
+ return d = +d, me(function(g, v) {
1373
+ for (var b, C = l([], g.length, d), E = C.length; E--; )
1375
1374
  g[b = C[E]] && (g[b] = !(v[b] = g[b]));
1376
1375
  });
1377
1376
  });
@@ -1379,13 +1378,13 @@ function Cr() {
1379
1378
  function zt(l) {
1380
1379
  return l && typeof l.getElementsByTagName < "u" && l;
1381
1380
  }
1382
- function Me(l) {
1383
- var h, g = l ? l.ownerDocument || l : ke;
1381
+ function qe(l) {
1382
+ var d, g = l ? l.ownerDocument || l : ke;
1384
1383
  return g == u || g.nodeType !== 9 || !g.documentElement || (u = g, c = u.documentElement, f = !r.isXMLDoc(u), x = c.matches || c.webkitMatchesSelector || c.msMatchesSelector, c.msMatchesSelector && // Support: IE 11+, Edge 17 - 18+
1385
1384
  // IE/Edge sometimes throw a "Permission denied" error when strict-comparing
1386
1385
  // two documents; shallow comparisons work.
1387
1386
  // eslint-disable-next-line eqeqeq
1388
- ke != u && (h = u.defaultView) && h.top !== h && h.addEventListener("unload", Un), j.getById = Ye(function(v) {
1387
+ ke != u && (d = u.defaultView) && d.top !== d && d.addEventListener("unload", Un), j.getById = Ye(function(v) {
1389
1388
  return c.appendChild(v).id = r.expando, !u.getElementsByName || !u.getElementsByName(r.expando).length;
1390
1389
  }), j.disconnectedMatch = Ye(function(v) {
1391
1390
  return x.call(v, "*");
@@ -1430,46 +1429,46 @@ function Cr() {
1430
1429
  }, t.find.CLASS = function(v, b) {
1431
1430
  if (typeof b.getElementsByClassName < "u" && f)
1432
1431
  return b.getElementsByClassName(v);
1433
- }, d = [], Ye(function(v) {
1432
+ }, h = [], Ye(function(v) {
1434
1433
  var b;
1435
- c.appendChild(v).innerHTML = "<a id='" + T + "' href='' disabled='disabled'></a><select id='" + T + "-\r\\' disabled='disabled'><option selected=''></option></select>", v.querySelectorAll("[selected]").length || d.push("\\[" + Q + "*(?:value|" + be + ")"), v.querySelectorAll("[id~=" + T + "-]").length || d.push("~="), v.querySelectorAll("a#" + T + "+*").length || d.push(".#.+[+~]"), v.querySelectorAll(":checked").length || d.push(":checked"), b = u.createElement("input"), b.setAttribute("type", "hidden"), v.appendChild(b).setAttribute("name", "D"), c.appendChild(v).disabled = !0, v.querySelectorAll(":disabled").length !== 2 && d.push(":enabled", ":disabled"), b = u.createElement("input"), b.setAttribute("name", ""), v.appendChild(b), v.querySelectorAll("[name='']").length || d.push("\\[" + Q + "*name" + Q + "*=" + Q + `*(?:''|"")`);
1436
- }), j.cssHas || d.push(":has"), d = d.length && new RegExp(d.join("|")), ne = function(v, b) {
1434
+ c.appendChild(v).innerHTML = "<a id='" + T + "' href='' disabled='disabled'></a><select id='" + T + "-\r\\' disabled='disabled'><option selected=''></option></select>", v.querySelectorAll("[selected]").length || h.push("\\[" + Q + "*(?:value|" + be + ")"), v.querySelectorAll("[id~=" + T + "-]").length || h.push("~="), v.querySelectorAll("a#" + T + "+*").length || h.push(".#.+[+~]"), v.querySelectorAll(":checked").length || h.push(":checked"), b = u.createElement("input"), b.setAttribute("type", "hidden"), v.appendChild(b).setAttribute("name", "D"), c.appendChild(v).disabled = !0, v.querySelectorAll(":disabled").length !== 2 && h.push(":enabled", ":disabled"), b = u.createElement("input"), b.setAttribute("name", ""), v.appendChild(b), v.querySelectorAll("[name='']").length || h.push("\\[" + Q + "*name" + Q + "*=" + Q + `*(?:''|"")`);
1435
+ }), j.cssHas || h.push(":has"), h = h.length && new RegExp(h.join("|")), ne = function(v, b) {
1437
1436
  if (v === b)
1438
1437
  return o = !0, 0;
1439
1438
  var C = !v.compareDocumentPosition - !b.compareDocumentPosition;
1440
1439
  return C || (C = (v.ownerDocument || v) == (b.ownerDocument || b) ? v.compareDocumentPosition(b) : (
1441
1440
  // Otherwise we know they are disconnected
1442
1441
  1
1443
- ), C & 1 || !j.sortDetached && b.compareDocumentPosition(v) === C ? v === u || v.ownerDocument == ke && Y.contains(ke, v) ? -1 : b === u || b.ownerDocument == ke && Y.contains(ke, b) ? 1 : n ? q.call(n, v) - q.call(n, b) : 0 : C & 4 ? -1 : 1);
1442
+ ), C & 1 || !j.sortDetached && b.compareDocumentPosition(v) === C ? v === u || v.ownerDocument == ke && Y.contains(ke, v) ? -1 : b === u || b.ownerDocument == ke && Y.contains(ke, b) ? 1 : n ? M.call(n, v) - M.call(n, b) : 0 : C & 4 ? -1 : 1);
1444
1443
  }), u;
1445
1444
  }
1446
- Y.matches = function(l, h) {
1447
- return Y(l, null, null, h);
1448
- }, Y.matchesSelector = function(l, h) {
1449
- if (Me(l), f && !oe[h + " "] && (!d || !d.test(h)))
1445
+ Y.matches = function(l, d) {
1446
+ return Y(l, null, null, d);
1447
+ }, Y.matchesSelector = function(l, d) {
1448
+ if (qe(l), f && !oe[d + " "] && (!h || !h.test(d)))
1450
1449
  try {
1451
- var g = x.call(l, h);
1450
+ var g = x.call(l, d);
1452
1451
  if (g || j.disconnectedMatch || // As well, disconnected nodes are said to be in a document
1453
1452
  // fragment in IE 9
1454
1453
  l.document && l.document.nodeType !== 11)
1455
1454
  return g;
1456
1455
  } catch {
1457
- oe(h, !0);
1456
+ oe(d, !0);
1458
1457
  }
1459
- return Y(h, u, null, [l]).length > 0;
1460
- }, Y.contains = function(l, h) {
1461
- return (l.ownerDocument || l) != u && Me(l), r.contains(l, h);
1462
- }, Y.attr = function(l, h) {
1463
- (l.ownerDocument || l) != u && Me(l);
1464
- var g = t.attrHandle[h.toLowerCase()], v = g && Z.call(t.attrHandle, h.toLowerCase()) ? g(l, h, !f) : void 0;
1465
- return v !== void 0 ? v : l.getAttribute(h);
1458
+ return Y(d, u, null, [l]).length > 0;
1459
+ }, Y.contains = function(l, d) {
1460
+ return (l.ownerDocument || l) != u && qe(l), r.contains(l, d);
1461
+ }, Y.attr = function(l, d) {
1462
+ (l.ownerDocument || l) != u && qe(l);
1463
+ var g = t.attrHandle[d.toLowerCase()], v = g && Z.call(t.attrHandle, d.toLowerCase()) ? g(l, d, !f) : void 0;
1464
+ return v !== void 0 ? v : l.getAttribute(d);
1466
1465
  }, Y.error = function(l) {
1467
1466
  throw new Error("Syntax error, unrecognized expression: " + l);
1468
1467
  }, r.uniqueSort = function(l) {
1469
- var h, g = [], v = 0, b = 0;
1468
+ var d, g = [], v = 0, b = 0;
1470
1469
  if (o = !j.sortStable, n = !j.sortStable && w.call(l, 0), $i.call(l, ne), o) {
1471
- for (; h = l[b++]; )
1472
- h === l[b] && (v = g.push(b));
1470
+ for (; d = l[b++]; )
1471
+ d === l[b] && (v = g.push(b));
1473
1472
  for (; v--; )
1474
1473
  zi.call(l, g[v], 1);
1475
1474
  }
@@ -1497,73 +1496,73 @@ function Cr() {
1497
1496
  return l[1] = l[1].toLowerCase(), l[1].slice(0, 3) === "nth" ? (l[3] || Y.error(l[0]), l[4] = +(l[4] ? l[5] + (l[6] || 1) : 2 * (l[3] === "even" || l[3] === "odd")), l[5] = +(l[7] + l[8] || l[3] === "odd")) : l[3] && Y.error(l[0]), l;
1498
1497
  },
1499
1498
  PSEUDO: function(l) {
1500
- var h, g = !l[6] && l[2];
1499
+ var d, g = !l[6] && l[2];
1501
1500
  return Se.CHILD.test(l[0]) ? null : (l[3] ? l[2] = l[4] || l[5] || "" : g && we.test(g) && // Get excess from tokenize (recursively)
1502
- (h = ft(g, !0)) && // advance to the next closing parenthesis
1503
- (h = g.indexOf(")", g.length - h) - g.length) && (l[0] = l[0].slice(0, h), l[2] = g.slice(0, h)), l.slice(0, 3));
1501
+ (d = ft(g, !0)) && // advance to the next closing parenthesis
1502
+ (d = g.indexOf(")", g.length - d) - g.length) && (l[0] = l[0].slice(0, d), l[2] = g.slice(0, d)), l.slice(0, 3));
1504
1503
  }
1505
1504
  },
1506
1505
  filter: {
1507
1506
  TAG: function(l) {
1508
- var h = l.replace(De, Re).toLowerCase();
1507
+ var d = l.replace(De, Re).toLowerCase();
1509
1508
  return l === "*" ? function() {
1510
1509
  return !0;
1511
1510
  } : function(g) {
1512
- return K(g, h);
1511
+ return K(g, d);
1513
1512
  };
1514
1513
  },
1515
1514
  CLASS: function(l) {
1516
- var h = P[l + " "];
1517
- return h || (h = new RegExp("(^|" + Q + ")" + l + "(" + Q + "|$)")) && P(l, function(g) {
1518
- return h.test(
1515
+ var d = P[l + " "];
1516
+ return d || (d = new RegExp("(^|" + Q + ")" + l + "(" + Q + "|$)")) && P(l, function(g) {
1517
+ return d.test(
1519
1518
  typeof g.className == "string" && g.className || typeof g.getAttribute < "u" && g.getAttribute("class") || ""
1520
1519
  );
1521
1520
  });
1522
1521
  },
1523
- ATTR: function(l, h, g) {
1522
+ ATTR: function(l, d, g) {
1524
1523
  return function(v) {
1525
1524
  var b = Y.attr(v, l);
1526
- return b == null ? h === "!=" : h ? (b += "", h === "=" ? b === g : h === "!=" ? b !== g : h === "^=" ? g && b.indexOf(g) === 0 : h === "*=" ? g && b.indexOf(g) > -1 : h === "$=" ? g && b.slice(-g.length) === g : h === "~=" ? (" " + b.replace(X, " ") + " ").indexOf(g) > -1 : h === "|=" ? b === g || b.slice(0, g.length + 1) === g + "-" : !1) : !0;
1525
+ return b == null ? d === "!=" : d ? (b += "", d === "=" ? b === g : d === "!=" ? b !== g : d === "^=" ? g && b.indexOf(g) === 0 : d === "*=" ? g && b.indexOf(g) > -1 : d === "$=" ? g && b.slice(-g.length) === g : d === "~=" ? (" " + b.replace(X, " ") + " ").indexOf(g) > -1 : d === "|=" ? b === g || b.slice(0, g.length + 1) === g + "-" : !1) : !0;
1527
1526
  };
1528
1527
  },
1529
- CHILD: function(l, h, g, v, b) {
1530
- var C = l.slice(0, 3) !== "nth", E = l.slice(-4) !== "last", N = h === "of-type";
1528
+ CHILD: function(l, d, g, v, b) {
1529
+ var C = l.slice(0, 3) !== "nth", E = l.slice(-4) !== "last", N = d === "of-type";
1531
1530
  return v === 1 && b === 0 ? (
1532
1531
  // Shortcut for :nth-*(n)
1533
1532
  function(A) {
1534
1533
  return !!A.parentNode;
1535
1534
  }
1536
1535
  ) : function(A, B, H) {
1537
- var O, V, M, J, ce, se = C !== E ? "nextSibling" : "previousSibling", ge = A.parentNode, Ce = N && A.nodeName.toLowerCase(), Qe = !H && !N, ae = !1;
1536
+ var O, V, q, J, ce, se = C !== E ? "nextSibling" : "previousSibling", ge = A.parentNode, Ce = N && A.nodeName.toLowerCase(), Qe = !H && !N, ae = !1;
1538
1537
  if (ge) {
1539
1538
  if (C) {
1540
1539
  for (; se; ) {
1541
- for (M = A; M = M[se]; )
1542
- if (N ? K(M, Ce) : M.nodeType === 1)
1540
+ for (q = A; q = q[se]; )
1541
+ if (N ? K(q, Ce) : q.nodeType === 1)
1543
1542
  return !1;
1544
1543
  ce = se = l === "only" && !ce && "nextSibling";
1545
1544
  }
1546
1545
  return !0;
1547
1546
  }
1548
1547
  if (ce = [E ? ge.firstChild : ge.lastChild], E && Qe) {
1549
- for (V = ge[T] || (ge[T] = {}), O = V[l] || [], J = O[0] === m && O[1], ae = J && O[2], M = J && ge.childNodes[J]; M = ++J && M && M[se] || // Fallback to seeking `elem` from the start
1548
+ for (V = ge[T] || (ge[T] = {}), O = V[l] || [], J = O[0] === m && O[1], ae = J && O[2], q = J && ge.childNodes[J]; q = ++J && q && q[se] || // Fallback to seeking `elem` from the start
1550
1549
  (ae = J = 0) || ce.pop(); )
1551
- if (M.nodeType === 1 && ++ae && M === A) {
1550
+ if (q.nodeType === 1 && ++ae && q === A) {
1552
1551
  V[l] = [m, J, ae];
1553
1552
  break;
1554
1553
  }
1555
1554
  } else if (Qe && (V = A[T] || (A[T] = {}), O = V[l] || [], J = O[0] === m && O[1], ae = J), ae === !1)
1556
- for (; (M = ++J && M && M[se] || (ae = J = 0) || ce.pop()) && !((N ? K(M, Ce) : M.nodeType === 1) && ++ae && (Qe && (V = M[T] || (M[T] = {}), V[l] = [m, ae]), M === A)); )
1555
+ for (; (q = ++J && q && q[se] || (ae = J = 0) || ce.pop()) && !((N ? K(q, Ce) : q.nodeType === 1) && ++ae && (Qe && (V = q[T] || (q[T] = {}), V[l] = [m, ae]), q === A)); )
1557
1556
  ;
1558
1557
  return ae -= b, ae === v || ae % v === 0 && ae / v >= 0;
1559
1558
  }
1560
1559
  };
1561
1560
  },
1562
- PSEUDO: function(l, h) {
1561
+ PSEUDO: function(l, d) {
1563
1562
  var g, v = t.pseudos[l] || t.setFilters[l.toLowerCase()] || Y.error("unsupported pseudo: " + l);
1564
- return v[T] ? v(h) : v.length > 1 ? (g = [l, l, "", h], t.setFilters.hasOwnProperty(l.toLowerCase()) ? me(function(b, C) {
1565
- for (var E, N = v(b, h), A = N.length; A--; )
1566
- E = q.call(b, N[A]), b[E] = !(C[E] = N[A]);
1563
+ return v[T] ? v(d) : v.length > 1 ? (g = [l, l, "", d], t.setFilters.hasOwnProperty(l.toLowerCase()) ? me(function(b, C) {
1564
+ for (var E, N = v(b, d), A = N.length; A--; )
1565
+ E = M.call(b, N[A]), b[E] = !(C[E] = N[A]);
1567
1566
  }) : function(b) {
1568
1567
  return v(b, 0, g);
1569
1568
  }) : v;
@@ -1572,22 +1571,22 @@ function Cr() {
1572
1571
  pseudos: {
1573
1572
  // Potentially complex pseudos
1574
1573
  not: me(function(l) {
1575
- var h = [], g = [], v = Qt(l.replace(Ze, "$1"));
1574
+ var d = [], g = [], v = Qt(l.replace(Ze, "$1"));
1576
1575
  return v[T] ? me(function(b, C, E, N) {
1577
1576
  for (var A, B = v(b, null, N, []), H = b.length; H--; )
1578
1577
  (A = B[H]) && (b[H] = !(C[H] = A));
1579
1578
  }) : function(b, C, E) {
1580
- return h[0] = b, v(h, null, E, g), h[0] = null, !g.pop();
1579
+ return d[0] = b, v(d, null, E, g), d[0] = null, !g.pop();
1581
1580
  };
1582
1581
  }),
1583
1582
  has: me(function(l) {
1584
- return function(h) {
1585
- return Y(l, h).length > 0;
1583
+ return function(d) {
1584
+ return Y(l, d).length > 0;
1586
1585
  };
1587
1586
  }),
1588
1587
  contains: me(function(l) {
1589
- return l = l.replace(De, Re), function(h) {
1590
- return (h.textContent || r.text(h)).indexOf(l) > -1;
1588
+ return l = l.replace(De, Re), function(d) {
1589
+ return (d.textContent || r.text(d)).indexOf(l) > -1;
1591
1590
  };
1592
1591
  }),
1593
1592
  // "Whether an element is represented by a :lang() selector
@@ -1598,19 +1597,19 @@ function Cr() {
1598
1597
  // The identifier C does not have to be a valid language name."
1599
1598
  // https://www.w3.org/TR/selectors/#lang-pseudo
1600
1599
  lang: me(function(l) {
1601
- return lt.test(l || "") || Y.error("unsupported lang: " + l), l = l.replace(De, Re).toLowerCase(), function(h) {
1600
+ return lt.test(l || "") || Y.error("unsupported lang: " + l), l = l.replace(De, Re).toLowerCase(), function(d) {
1602
1601
  var g;
1603
1602
  do
1604
- if (g = f ? h.lang : h.getAttribute("xml:lang") || h.getAttribute("lang"))
1603
+ if (g = f ? d.lang : d.getAttribute("xml:lang") || d.getAttribute("lang"))
1605
1604
  return g = g.toLowerCase(), g === l || g.indexOf(l + "-") === 0;
1606
- while ((h = h.parentNode) && h.nodeType === 1);
1605
+ while ((d = d.parentNode) && d.nodeType === 1);
1607
1606
  return !1;
1608
1607
  };
1609
1608
  }),
1610
1609
  // Miscellaneous
1611
1610
  target: function(l) {
1612
- var h = a.location && a.location.hash;
1613
- return h && h.slice(1) === l.id;
1611
+ var d = a.location && a.location.hash;
1612
+ return d && d.slice(1) === l.id;
1614
1613
  },
1615
1614
  root: function(l) {
1616
1615
  return l === c;
@@ -1639,7 +1638,7 @@ function Cr() {
1639
1638
  },
1640
1639
  // Element/input types
1641
1640
  header: function(l) {
1642
- return qe.test(l.nodeName);
1641
+ return Me.test(l.nodeName);
1643
1642
  },
1644
1643
  input: function(l) {
1645
1644
  return Ie.test(l.nodeName);
@@ -1648,40 +1647,40 @@ function Cr() {
1648
1647
  return K(l, "input") && l.type === "button" || K(l, "button");
1649
1648
  },
1650
1649
  text: function(l) {
1651
- var h;
1650
+ var d;
1652
1651
  return K(l, "input") && l.type === "text" && // Support: IE <10 only
1653
1652
  // New HTML5 attribute values (e.g., "search") appear
1654
1653
  // with elem.type === "text"
1655
- ((h = l.getAttribute("type")) == null || h.toLowerCase() === "text");
1654
+ ((d = l.getAttribute("type")) == null || d.toLowerCase() === "text");
1656
1655
  },
1657
1656
  // Position-in-collection
1658
1657
  first: Oe(function() {
1659
1658
  return [0];
1660
1659
  }),
1661
- last: Oe(function(l, h) {
1662
- return [h - 1];
1660
+ last: Oe(function(l, d) {
1661
+ return [d - 1];
1663
1662
  }),
1664
- eq: Oe(function(l, h, g) {
1665
- return [g < 0 ? g + h : g];
1663
+ eq: Oe(function(l, d, g) {
1664
+ return [g < 0 ? g + d : g];
1666
1665
  }),
1667
- even: Oe(function(l, h) {
1668
- for (var g = 0; g < h; g += 2)
1666
+ even: Oe(function(l, d) {
1667
+ for (var g = 0; g < d; g += 2)
1669
1668
  l.push(g);
1670
1669
  return l;
1671
1670
  }),
1672
- odd: Oe(function(l, h) {
1673
- for (var g = 1; g < h; g += 2)
1671
+ odd: Oe(function(l, d) {
1672
+ for (var g = 1; g < d; g += 2)
1674
1673
  l.push(g);
1675
1674
  return l;
1676
1675
  }),
1677
- lt: Oe(function(l, h, g) {
1676
+ lt: Oe(function(l, d, g) {
1678
1677
  var v;
1679
- for (g < 0 ? v = g + h : g > h ? v = h : v = g; --v >= 0; )
1678
+ for (g < 0 ? v = g + d : g > d ? v = d : v = g; --v >= 0; )
1680
1679
  l.push(v);
1681
1680
  return l;
1682
1681
  }),
1683
- gt: Oe(function(l, h, g) {
1684
- for (var v = g < 0 ? g + h : g; ++v < h; )
1682
+ gt: Oe(function(l, d, g) {
1683
+ for (var v = g < 0 ? g + d : g; ++v < d; )
1685
1684
  l.push(v);
1686
1685
  return l;
1687
1686
  })
@@ -1694,10 +1693,10 @@ function Cr() {
1694
1693
  function Fi() {
1695
1694
  }
1696
1695
  Fi.prototype = t.filters = t.pseudos, t.setFilters = new Fi();
1697
- function ft(l, h) {
1696
+ function ft(l, d) {
1698
1697
  var g, v, b, C, E, N, A, B = z[l + " "];
1699
1698
  if (B)
1700
- return h ? 0 : B.slice(0);
1699
+ return d ? 0 : B.slice(0);
1701
1700
  for (E = l, N = [], A = t.preFilter; E; ) {
1702
1701
  (!g || (v = te.exec(E))) && (v && (E = E.slice(v[0].length) || E), N.push(b = [])), g = !1, (v = ut.exec(E)) && (g = v.shift(), b.push({
1703
1702
  value: g,
@@ -1713,19 +1712,19 @@ function Cr() {
1713
1712
  if (!g)
1714
1713
  break;
1715
1714
  }
1716
- return h ? E.length : E ? Y.error(l) : (
1715
+ return d ? E.length : E ? Y.error(l) : (
1717
1716
  // Cache the tokens
1718
1717
  z(l, N).slice(0)
1719
1718
  );
1720
1719
  }
1721
1720
  function Tt(l) {
1722
- for (var h = 0, g = l.length, v = ""; h < g; h++)
1723
- v += l[h].value;
1721
+ for (var d = 0, g = l.length, v = ""; d < g; d++)
1722
+ v += l[d].value;
1724
1723
  return v;
1725
1724
  }
1726
- function wt(l, h, g) {
1727
- var v = h.dir, b = h.next, C = b || v, E = g && C === "parentNode", N = S++;
1728
- return h.first ? (
1725
+ function wt(l, d, g) {
1726
+ var v = d.dir, b = d.next, C = b || v, E = g && C === "parentNode", N = S++;
1727
+ return d.first ? (
1729
1728
  // Check against closest ancestor/preceding element
1730
1729
  function(A, B, H) {
1731
1730
  for (; A = A[v]; )
@@ -1736,7 +1735,7 @@ function Cr() {
1736
1735
  ) : (
1737
1736
  // Check against all ancestor/preceding elements
1738
1737
  function(A, B, H) {
1739
- var O, V, M = [m, N];
1738
+ var O, V, q = [m, N];
1740
1739
  if (H) {
1741
1740
  for (; A = A[v]; )
1742
1741
  if ((A.nodeType === 1 || E) && l(A, B, H))
@@ -1748,8 +1747,8 @@ function Cr() {
1748
1747
  A = A[v] || A;
1749
1748
  else {
1750
1749
  if ((O = V[C]) && O[0] === m && O[1] === N)
1751
- return M[2] = O[2];
1752
- if (V[C] = M, M[2] = l(A, B, H))
1750
+ return q[2] = O[2];
1751
+ if (V[C] = q, q[2] = l(A, B, H))
1753
1752
  return !0;
1754
1753
  }
1755
1754
  return !1;
@@ -1757,63 +1756,63 @@ function Cr() {
1757
1756
  );
1758
1757
  }
1759
1758
  function Xt(l) {
1760
- return l.length > 1 ? function(h, g, v) {
1759
+ return l.length > 1 ? function(d, g, v) {
1761
1760
  for (var b = l.length; b--; )
1762
- if (!l[b](h, g, v))
1761
+ if (!l[b](d, g, v))
1763
1762
  return !1;
1764
1763
  return !0;
1765
1764
  } : l[0];
1766
1765
  }
1767
- function Yn(l, h, g) {
1768
- for (var v = 0, b = h.length; v < b; v++)
1769
- Y(l, h[v], g);
1766
+ function Yn(l, d, g) {
1767
+ for (var v = 0, b = d.length; v < b; v++)
1768
+ Y(l, d[v], g);
1770
1769
  return g;
1771
1770
  }
1772
- function St(l, h, g, v, b) {
1773
- for (var C, E = [], N = 0, A = l.length, B = h != null; N < A; N++)
1774
- (C = l[N]) && (!g || g(C, v, b)) && (E.push(C), B && h.push(N));
1771
+ function St(l, d, g, v, b) {
1772
+ for (var C, E = [], N = 0, A = l.length, B = d != null; N < A; N++)
1773
+ (C = l[N]) && (!g || g(C, v, b)) && (E.push(C), B && d.push(N));
1775
1774
  return E;
1776
1775
  }
1777
- function Gt(l, h, g, v, b, C) {
1776
+ function Gt(l, d, g, v, b, C) {
1778
1777
  return v && !v[T] && (v = Gt(v)), b && !b[T] && (b = Gt(b, C)), me(function(E, N, A, B) {
1779
- var H, O, V, M, J = [], ce = [], se = N.length, ge = E || Yn(
1780
- h || "*",
1778
+ var H, O, V, q, J = [], ce = [], se = N.length, ge = E || Yn(
1779
+ d || "*",
1781
1780
  A.nodeType ? [A] : A,
1782
1781
  []
1783
- ), Ce = l && (E || !h) ? St(ge, J, l, A, B) : ge;
1784
- if (g ? (M = b || (E ? l : se || v) ? (
1782
+ ), Ce = l && (E || !d) ? St(ge, J, l, A, B) : ge;
1783
+ if (g ? (q = b || (E ? l : se || v) ? (
1785
1784
  // ...intermediate processing is necessary
1786
1785
  []
1787
1786
  ) : (
1788
1787
  // ...otherwise use results directly
1789
1788
  N
1790
- ), g(Ce, M, A, B)) : M = Ce, v)
1791
- for (H = St(M, ce), v(H, [], A, B), O = H.length; O--; )
1792
- (V = H[O]) && (M[ce[O]] = !(Ce[ce[O]] = V));
1789
+ ), g(Ce, q, A, B)) : q = Ce, v)
1790
+ for (H = St(q, ce), v(H, [], A, B), O = H.length; O--; )
1791
+ (V = H[O]) && (q[ce[O]] = !(Ce[ce[O]] = V));
1793
1792
  if (E) {
1794
1793
  if (b || l) {
1795
1794
  if (b) {
1796
- for (H = [], O = M.length; O--; )
1797
- (V = M[O]) && H.push(Ce[O] = V);
1798
- b(null, M = [], H, B);
1795
+ for (H = [], O = q.length; O--; )
1796
+ (V = q[O]) && H.push(Ce[O] = V);
1797
+ b(null, q = [], H, B);
1799
1798
  }
1800
- for (O = M.length; O--; )
1801
- (V = M[O]) && (H = b ? q.call(E, V) : J[O]) > -1 && (E[H] = !(N[H] = V));
1799
+ for (O = q.length; O--; )
1800
+ (V = q[O]) && (H = b ? M.call(E, V) : J[O]) > -1 && (E[H] = !(N[H] = V));
1802
1801
  }
1803
1802
  } else
1804
- M = St(
1805
- M === N ? M.splice(se, M.length) : M
1806
- ), b ? b(null, N, M, B) : s.apply(N, M);
1803
+ q = St(
1804
+ q === N ? q.splice(se, q.length) : q
1805
+ ), b ? b(null, N, q, B) : s.apply(N, q);
1807
1806
  });
1808
1807
  }
1809
1808
  function Yt(l) {
1810
- for (var h, g, v, b = l.length, C = t.relative[l[0].type], E = C || t.relative[" "], N = C ? 1 : 0, A = wt(function(O) {
1811
- return O === h;
1809
+ for (var d, g, v, b = l.length, C = t.relative[l[0].type], E = C || t.relative[" "], N = C ? 1 : 0, A = wt(function(O) {
1810
+ return O === d;
1812
1811
  }, E, !0), B = wt(function(O) {
1813
- return q.call(h, O) > -1;
1814
- }, E, !0), H = [function(O, V, M) {
1815
- var J = !C && (M || V != i) || ((h = V).nodeType ? A(O, V, M) : B(O, V, M));
1816
- return h = null, J;
1812
+ return M.call(d, O) > -1;
1813
+ }, E, !0), H = [function(O, V, q) {
1814
+ var J = !C && (q || V != i) || ((d = V).nodeType ? A(O, V, q) : B(O, V, q));
1815
+ return d = null, J;
1817
1816
  }]; N < b; N++)
1818
1817
  if (g = t.relative[l[N].type])
1819
1818
  H = [wt(Xt(H), g)];
@@ -1837,40 +1836,40 @@ function Cr() {
1837
1836
  }
1838
1837
  return Xt(H);
1839
1838
  }
1840
- function Qn(l, h) {
1841
- var g = h.length > 0, v = l.length > 0, b = function(C, E, N, A, B) {
1842
- var H, O, V, M = 0, J = "0", ce = C && [], se = [], ge = i, Ce = C || v && t.find.TAG("*", B), Qe = m += ge == null ? 1 : Math.random() || 0.1, ae = Ce.length;
1839
+ function Qn(l, d) {
1840
+ var g = d.length > 0, v = l.length > 0, b = function(C, E, N, A, B) {
1841
+ var H, O, V, q = 0, J = "0", ce = C && [], se = [], ge = i, Ce = C || v && t.find.TAG("*", B), Qe = m += ge == null ? 1 : Math.random() || 0.1, ae = Ce.length;
1843
1842
  for (B && (i = E == u || E || B); J !== ae && (H = Ce[J]) != null; J++) {
1844
1843
  if (v && H) {
1845
- for (O = 0, !E && H.ownerDocument != u && (Me(H), N = !f); V = l[O++]; )
1844
+ for (O = 0, !E && H.ownerDocument != u && (qe(H), N = !f); V = l[O++]; )
1846
1845
  if (V(H, E || u, N)) {
1847
1846
  s.call(A, H);
1848
1847
  break;
1849
1848
  }
1850
1849
  B && (m = Qe);
1851
1850
  }
1852
- g && ((H = !V && H) && M--, C && ce.push(H));
1851
+ g && ((H = !V && H) && q--, C && ce.push(H));
1853
1852
  }
1854
- if (M += J, g && J !== M) {
1855
- for (O = 0; V = h[O++]; )
1853
+ if (q += J, g && J !== q) {
1854
+ for (O = 0; V = d[O++]; )
1856
1855
  V(ce, se, E, N);
1857
1856
  if (C) {
1858
- if (M > 0)
1857
+ if (q > 0)
1859
1858
  for (; J--; )
1860
1859
  ce[J] || se[J] || (se[J] = Ui.call(A));
1861
1860
  se = St(se);
1862
1861
  }
1863
- s.apply(A, se), B && !C && se.length > 0 && M + h.length > 1 && r.uniqueSort(A);
1862
+ s.apply(A, se), B && !C && se.length > 0 && q + d.length > 1 && r.uniqueSort(A);
1864
1863
  }
1865
1864
  return B && (m = Qe, i = ge), ce;
1866
1865
  };
1867
1866
  return g ? me(b) : b;
1868
1867
  }
1869
- function Qt(l, h) {
1868
+ function Qt(l, d) {
1870
1869
  var g, v = [], b = [], C = _[l + " "];
1871
1870
  if (!C) {
1872
- for (h || (h = ft(l)), g = h.length; g--; )
1873
- C = Yt(h[g]), C[T] ? v.push(C) : b.push(C);
1871
+ for (d || (d = ft(l)), g = d.length; g--; )
1872
+ C = Yt(d[g]), C[T] ? v.push(C) : b.push(C);
1874
1873
  C = _(
1875
1874
  l,
1876
1875
  Qn(b, v)
@@ -1878,22 +1877,22 @@ function Cr() {
1878
1877
  }
1879
1878
  return C;
1880
1879
  }
1881
- function Oi(l, h, g, v) {
1880
+ function Oi(l, d, g, v) {
1882
1881
  var b, C, E, N, A, B = typeof l == "function" && l, H = !v && ft(l = B.selector || l);
1883
1882
  if (g = g || [], H.length === 1) {
1884
- if (C = H[0] = H[0].slice(0), C.length > 2 && (E = C[0]).type === "ID" && h.nodeType === 9 && f && t.relative[C[1].type]) {
1885
- if (h = (t.find.ID(
1883
+ if (C = H[0] = H[0].slice(0), C.length > 2 && (E = C[0]).type === "ID" && d.nodeType === 9 && f && t.relative[C[1].type]) {
1884
+ if (d = (t.find.ID(
1886
1885
  E.matches[0].replace(De, Re),
1887
- h
1888
- ) || [])[0], h)
1889
- B && (h = h.parentNode);
1886
+ d
1887
+ ) || [])[0], d)
1888
+ B && (d = d.parentNode);
1890
1889
  else return g;
1891
1890
  l = l.slice(C.shift().value.length);
1892
1891
  }
1893
1892
  for (b = Se.needsContext.test(l) ? 0 : C.length; b-- && (E = C[b], !t.relative[N = E.type]); )
1894
1893
  if ((A = t.find[N]) && (v = A(
1895
1894
  E.matches[0].replace(De, Re),
1896
- $t.test(C[0].type) && zt(h.parentNode) || h
1895
+ $t.test(C[0].type) && zt(d.parentNode) || d
1897
1896
  ))) {
1898
1897
  if (C.splice(b, 1), l = v.length && Tt(C), !l)
1899
1898
  return s.apply(g, v), g;
@@ -1902,15 +1901,15 @@ function Cr() {
1902
1901
  }
1903
1902
  return (B || Qt(l, H))(
1904
1903
  v,
1905
- h,
1904
+ d,
1906
1905
  !f,
1907
1906
  g,
1908
- !h || $t.test(l) && zt(h.parentNode) || h
1907
+ !d || $t.test(l) && zt(d.parentNode) || d
1909
1908
  ), g;
1910
1909
  }
1911
- j.sortStable = T.split("").sort(ne).join("") === T, Me(), j.sortDetached = Ye(function(l) {
1910
+ j.sortStable = T.split("").sort(ne).join("") === T, qe(), j.sortDetached = Ye(function(l) {
1912
1911
  return l.compareDocumentPosition(u.createElement("fieldset")) & 1;
1913
- }), r.find = Y, r.expr[":"] = r.expr.pseudos, r.unique = r.uniqueSort, Y.compile = Qt, Y.select = Oi, Y.setDocument = Me, Y.tokenize = ft, Y.escape = r.escapeSelector, Y.getText = r.text, Y.isXML = r.isXMLDoc, Y.selectors = r.expr, Y.support = r.support, Y.uniqueSort = r.uniqueSort;
1912
+ }), r.find = Y, r.expr[":"] = r.expr.pseudos, r.unique = r.uniqueSort, Y.compile = Qt, Y.select = Oi, Y.setDocument = qe, Y.tokenize = ft, Y.escape = r.escapeSelector, Y.getText = r.text, Y.isXML = r.isXMLDoc, Y.selectors = r.expr, Y.support = r.support, Y.uniqueSort = r.uniqueSort;
1914
1913
  })();
1915
1914
  var _e = function(e, t, i) {
1916
1915
  for (var n = [], o = i !== void 0; (e = e[t]) && e.nodeType !== 9; )
@@ -1931,7 +1930,7 @@ function Cr() {
1931
1930
  }) : t.nodeType ? r.grep(e, function(n) {
1932
1931
  return n === t !== i;
1933
1932
  }) : typeof t != "string" ? r.grep(e, function(n) {
1934
- return q.call(t, n) > -1 !== i;
1933
+ return M.call(t, n) > -1 !== i;
1935
1934
  }) : r.filter(t, e, i);
1936
1935
  }
1937
1936
  r.filter = function(e, t, i) {
@@ -2030,7 +2029,7 @@ function Cr() {
2030
2029
  },
2031
2030
  // Determine the position of an element within the set
2032
2031
  index: function(e) {
2033
- return e ? typeof e == "string" ? q.call(r(e), this[0]) : q.call(
2032
+ return e ? typeof e == "string" ? M.call(r(e), this[0]) : M.call(
2034
2033
  this,
2035
2034
  // If it receives a jQuery object, the first element is used
2036
2035
  e.jquery ? e[0] : e
@@ -2115,12 +2114,12 @@ function Cr() {
2115
2114
  for (i = u.shift(); ++c < s.length; )
2116
2115
  s[c].apply(i[0], i[1]) === !1 && e.stopOnFalse && (c = s.length, i = !1);
2117
2116
  e.memory || (i = !1), t = !1, o && (i ? s = [] : s = "");
2118
- }, d = {
2117
+ }, h = {
2119
2118
  // Add a callback or a collection of callbacks to the list
2120
2119
  add: function() {
2121
2120
  return s && (i && !t && (c = s.length - 1, u.push(i)), (function x(T) {
2122
2121
  r.each(T, function(m, S) {
2123
- W(S) ? (!e.unique || !d.has(S)) && s.push(S) : S && S.length && We(S) !== "string" && x(S);
2122
+ W(S) ? (!e.unique || !h.has(S)) && s.push(S) : S && S.length && We(S) !== "string" && x(S);
2124
2123
  });
2125
2124
  })(arguments), i && !t && f()), this;
2126
2125
  },
@@ -2164,19 +2163,19 @@ function Cr() {
2164
2163
  },
2165
2164
  // Call all the callbacks with the given arguments
2166
2165
  fire: function() {
2167
- return d.fireWith(this, arguments), this;
2166
+ return h.fireWith(this, arguments), this;
2168
2167
  },
2169
2168
  // To know if the callbacks have already been called at least once
2170
2169
  fired: function() {
2171
2170
  return !!n;
2172
2171
  }
2173
2172
  };
2174
- return d;
2173
+ return h;
2175
2174
  };
2176
2175
  function Be(e) {
2177
2176
  return e;
2178
2177
  }
2179
- function dt(e) {
2178
+ function ht(e) {
2180
2179
  throw e;
2181
2180
  }
2182
2181
  function oi(e, t, i, n) {
@@ -2230,12 +2229,12 @@ function Cr() {
2230
2229
  var s = arguments;
2231
2230
  return r.Deferred(function(u) {
2232
2231
  r.each(t, function(c, f) {
2233
- var d = W(s[f[4]]) && s[f[4]];
2232
+ var h = W(s[f[4]]) && s[f[4]];
2234
2233
  o[f[1]](function() {
2235
- var x = d && d.apply(this, arguments);
2234
+ var x = h && h.apply(this, arguments);
2236
2235
  x && W(x.promise) ? x.promise().progress(u.notify).done(u.resolve).fail(u.reject) : u[f[0] + "With"](
2237
2236
  this,
2238
- d ? [x] : arguments
2237
+ h ? [x] : arguments
2239
2238
  );
2240
2239
  });
2241
2240
  }), s = null;
@@ -2243,7 +2242,7 @@ function Cr() {
2243
2242
  },
2244
2243
  then: function(s, u, c) {
2245
2244
  var f = 0;
2246
- function d(x, T, m, S) {
2245
+ function h(x, T, m, S) {
2247
2246
  return function() {
2248
2247
  var P = this, z = arguments, _ = function() {
2249
2248
  var ne, be;
@@ -2255,13 +2254,13 @@ function Cr() {
2255
2254
  // Only check objects and functions for thenability
2256
2255
  (typeof ne == "object" || typeof ne == "function") && ne.then, W(be) ? S ? be.call(
2257
2256
  ne,
2258
- d(f, T, Be, S),
2259
- d(f, T, dt, S)
2257
+ h(f, T, Be, S),
2258
+ h(f, T, ht, S)
2260
2259
  ) : (f++, be.call(
2261
2260
  ne,
2262
- d(f, T, Be, S),
2263
- d(f, T, dt, S),
2264
- d(
2261
+ h(f, T, Be, S),
2262
+ h(f, T, ht, S),
2263
+ h(
2265
2264
  f,
2266
2265
  T,
2267
2266
  Be,
@@ -2276,7 +2275,7 @@ function Cr() {
2276
2275
  r.Deferred.exceptionHook && r.Deferred.exceptionHook(
2277
2276
  ne,
2278
2277
  oe.error
2279
- ), x + 1 >= f && (m !== dt && (P = void 0, z = [ne]), T.rejectWith(P, z));
2278
+ ), x + 1 >= f && (m !== ht && (P = void 0, z = [ne]), T.rejectWith(P, z));
2280
2279
  }
2281
2280
  };
2282
2281
  x ? oe() : (r.Deferred.getErrorHook ? oe.error = r.Deferred.getErrorHook() : r.Deferred.getStackHook && (oe.error = r.Deferred.getStackHook()), a.setTimeout(oe));
@@ -2284,23 +2283,23 @@ function Cr() {
2284
2283
  }
2285
2284
  return r.Deferred(function(x) {
2286
2285
  t[0][3].add(
2287
- d(
2286
+ h(
2288
2287
  0,
2289
2288
  x,
2290
2289
  W(c) ? c : Be,
2291
2290
  x.notifyWith
2292
2291
  )
2293
2292
  ), t[1][3].add(
2294
- d(
2293
+ h(
2295
2294
  0,
2296
2295
  x,
2297
2296
  W(s) ? s : Be
2298
2297
  )
2299
2298
  ), t[2][3].add(
2300
- d(
2299
+ h(
2301
2300
  0,
2302
2301
  x,
2303
- W(u) ? u : dt
2302
+ W(u) ? u : ht
2304
2303
  )
2305
2304
  );
2306
2305
  }).promise();
@@ -2384,13 +2383,13 @@ function Cr() {
2384
2383
  }
2385
2384
  L.readyState === "complete" || L.readyState !== "loading" && !L.documentElement.doScroll ? a.setTimeout(r.ready) : (L.addEventListener("DOMContentLoaded", pt), a.addEventListener("load", pt));
2386
2385
  var Ee = function(e, t, i, n, o, s, u) {
2387
- var c = 0, f = e.length, d = i == null;
2386
+ var c = 0, f = e.length, h = i == null;
2388
2387
  if (We(i) === "object") {
2389
2388
  o = !0;
2390
2389
  for (c in i)
2391
2390
  Ee(e, t, c, i[c], !0, s, u);
2392
- } else if (n !== void 0 && (o = !0, W(n) || (u = !0), d && (u ? (t.call(e, n), t = null) : (d = t, t = function(x, T, m) {
2393
- return d.call(r(x), m);
2391
+ } else if (n !== void 0 && (o = !0, W(n) || (u = !0), h && (u ? (t.call(e, n), t = null) : (h = t, t = function(x, T, m) {
2392
+ return h.call(r(x), m);
2394
2393
  })), t))
2395
2394
  for (; c < f; c++)
2396
2395
  t(
@@ -2398,7 +2397,7 @@ function Cr() {
2398
2397
  i,
2399
2398
  u ? n : n.call(e[c], c, t(e[c], i))
2400
2399
  );
2401
- return o ? e : d ? t.call(e) : f ? t(e[0], i) : s;
2400
+ return o ? e : h ? t.call(e) : f ? t(e[0], i) : s;
2402
2401
  }, tn = /^-ms-/, nn = /-([a-z])/g;
2403
2402
  function rn(e, t) {
2404
2403
  return t.toUpperCase();
@@ -2581,13 +2580,13 @@ function Cr() {
2581
2580
  return n.cur();
2582
2581
  } : function() {
2583
2582
  return r.css(e, t, "");
2584
- }, f = c(), d = i && i[3] || (r.cssNumber[t] ? "" : "px"), x = e.nodeType && (r.cssNumber[t] || d !== "px" && +f) && it.exec(r.css(e, t));
2585
- if (x && x[3] !== d) {
2586
- for (f = f / 2, d = d || x[3], x = +f || 1; u--; )
2587
- r.style(e, t, x + d), (1 - s) * (1 - (s = c() / f || 0.5)) <= 0 && (u = 0), x = x / s;
2588
- x = x * 2, r.style(e, t, x + d), i = i || [];
2583
+ }, f = c(), h = i && i[3] || (r.cssNumber[t] ? "" : "px"), x = e.nodeType && (r.cssNumber[t] || h !== "px" && +f) && it.exec(r.css(e, t));
2584
+ if (x && x[3] !== h) {
2585
+ for (f = f / 2, h = h || x[3], x = +f || 1; u--; )
2586
+ r.style(e, t, x + h), (1 - s) * (1 - (s = c() / f || 0.5)) <= 0 && (u = 0), x = x / s;
2587
+ x = x * 2, r.style(e, t, x + h), i = i || [];
2589
2588
  }
2590
- return i && (x = +x || +f || 0, o = i[1] ? x + (i[1] + 1) * i[2] : +i[2], n && (n.unit = d, n.start = x, n.end = o)), o;
2589
+ return i && (x = +x || +f || 0, o = i[1] ? x + (i[1] + 1) * i[2] : +i[2], n && (n.unit = h, n.start = x, n.end = o)), o;
2591
2590
  }
2592
2591
  var li = {};
2593
2592
  function ln(e) {
@@ -2619,7 +2618,7 @@ function Cr() {
2619
2618
  var e = L.createDocumentFragment(), t = e.appendChild(L.createElement("div")), i = L.createElement("input");
2620
2619
  i.setAttribute("type", "radio"), i.setAttribute("checked", "checked"), i.setAttribute("name", "t"), t.appendChild(i), j.checkClone = t.cloneNode(!0).cloneNode(!0).lastChild.checked, t.innerHTML = "<textarea>x</textarea>", j.noCloneChecked = !!t.cloneNode(!0).lastChild.defaultValue, t.innerHTML = "<option></option>", j.option = !!t.lastChild;
2621
2620
  })();
2622
- var de = {
2621
+ var he = {
2623
2622
  // XHTML parsers do not magically insert elements in the
2624
2623
  // same way that tag soup parsers do. So we cannot shorten
2625
2624
  // this by omitting <tbody> or other required elements.
@@ -2629,7 +2628,7 @@ function Cr() {
2629
2628
  td: [3, "<table><tbody><tr>", "</tr></tbody></table>"],
2630
2629
  _default: [0, "", ""]
2631
2630
  };
2632
- de.tbody = de.tfoot = de.colgroup = de.caption = de.thead, de.th = de.td, j.option || (de.optgroup = de.option = [1, "<select multiple='multiple'>", "</select>"]);
2631
+ he.tbody = he.tfoot = he.colgroup = he.caption = he.thead, he.th = he.td, j.option || (he.optgroup = he.option = [1, "<select multiple='multiple'>", "</select>"]);
2633
2632
  function le(e, t) {
2634
2633
  var i;
2635
2634
  return typeof e.getElementsByTagName < "u" ? i = e.getElementsByTagName(t || "*") : typeof e.querySelectorAll < "u" ? i = e.querySelectorAll(t || "*") : i = [], t === void 0 || t && K(e, t) ? r.merge([e], i) : i;
@@ -2643,15 +2642,15 @@ function Cr() {
2643
2642
  );
2644
2643
  }
2645
2644
  var fn = /<|&#?\w+;/;
2646
- function hi(e, t, i, n, o) {
2647
- for (var s, u, c, f, d, x, T = t.createDocumentFragment(), m = [], S = 0, P = e.length; S < P; S++)
2645
+ function di(e, t, i, n, o) {
2646
+ for (var s, u, c, f, h, x, T = t.createDocumentFragment(), m = [], S = 0, P = e.length; S < P; S++)
2648
2647
  if (s = e[S], s || s === 0)
2649
2648
  if (We(s) === "object")
2650
2649
  r.merge(m, s.nodeType ? [s] : s);
2651
2650
  else if (!fn.test(s))
2652
2651
  m.push(t.createTextNode(s));
2653
2652
  else {
2654
- for (u = u || T.appendChild(t.createElement("div")), c = (fi.exec(s) || ["", ""])[1].toLowerCase(), f = de[c] || de._default, u.innerHTML = f[1] + r.htmlPrefilter(s) + f[2], x = f[0]; x--; )
2653
+ for (u = u || T.appendChild(t.createElement("div")), c = (fi.exec(s) || ["", ""])[1].toLowerCase(), f = he[c] || he._default, u.innerHTML = f[1] + r.htmlPrefilter(s) + f[2], x = f[0]; x--; )
2655
2654
  u = u.lastChild;
2656
2655
  r.merge(m, u.childNodes), u = T.firstChild, u.textContent = "";
2657
2656
  }
@@ -2660,13 +2659,13 @@ function Cr() {
2660
2659
  o && o.push(s);
2661
2660
  continue;
2662
2661
  }
2663
- if (d = Ve(s), u = le(T.appendChild(s), "script"), d && Nt(u), i)
2662
+ if (h = Ve(s), u = le(T.appendChild(s), "script"), h && Nt(u), i)
2664
2663
  for (x = 0; s = u[x++]; )
2665
2664
  ci.test(s.type || "") && i.push(s);
2666
2665
  }
2667
2666
  return T;
2668
2667
  }
2669
- var di = /^([^.]*)(?:\.(.+)|)/;
2668
+ var hi = /^([^.]*)(?:\.(.+)|)/;
2670
2669
  function $e() {
2671
2670
  return !0;
2672
2671
  }
@@ -2694,12 +2693,12 @@ function Cr() {
2694
2693
  r.event = {
2695
2694
  global: {},
2696
2695
  add: function(e, t, i, n, o) {
2697
- var s, u, c, f, d, x, T, m, S, P, z, _ = I.get(e);
2696
+ var s, u, c, f, h, x, T, m, S, P, z, _ = I.get(e);
2698
2697
  if (et(e))
2699
2698
  for (i.handler && (s = i, i = s.handler, o = s.selector), o && r.find.matchesSelector(je, o), i.guid || (i.guid = r.guid++), (f = _.events) || (f = _.events = /* @__PURE__ */ Object.create(null)), (u = _.handle) || (u = _.handle = function(oe) {
2700
2699
  return typeof r < "u" && r.event.triggered !== oe.type ? r.event.dispatch.apply(e, arguments) : void 0;
2701
- }), t = (t || "").match(ve) || [""], d = t.length; d--; )
2702
- c = di.exec(t[d]) || [], S = z = c[1], P = (c[2] || "").split(".").sort(), S && (T = r.event.special[S] || {}, S = (o ? T.delegateType : T.bindType) || S, T = r.event.special[S] || {}, x = r.extend({
2700
+ }), t = (t || "").match(ve) || [""], h = t.length; h--; )
2701
+ c = hi.exec(t[h]) || [], S = z = c[1], P = (c[2] || "").split(".").sort(), S && (T = r.event.special[S] || {}, S = (o ? T.delegateType : T.bindType) || S, T = r.event.special[S] || {}, x = r.extend({
2703
2702
  type: S,
2704
2703
  origType: z,
2705
2704
  data: n,
@@ -2712,12 +2711,12 @@ function Cr() {
2712
2711
  },
2713
2712
  // Detach an event or set of events from an element
2714
2713
  remove: function(e, t, i, n, o) {
2715
- var s, u, c, f, d, x, T, m, S, P, z, _ = I.hasData(e) && I.get(e);
2714
+ var s, u, c, f, h, x, T, m, S, P, z, _ = I.hasData(e) && I.get(e);
2716
2715
  if (!(!_ || !(f = _.events))) {
2717
- for (t = (t || "").match(ve) || [""], d = t.length; d--; ) {
2718
- if (c = di.exec(t[d]) || [], S = z = c[1], P = (c[2] || "").split(".").sort(), !S) {
2716
+ for (t = (t || "").match(ve) || [""], h = t.length; h--; ) {
2717
+ if (c = hi.exec(t[h]) || [], S = z = c[1], P = (c[2] || "").split(".").sort(), !S) {
2719
2718
  for (S in f)
2720
- r.event.remove(e, S + t[d], i, n, !0);
2719
+ r.event.remove(e, S + t[h], i, n, !0);
2721
2720
  continue;
2722
2721
  }
2723
2722
  for (T = r.event.special[S] || {}, S = (n ? T.delegateType : T.bindType) || S, m = f[S] || [], c = c[2] && new RegExp("(^|\\.)" + P.join("\\.(?:.*\\.|)") + "(\\.|$)"), u = s = m.length; s--; )
@@ -2728,34 +2727,34 @@ function Cr() {
2728
2727
  }
2729
2728
  },
2730
2729
  dispatch: function(e) {
2731
- var t, i, n, o, s, u, c = new Array(arguments.length), f = r.event.fix(e), d = (I.get(this, "events") || /* @__PURE__ */ Object.create(null))[f.type] || [], x = r.event.special[f.type] || {};
2730
+ var t, i, n, o, s, u, c = new Array(arguments.length), f = r.event.fix(e), h = (I.get(this, "events") || /* @__PURE__ */ Object.create(null))[f.type] || [], x = r.event.special[f.type] || {};
2732
2731
  for (c[0] = f, t = 1; t < arguments.length; t++)
2733
2732
  c[t] = arguments[t];
2734
2733
  if (f.delegateTarget = this, !(x.preDispatch && x.preDispatch.call(this, f) === !1)) {
2735
- for (u = r.event.handlers.call(this, f, d), t = 0; (o = u[t++]) && !f.isPropagationStopped(); )
2734
+ for (u = r.event.handlers.call(this, f, h), t = 0; (o = u[t++]) && !f.isPropagationStopped(); )
2736
2735
  for (f.currentTarget = o.elem, i = 0; (s = o.handlers[i++]) && !f.isImmediatePropagationStopped(); )
2737
2736
  (!f.rnamespace || s.namespace === !1 || f.rnamespace.test(s.namespace)) && (f.handleObj = s, f.data = s.data, n = ((r.event.special[s.origType] || {}).handle || s.handler).apply(o.elem, c), n !== void 0 && (f.result = n) === !1 && (f.preventDefault(), f.stopPropagation()));
2738
2737
  return x.postDispatch && x.postDispatch.call(this, f), f.result;
2739
2738
  }
2740
2739
  },
2741
2740
  handlers: function(e, t) {
2742
- var i, n, o, s, u, c = [], f = t.delegateCount, d = e.target;
2741
+ var i, n, o, s, u, c = [], f = t.delegateCount, h = e.target;
2743
2742
  if (f && // Support: IE <=9
2744
2743
  // Black-hole SVG <use> instance trees (trac-13180)
2745
- d.nodeType && // Support: Firefox <=42
2744
+ h.nodeType && // Support: Firefox <=42
2746
2745
  // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)
2747
2746
  // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click
2748
2747
  // Support: IE 11 only
2749
2748
  // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343)
2750
2749
  !(e.type === "click" && e.button >= 1)) {
2751
- for (; d !== this; d = d.parentNode || this)
2752
- if (d.nodeType === 1 && !(e.type === "click" && d.disabled === !0)) {
2750
+ for (; h !== this; h = h.parentNode || this)
2751
+ if (h.nodeType === 1 && !(e.type === "click" && h.disabled === !0)) {
2753
2752
  for (s = [], u = {}, i = 0; i < f; i++)
2754
- n = t[i], o = n.selector + " ", u[o] === void 0 && (u[o] = n.needsContext ? r(o, this).index(d) > -1 : r.find(o, this, null, [d]).length), u[o] && s.push(n);
2755
- s.length && c.push({ elem: d, handlers: s });
2753
+ n = t[i], o = n.selector + " ", u[o] === void 0 && (u[o] = n.needsContext ? r(o, this).index(h) > -1 : r.find(o, this, null, [h]).length), u[o] && s.push(n);
2754
+ s.length && c.push({ elem: h, handlers: s });
2756
2755
  }
2757
2756
  }
2758
- return d = this, f < t.length && c.push({ elem: d, handlers: t.slice(f) }), c;
2757
+ return h = this, f < t.length && c.push({ elem: h, handlers: t.slice(f) }), c;
2759
2758
  },
2760
2759
  addProp: function(e, t) {
2761
2760
  Object.defineProperty(r.Event.prototype, e, {
@@ -2975,7 +2974,7 @@ function Cr() {
2975
2974
  });
2976
2975
  }
2977
2976
  });
2978
- var cn = /<script|<style|<link/i, hn = /checked\s*(?:[^=]|=\s*.checked.)/i, dn = /^\s*<!\[CDATA\[|\]\]>\s*$/g;
2977
+ var cn = /<script|<style|<link/i, dn = /checked\s*(?:[^=]|=\s*.checked.)/i, hn = /^\s*<!\[CDATA\[|\]\]>\s*$/g;
2979
2978
  function pi(e, t) {
2980
2979
  return K(e, "table") && K(t.nodeType !== 11 ? t : t.firstChild, "tr") && r(e).children("tbody")[0] || e;
2981
2980
  }
@@ -3003,20 +3002,20 @@ function Cr() {
3003
3002
  }
3004
3003
  function Xe(e, t, i, n) {
3005
3004
  t = D(t);
3006
- var o, s, u, c, f, d, x = 0, T = e.length, m = T - 1, S = t[0], P = W(S);
3007
- if (P || T > 1 && typeof S == "string" && !j.checkClone && hn.test(S))
3005
+ var o, s, u, c, f, h, x = 0, T = e.length, m = T - 1, S = t[0], P = W(S);
3006
+ if (P || T > 1 && typeof S == "string" && !j.checkClone && dn.test(S))
3008
3007
  return e.each(function(z) {
3009
3008
  var _ = e.eq(z);
3010
3009
  P && (t[0] = S.call(this, z, _.html())), Xe(_, t, i, n);
3011
3010
  });
3012
- if (T && (o = hi(t, e[0].ownerDocument, !1, e, n), s = o.firstChild, o.childNodes.length === 1 && (o = s), s || n)) {
3011
+ if (T && (o = di(t, e[0].ownerDocument, !1, e, n), s = o.firstChild, o.childNodes.length === 1 && (o = s), s || n)) {
3013
3012
  for (u = r.map(le(o, "script"), pn), c = u.length; x < T; x++)
3014
3013
  f = o, x !== m && (f = r.clone(f, !0, !0), c && r.merge(u, le(f, "script"))), i.call(e[x], f, x);
3015
3014
  if (c)
3016
- for (d = u[u.length - 1].ownerDocument, r.map(u, gn), x = 0; x < c; x++)
3017
- f = u[x], ci.test(f.type || "") && !I.access(f, "globalEval") && r.contains(d, f) && (f.src && (f.type || "").toLowerCase() !== "module" ? r._evalUrl && !f.noModule && r._evalUrl(f.src, {
3015
+ for (h = u[u.length - 1].ownerDocument, r.map(u, gn), x = 0; x < c; x++)
3016
+ f = u[x], ci.test(f.type || "") && !I.access(f, "globalEval") && r.contains(h, f) && (f.src && (f.type || "").toLowerCase() !== "module" ? r._evalUrl && !f.noModule && r._evalUrl(f.src, {
3018
3017
  nonce: f.nonce || f.getAttribute("nonce")
3019
- }, d) : Ke(f.textContent.replace(dn, ""), f, d));
3018
+ }, h) : Ke(f.textContent.replace(hn, ""), f, h));
3020
3019
  }
3021
3020
  return e;
3022
3021
  }
@@ -3109,7 +3108,7 @@ function Cr() {
3109
3108
  var i = this[0] || {}, n = 0, o = this.length;
3110
3109
  if (t === void 0 && i.nodeType === 1)
3111
3110
  return i.innerHTML;
3112
- if (typeof t == "string" && !cn.test(t) && !de[(fi.exec(t) || ["", ""])[1].toLowerCase()]) {
3111
+ if (typeof t == "string" && !cn.test(t) && !he[(fi.exec(t) || ["", ""])[1].toLowerCase()]) {
3113
3112
  t = r.htmlPrefilter(t);
3114
3113
  try {
3115
3114
  for (; n < o; n++)
@@ -3141,7 +3140,7 @@ function Cr() {
3141
3140
  return this.pushStack(o);
3142
3141
  };
3143
3142
  });
3144
- var It = new RegExp("^(" + ai + ")(?!px)[a-z%]+$", "i"), qt = /^--/, mt = function(e) {
3143
+ var It = new RegExp("^(" + ai + ")(?!px)[a-z%]+$", "i"), Mt = /^--/, mt = function(e) {
3145
3144
  var t = e.ownerDocument.defaultView;
3146
3145
  return (!t || !t.opener) && (t = a), t.getComputedStyle(e);
3147
3146
  }, mi = function(e, t, i) {
@@ -3155,17 +3154,17 @@ function Cr() {
3155
3154
  }, mn = new RegExp(Ae.join("|"), "i");
3156
3155
  (function() {
3157
3156
  function e() {
3158
- if (d) {
3159
- f.style.cssText = "position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0", d.style.cssText = "position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%", je.appendChild(f).appendChild(d);
3160
- var x = a.getComputedStyle(d);
3161
- i = x.top !== "1%", c = t(x.marginLeft) === 12, d.style.right = "60%", s = t(x.right) === 36, n = t(x.width) === 36, d.style.position = "absolute", o = t(d.offsetWidth / 3) === 12, je.removeChild(f), d = null;
3157
+ if (h) {
3158
+ f.style.cssText = "position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0", h.style.cssText = "position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%", je.appendChild(f).appendChild(h);
3159
+ var x = a.getComputedStyle(h);
3160
+ i = x.top !== "1%", c = t(x.marginLeft) === 12, h.style.right = "60%", s = t(x.right) === 36, n = t(x.width) === 36, h.style.position = "absolute", o = t(h.offsetWidth / 3) === 12, je.removeChild(f), h = null;
3162
3161
  }
3163
3162
  }
3164
3163
  function t(x) {
3165
3164
  return Math.round(parseFloat(x));
3166
3165
  }
3167
- var i, n, o, s, u, c, f = L.createElement("div"), d = L.createElement("div");
3168
- d.style && (d.style.backgroundClip = "content-box", d.cloneNode(!0).style.backgroundClip = "", j.clearCloneStyle = d.style.backgroundClip === "content-box", r.extend(j, {
3166
+ var i, n, o, s, u, c, f = L.createElement("div"), h = L.createElement("div");
3167
+ h.style && (h.style.backgroundClip = "content-box", h.cloneNode(!0).style.backgroundClip = "", j.clearCloneStyle = h.style.backgroundClip === "content-box", r.extend(j, {
3169
3168
  boxSizingReliable: function() {
3170
3169
  return e(), n;
3171
3170
  },
@@ -3197,7 +3196,7 @@ function Cr() {
3197
3196
  }));
3198
3197
  })();
3199
3198
  function rt(e, t, i) {
3200
- var n, o, s, u, c = qt.test(t), f = e.style;
3199
+ var n, o, s, u, c = Mt.test(t), f = e.style;
3201
3200
  return i = i || mt(e), i && (u = i.getPropertyValue(t) || i[t], c && u && (u = u.replace(Ze, "$1") || void 0), u === "" && !Ve(e) && (u = r.style(e, t)), !j.pixelBoxStyles() && It.test(u) && mn.test(t) && (n = f.width, o = f.minWidth, s = f.maxWidth, f.minWidth = f.maxWidth = f.width = u, u = i.width, f.width = n, f.minWidth = o, f.maxWidth = s)), u !== void 0 ? (
3202
3201
  // Support: IE <=9 - 11 only
3203
3202
  // IE returns zIndex value as an integer.
@@ -3221,7 +3220,7 @@ function Cr() {
3221
3220
  if (e = xi[i] + t, e in bi)
3222
3221
  return e;
3223
3222
  }
3224
- function Mt(e) {
3223
+ function qt(e) {
3225
3224
  var t = r.cssProps[e] || Ti[e];
3226
3225
  return t || (e in bi ? e : Ti[e] = vn(e) || e);
3227
3226
  }
@@ -3237,16 +3236,16 @@ function Cr() {
3237
3236
  ) : t;
3238
3237
  }
3239
3238
  function jt(e, t, i, n, o, s) {
3240
- var u = t === "width" ? 1 : 0, c = 0, f = 0, d = 0;
3239
+ var u = t === "width" ? 1 : 0, c = 0, f = 0, h = 0;
3241
3240
  if (i === (n ? "border" : "content"))
3242
3241
  return 0;
3243
3242
  for (; u < 4; u += 2)
3244
- i === "margin" && (d += r.css(e, i + Ae[u], !0, o)), n ? (i === "content" && (f -= r.css(e, "padding" + Ae[u], !0, o)), i !== "margin" && (f -= r.css(e, "border" + Ae[u] + "Width", !0, o))) : (f += r.css(e, "padding" + Ae[u], !0, o), i !== "padding" ? f += r.css(e, "border" + Ae[u] + "Width", !0, o) : c += r.css(e, "border" + Ae[u] + "Width", !0, o));
3243
+ i === "margin" && (h += r.css(e, i + Ae[u], !0, o)), n ? (i === "content" && (f -= r.css(e, "padding" + Ae[u], !0, o)), i !== "margin" && (f -= r.css(e, "border" + Ae[u] + "Width", !0, o))) : (f += r.css(e, "padding" + Ae[u], !0, o), i !== "padding" ? f += r.css(e, "border" + Ae[u] + "Width", !0, o) : c += r.css(e, "border" + Ae[u] + "Width", !0, o));
3245
3244
  return !n && s >= 0 && (f += Math.max(0, Math.ceil(
3246
3245
  e["offset" + t[0].toUpperCase() + t.slice(1)] - s - f - c - 0.5
3247
3246
  // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter
3248
3247
  // Use an explicit zero to avoid NaN (gh-3964)
3249
- )) || 0), f + d;
3248
+ )) || 0), f + h;
3250
3249
  }
3251
3250
  function Ci(e, t, i) {
3252
3251
  var n = mt(e), o = !j.boxSizingReliable() || i, s = o && r.css(e, "boxSizing", !1, n) === "border-box", u = s, c = rt(e, t, n), f = "offset" + t[0].toUpperCase() + t.slice(1);
@@ -3324,18 +3323,18 @@ function Cr() {
3324
3323
  // Get and set the style property on a DOM Node
3325
3324
  style: function(e, t, i, n) {
3326
3325
  if (!(!e || e.nodeType === 3 || e.nodeType === 8 || !e.style)) {
3327
- var o, s, u, c = xe(t), f = qt.test(t), d = e.style;
3328
- if (f || (t = Mt(c)), u = r.cssHooks[t] || r.cssHooks[c], i !== void 0) {
3326
+ var o, s, u, c = xe(t), f = Mt.test(t), h = e.style;
3327
+ if (f || (t = qt(c)), u = r.cssHooks[t] || r.cssHooks[c], i !== void 0) {
3329
3328
  if (s = typeof i, s === "string" && (o = it.exec(i)) && o[1] && (i = ui(e, t, o), s = "number"), i == null || i !== i)
3330
3329
  return;
3331
- s === "number" && !f && (i += o && o[3] || (r.cssNumber[c] ? "" : "px")), !j.clearCloneStyle && i === "" && t.indexOf("background") === 0 && (d[t] = "inherit"), (!u || !("set" in u) || (i = u.set(e, i, n)) !== void 0) && (f ? d.setProperty(t, i) : d[t] = i);
3330
+ s === "number" && !f && (i += o && o[3] || (r.cssNumber[c] ? "" : "px")), !j.clearCloneStyle && i === "" && t.indexOf("background") === 0 && (h[t] = "inherit"), (!u || !("set" in u) || (i = u.set(e, i, n)) !== void 0) && (f ? h.setProperty(t, i) : h[t] = i);
3332
3331
  } else
3333
- return u && "get" in u && (o = u.get(e, !1, n)) !== void 0 ? o : d[t];
3332
+ return u && "get" in u && (o = u.get(e, !1, n)) !== void 0 ? o : h[t];
3334
3333
  }
3335
3334
  },
3336
3335
  css: function(e, t, i, n) {
3337
- var o, s, u, c = xe(t), f = qt.test(t);
3338
- return f || (t = Mt(c)), u = r.cssHooks[t] || r.cssHooks[c], u && "get" in u && (o = u.get(e, !0, i)), o === void 0 && (o = rt(e, t, n)), o === "normal" && t in wi && (o = wi[t]), i === "" || i ? (s = parseFloat(o), i === !0 || isFinite(s) ? s || 0 : o) : o;
3336
+ var o, s, u, c = xe(t), f = Mt.test(t);
3337
+ return f || (t = qt(c)), u = r.cssHooks[t] || r.cssHooks[c], u && "get" in u && (o = u.get(e, !0, i)), o === void 0 && (o = rt(e, t, n)), o === "normal" && t in wi && (o = wi[t]), i === "" || i ? (s = parseFloat(o), i === !0 || isFinite(s) ? s || 0 : o) : o;
3339
3338
  }
3340
3339
  }), r.each(["height", "width"], function(e, t) {
3341
3340
  r.cssHooks[t] = {
@@ -3352,14 +3351,14 @@ function Cr() {
3352
3351
  }) : Ci(i, t, o);
3353
3352
  },
3354
3353
  set: function(i, n, o) {
3355
- var s, u = mt(i), c = !j.scrollboxSize() && u.position === "absolute", f = c || o, d = f && r.css(i, "boxSizing", !1, u) === "border-box", x = o ? jt(
3354
+ var s, u = mt(i), c = !j.scrollboxSize() && u.position === "absolute", f = c || o, h = f && r.css(i, "boxSizing", !1, u) === "border-box", x = o ? jt(
3356
3355
  i,
3357
3356
  t,
3358
3357
  o,
3359
- d,
3358
+ h,
3360
3359
  u
3361
3360
  ) : 0;
3362
- return d && c && (x -= Math.ceil(
3361
+ return h && c && (x -= Math.ceil(
3363
3362
  i["offset" + t[0].toUpperCase() + t.slice(1)] - parseFloat(u[t]) - jt(i, t, "border", !1, u) - 0.5
3364
3363
  )), x && (s = it.exec(n)) && (s[3] || "px") !== "px" && (i.style[t] = n, n = r.css(i, t)), Si(i, n, x);
3365
3364
  }
@@ -3426,7 +3425,7 @@ function Cr() {
3426
3425
  return e.elem.nodeType !== 1 || e.elem[e.prop] != null && e.elem.style[e.prop] == null ? e.elem[e.prop] : (t = r.css(e.elem, e.prop, ""), !t || t === "auto" ? 0 : t);
3427
3426
  },
3428
3427
  set: function(e) {
3429
- r.fx.step[e.prop] ? r.fx.step[e.prop](e) : e.elem.nodeType === 1 && (r.cssHooks[e.prop] || e.elem.style[Mt(e.prop)] != null) ? r.style(e.elem, e.prop, e.now + e.unit) : e.elem[e.prop] = e.now;
3428
+ r.fx.step[e.prop] ? r.fx.step[e.prop](e) : e.elem.nodeType === 1 && (r.cssHooks[e.prop] || e.elem.style[qt(e.prop)] != null) ? r.style(e.elem, e.prop, e.now + e.unit) : e.elem[e.prop] = e.now;
3430
3429
  }
3431
3430
  }
3432
3431
  }, fe.propHooks.scrollTop = fe.propHooks.scrollLeft = {
@@ -3463,7 +3462,7 @@ function Cr() {
3463
3462
  return n;
3464
3463
  }
3465
3464
  function Sn(e, t, i) {
3466
- var n, o, s, u, c, f, d, x, T = "width" in t || "height" in t, m = this, S = {}, P = e.style, z = e.nodeType && gt(e), _ = I.get(e, "fxshow");
3465
+ var n, o, s, u, c, f, h, x, T = "width" in t || "height" in t, m = this, S = {}, P = e.style, z = e.nodeType && gt(e), _ = I.get(e, "fxshow");
3467
3466
  i.queue || (u = r._queueHooks(e, "fx"), u.unqueued == null && (u.unqueued = 0, c = u.empty.fire, u.empty.fire = function() {
3468
3467
  u.unqueued || c();
3469
3468
  }), u.unqueued++, m.always(function() {
@@ -3481,13 +3480,13 @@ function Cr() {
3481
3480
  S[n] = _ && _[n] || r.style(e, n);
3482
3481
  }
3483
3482
  if (f = !r.isEmptyObject(t), !(!f && r.isEmptyObject(S))) {
3484
- T && e.nodeType === 1 && (i.overflow = [P.overflow, P.overflowX, P.overflowY], d = _ && _.display, d == null && (d = I.get(e, "display")), x = r.css(e, "display"), x === "none" && (d ? x = d : (Ue([e], !0), d = e.style.display || d, x = r.css(e, "display"), Ue([e]))), (x === "inline" || x === "inline-block" && d != null) && r.css(e, "float") === "none" && (f || (m.done(function() {
3485
- P.display = d;
3486
- }), d == null && (x = P.display, d = x === "none" ? "" : x)), P.display = "inline-block")), i.overflow && (P.overflow = "hidden", m.always(function() {
3483
+ T && e.nodeType === 1 && (i.overflow = [P.overflow, P.overflowX, P.overflowY], h = _ && _.display, h == null && (h = I.get(e, "display")), x = r.css(e, "display"), x === "none" && (h ? x = h : (Ue([e], !0), h = e.style.display || h, x = r.css(e, "display"), Ue([e]))), (x === "inline" || x === "inline-block" && h != null) && r.css(e, "float") === "none" && (f || (m.done(function() {
3484
+ P.display = h;
3485
+ }), h == null && (x = P.display, h = x === "none" ? "" : x)), P.display = "inline-block")), i.overflow && (P.overflow = "hidden", m.always(function() {
3487
3486
  P.overflow = i.overflow[0], P.overflowX = i.overflow[1], P.overflowY = i.overflow[2];
3488
3487
  })), f = !1;
3489
3488
  for (n in S)
3490
- f || (_ ? "hidden" in _ && (z = _.hidden) : _ = I.access(e, "fxshow", { display: d }), s && (_.hidden = !z), z && Ue([e], !0), m.done(function() {
3489
+ f || (_ ? "hidden" in _ && (z = _.hidden) : _ = I.access(e, "fxshow", { display: h }), s && (_.hidden = !z), z && Ue([e], !0), m.done(function() {
3491
3490
  z || Ue([e]), I.remove(e, "fxshow");
3492
3491
  for (n in S)
3493
3492
  r.style(e, n, S[n]);
@@ -3510,10 +3509,10 @@ function Cr() {
3510
3509
  }), f = function() {
3511
3510
  if (o)
3512
3511
  return !1;
3513
- for (var T = Ge || ki(), m = Math.max(0, d.startTime + d.duration - T), S = m / d.duration || 0, P = 1 - S, z = 0, _ = d.tweens.length; z < _; z++)
3514
- d.tweens[z].run(P);
3515
- return c.notifyWith(e, [d, P, m]), P < 1 && _ ? m : (_ || c.notifyWith(e, [d, 1, 0]), c.resolveWith(e, [d]), !1);
3516
- }, d = c.promise({
3512
+ for (var T = Ge || ki(), m = Math.max(0, h.startTime + h.duration - T), S = m / h.duration || 0, P = 1 - S, z = 0, _ = h.tweens.length; z < _; z++)
3513
+ h.tweens[z].run(P);
3514
+ return c.notifyWith(e, [h, P, m]), P < 1 && _ ? m : (_ || c.notifyWith(e, [h, 1, 0]), c.resolveWith(e, [h]), !1);
3515
+ }, h = c.promise({
3517
3516
  elem: e,
3518
3517
  props: r.extend({}, t),
3519
3518
  opts: r.extend(!0, {
@@ -3528,32 +3527,32 @@ function Cr() {
3528
3527
  createTween: function(T, m) {
3529
3528
  var S = r.Tween(
3530
3529
  e,
3531
- d.opts,
3530
+ h.opts,
3532
3531
  T,
3533
3532
  m,
3534
- d.opts.specialEasing[T] || d.opts.easing
3533
+ h.opts.specialEasing[T] || h.opts.easing
3535
3534
  );
3536
- return d.tweens.push(S), S;
3535
+ return h.tweens.push(S), S;
3537
3536
  },
3538
3537
  stop: function(T) {
3539
- var m = 0, S = T ? d.tweens.length : 0;
3538
+ var m = 0, S = T ? h.tweens.length : 0;
3540
3539
  if (o)
3541
3540
  return this;
3542
3541
  for (o = !0; m < S; m++)
3543
- d.tweens[m].run(1);
3544
- return T ? (c.notifyWith(e, [d, 1, 0]), c.resolveWith(e, [d, T])) : c.rejectWith(e, [d, T]), this;
3542
+ h.tweens[m].run(1);
3543
+ return T ? (c.notifyWith(e, [h, 1, 0]), c.resolveWith(e, [h, T])) : c.rejectWith(e, [h, T]), this;
3545
3544
  }
3546
- }), x = d.props;
3547
- for (Cn(x, d.opts.specialEasing); s < u; s++)
3548
- if (n = ye.prefilters[s].call(d, e, x, d.opts), n)
3549
- return W(n.stop) && (r._queueHooks(d.elem, d.opts.queue).stop = n.stop.bind(n)), n;
3550
- return r.map(x, Ei, d), W(d.opts.start) && d.opts.start.call(e, d), d.progress(d.opts.progress).done(d.opts.done, d.opts.complete).fail(d.opts.fail).always(d.opts.always), r.fx.timer(
3545
+ }), x = h.props;
3546
+ for (Cn(x, h.opts.specialEasing); s < u; s++)
3547
+ if (n = ye.prefilters[s].call(h, e, x, h.opts), n)
3548
+ return W(n.stop) && (r._queueHooks(h.elem, h.opts.queue).stop = n.stop.bind(n)), n;
3549
+ return r.map(x, Ei, h), W(h.opts.start) && h.opts.start.call(e, h), h.progress(h.opts.progress).done(h.opts.done, h.opts.complete).fail(h.opts.fail).always(h.opts.always), r.fx.timer(
3551
3550
  r.extend(f, {
3552
3551
  elem: e,
3553
- anim: d,
3554
- queue: d.opts.queue
3552
+ anim: h,
3553
+ queue: h.opts.queue
3555
3554
  })
3556
- ), d;
3555
+ ), h;
3557
3556
  }
3558
3557
  r.Animation = r.extend(ye, {
3559
3558
  tweeners: {
@@ -3897,7 +3896,7 @@ function Cr() {
3897
3896
  };
3898
3897
  r.extend(r.event, {
3899
3898
  trigger: function(e, t, i, n) {
3900
- var o, s, u, c, f, d, x, T, m = [i || L], S = Z.call(e, "type") ? e.type : e, P = Z.call(e, "namespace") ? e.namespace.split(".") : [];
3899
+ var o, s, u, c, f, h, x, T, m = [i || L], S = Z.call(e, "type") ? e.type : e, P = Z.call(e, "namespace") ? e.namespace.split(".") : [];
3901
3900
  if (s = T = u = i = i || L, !(i.nodeType === 3 || i.nodeType === 8) && !Ri.test(S + r.event.triggered) && (S.indexOf(".") > -1 && (P = S.split("."), S = P.shift(), P.sort()), f = S.indexOf(":") < 0 && "on" + S, e = e[r.expando] ? e : new r.Event(S, typeof e == "object" && e), e.isTrigger = n ? 2 : 3, e.namespace = P.join("."), e.rnamespace = e.namespace ? new RegExp("(^|\\.)" + P.join("\\.(?:.*\\.|)") + "(\\.|$)") : null, e.result = void 0, e.target || (e.target = i), t = t == null ? [e] : r.makeArray(t, [e]), x = r.event.special[S] || {}, !(!n && x.trigger && x.trigger.apply(i, t) === !1))) {
3902
3901
  if (!n && !x.noBubble && !Ne(i)) {
3903
3902
  for (c = x.delegateType || S, Ri.test(c + S) || (s = s.parentNode); s; s = s.parentNode)
@@ -3905,7 +3904,7 @@ function Cr() {
3905
3904
  u === (i.ownerDocument || L) && m.push(u.defaultView || u.parentWindow || a);
3906
3905
  }
3907
3906
  for (o = 0; (s = m[o++]) && !e.isPropagationStopped(); )
3908
- T = s, e.type = o > 1 ? c : x.bindType || S, d = (I.get(s, "events") || /* @__PURE__ */ Object.create(null))[e.type] && I.get(s, "handle"), d && d.apply(s, t), d = f && s[f], d && d.apply && et(s) && (e.result = d.apply(s, t), e.result === !1 && e.preventDefault());
3907
+ T = s, e.type = o > 1 ? c : x.bindType || S, h = (I.get(s, "events") || /* @__PURE__ */ Object.create(null))[e.type] && I.get(s, "handle"), h && h.apply(s, t), h = f && s[f], h && h.apply && et(s) && (e.result = h.apply(s, t), e.result === !1 && e.preventDefault());
3909
3908
  return e.type = S, !n && !e.isDefaultPrevented() && (!x._default || x._default.apply(m.pop(), t) === !1) && et(i) && f && W(i[S]) && !Ne(i) && (u = i[f], u && (i[f] = null), r.event.triggered = S, e.isPropagationStopped() && T.addEventListener(S, Ni), i[S](), e.isPropagationStopped() && T.removeEventListener(S, Ni), r.event.triggered = void 0, u && (i[f] = u)), e.result;
3910
3909
  }
3911
3910
  },
@@ -3988,9 +3987,9 @@ function Cr() {
3988
3987
  }).get();
3989
3988
  }
3990
3989
  });
3991
- var Ln = /%20/g, In = /#.*$/, qn = /([?&])_=[^&]*/, Mn = /^(.*?):[ \t]*([^\r\n]*)$/mg, jn = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, Hn = /^(?:GET|HEAD)$/, Pn = /^\/\//, Ii = {}, Wt = {}, qi = "*/".concat("*"), _t = L.createElement("a");
3990
+ var Ln = /%20/g, In = /#.*$/, Mn = /([?&])_=[^&]*/, qn = /^(.*?):[ \t]*([^\r\n]*)$/mg, jn = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, Hn = /^(?:GET|HEAD)$/, Pn = /^\/\//, Ii = {}, Wt = {}, Mi = "*/".concat("*"), _t = L.createElement("a");
3992
3991
  _t.href = st.href;
3993
- function Mi(e) {
3992
+ function qi(e) {
3994
3993
  return function(t, i) {
3995
3994
  typeof t != "string" && (i = t, t = "*");
3996
3995
  var n, o = 0, s = t.toLowerCase().match(ve) || [];
@@ -4003,7 +4002,7 @@ function Cr() {
4003
4002
  var o = {}, s = e === Wt;
4004
4003
  function u(c) {
4005
4004
  var f;
4006
- return o[c] = !0, r.each(e[c] || [], function(d, x) {
4005
+ return o[c] = !0, r.each(e[c] || [], function(h, x) {
4007
4006
  var T = x(t, i, n);
4008
4007
  if (typeof T == "string" && !s && !o[T])
4009
4008
  return t.dataTypes.unshift(T), u(T), !1;
@@ -4045,19 +4044,19 @@ function Cr() {
4045
4044
  return s !== f[0] && f.unshift(s), i[s];
4046
4045
  }
4047
4046
  function On(e, t, i, n) {
4048
- var o, s, u, c, f, d = {}, x = e.dataTypes.slice();
4047
+ var o, s, u, c, f, h = {}, x = e.dataTypes.slice();
4049
4048
  if (x[1])
4050
4049
  for (u in e.converters)
4051
- d[u.toLowerCase()] = e.converters[u];
4050
+ h[u.toLowerCase()] = e.converters[u];
4052
4051
  for (s = x.shift(); s; )
4053
4052
  if (e.responseFields[s] && (i[e.responseFields[s]] = t), !f && n && e.dataFilter && (t = e.dataFilter(t, e.dataType)), f = s, s = x.shift(), s) {
4054
4053
  if (s === "*")
4055
4054
  s = f;
4056
4055
  else if (f !== "*" && f !== s) {
4057
- if (u = d[f + " " + s] || d["* " + s], !u) {
4058
- for (o in d)
4059
- if (c = o.split(" "), c[1] === s && (u = d[f + " " + c[0]] || d["* " + c[0]], u)) {
4060
- u === !0 ? u = d[o] : d[o] !== !0 && (s = c[0], x.unshift(c[1]));
4056
+ if (u = h[f + " " + s] || h["* " + s], !u) {
4057
+ for (o in h)
4058
+ if (c = o.split(" "), c[1] === s && (u = h[f + " " + c[0]] || h["* " + c[0]], u)) {
4059
+ u === !0 ? u = h[o] : h[o] !== !0 && (s = c[0], x.unshift(c[1]));
4061
4060
  break;
4062
4061
  }
4063
4062
  }
@@ -4103,7 +4102,7 @@ function Cr() {
4103
4102
  headers: {},
4104
4103
  */
4105
4104
  accepts: {
4106
- "*": qi,
4105
+ "*": Mi,
4107
4106
  text: "text/plain",
4108
4107
  html: "text/html",
4109
4108
  xml: "application/xml, text/xml",
@@ -4152,19 +4151,19 @@ function Cr() {
4152
4151
  Bt(r.ajaxSettings, e)
4153
4152
  );
4154
4153
  },
4155
- ajaxPrefilter: Mi(Ii),
4156
- ajaxTransport: Mi(Wt),
4154
+ ajaxPrefilter: qi(Ii),
4155
+ ajaxTransport: qi(Wt),
4157
4156
  // Main method
4158
4157
  ajax: function(e, t) {
4159
4158
  typeof e == "object" && (t = e, e = void 0), t = t || {};
4160
- var i, n, o, s, u, c, f, d, x, T, m = r.ajaxSetup({}, t), S = m.context || m, P = m.context && (S.nodeType || S.jquery) ? r(S) : r.event, z = r.Deferred(), _ = r.Callbacks("once memory"), oe = m.statusCode || {}, ne = {}, be = {}, Te = "canceled", U = {
4159
+ var i, n, o, s, u, c, f, h, x, T, m = r.ajaxSetup({}, t), S = m.context || m, P = m.context && (S.nodeType || S.jquery) ? r(S) : r.event, z = r.Deferred(), _ = r.Callbacks("once memory"), oe = m.statusCode || {}, ne = {}, be = {}, Te = "canceled", U = {
4161
4160
  readyState: 0,
4162
4161
  // Builds headers hashtable if needed
4163
4162
  getResponseHeader: function(X) {
4164
4163
  var te;
4165
4164
  if (f) {
4166
4165
  if (!s)
4167
- for (s = {}; te = Mn.exec(o); )
4166
+ for (s = {}; te = qn.exec(o); )
4168
4167
  s[te[1].toLowerCase() + " "] = (s[te[1].toLowerCase() + " "] || []).concat(te[2]);
4169
4168
  te = s[X.toLowerCase() + " "];
4170
4169
  }
@@ -4209,9 +4208,9 @@ function Cr() {
4209
4208
  }
4210
4209
  if (m.data && m.processData && typeof m.data != "string" && (m.data = r.param(m.data, m.traditional)), ji(Ii, m, t, U), f)
4211
4210
  return U;
4212
- d = r.event && m.global, d && r.active++ === 0 && r.event.trigger("ajaxStart"), m.type = m.type.toUpperCase(), m.hasContent = !Hn.test(m.type), n = m.url.replace(In, ""), m.hasContent ? m.data && m.processData && (m.contentType || "").indexOf("application/x-www-form-urlencoded") === 0 && (m.data = m.data.replace(Ln, "+")) : (T = m.url.slice(n.length), m.data && (m.processData || typeof m.data == "string") && (n += (Ft.test(n) ? "&" : "?") + m.data, delete m.data), m.cache === !1 && (n = n.replace(qn, "$1"), T = (Ft.test(n) ? "&" : "?") + "_=" + Di.guid++ + T), m.url = n + T), m.ifModified && (r.lastModified[n] && U.setRequestHeader("If-Modified-Since", r.lastModified[n]), r.etag[n] && U.setRequestHeader("If-None-Match", r.etag[n])), (m.data && m.hasContent && m.contentType !== !1 || t.contentType) && U.setRequestHeader("Content-Type", m.contentType), U.setRequestHeader(
4211
+ h = r.event && m.global, h && r.active++ === 0 && r.event.trigger("ajaxStart"), m.type = m.type.toUpperCase(), m.hasContent = !Hn.test(m.type), n = m.url.replace(In, ""), m.hasContent ? m.data && m.processData && (m.contentType || "").indexOf("application/x-www-form-urlencoded") === 0 && (m.data = m.data.replace(Ln, "+")) : (T = m.url.slice(n.length), m.data && (m.processData || typeof m.data == "string") && (n += (Ft.test(n) ? "&" : "?") + m.data, delete m.data), m.cache === !1 && (n = n.replace(Mn, "$1"), T = (Ft.test(n) ? "&" : "?") + "_=" + Di.guid++ + T), m.url = n + T), m.ifModified && (r.lastModified[n] && U.setRequestHeader("If-Modified-Since", r.lastModified[n]), r.etag[n] && U.setRequestHeader("If-None-Match", r.etag[n])), (m.data && m.hasContent && m.contentType !== !1 || t.contentType) && U.setRequestHeader("Content-Type", m.contentType), U.setRequestHeader(
4213
4212
  "Accept",
4214
- m.dataTypes[0] && m.accepts[m.dataTypes[0]] ? m.accepts[m.dataTypes[0]] + (m.dataTypes[0] !== "*" ? ", " + qi + "; q=0.01" : "") : m.accepts["*"]
4213
+ m.dataTypes[0] && m.accepts[m.dataTypes[0]] ? m.accepts[m.dataTypes[0]] + (m.dataTypes[0] !== "*" ? ", " + Mi + "; q=0.01" : "") : m.accepts["*"]
4215
4214
  );
4216
4215
  for (x in m.headers)
4217
4216
  U.setRequestHeader(x, m.headers[x]);
@@ -4220,7 +4219,7 @@ function Cr() {
4220
4219
  if (Te = "abort", _.add(m.complete), U.done(m.success), U.fail(m.error), i = ji(Wt, m, t, U), !i)
4221
4220
  Fe(-1, "No Transport");
4222
4221
  else {
4223
- if (U.readyState = 1, d && P.trigger("ajaxSend", [U, m]), f)
4222
+ if (U.readyState = 1, h && P.trigger("ajaxSend", [U, m]), f)
4224
4223
  return U;
4225
4224
  m.async && m.timeout > 0 && (u = a.setTimeout(function() {
4226
4225
  U.abort("timeout");
@@ -4234,12 +4233,12 @@ function Cr() {
4234
4233
  }
4235
4234
  }
4236
4235
  function Fe(X, te, ut, Ut) {
4237
- var we, lt, Se, Ie, qe, pe = te;
4236
+ var we, lt, Se, Ie, Me, pe = te;
4238
4237
  f || (f = !0, u && a.clearTimeout(u), i = void 0, o = Ut || "", U.readyState = X > 0 ? 4 : 0, we = X >= 200 && X < 300 || X === 304, ut && (Ie = Fn(m, U, ut)), !we && r.inArray("script", m.dataTypes) > -1 && r.inArray("json", m.dataTypes) < 0 && (m.converters["text script"] = function() {
4239
- }), Ie = On(m, Ie, U, we), we ? (m.ifModified && (qe = U.getResponseHeader("Last-Modified"), qe && (r.lastModified[n] = qe), qe = U.getResponseHeader("etag"), qe && (r.etag[n] = qe)), X === 204 || m.type === "HEAD" ? pe = "nocontent" : X === 304 ? pe = "notmodified" : (pe = Ie.state, lt = Ie.data, Se = Ie.error, we = !Se)) : (Se = pe, (X || !pe) && (pe = "error", X < 0 && (X = 0))), U.status = X, U.statusText = (te || pe) + "", we ? z.resolveWith(S, [lt, pe, U]) : z.rejectWith(S, [U, pe, Se]), U.statusCode(oe), oe = void 0, d && P.trigger(
4238
+ }), Ie = On(m, Ie, U, we), we ? (m.ifModified && (Me = U.getResponseHeader("Last-Modified"), Me && (r.lastModified[n] = Me), Me = U.getResponseHeader("etag"), Me && (r.etag[n] = Me)), X === 204 || m.type === "HEAD" ? pe = "nocontent" : X === 304 ? pe = "notmodified" : (pe = Ie.state, lt = Ie.data, Se = Ie.error, we = !Se)) : (Se = pe, (X || !pe) && (pe = "error", X < 0 && (X = 0))), U.status = X, U.statusText = (te || pe) + "", we ? z.resolveWith(S, [lt, pe, U]) : z.rejectWith(S, [U, pe, Se]), U.statusCode(oe), oe = void 0, h && P.trigger(
4240
4239
  we ? "ajaxSuccess" : "ajaxError",
4241
4240
  [U, m, we ? lt : Se]
4242
- ), _.fireWith(S, [U, pe]), d && (P.trigger("ajaxComplete", [U, m]), --r.active || r.event.trigger("ajaxStop")));
4241
+ ), _.fireWith(S, [U, pe]), h && (P.trigger("ajaxComplete", [U, m]), --r.active || r.event.trigger("ajaxStop")));
4243
4242
  }
4244
4243
  return U;
4245
4244
  },
@@ -4434,7 +4433,7 @@ function Cr() {
4434
4433
  return [];
4435
4434
  typeof t == "boolean" && (i = t, t = !1);
4436
4435
  var n, o, s;
4437
- return t || (j.createHTMLDocument ? (t = L.implementation.createHTMLDocument(""), n = t.createElement("base"), n.href = L.location.href, t.head.appendChild(n)) : t = L), o = ii.exec(e), s = !i && [], o ? [t.createElement(o[1])] : (o = hi([e], t, s), s && s.length && r(s).remove(), r.merge([], o.childNodes));
4436
+ return t || (j.createHTMLDocument ? (t = L.implementation.createHTMLDocument(""), n = t.createElement("base"), n.href = L.location.href, t.head.appendChild(n)) : t = L), o = ii.exec(e), s = !i && [], o ? [t.createElement(o[1])] : (o = di([e], t, s), s && s.length && r(s).remove(), r.merge([], o.childNodes));
4438
4437
  }, r.fn.load = function(e, t, i) {
4439
4438
  var n, o, s, u = this, c = e.indexOf(" ");
4440
4439
  return c > -1 && (n = He(e.slice(c)), e = e.slice(0, c)), W(t) ? (i = t, t = void 0) : t && typeof t == "object" && (o = "POST"), u.length > 0 && r.ajax({
@@ -4454,9 +4453,9 @@ function Cr() {
4454
4453
  // Otherwise use the full result
4455
4454
  f
4456
4455
  ));
4457
- }).always(i && function(f, d) {
4456
+ }).always(i && function(f, h) {
4458
4457
  u.each(function() {
4459
- i.apply(this, s || [f.responseText, d, f]);
4458
+ i.apply(this, s || [f.responseText, h, f]);
4460
4459
  });
4461
4460
  }), this;
4462
4461
  }, r.expr.pseudos.animated = function(e) {
@@ -4465,8 +4464,8 @@ function Cr() {
4465
4464
  }).length;
4466
4465
  }, r.offset = {
4467
4466
  setOffset: function(e, t, i) {
4468
- var n, o, s, u, c, f, d, x = r.css(e, "position"), T = r(e), m = {};
4469
- x === "static" && (e.style.position = "relative"), c = T.offset(), s = r.css(e, "top"), f = r.css(e, "left"), d = (x === "absolute" || x === "fixed") && (s + f).indexOf("auto") > -1, d ? (n = T.position(), u = n.top, o = n.left) : (u = parseFloat(s) || 0, o = parseFloat(f) || 0), W(t) && (t = t.call(e, i, r.extend({}, c))), t.top != null && (m.top = t.top - c.top + u), t.left != null && (m.left = t.left - c.left + o), "using" in t ? t.using.call(e, m) : T.css(m);
4467
+ var n, o, s, u, c, f, h, x = r.css(e, "position"), T = r(e), m = {};
4468
+ x === "static" && (e.style.position = "relative"), c = T.offset(), s = r.css(e, "top"), f = r.css(e, "left"), h = (x === "absolute" || x === "fixed") && (s + f).indexOf("auto") > -1, h ? (n = T.position(), u = n.top, o = n.left) : (u = parseFloat(s) || 0, o = parseFloat(f) || 0), W(t) && (t = t.call(e, i, r.extend({}, c))), t.top != null && (m.top = t.top - c.top + u), t.left != null && (m.left = t.left - c.left + o), "using" in t ? t.using.call(e, m) : T.css(m);
4470
4469
  }
4471
4470
  }, r.fn.extend({
4472
4471
  // offset() relates an element's border box to the document origin
@@ -4546,7 +4545,7 @@ function Cr() {
4546
4545
  }, function(i, n) {
4547
4546
  r.fn[n] = function(o, s) {
4548
4547
  var u = arguments.length && (i || typeof o != "boolean"), c = i || (o === !0 || s === !0 ? "margin" : "border");
4549
- return Ee(this, function(f, d, x) {
4548
+ return Ee(this, function(f, h, x) {
4550
4549
  var T;
4551
4550
  return Ne(f) ? n.indexOf("outer") === 0 ? f["inner" + e] : f.document.documentElement["client" + e] : f.nodeType === 9 ? (T = f.documentElement, Math.max(
4552
4551
  f.body["scroll" + e],
@@ -4556,10 +4555,10 @@ function Cr() {
4556
4555
  T["client" + e]
4557
4556
  )) : x === void 0 ? (
4558
4557
  // Get width or height on the element, requesting but not forcing parseFloat
4559
- r.css(f, d, c)
4558
+ r.css(f, h, c)
4560
4559
  ) : (
4561
4560
  // Set width or height on the element
4562
- r.style(f, d, x, c)
4561
+ r.style(f, h, x, c)
4563
4562
  );
4564
4563
  }, t, u ? o : void 0, u);
4565
4564
  };
@@ -4630,6 +4629,19 @@ class Ar {
4630
4629
  constructor() {
4631
4630
  this.canvasEl = null, this.opt = null, this.el = null, this.$el = null, this.player = null, console.log("MnPlayer constructor");
4632
4631
  }
4632
+ /* 判断是否支持硬解码 */
4633
+ async isSupportHardDecode() {
4634
+ if (!("VideoDecoder" in window) || !("EncodedVideoChunk" in window))
4635
+ return !1;
4636
+ const a = ["avc1.42001E", "vp8", "vp9", "av1"];
4637
+ for (const p of a)
4638
+ try {
4639
+ if (await VideoDecoder.isConfigSupported({ codec: p }))
4640
+ return !0;
4641
+ } catch {
4642
+ }
4643
+ return !1;
4644
+ }
4633
4645
  /* 参数配置,初始化dom */
4634
4646
  init(a) {
4635
4647
  this.opt = a, this.el = a.el, this.$el = Er(a.el), this.initDom(), ee.port = this.opt.port, ee.host = this.opt.host, ee.ws = this.opt.ws, ee.userId = this.opt.userId, ee.tenantId = this.opt.tenantId, ee.token = this.opt.accessToken, this.player = new ee(