@eluvio/elv-player-js 2.0.13 → 2.0.15
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.
- package/dist/.vite/manifest.json +17 -17
- package/dist/{Analytics-BpQvXFBN.js → Analytics-DPetaW-d.js} +1 -1
- package/dist/{Analytics-C2aNIlgB.mjs → Analytics-JJE0W0Gi.mjs} +1 -1
- package/dist/{dash.all.min-CvyuA1qu.js → dash.all.min-Cda_OrlB.js} +1 -1
- package/dist/{dash.all.min-4KPdfQy9.mjs → dash.all.min-D16RxkcD.mjs} +1 -1
- package/dist/elv-player-js.cjs.js +1 -1
- package/dist/elv-player-js.css +1 -1
- package/dist/elv-player-js.es.js +1 -1
- package/dist/{index-BbdUj9ed.mjs → index-BkrmVSC9.mjs} +1 -1
- package/dist/{index-DpcTzcxF.js → index-DEQMVi8H.js} +1 -1
- package/dist/{index-cfJzxx0E.js → index-DroBoz_S.js} +29 -29
- package/dist/{index-vNV4wecA.mjs → index-DzRFOeaS.mjs} +759 -742
- package/lib/player/Player.js +29 -6
- package/lib/player/PlayerParameters.js +5 -0
- package/lib/static/stylesheets/controls-web.module.scss +7 -6
- package/lib/ui/Components.jsx +1 -1
- package/lib/ui/PlayerProfileForm.jsx +1 -1
- package/lib/ui/TVControls.jsx +8 -4
- package/lib/ui/WebControls.jsx +7 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const
|
|
1
|
+
const jt = {
|
|
2
2
|
ui: {
|
|
3
3
|
WEB: "web",
|
|
4
4
|
TV: "tv"
|
|
@@ -88,10 +88,14 @@ const qt = {
|
|
|
88
88
|
verifyContent: {
|
|
89
89
|
OFF: !1,
|
|
90
90
|
ON: !0
|
|
91
|
+
},
|
|
92
|
+
liveDVR: {
|
|
93
|
+
OFF: !1,
|
|
94
|
+
ON: !0
|
|
91
95
|
}
|
|
92
96
|
}, UG = {
|
|
93
97
|
clientOptions: {
|
|
94
|
-
network:
|
|
98
|
+
network: jt.networks.MAIN,
|
|
95
99
|
client: void 0,
|
|
96
100
|
staticToken: void 0,
|
|
97
101
|
tenantId: void 0,
|
|
@@ -104,16 +108,16 @@ const qt = {
|
|
|
104
108
|
},
|
|
105
109
|
sourceOptions: {
|
|
106
110
|
protocols: [
|
|
107
|
-
|
|
108
|
-
|
|
111
|
+
jt.protocols.HLS,
|
|
112
|
+
jt.protocols.DASH
|
|
109
113
|
],
|
|
110
114
|
drms: [
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
115
|
+
jt.drms.FAIRPLAY,
|
|
116
|
+
jt.drms.SAMPLE_AES,
|
|
117
|
+
jt.drms.AES128,
|
|
118
|
+
jt.drms.WIDEVINE,
|
|
119
|
+
jt.drms.CLEAR,
|
|
120
|
+
jt.drms.PLAYREADY
|
|
117
121
|
],
|
|
118
122
|
contentInfo: {
|
|
119
123
|
title: void 0,
|
|
@@ -121,7 +125,8 @@ const qt = {
|
|
|
121
125
|
description: void 0,
|
|
122
126
|
image: void 0,
|
|
123
127
|
posterImage: void 0,
|
|
124
|
-
type:
|
|
128
|
+
type: jt.type.VOD,
|
|
129
|
+
liveDVR: jt.liveDVR.OFF,
|
|
125
130
|
headers: []
|
|
126
131
|
},
|
|
127
132
|
mediaCollectionOptions: {
|
|
@@ -150,19 +155,19 @@ const qt = {
|
|
|
150
155
|
playerOptions: {
|
|
151
156
|
appName: void 0,
|
|
152
157
|
backgroundColor: void 0,
|
|
153
|
-
ui:
|
|
154
|
-
controls:
|
|
155
|
-
autoplay:
|
|
156
|
-
muted:
|
|
157
|
-
loop:
|
|
158
|
-
watermark:
|
|
159
|
-
keyboardControls:
|
|
160
|
-
capLevelToPlayerSize:
|
|
161
|
-
title:
|
|
162
|
-
playerProfile:
|
|
163
|
-
collectVideoAnalytics:
|
|
164
|
-
verifyContent:
|
|
165
|
-
showLoader:
|
|
158
|
+
ui: jt.ui.WEB,
|
|
159
|
+
controls: jt.controls.AUTO_HIDE,
|
|
160
|
+
autoplay: jt.autoplay.OFF,
|
|
161
|
+
muted: jt.muted.OFF,
|
|
162
|
+
loop: jt.loop.OFF,
|
|
163
|
+
watermark: jt.watermark.ON,
|
|
164
|
+
keyboardControls: jt.keyboardControls.ON,
|
|
165
|
+
capLevelToPlayerSize: jt.capLevelToPlayerSize.OFF,
|
|
166
|
+
title: jt.title.ON,
|
|
167
|
+
playerProfile: jt.playerProfile.DEFAULT,
|
|
168
|
+
collectVideoAnalytics: jt.collectVideoAnalytics.ON,
|
|
169
|
+
verifyContent: jt.verifyContent.OFF,
|
|
170
|
+
showLoader: jt.showLoader.ON,
|
|
166
171
|
hlsjsOptions: void 0,
|
|
167
172
|
dashjsOptions: void 0,
|
|
168
173
|
debugLogging: !1,
|
|
@@ -485,10 +490,10 @@ function BG() {
|
|
|
485
490
|
{
|
|
486
491
|
var Xe = O.ReactDebugCurrentFrame, mt = Xe.getStackAddendum();
|
|
487
492
|
mt !== "" && (Oe += "%s", We = We.concat([mt]));
|
|
488
|
-
var
|
|
493
|
+
var fn = We.map(function(Mt) {
|
|
489
494
|
return String(Mt);
|
|
490
495
|
});
|
|
491
|
-
|
|
496
|
+
fn.unshift("Warning: " + Oe), Function.prototype.apply.call(console[re], console, fn);
|
|
492
497
|
}
|
|
493
498
|
}
|
|
494
499
|
var Q = {};
|
|
@@ -669,9 +674,9 @@ function BG() {
|
|
|
669
674
|
var Xe = re.displayName || null;
|
|
670
675
|
return Xe !== null ? Xe : oe(re.type) || "Memo";
|
|
671
676
|
case S: {
|
|
672
|
-
var mt = re,
|
|
677
|
+
var mt = re, fn = mt._payload, Mt = mt._init;
|
|
673
678
|
try {
|
|
674
|
-
return oe(Mt(
|
|
679
|
+
return oe(Mt(fn));
|
|
675
680
|
} catch {
|
|
676
681
|
return null;
|
|
677
682
|
}
|
|
@@ -679,7 +684,7 @@ function BG() {
|
|
|
679
684
|
}
|
|
680
685
|
return null;
|
|
681
686
|
}
|
|
682
|
-
var Ee = Object.prototype.hasOwnProperty,
|
|
687
|
+
var Ee = Object.prototype.hasOwnProperty, Ne = {
|
|
683
688
|
key: !0,
|
|
684
689
|
ref: !0,
|
|
685
690
|
__self: !0,
|
|
@@ -726,7 +731,7 @@ function BG() {
|
|
|
726
731
|
_t[Oe] || (F('Component "%s" contains the string ref "%s". Support for string refs will be removed in a future major release. This case cannot be automatically converted to an arrow function. We ask you to manually fix this case by using useRef() or createRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref', Oe, re.ref), _t[Oe] = !0);
|
|
727
732
|
}
|
|
728
733
|
}
|
|
729
|
-
var _e = function(re, Oe, We, Xe, mt,
|
|
734
|
+
var _e = function(re, Oe, We, Xe, mt, fn, Mt) {
|
|
730
735
|
var ln = {
|
|
731
736
|
// This tag allows us to uniquely identify this as a React Element
|
|
732
737
|
$$typeof: r,
|
|
@@ -736,7 +741,7 @@ function BG() {
|
|
|
736
741
|
ref: We,
|
|
737
742
|
props: Mt,
|
|
738
743
|
// Record the component responsible for creating this element.
|
|
739
|
-
_owner:
|
|
744
|
+
_owner: fn
|
|
740
745
|
};
|
|
741
746
|
return ln._store = {}, Object.defineProperty(ln._store, "validated", {
|
|
742
747
|
configurable: !1,
|
|
@@ -756,11 +761,11 @@ function BG() {
|
|
|
756
761
|
}), Object.freeze && (Object.freeze(ln.props), Object.freeze(ln)), ln;
|
|
757
762
|
};
|
|
758
763
|
function Re(re, Oe, We) {
|
|
759
|
-
var Xe, mt = {},
|
|
764
|
+
var Xe, mt = {}, fn = null, Mt = null, ln = null, Ln = null;
|
|
760
765
|
if (Oe != null) {
|
|
761
|
-
St(Oe) && (Mt = Oe.ref, ge(Oe)), Z(Oe) && (P(Oe.key),
|
|
766
|
+
St(Oe) && (Mt = Oe.ref, ge(Oe)), Z(Oe) && (P(Oe.key), fn = "" + Oe.key), ln = Oe.__self === void 0 ? null : Oe.__self, Ln = Oe.__source === void 0 ? null : Oe.__source;
|
|
762
767
|
for (Xe in Oe)
|
|
763
|
-
Ee.call(Oe, Xe) && !
|
|
768
|
+
Ee.call(Oe, Xe) && !Ne.hasOwnProperty(Xe) && (mt[Xe] = Oe[Xe]);
|
|
764
769
|
}
|
|
765
770
|
var Jn = arguments.length - 2;
|
|
766
771
|
if (Jn === 1)
|
|
@@ -775,11 +780,11 @@ function BG() {
|
|
|
775
780
|
for (Xe in br)
|
|
776
781
|
mt[Xe] === void 0 && (mt[Xe] = br[Xe]);
|
|
777
782
|
}
|
|
778
|
-
if (
|
|
783
|
+
if (fn || Mt) {
|
|
779
784
|
var xr = typeof re == "function" ? re.displayName || re.name || "Unknown" : re;
|
|
780
|
-
|
|
785
|
+
fn && H(mt, xr), Mt && G(mt, xr);
|
|
781
786
|
}
|
|
782
|
-
return _e(re,
|
|
787
|
+
return _e(re, fn, Mt, ln, Ln, de.current, mt);
|
|
783
788
|
}
|
|
784
789
|
function Be(re, Oe) {
|
|
785
790
|
var We = _e(re.type, Oe, re.ref, re._self, re._source, re._owner, re.props);
|
|
@@ -788,13 +793,13 @@ function BG() {
|
|
|
788
793
|
function wt(re, Oe, We) {
|
|
789
794
|
if (re == null)
|
|
790
795
|
throw new Error("React.cloneElement(...): The argument must be a React element, but you passed " + re + ".");
|
|
791
|
-
var Xe, mt = k({}, re.props),
|
|
796
|
+
var Xe, mt = k({}, re.props), fn = re.key, Mt = re.ref, ln = re._self, Ln = re._source, Jn = re._owner;
|
|
792
797
|
if (Oe != null) {
|
|
793
|
-
St(Oe) && (Mt = Oe.ref, Jn = de.current), Z(Oe) && (P(Oe.key),
|
|
798
|
+
St(Oe) && (Mt = Oe.ref, Jn = de.current), Z(Oe) && (P(Oe.key), fn = "" + Oe.key);
|
|
794
799
|
var vr;
|
|
795
800
|
re.type && re.type.defaultProps && (vr = re.type.defaultProps);
|
|
796
801
|
for (Xe in Oe)
|
|
797
|
-
Ee.call(Oe, Xe) && !
|
|
802
|
+
Ee.call(Oe, Xe) && !Ne.hasOwnProperty(Xe) && (Oe[Xe] === void 0 && vr !== void 0 ? mt[Xe] = vr[Xe] : mt[Xe] = Oe[Xe]);
|
|
798
803
|
}
|
|
799
804
|
var pr = arguments.length - 2;
|
|
800
805
|
if (pr === 1)
|
|
@@ -804,7 +809,7 @@ function BG() {
|
|
|
804
809
|
br[xr] = arguments[xr + 2];
|
|
805
810
|
mt.children = br;
|
|
806
811
|
}
|
|
807
|
-
return _e(re.type,
|
|
812
|
+
return _e(re.type, fn, Mt, ln, Ln, Jn, mt);
|
|
808
813
|
}
|
|
809
814
|
function yt(re) {
|
|
810
815
|
return typeof re == "object" && re !== null && re.$$typeof === r;
|
|
@@ -827,13 +832,13 @@ function BG() {
|
|
|
827
832
|
return typeof re == "object" && re !== null && re.key != null ? (P(re.key), Rt("" + re.key)) : Oe.toString(36);
|
|
828
833
|
}
|
|
829
834
|
function Xr(re, Oe, We, Xe, mt) {
|
|
830
|
-
var
|
|
831
|
-
(
|
|
835
|
+
var fn = typeof re;
|
|
836
|
+
(fn === "undefined" || fn === "boolean") && (re = null);
|
|
832
837
|
var Mt = !1;
|
|
833
838
|
if (re === null)
|
|
834
839
|
Mt = !0;
|
|
835
840
|
else
|
|
836
|
-
switch (
|
|
841
|
+
switch (fn) {
|
|
837
842
|
case "string":
|
|
838
843
|
case "number":
|
|
839
844
|
Mt = !0;
|
|
@@ -876,7 +881,7 @@ function BG() {
|
|
|
876
881
|
cf === qd.entries && (nn || z("Using Maps as children is not supported. Use an array of keyed ReactElements instead."), nn = !0);
|
|
877
882
|
for (var Cm = cf.call(qd), no, Vd = 0; !(no = Cm.next()).done; )
|
|
878
883
|
pr = no.value, br = qn + Wt(pr, Vd++), xr += Xr(pr, Oe, We, br, mt);
|
|
879
|
-
} else if (
|
|
884
|
+
} else if (fn === "object") {
|
|
880
885
|
var Gd = String(re);
|
|
881
886
|
throw new Error("Objects are not valid as a React child (found: " + (Gd === "[object Object]" ? "object with keys {" + Object.keys(re).join(", ") + "}" : Gd) + "). If you meant to render a collection of children, use an array instead.");
|
|
882
887
|
}
|
|
@@ -887,8 +892,8 @@ function BG() {
|
|
|
887
892
|
if (re == null)
|
|
888
893
|
return re;
|
|
889
894
|
var Xe = [], mt = 0;
|
|
890
|
-
return Xr(re, Xe, "", "", function(
|
|
891
|
-
return Oe.call(We,
|
|
895
|
+
return Xr(re, Xe, "", "", function(fn) {
|
|
896
|
+
return Oe.call(We, fn, mt++);
|
|
892
897
|
}), Xe;
|
|
893
898
|
}
|
|
894
899
|
function In(re) {
|
|
@@ -938,11 +943,11 @@ function BG() {
|
|
|
938
943
|
};
|
|
939
944
|
var We = !1, Xe = !1, mt = !1;
|
|
940
945
|
{
|
|
941
|
-
var
|
|
946
|
+
var fn = {
|
|
942
947
|
$$typeof: h,
|
|
943
948
|
_context: Oe
|
|
944
949
|
};
|
|
945
|
-
Object.defineProperties(
|
|
950
|
+
Object.defineProperties(fn, {
|
|
946
951
|
Provider: {
|
|
947
952
|
get: function() {
|
|
948
953
|
return Xe || (Xe = !0, F("Rendering <Context.Consumer.Provider> is not supported and will be removed in a future major release. Did you mean to render <Context.Provider> instead?")), Oe.Provider;
|
|
@@ -988,7 +993,7 @@ function BG() {
|
|
|
988
993
|
mt || (z("Setting `displayName` on Context.Consumer has no effect. You should set it directly on the context with Context.displayName = '%s'.", Mt), mt = !0);
|
|
989
994
|
}
|
|
990
995
|
}
|
|
991
|
-
}), Oe.Consumer =
|
|
996
|
+
}), Oe.Consumer = fn;
|
|
992
997
|
}
|
|
993
998
|
return Oe._currentRenderer = null, Oe._currentRenderer2 = null, Oe;
|
|
994
999
|
}
|
|
@@ -996,15 +1001,15 @@ function BG() {
|
|
|
996
1001
|
function Sn(re) {
|
|
997
1002
|
if (re._status === at) {
|
|
998
1003
|
var Oe = re._result, We = Oe();
|
|
999
|
-
if (We.then(function(
|
|
1004
|
+
if (We.then(function(fn) {
|
|
1000
1005
|
if (re._status === ft || re._status === at) {
|
|
1001
1006
|
var Mt = re;
|
|
1002
|
-
Mt._status = Dn, Mt._result =
|
|
1007
|
+
Mt._status = Dn, Mt._result = fn;
|
|
1003
1008
|
}
|
|
1004
|
-
}, function(
|
|
1009
|
+
}, function(fn) {
|
|
1005
1010
|
if (re._status === ft || re._status === at) {
|
|
1006
1011
|
var Mt = re;
|
|
1007
|
-
Mt._status = hn, Mt._result =
|
|
1012
|
+
Mt._status = hn, Mt._result = fn;
|
|
1008
1013
|
}
|
|
1009
1014
|
}), re._status === at) {
|
|
1010
1015
|
var Xe = re;
|
|
@@ -1043,8 +1048,8 @@ Your code should look like:
|
|
|
1043
1048
|
get: function() {
|
|
1044
1049
|
return Xe;
|
|
1045
1050
|
},
|
|
1046
|
-
set: function(
|
|
1047
|
-
F("React.lazy(...): It is not supported to assign `defaultProps` to a lazy component import. Either specify them where the component is defined, or create a wrapping component around it."), Xe =
|
|
1051
|
+
set: function(fn) {
|
|
1052
|
+
F("React.lazy(...): It is not supported to assign `defaultProps` to a lazy component import. Either specify them where the component is defined, or create a wrapping component around it."), Xe = fn, Object.defineProperty(We, "defaultProps", {
|
|
1048
1053
|
enumerable: !0
|
|
1049
1054
|
});
|
|
1050
1055
|
}
|
|
@@ -1054,8 +1059,8 @@ Your code should look like:
|
|
|
1054
1059
|
get: function() {
|
|
1055
1060
|
return mt;
|
|
1056
1061
|
},
|
|
1057
|
-
set: function(
|
|
1058
|
-
F("React.lazy(...): It is not supported to assign `propTypes` to a lazy component import. Either specify them where the component is defined, or create a wrapping component around it."), mt =
|
|
1062
|
+
set: function(fn) {
|
|
1063
|
+
F("React.lazy(...): It is not supported to assign `propTypes` to a lazy component import. Either specify them where the component is defined, or create a wrapping component around it."), mt = fn, Object.defineProperty(We, "propTypes", {
|
|
1059
1064
|
enumerable: !0
|
|
1060
1065
|
});
|
|
1061
1066
|
}
|
|
@@ -1283,8 +1288,8 @@ See https://reactjs.org/link/invalid-hook-call for tips about how to debug and f
|
|
|
1283
1288
|
$u = !0;
|
|
1284
1289
|
var mt = Error.prepareStackTrace;
|
|
1285
1290
|
Error.prepareStackTrace = void 0;
|
|
1286
|
-
var
|
|
1287
|
-
|
|
1291
|
+
var fn;
|
|
1292
|
+
fn = eo.current, eo.current = null, ef();
|
|
1288
1293
|
try {
|
|
1289
1294
|
if (Oe) {
|
|
1290
1295
|
var Mt = function() {
|
|
@@ -1337,7 +1342,7 @@ See https://reactjs.org/link/invalid-hook-call for tips about how to debug and f
|
|
|
1337
1342
|
}
|
|
1338
1343
|
}
|
|
1339
1344
|
} finally {
|
|
1340
|
-
$u = !1, eo.current =
|
|
1345
|
+
$u = !1, eo.current = fn, zu(), Error.prepareStackTrace = mt;
|
|
1341
1346
|
}
|
|
1342
1347
|
var br = re ? re.displayName || re.name : "", xr = br ? ju(br) : "";
|
|
1343
1348
|
return typeof re == "function" && Hu.set(re, xr), xr;
|
|
@@ -1369,9 +1374,9 @@ See https://reactjs.org/link/invalid-hook-call for tips about how to debug and f
|
|
|
1369
1374
|
case g:
|
|
1370
1375
|
return _o(re.type, Oe, We);
|
|
1371
1376
|
case S: {
|
|
1372
|
-
var Xe = re, mt = Xe._payload,
|
|
1377
|
+
var Xe = re, mt = Xe._payload, fn = Xe._init;
|
|
1373
1378
|
try {
|
|
1374
|
-
return _o(
|
|
1379
|
+
return _o(fn(mt), Oe, We);
|
|
1375
1380
|
} catch {
|
|
1376
1381
|
}
|
|
1377
1382
|
}
|
|
@@ -1388,9 +1393,9 @@ See https://reactjs.org/link/invalid-hook-call for tips about how to debug and f
|
|
|
1388
1393
|
}
|
|
1389
1394
|
function af(re, Oe, We, Xe, mt) {
|
|
1390
1395
|
{
|
|
1391
|
-
var
|
|
1396
|
+
var fn = Function.call.bind(Ee);
|
|
1392
1397
|
for (var Mt in re)
|
|
1393
|
-
if (
|
|
1398
|
+
if (fn(re, Mt)) {
|
|
1394
1399
|
var ln = void 0;
|
|
1395
1400
|
try {
|
|
1396
1401
|
if (typeof re[Mt] != "function") {
|
|
@@ -1470,7 +1475,7 @@ Check the top-level render call using <` + We + ">.");
|
|
|
1470
1475
|
else if (re) {
|
|
1471
1476
|
var mt = L(re);
|
|
1472
1477
|
if (typeof mt == "function" && mt !== re.entries)
|
|
1473
|
-
for (var
|
|
1478
|
+
for (var fn = mt.call(re), Mt; !(Mt = fn.next()).done; )
|
|
1474
1479
|
yt(Mt.value) && li(Mt.value, Oe);
|
|
1475
1480
|
}
|
|
1476
1481
|
}
|
|
@@ -1517,8 +1522,8 @@ Check the top-level render call using <` + We + ">.");
|
|
|
1517
1522
|
if (!Xe) {
|
|
1518
1523
|
var mt = "";
|
|
1519
1524
|
(re === void 0 || typeof re == "object" && re !== null && Object.keys(re).length === 0) && (mt += " You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.");
|
|
1520
|
-
var
|
|
1521
|
-
|
|
1525
|
+
var fn = Xl(Oe);
|
|
1526
|
+
fn ? mt += fn : mt += of();
|
|
1522
1527
|
var Mt;
|
|
1523
1528
|
re === null ? Mt = "null" : ue(re) ? Mt = "array" : re !== void 0 && re.$$typeof === r ? (Mt = "<" + (oe(re.type) || "Unknown") + " />", mt = " Did you accidentally export a JSX literal instead of a component?") : Mt = typeof re, F("React.createElement: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s", Mt, mt);
|
|
1524
1529
|
}
|
|
@@ -1570,8 +1575,8 @@ Check the top-level render call using <` + We + ">.");
|
|
|
1570
1575
|
} catch {
|
|
1571
1576
|
Vu = function(mt) {
|
|
1572
1577
|
Zo === !1 && (Zo = !0, typeof MessageChannel > "u" && F("This browser does not have a MessageChannel implementation, so enqueuing tasks via await act(async () => ...) will fail. Please file an issue at https://github.com/facebook/react/issues if you encounter this warning."));
|
|
1573
|
-
var
|
|
1574
|
-
|
|
1578
|
+
var fn = new MessageChannel();
|
|
1579
|
+
fn.port1.onmessage = mt, fn.port2.postMessage(void 0);
|
|
1575
1580
|
};
|
|
1576
1581
|
}
|
|
1577
1582
|
return Vu(re);
|
|
@@ -1593,9 +1598,9 @@ Check the top-level render call using <` + We + ">.");
|
|
|
1593
1598
|
W.isBatchingLegacy = We;
|
|
1594
1599
|
}
|
|
1595
1600
|
if (Xe !== null && typeof Xe == "object" && typeof Xe.then == "function") {
|
|
1596
|
-
var
|
|
1601
|
+
var fn = Xe, Mt = !1, ln = {
|
|
1597
1602
|
then: function(br, xr) {
|
|
1598
|
-
Mt = !0,
|
|
1603
|
+
Mt = !0, fn.then(function(qn) {
|
|
1599
1604
|
As(Oe), Es === 0 ? uf(qn, br, xr) : br(qn);
|
|
1600
1605
|
}, function(qn) {
|
|
1601
1606
|
As(Oe), xr(qn);
|
|
@@ -2021,7 +2026,7 @@ function $G() {
|
|
|
2021
2026
|
}
|
|
2022
2027
|
}
|
|
2023
2028
|
var Ee = Array.isArray;
|
|
2024
|
-
function
|
|
2029
|
+
function Ne(Te) {
|
|
2025
2030
|
return Ee(Te);
|
|
2026
2031
|
}
|
|
2027
2032
|
function Qe(Te) {
|
|
@@ -2200,7 +2205,7 @@ Check the top-level render call using <` + rt + ">.");
|
|
|
2200
2205
|
{
|
|
2201
2206
|
if (typeof Te != "object")
|
|
2202
2207
|
return;
|
|
2203
|
-
if (
|
|
2208
|
+
if (Ne(Te))
|
|
2204
2209
|
for (var rt = 0; rt < Te.length; rt++) {
|
|
2205
2210
|
var Nt = Te[rt];
|
|
2206
2211
|
Xr(Nt) && xe(Nt, et);
|
|
@@ -2262,7 +2267,7 @@ Check the top-level render call using <` + rt + ">.");
|
|
|
2262
2267
|
var dr = In();
|
|
2263
2268
|
dr ? Kt += dr : Kt += Mn();
|
|
2264
2269
|
var jn;
|
|
2265
|
-
Te === null ? jn = "null" :
|
|
2270
|
+
Te === null ? jn = "null" : Ne(Te) ? jn = "array" : Te !== void 0 && Te.$$typeof === e ? (jn = "<" + (C(Te.type) || "Unknown") + " />", Kt = " Did you accidentally export a JSX literal instead of a component?") : jn = typeof Te, L("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s", jn, Kt);
|
|
2266
2271
|
}
|
|
2267
2272
|
var Yn = Rt(Te, et, rt, Ft, Bt);
|
|
2268
2273
|
if (Yn == null)
|
|
@@ -2271,7 +2276,7 @@ Check the top-level render call using <` + rt + ">.");
|
|
|
2271
2276
|
var sa = et.children;
|
|
2272
2277
|
if (sa !== void 0)
|
|
2273
2278
|
if (Nt)
|
|
2274
|
-
if (
|
|
2279
|
+
if (Ne(sa)) {
|
|
2275
2280
|
for (var Ti = 0; Ti < sa.length; Ti++)
|
|
2276
2281
|
ct(sa[Ti], Te);
|
|
2277
2282
|
Object.freeze && Object.freeze(sa);
|
|
@@ -2308,7 +2313,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
2308
2313
|
}()), kv;
|
|
2309
2314
|
}
|
|
2310
2315
|
process.env.NODE_ENV === "production" ? j8.exports = jG() : j8.exports = $G();
|
|
2311
|
-
var
|
|
2316
|
+
var Le = j8.exports;
|
|
2312
2317
|
const HG = "_reset_peka4_2", qG = {
|
|
2313
2318
|
reset: HG
|
|
2314
2319
|
}, VG = "_spinner_psu5w_30", GG = "_controls_psu5w_44", WG = "_video_psu5w_48", KG = "_poster_psu5w_56", Al = {
|
|
@@ -2764,7 +2769,7 @@ function JG() {
|
|
|
2764
2769
|
}
|
|
2765
2770
|
_e > 0 ? P = Math.floor(1e3 / _e) : P = r;
|
|
2766
2771
|
}
|
|
2767
|
-
var
|
|
2772
|
+
var Ne = function() {
|
|
2768
2773
|
if (ye !== null) {
|
|
2769
2774
|
var _e = n.unstable_now();
|
|
2770
2775
|
U = _e;
|
|
@@ -2779,16 +2784,16 @@ function JG() {
|
|
|
2779
2784
|
}, Qe;
|
|
2780
2785
|
if (typeof ae == "function")
|
|
2781
2786
|
Qe = function() {
|
|
2782
|
-
ae(
|
|
2787
|
+
ae(Ne);
|
|
2783
2788
|
};
|
|
2784
2789
|
else if (typeof MessageChannel < "u") {
|
|
2785
2790
|
var st = new MessageChannel(), _t = st.port2;
|
|
2786
|
-
st.port1.onmessage =
|
|
2791
|
+
st.port1.onmessage = Ne, Qe = function() {
|
|
2787
2792
|
_t.postMessage(null);
|
|
2788
2793
|
};
|
|
2789
2794
|
} else
|
|
2790
2795
|
Qe = function() {
|
|
2791
|
-
j(
|
|
2796
|
+
j(Ne, 0);
|
|
2792
2797
|
};
|
|
2793
2798
|
function St(_e) {
|
|
2794
2799
|
ye = _e, te || (te = !0, Qe());
|
|
@@ -3196,7 +3201,7 @@ function QG() {
|
|
|
3196
3201
|
f !== null && (f.selected = !0);
|
|
3197
3202
|
}
|
|
3198
3203
|
}
|
|
3199
|
-
function
|
|
3204
|
+
function Ne(l, f) {
|
|
3200
3205
|
if (f.dangerouslySetInnerHTML != null) throw Error(t(91));
|
|
3201
3206
|
return ae({}, f, { value: void 0, defaultValue: void 0, children: "" + l._wrapperState.initialValue });
|
|
3202
3207
|
}
|
|
@@ -3940,14 +3945,14 @@ function QG() {
|
|
|
3940
3945
|
function mt() {
|
|
3941
3946
|
return !0;
|
|
3942
3947
|
}
|
|
3943
|
-
function
|
|
3948
|
+
function fn() {
|
|
3944
3949
|
return !1;
|
|
3945
3950
|
}
|
|
3946
3951
|
function Mt(l) {
|
|
3947
3952
|
function f(v, E, I, V, le) {
|
|
3948
3953
|
this._reactName = v, this._targetInst = I, this.type = E, this.nativeEvent = V, this.target = le, this.currentTarget = null;
|
|
3949
3954
|
for (var Ae in l) l.hasOwnProperty(Ae) && (v = l[Ae], this[Ae] = v ? v(V) : V[Ae]);
|
|
3950
|
-
return this.isDefaultPrevented = (V.defaultPrevented != null ? V.defaultPrevented : V.returnValue === !1) ? mt :
|
|
3955
|
+
return this.isDefaultPrevented = (V.defaultPrevented != null ? V.defaultPrevented : V.returnValue === !1) ? mt : fn, this.isPropagationStopped = fn, this;
|
|
3951
3956
|
}
|
|
3952
3957
|
return ae(f.prototype, { preventDefault: function() {
|
|
3953
3958
|
this.defaultPrevented = !0;
|
|
@@ -4345,7 +4350,7 @@ function QG() {
|
|
|
4345
4350
|
e: {
|
|
4346
4351
|
var ut = E1.get(l);
|
|
4347
4352
|
if (ut !== void 0) {
|
|
4348
|
-
var Pt = Ln,
|
|
4353
|
+
var Pt = Ln, $t = l;
|
|
4349
4354
|
switch (l) {
|
|
4350
4355
|
case "keypress":
|
|
4351
4356
|
if (Xe(v) === 0) break e;
|
|
@@ -4354,10 +4359,10 @@ function QG() {
|
|
|
4354
4359
|
Pt = d3;
|
|
4355
4360
|
break;
|
|
4356
4361
|
case "focusin":
|
|
4357
|
-
|
|
4362
|
+
$t = "focus", Pt = no;
|
|
4358
4363
|
break;
|
|
4359
4364
|
case "focusout":
|
|
4360
|
-
|
|
4365
|
+
$t = "blur", Pt = no;
|
|
4361
4366
|
break;
|
|
4362
4367
|
case "beforeblur":
|
|
4363
4368
|
case "afterblur":
|
|
@@ -4428,15 +4433,15 @@ function QG() {
|
|
|
4428
4433
|
if (Ve.tag === 5 && vt !== null && (Ve = vt, $e !== null && (vt = at(ze, $e), vt != null && Vt.push(Xd(ze, vt, Ve)))), na) break;
|
|
4429
4434
|
ze = ze.return;
|
|
4430
4435
|
}
|
|
4431
|
-
0 < Vt.length && (ut = new Pt(ut,
|
|
4436
|
+
0 < Vt.length && (ut = new Pt(ut, $t, null, v, lt), dt.push({ event: ut, listeners: Vt }));
|
|
4432
4437
|
}
|
|
4433
4438
|
}
|
|
4434
4439
|
if (!(f & 7)) {
|
|
4435
4440
|
e: {
|
|
4436
|
-
if (ut = l === "mouseover" || l === "pointerover", Pt = l === "mouseout" || l === "pointerout", ut && v !== Rt && (
|
|
4437
|
-
if ((Pt || ut) && (ut = lt.window === lt ? lt : (ut = lt.ownerDocument) ? ut.defaultView || ut.parentWindow : window, Pt ? (
|
|
4438
|
-
if (Vt = eu, vt = "onMouseLeave", $e = "onMouseEnter", ze = "mouse", (l === "pointerout" || l === "pointerover") && (Vt = Dh, vt = "onPointerLeave", $e = "onPointerEnter", ze = "pointer"), na = Pt == null ? ut : gf(Pt), Ve =
|
|
4439
|
-
for (Vt = Pt, $e =
|
|
4441
|
+
if (ut = l === "mouseover" || l === "pointerover", Pt = l === "mouseout" || l === "pointerout", ut && v !== Rt && ($t = v.relatedTarget || v.fromElement) && (Ms($t) || $t[su])) break e;
|
|
4442
|
+
if ((Pt || ut) && (ut = lt.window === lt ? lt : (ut = lt.ownerDocument) ? ut.defaultView || ut.parentWindow : window, Pt ? ($t = v.relatedTarget || v.toElement, Pt = Ye, $t = $t ? Ms($t) : null, $t !== null && (na = Nt($t), $t !== na || $t.tag !== 5 && $t.tag !== 6) && ($t = null)) : (Pt = null, $t = Ye), Pt !== $t)) {
|
|
4443
|
+
if (Vt = eu, vt = "onMouseLeave", $e = "onMouseEnter", ze = "mouse", (l === "pointerout" || l === "pointerover") && (Vt = Dh, vt = "onPointerLeave", $e = "onPointerEnter", ze = "pointer"), na = Pt == null ? ut : gf(Pt), Ve = $t == null ? ut : gf($t), ut = new Vt(vt, ze + "leave", Pt, v, lt), ut.target = na, ut.relatedTarget = Ve, vt = null, Ms(lt) === Ye && (Vt = new Vt($e, ze + "enter", $t, v, lt), Vt.target = Ve, Vt.relatedTarget = na, vt = Vt), na = vt, Pt && $t) t: {
|
|
4444
|
+
for (Vt = Pt, $e = $t, ze = 0, Ve = Vt; Ve; Ve = ac(Ve)) ze++;
|
|
4440
4445
|
for (Ve = 0, vt = $e; vt; vt = ac(vt)) Ve++;
|
|
4441
4446
|
for (; 0 < ze - Ve; ) Vt = ac(Vt), ze--;
|
|
4442
4447
|
for (; 0 < Ve - ze; ) $e = ac($e), Ve--;
|
|
@@ -4447,7 +4452,7 @@ function QG() {
|
|
|
4447
4452
|
Vt = null;
|
|
4448
4453
|
}
|
|
4449
4454
|
else Vt = null;
|
|
4450
|
-
Pt !== null && Bm(dt, ut, Pt, Vt, !1),
|
|
4455
|
+
Pt !== null && Bm(dt, ut, Pt, Vt, !1), $t !== null && na !== null && Bm(dt, na, $t, Vt, !0);
|
|
4451
4456
|
}
|
|
4452
4457
|
}
|
|
4453
4458
|
e: {
|
|
@@ -4455,18 +4460,18 @@ function QG() {
|
|
|
4455
4460
|
else if (c1(ut)) if (Om) Jt = m1;
|
|
4456
4461
|
else {
|
|
4457
4462
|
Jt = g3;
|
|
4458
|
-
var
|
|
4463
|
+
var dn = m3;
|
|
4459
4464
|
}
|
|
4460
4465
|
else (Pt = ut.nodeName) && Pt.toLowerCase() === "input" && (ut.type === "checkbox" || ut.type === "radio") && (Jt = v3);
|
|
4461
4466
|
if (Jt && (Jt = Jt(l, Ye))) {
|
|
4462
4467
|
f1(dt, Jt, v, lt);
|
|
4463
4468
|
break e;
|
|
4464
4469
|
}
|
|
4465
|
-
|
|
4470
|
+
dn && dn(l, ut, Ye), l === "focusout" && (dn = ut._wrapperState) && dn.controlled && ut.type === "number" && ee(ut, "number", ut.value);
|
|
4466
4471
|
}
|
|
4467
|
-
switch (
|
|
4472
|
+
switch (dn = Ye ? gf(Ye) : window, l) {
|
|
4468
4473
|
case "focusin":
|
|
4469
|
-
(c1(
|
|
4474
|
+
(c1(dn) || dn.contentEditable === "true") && (ao = dn, Pm = Ye, Yd = null);
|
|
4470
4475
|
break;
|
|
4471
4476
|
case "focusout":
|
|
4472
4477
|
Yd = Pm = ao = null;
|
|
@@ -4485,7 +4490,7 @@ function QG() {
|
|
|
4485
4490
|
case "keyup":
|
|
4486
4491
|
_1(dt, v, lt);
|
|
4487
4492
|
}
|
|
4488
|
-
var
|
|
4493
|
+
var Ht;
|
|
4489
4494
|
if (ro) e: {
|
|
4490
4495
|
switch (l) {
|
|
4491
4496
|
case "compositionstart":
|
|
@@ -4501,7 +4506,7 @@ function QG() {
|
|
|
4501
4506
|
pn = void 0;
|
|
4502
4507
|
}
|
|
4503
4508
|
else df ? u1(l, v) && (pn = "onCompositionEnd") : l === "keydown" && v.keyCode === 229 && (pn = "onCompositionStart");
|
|
4504
|
-
pn && (s1 && v.locale !== "ko" && (df || pn !== "onCompositionStart" ? pn === "onCompositionEnd" && df && (
|
|
4509
|
+
pn && (s1 && v.locale !== "ko" && (df || pn !== "onCompositionStart" ? pn === "onCompositionEnd" && df && (Ht = We()) : (to = lt, re = "value" in to ? to.value : to.textContent, df = !0)), dn = ep(Ye, pn), 0 < dn.length && (pn = new Am(pn, l, null, v, lt), dt.push({ event: pn, listeners: dn }), Ht ? pn.data = Ht : (Ht = Bh(v), Ht !== null && (pn.data = Ht)))), (Ht = Fh ? h3(l, v) : y3(l, v)) && (Ye = ep(Ye, "onBeforeInput"), 0 < Ye.length && (lt = new Am("onBeforeInput", "beforeinput", null, v, lt), dt.push({ event: lt, listeners: Ye }), lt.data = Ht));
|
|
4505
4510
|
}
|
|
4506
4511
|
Hh(dt, f);
|
|
4507
4512
|
});
|
|
@@ -4908,31 +4913,31 @@ function QG() {
|
|
|
4908
4913
|
case de:
|
|
4909
4914
|
return $e = $e.get(vt.key === null ? Ve : vt.key) || null, Ye(ze, $e, vt, Jt);
|
|
4910
4915
|
case z:
|
|
4911
|
-
var
|
|
4912
|
-
return Pt($e, ze, Ve,
|
|
4916
|
+
var dn = vt._init;
|
|
4917
|
+
return Pt($e, ze, Ve, dn(vt._payload), Jt);
|
|
4913
4918
|
}
|
|
4914
4919
|
if (oe(vt) || Q(vt)) return $e = $e.get(Ve) || null, lt(ze, $e, vt, Jt, null);
|
|
4915
4920
|
Eo(ze, vt);
|
|
4916
4921
|
}
|
|
4917
4922
|
return null;
|
|
4918
4923
|
}
|
|
4919
|
-
function
|
|
4920
|
-
for (var Jt = null,
|
|
4921
|
-
|
|
4922
|
-
var nr = ut($e,
|
|
4924
|
+
function $t($e, ze, Ve, vt) {
|
|
4925
|
+
for (var Jt = null, dn = null, Ht = ze, pn = ze = 0, Sa = null; Ht !== null && pn < Ve.length; pn++) {
|
|
4926
|
+
Ht.index > pn ? (Sa = Ht, Ht = null) : Sa = Ht.sibling;
|
|
4927
|
+
var nr = ut($e, Ht, Ve[pn], vt);
|
|
4923
4928
|
if (nr === null) {
|
|
4924
|
-
|
|
4929
|
+
Ht === null && (Ht = Sa);
|
|
4925
4930
|
break;
|
|
4926
4931
|
}
|
|
4927
|
-
l &&
|
|
4932
|
+
l && Ht && nr.alternate === null && f($e, Ht), ze = V(nr, ze, pn), dn === null ? Jt = nr : dn.sibling = nr, dn = nr, Ht = Sa;
|
|
4928
4933
|
}
|
|
4929
|
-
if (pn === Ve.length) return v($e,
|
|
4930
|
-
if (
|
|
4931
|
-
for (; pn < Ve.length; pn++)
|
|
4934
|
+
if (pn === Ve.length) return v($e, Ht), Rr && is($e, pn), Jt;
|
|
4935
|
+
if (Ht === null) {
|
|
4936
|
+
for (; pn < Ve.length; pn++) Ht = dt($e, Ve[pn], vt), Ht !== null && (ze = V(Ht, ze, pn), dn === null ? Jt = Ht : dn.sibling = Ht, dn = Ht);
|
|
4932
4937
|
return Rr && is($e, pn), Jt;
|
|
4933
4938
|
}
|
|
4934
|
-
for (
|
|
4935
|
-
return l &&
|
|
4939
|
+
for (Ht = E($e, Ht); pn < Ve.length; pn++) Sa = Pt(Ht, $e, pn, Ve[pn], vt), Sa !== null && (l && Sa.alternate !== null && Ht.delete(Sa.key === null ? pn : Sa.key), ze = V(Sa, ze, pn), dn === null ? Jt = Sa : dn.sibling = Sa, dn = Sa);
|
|
4940
|
+
return l && Ht.forEach(function(hu) {
|
|
4936
4941
|
return f($e, hu);
|
|
4937
4942
|
}), Rr && is($e, pn), Jt;
|
|
4938
4943
|
}
|
|
@@ -4940,25 +4945,25 @@ function QG() {
|
|
|
4940
4945
|
var Jt = Q(Ve);
|
|
4941
4946
|
if (typeof Jt != "function") throw Error(t(150));
|
|
4942
4947
|
if (Ve = Jt.call(Ve), Ve == null) throw Error(t(151));
|
|
4943
|
-
for (var
|
|
4944
|
-
|
|
4945
|
-
var hu = ut($e,
|
|
4948
|
+
for (var dn = Jt = null, Ht = ze, pn = ze = 0, Sa = null, nr = Ve.next(); Ht !== null && !nr.done; pn++, nr = Ve.next()) {
|
|
4949
|
+
Ht.index > pn ? (Sa = Ht, Ht = null) : Sa = Ht.sibling;
|
|
4950
|
+
var hu = ut($e, Ht, nr.value, vt);
|
|
4946
4951
|
if (hu === null) {
|
|
4947
|
-
|
|
4952
|
+
Ht === null && (Ht = Sa);
|
|
4948
4953
|
break;
|
|
4949
4954
|
}
|
|
4950
|
-
l &&
|
|
4955
|
+
l && Ht && hu.alternate === null && f($e, Ht), ze = V(hu, ze, pn), dn === null ? Jt = hu : dn.sibling = hu, dn = hu, Ht = Sa;
|
|
4951
4956
|
}
|
|
4952
4957
|
if (nr.done) return v(
|
|
4953
4958
|
$e,
|
|
4954
|
-
|
|
4959
|
+
Ht
|
|
4955
4960
|
), Rr && is($e, pn), Jt;
|
|
4956
|
-
if (
|
|
4957
|
-
for (; !nr.done; pn++, nr = Ve.next()) nr = dt($e, nr.value, vt), nr !== null && (ze = V(nr, ze, pn),
|
|
4961
|
+
if (Ht === null) {
|
|
4962
|
+
for (; !nr.done; pn++, nr = Ve.next()) nr = dt($e, nr.value, vt), nr !== null && (ze = V(nr, ze, pn), dn === null ? Jt = nr : dn.sibling = nr, dn = nr);
|
|
4958
4963
|
return Rr && is($e, pn), Jt;
|
|
4959
4964
|
}
|
|
4960
|
-
for (
|
|
4961
|
-
return l &&
|
|
4965
|
+
for (Ht = E($e, Ht); !nr.done; pn++, nr = Ve.next()) nr = Pt(Ht, $e, pn, nr.value, vt), nr !== null && (l && nr.alternate !== null && Ht.delete(nr.key === null ? pn : nr.key), ze = V(nr, ze, pn), dn === null ? Jt = nr : dn.sibling = nr, dn = nr);
|
|
4966
|
+
return l && Ht.forEach(function($3) {
|
|
4962
4967
|
return f($e, $3);
|
|
4963
4968
|
}), Rr && is($e, pn), Jt;
|
|
4964
4969
|
}
|
|
@@ -4967,29 +4972,29 @@ function QG() {
|
|
|
4967
4972
|
switch (Ve.$$typeof) {
|
|
4968
4973
|
case W:
|
|
4969
4974
|
e: {
|
|
4970
|
-
for (var Jt = Ve.key,
|
|
4971
|
-
if (
|
|
4975
|
+
for (var Jt = Ve.key, dn = ze; dn !== null; ) {
|
|
4976
|
+
if (dn.key === Jt) {
|
|
4972
4977
|
if (Jt = Ve.type, Jt === ce) {
|
|
4973
|
-
if (
|
|
4974
|
-
v($e,
|
|
4978
|
+
if (dn.tag === 7) {
|
|
4979
|
+
v($e, dn.sibling), ze = I(dn, Ve.props.children), ze.return = $e, $e = ze;
|
|
4975
4980
|
break e;
|
|
4976
4981
|
}
|
|
4977
|
-
} else if (
|
|
4978
|
-
v($e,
|
|
4982
|
+
} else if (dn.elementType === Jt || typeof Jt == "object" && Jt !== null && Jt.$$typeof === z && P1(Jt) === dn.type) {
|
|
4983
|
+
v($e, dn.sibling), ze = I(dn, Ve.props), ze.ref = lc($e, dn, Ve), ze.return = $e, $e = ze;
|
|
4979
4984
|
break e;
|
|
4980
4985
|
}
|
|
4981
|
-
v($e,
|
|
4986
|
+
v($e, dn);
|
|
4982
4987
|
break;
|
|
4983
|
-
} else f($e,
|
|
4984
|
-
|
|
4988
|
+
} else f($e, dn);
|
|
4989
|
+
dn = dn.sibling;
|
|
4985
4990
|
}
|
|
4986
4991
|
Ve.type === ce ? (ze = Cc(Ve.props.children, $e.mode, vt, Ve.key), ze.return = $e, $e = ze) : (vt = F0(Ve.type, Ve.key, Ve.props, null, $e.mode, vt), vt.ref = lc($e, ze, Ve), vt.return = $e, $e = vt);
|
|
4987
4992
|
}
|
|
4988
4993
|
return le($e);
|
|
4989
4994
|
case de:
|
|
4990
4995
|
e: {
|
|
4991
|
-
for (
|
|
4992
|
-
if (ze.key ===
|
|
4996
|
+
for (dn = Ve.key; ze !== null; ) {
|
|
4997
|
+
if (ze.key === dn) if (ze.tag === 4 && ze.stateNode.containerInfo === Ve.containerInfo && ze.stateNode.implementation === Ve.implementation) {
|
|
4993
4998
|
v($e, ze.sibling), ze = I(ze, Ve.children || []), ze.return = $e, $e = ze;
|
|
4994
4999
|
break e;
|
|
4995
5000
|
} else {
|
|
@@ -5003,9 +5008,9 @@ function QG() {
|
|
|
5003
5008
|
}
|
|
5004
5009
|
return le($e);
|
|
5005
5010
|
case z:
|
|
5006
|
-
return
|
|
5011
|
+
return dn = Ve._init, na($e, ze, dn(Ve._payload), vt);
|
|
5007
5012
|
}
|
|
5008
|
-
if (oe(Ve)) return
|
|
5013
|
+
if (oe(Ve)) return $t($e, ze, Ve, vt);
|
|
5009
5014
|
if (Q(Ve)) return Vt($e, ze, Ve, vt);
|
|
5010
5015
|
Eo($e, Ve);
|
|
5011
5016
|
}
|
|
@@ -5066,7 +5071,7 @@ function QG() {
|
|
|
5066
5071
|
function nl(l, f, v) {
|
|
5067
5072
|
var E = l.updateQueue;
|
|
5068
5073
|
if (E === null) return null;
|
|
5069
|
-
if (E = E.shared,
|
|
5074
|
+
if (E = E.shared, Bn & 2) {
|
|
5070
5075
|
var I = E.pending;
|
|
5071
5076
|
return I === null ? f.next = f : (f.next = I.next, I.next = f), E.pending = f, lu(l, v);
|
|
5072
5077
|
}
|
|
@@ -5120,19 +5125,19 @@ function QG() {
|
|
|
5120
5125
|
next: null
|
|
5121
5126
|
});
|
|
5122
5127
|
e: {
|
|
5123
|
-
var
|
|
5128
|
+
var $t = l, Vt = Ae;
|
|
5124
5129
|
switch (ut = f, Pt = v, Vt.tag) {
|
|
5125
5130
|
case 1:
|
|
5126
|
-
if (
|
|
5127
|
-
dt =
|
|
5131
|
+
if ($t = Vt.payload, typeof $t == "function") {
|
|
5132
|
+
dt = $t.call(Pt, dt, ut);
|
|
5128
5133
|
break e;
|
|
5129
5134
|
}
|
|
5130
|
-
dt =
|
|
5135
|
+
dt = $t;
|
|
5131
5136
|
break e;
|
|
5132
5137
|
case 3:
|
|
5133
|
-
|
|
5138
|
+
$t.flags = $t.flags & -65537 | 128;
|
|
5134
5139
|
case 0:
|
|
5135
|
-
if (
|
|
5140
|
+
if ($t = Vt.payload, ut = typeof $t == "function" ? $t.call(Pt, dt, ut) : $t, ut == null) break e;
|
|
5136
5141
|
dt = ae({}, dt, ut);
|
|
5137
5142
|
break e;
|
|
5138
5143
|
case 2:
|
|
@@ -5740,8 +5745,8 @@ Error generating stack: ` + V.message + `
|
|
|
5740
5745
|
le = f.stateNode, _f(l, f), Ae = f.memoizedProps, Ye = f.type === f.elementType ? Ae : Bi(f.type, Ae), le.props = Ye, dt = f.pendingProps, ut = le.context, De = v.contextType, typeof De == "object" && De !== null ? De = Ps(De) : (De = Ir(v) ? Ni : mn.current, De = Ts(f, De));
|
|
5741
5746
|
var Pt = v.getDerivedStateFromProps;
|
|
5742
5747
|
(lt = typeof Pt == "function" || typeof le.getSnapshotBeforeUpdate == "function") || typeof le.UNSAFE_componentWillReceiveProps != "function" && typeof le.componentWillReceiveProps != "function" || (Ae !== dt || ut !== De) && H1(f, le, E, De), tl = !1, ut = f.memoizedState, le.state = ut, n0(f, E, le, I);
|
|
5743
|
-
var
|
|
5744
|
-
Ae !== dt || ut !==
|
|
5748
|
+
var $t = f.memoizedState;
|
|
5749
|
+
Ae !== dt || ut !== $t || Gr.current || tl ? (typeof Pt == "function" && (yc(f, v, Pt, E), $t = f.memoizedState), (Ye = tl || j1(f, v, Ye, E, ut, $t, De) || !1) ? (lt || typeof le.UNSAFE_componentWillUpdate != "function" && typeof le.componentWillUpdate != "function" || (typeof le.componentWillUpdate == "function" && le.componentWillUpdate(E, $t, De), typeof le.UNSAFE_componentWillUpdate == "function" && le.UNSAFE_componentWillUpdate(E, $t, De)), typeof le.componentDidUpdate == "function" && (f.flags |= 4), typeof le.getSnapshotBeforeUpdate == "function" && (f.flags |= 1024)) : (typeof le.componentDidUpdate != "function" || Ae === l.memoizedProps && ut === l.memoizedState || (f.flags |= 4), typeof le.getSnapshotBeforeUpdate != "function" || Ae === l.memoizedProps && ut === l.memoizedState || (f.flags |= 1024), f.memoizedProps = E, f.memoizedState = $t), le.props = E, le.state = $t, le.context = De, E = Ye) : (typeof le.componentDidUpdate != "function" || Ae === l.memoizedProps && ut === l.memoizedState || (f.flags |= 4), typeof le.getSnapshotBeforeUpdate != "function" || Ae === l.memoizedProps && ut === l.memoizedState || (f.flags |= 1024), E = !1);
|
|
5745
5750
|
}
|
|
5746
5751
|
return x0(l, f, v, E, V, I);
|
|
5747
5752
|
}
|
|
@@ -5964,7 +5969,7 @@ Error generating stack: ` + V.message + `
|
|
|
5964
5969
|
I = ae({}, I, { value: void 0 }), E = ae({}, E, { value: void 0 }), V = [];
|
|
5965
5970
|
break;
|
|
5966
5971
|
case "textarea":
|
|
5967
|
-
I =
|
|
5972
|
+
I = Ne(l, I), E = Ne(l, E), V = [];
|
|
5968
5973
|
break;
|
|
5969
5974
|
default:
|
|
5970
5975
|
typeof I.onClick != "function" && typeof E.onClick == "function" && (l.onclick = Gh);
|
|
@@ -6143,7 +6148,7 @@ Error generating stack: ` + V.message + `
|
|
|
6143
6148
|
l._wrapperState = { wasMultiple: !!E.multiple }, I = ae({}, E, { value: void 0 }), wr("invalid", l);
|
|
6144
6149
|
break;
|
|
6145
6150
|
case "textarea":
|
|
6146
|
-
Qe(l, E), I =
|
|
6151
|
+
Qe(l, E), I = Ne(l, E), wr("invalid", l);
|
|
6147
6152
|
break;
|
|
6148
6153
|
default:
|
|
6149
6154
|
I = E;
|
|
@@ -6342,15 +6347,15 @@ Error generating stack: ` + V.message + `
|
|
|
6342
6347
|
else for (; zt !== null; ) {
|
|
6343
6348
|
f = zt;
|
|
6344
6349
|
try {
|
|
6345
|
-
var
|
|
6350
|
+
var $t = f.alternate;
|
|
6346
6351
|
if (f.flags & 1024) switch (f.tag) {
|
|
6347
6352
|
case 0:
|
|
6348
6353
|
case 11:
|
|
6349
6354
|
case 15:
|
|
6350
6355
|
break;
|
|
6351
6356
|
case 1:
|
|
6352
|
-
if (
|
|
6353
|
-
var Vt =
|
|
6357
|
+
if ($t !== null) {
|
|
6358
|
+
var Vt = $t.memoizedProps, na = $t.memoizedState, $e = f.stateNode, ze = $e.getSnapshotBeforeUpdate(f.elementType === f.type ? Vt : Bi(f.type, Vt), na);
|
|
6354
6359
|
$e.__reactInternalSnapshotBeforeUpdate = ze;
|
|
6355
6360
|
}
|
|
6356
6361
|
break;
|
|
@@ -6375,7 +6380,7 @@ Error generating stack: ` + V.message + `
|
|
|
6375
6380
|
}
|
|
6376
6381
|
zt = f.return;
|
|
6377
6382
|
}
|
|
6378
|
-
return
|
|
6383
|
+
return $t = k0, k0 = !1, $t;
|
|
6379
6384
|
}
|
|
6380
6385
|
function Df(l, f, v) {
|
|
6381
6386
|
var E = f.updateQueue;
|
|
@@ -6642,11 +6647,11 @@ Error generating stack: ` + V.message + `
|
|
|
6642
6647
|
break;
|
|
6643
6648
|
case 1:
|
|
6644
6649
|
If(ut, ut.return);
|
|
6645
|
-
var
|
|
6646
|
-
if (typeof
|
|
6650
|
+
var $t = ut.stateNode;
|
|
6651
|
+
if (typeof $t.componentWillUnmount == "function") {
|
|
6647
6652
|
E = ut, v = ut.return;
|
|
6648
6653
|
try {
|
|
6649
|
-
f = E,
|
|
6654
|
+
f = E, $t.props = f.memoizedProps, $t.state = f.memoizedState, $t.componentWillUnmount();
|
|
6650
6655
|
} catch (Vt) {
|
|
6651
6656
|
Yr(E, v, Vt);
|
|
6652
6657
|
}
|
|
@@ -6928,16 +6933,16 @@ Error generating stack: ` + V.message + `
|
|
|
6928
6933
|
zt = f.return;
|
|
6929
6934
|
}
|
|
6930
6935
|
}
|
|
6931
|
-
var L3 = Math.ceil, bc = q.ReactCurrentDispatcher, R0 = q.ReactCurrentOwner, Us = q.ReactCurrentBatchConfig,
|
|
6936
|
+
var L3 = Math.ceil, bc = q.ReactCurrentDispatcher, R0 = q.ReactCurrentOwner, Us = q.ReactCurrentBatchConfig, Bn = 0, Kr = null, Or = null, wa = 0, $i = 0, jf = En(0), _a = 0, bp = null, wc = 0, $f = 0, yg = 0, sl = null, ai = null, O0 = 0, Hf = 1 / 0, du = null, L0 = !1, mg = null, Fs = null, qf = !1, Bs = null, N0 = 0, wp = 0, P0 = null, _p = -1, _c = 0;
|
|
6932
6937
|
function Ia() {
|
|
6933
|
-
return
|
|
6938
|
+
return Bn & 6 ? $n() : _p !== -1 ? _p : _p = $n();
|
|
6934
6939
|
}
|
|
6935
6940
|
function pu(l) {
|
|
6936
|
-
return l.mode & 1 ?
|
|
6941
|
+
return l.mode & 1 ? Bn & 2 && wa !== 0 ? wa & -wa : Zh.transition !== null ? (_c === 0 && (_c = tf()), _c) : (l = tr, l !== 0 || (l = window.event, l = l === void 0 ? 16 : Hd(l.type)), l) : 1;
|
|
6937
6942
|
}
|
|
6938
6943
|
function jr(l, f, v, E) {
|
|
6939
6944
|
if (50 < wp) throw wp = 0, P0 = null, Error(t(185));
|
|
6940
|
-
Qo(l, v, E), (!(
|
|
6945
|
+
Qo(l, v, E), (!(Bn & 2) || l !== Kr) && (l === Kr && (!(Bn & 2) && ($f |= v), _a === 4 && Mo(l, wa)), xa(l, E), v === 1 && Bn === 0 && !(f.mode & 1) && (Hf = $n() + 500, La && Pi()));
|
|
6941
6946
|
}
|
|
6942
6947
|
function xa(l, f) {
|
|
6943
6948
|
var v = l.callbackNode;
|
|
@@ -6946,7 +6951,7 @@ Error generating stack: ` + V.message + `
|
|
|
6946
6951
|
if (E === 0) v !== null && Yn(v), l.callbackNode = null, l.callbackPriority = 0;
|
|
6947
6952
|
else if (f = E & -E, l.callbackPriority !== f) {
|
|
6948
6953
|
if (v != null && Yn(v), f === 1) l.tag === 0 ? Km(Vf.bind(null, l)) : Wm(Vf.bind(null, l)), qm(function() {
|
|
6949
|
-
!(
|
|
6954
|
+
!(Bn & 6) && Pi();
|
|
6950
6955
|
}), v = null;
|
|
6951
6956
|
else {
|
|
6952
6957
|
switch (rf(E)) {
|
|
@@ -6971,7 +6976,7 @@ Error generating stack: ` + V.message + `
|
|
|
6971
6976
|
}
|
|
6972
6977
|
}
|
|
6973
6978
|
function I0(l, f) {
|
|
6974
|
-
if (_p = -1, _c = 0,
|
|
6979
|
+
if (_p = -1, _c = 0, Bn & 6) throw Error(t(327));
|
|
6975
6980
|
var v = l.callbackNode;
|
|
6976
6981
|
if (Gf() && l.callbackNode !== v) return null;
|
|
6977
6982
|
var E = ui(l, l === Kr ? wa : 0);
|
|
@@ -6979,8 +6984,8 @@ Error generating stack: ` + V.message + `
|
|
|
6979
6984
|
if (E & 30 || E & l.expiredLanes || f) f = U0(l, E);
|
|
6980
6985
|
else {
|
|
6981
6986
|
f = E;
|
|
6982
|
-
var I =
|
|
6983
|
-
|
|
6987
|
+
var I = Bn;
|
|
6988
|
+
Bn |= 2;
|
|
6984
6989
|
var V = rw();
|
|
6985
6990
|
(Kr !== l || wa !== f) && (du = null, Hf = $n() + 500, Sc(l, f));
|
|
6986
6991
|
do
|
|
@@ -6991,7 +6996,7 @@ Error generating stack: ` + V.message + `
|
|
|
6991
6996
|
nw(l, Ae);
|
|
6992
6997
|
}
|
|
6993
6998
|
while (!0);
|
|
6994
|
-
os(), bc.current = V,
|
|
6999
|
+
os(), bc.current = V, Bn = I, Or !== null ? f = 0 : (Kr = null, wa = 0, f = _a);
|
|
6995
7000
|
}
|
|
6996
7001
|
if (f !== 0) {
|
|
6997
7002
|
if (f === 2 && (I = Hu(l), I !== 0 && (E = I, f = xc(l, I))), f === 1) throw v = bp, Sc(l, 0), Mo(l, E), xa(l, $n()), v;
|
|
@@ -7079,7 +7084,7 @@ Error generating stack: ` + V.message + `
|
|
|
7079
7084
|
}
|
|
7080
7085
|
}
|
|
7081
7086
|
function Vf(l) {
|
|
7082
|
-
if (
|
|
7087
|
+
if (Bn & 6) throw Error(t(327));
|
|
7083
7088
|
Gf();
|
|
7084
7089
|
var f = ui(l, 0);
|
|
7085
7090
|
if (!(f & 1)) return xa(l, $n()), null;
|
|
@@ -7093,23 +7098,23 @@ Error generating stack: ` + V.message + `
|
|
|
7093
7098
|
return l.finishedWork = l.current.alternate, l.finishedLanes = f, ol(l, ai, du), xa(l, $n()), null;
|
|
7094
7099
|
}
|
|
7095
7100
|
function bg(l, f) {
|
|
7096
|
-
var v =
|
|
7097
|
-
|
|
7101
|
+
var v = Bn;
|
|
7102
|
+
Bn |= 1;
|
|
7098
7103
|
try {
|
|
7099
7104
|
return l(f);
|
|
7100
7105
|
} finally {
|
|
7101
|
-
|
|
7106
|
+
Bn = v, Bn === 0 && (Hf = $n() + 500, La && Pi());
|
|
7102
7107
|
}
|
|
7103
7108
|
}
|
|
7104
7109
|
function To(l) {
|
|
7105
|
-
Bs !== null && Bs.tag === 0 && !(
|
|
7106
|
-
var f =
|
|
7107
|
-
|
|
7110
|
+
Bs !== null && Bs.tag === 0 && !(Bn & 6) && Gf();
|
|
7111
|
+
var f = Bn;
|
|
7112
|
+
Bn |= 1;
|
|
7108
7113
|
var v = Us.transition, E = tr;
|
|
7109
7114
|
try {
|
|
7110
7115
|
if (Us.transition = null, tr = 1, l) return l();
|
|
7111
7116
|
} finally {
|
|
7112
|
-
tr = E, Us.transition = v,
|
|
7117
|
+
tr = E, Us.transition = v, Bn = f, !(Bn & 6) && Pi();
|
|
7113
7118
|
}
|
|
7114
7119
|
}
|
|
7115
7120
|
function D0() {
|
|
@@ -7188,11 +7193,11 @@ Error generating stack: ` + V.message + `
|
|
|
7188
7193
|
var Pt = W1(le);
|
|
7189
7194
|
if (Pt !== null) {
|
|
7190
7195
|
Pt.flags &= -257, ug(Pt, le, Ae, V, f), Pt.mode & 1 && hp(V, Ye, f), f = Pt, De = Ye;
|
|
7191
|
-
var
|
|
7192
|
-
if (
|
|
7196
|
+
var $t = f.updateQueue;
|
|
7197
|
+
if ($t === null) {
|
|
7193
7198
|
var Vt = /* @__PURE__ */ new Set();
|
|
7194
7199
|
Vt.add(De), f.updateQueue = Vt;
|
|
7195
|
-
} else
|
|
7200
|
+
} else $t.add(De);
|
|
7196
7201
|
break e;
|
|
7197
7202
|
} else {
|
|
7198
7203
|
if (!(f & 1)) {
|
|
@@ -7245,8 +7250,8 @@ Error generating stack: ` + V.message + `
|
|
|
7245
7250
|
(_a === 0 || _a === 3 || _a === 2) && (_a = 4), Kr === null || !(wc & 268435455) && !($f & 268435455) || Mo(Kr, wa);
|
|
7246
7251
|
}
|
|
7247
7252
|
function U0(l, f) {
|
|
7248
|
-
var v =
|
|
7249
|
-
|
|
7253
|
+
var v = Bn;
|
|
7254
|
+
Bn |= 2;
|
|
7250
7255
|
var E = rw();
|
|
7251
7256
|
(Kr !== l || wa !== f) && (du = null, Sc(l, f));
|
|
7252
7257
|
do
|
|
@@ -7257,7 +7262,7 @@ Error generating stack: ` + V.message + `
|
|
|
7257
7262
|
nw(l, I);
|
|
7258
7263
|
}
|
|
7259
7264
|
while (!0);
|
|
7260
|
-
if (os(),
|
|
7265
|
+
if (os(), Bn = v, bc.current = E, Or !== null) throw Error(t(261));
|
|
7261
7266
|
return Kr = null, wa = 0, _a;
|
|
7262
7267
|
}
|
|
7263
7268
|
function N3() {
|
|
@@ -7309,7 +7314,7 @@ Error generating stack: ` + V.message + `
|
|
|
7309
7314
|
do
|
|
7310
7315
|
Gf();
|
|
7311
7316
|
while (Bs !== null);
|
|
7312
|
-
if (
|
|
7317
|
+
if (Bn & 6) throw Error(t(327));
|
|
7313
7318
|
v = l.finishedWork;
|
|
7314
7319
|
var I = l.finishedLanes;
|
|
7315
7320
|
if (v === null) return null;
|
|
@@ -7322,8 +7327,8 @@ Error generating stack: ` + V.message + `
|
|
|
7322
7327
|
V = Us.transition, Us.transition = null;
|
|
7323
7328
|
var le = tr;
|
|
7324
7329
|
tr = 1;
|
|
7325
|
-
var Ae =
|
|
7326
|
-
|
|
7330
|
+
var Ae = Bn;
|
|
7331
|
+
Bn |= 4, R0.current = null, R3(l, v), ew(v, l), jh(ic), As = !!$m, ic = $m = null, l.current = v, O3(v), Ti(), Bn = Ae, tr = le, Us.transition = V;
|
|
7327
7332
|
} else l.current = v;
|
|
7328
7333
|
if (qf && (qf = !1, Bs = l, N0 = I), V = l.pendingLanes, V === 0 && (Fs = null), Yo(v.stateNode), xa(l, $n()), f !== null) for (E = l.onRecoverableError, v = 0; v < f.length; v++) I = f[v], E(I.value, { componentStack: I.stack, digest: I.digest });
|
|
7329
7334
|
if (L0) throw L0 = !1, l = mg, mg = null, l;
|
|
@@ -7335,9 +7340,9 @@ Error generating stack: ` + V.message + `
|
|
|
7335
7340
|
try {
|
|
7336
7341
|
if (Us.transition = null, tr = 16 > l ? 16 : l, Bs === null) var E = !1;
|
|
7337
7342
|
else {
|
|
7338
|
-
if (l = Bs, Bs = null, N0 = 0,
|
|
7339
|
-
var I =
|
|
7340
|
-
for (
|
|
7343
|
+
if (l = Bs, Bs = null, N0 = 0, Bn & 6) throw Error(t(331));
|
|
7344
|
+
var I = Bn;
|
|
7345
|
+
for (Bn |= 4, zt = l.current; zt !== null; ) {
|
|
7341
7346
|
var V = zt, le = V.child;
|
|
7342
7347
|
if (zt.flags & 16) {
|
|
7343
7348
|
var Ae = V.deletions;
|
|
@@ -7369,11 +7374,11 @@ Error generating stack: ` + V.message + `
|
|
|
7369
7374
|
}
|
|
7370
7375
|
}
|
|
7371
7376
|
}
|
|
7372
|
-
var
|
|
7373
|
-
if (
|
|
7374
|
-
var Vt =
|
|
7377
|
+
var $t = V.alternate;
|
|
7378
|
+
if ($t !== null) {
|
|
7379
|
+
var Vt = $t.child;
|
|
7375
7380
|
if (Vt !== null) {
|
|
7376
|
-
|
|
7381
|
+
$t.child = null;
|
|
7377
7382
|
do {
|
|
7378
7383
|
var na = Vt.sibling;
|
|
7379
7384
|
Vt.sibling = null, Vt = na;
|
|
@@ -7427,7 +7432,7 @@ Error generating stack: ` + V.message + `
|
|
|
7427
7432
|
zt = Ae.return;
|
|
7428
7433
|
}
|
|
7429
7434
|
}
|
|
7430
|
-
if (
|
|
7435
|
+
if (Bn = I, Pi(), Ta && typeof Ta.onPostCommitFiberRoot == "function") try {
|
|
7431
7436
|
Ta.onPostCommitFiberRoot(Cs, l);
|
|
7432
7437
|
} catch {
|
|
7433
7438
|
}
|
|
@@ -7863,7 +7868,7 @@ Error generating stack: ` + V.message + `
|
|
|
7863
7868
|
var f = l.stateNode;
|
|
7864
7869
|
if (f.current.memoizedState.isDehydrated) {
|
|
7865
7870
|
var v = eo(f.pendingLanes);
|
|
7866
|
-
v !== 0 && (_o(f, v | 1), xa(f, $n()), !(
|
|
7871
|
+
v !== 0 && (_o(f, v | 1), xa(f, $n()), !(Bn & 6) && (Hf = $n() + 500, Pi()));
|
|
7867
7872
|
}
|
|
7868
7873
|
break;
|
|
7869
7874
|
case 13:
|
|
@@ -8066,7 +8071,7 @@ function ZG() {
|
|
|
8066
8071
|
if (J(a))
|
|
8067
8072
|
return u("The provided `%s` CSS property is an unsupported type %s. This value must be coerced to a string before before using it here.", s, ye(a)), P(a);
|
|
8068
8073
|
}
|
|
8069
|
-
function
|
|
8074
|
+
function Ne(a) {
|
|
8070
8075
|
if (J(a))
|
|
8071
8076
|
return u("The provided HTML markup uses a value of unsupported type %s. This value must be coerced to a string before before using it here.", ye(a)), P(a);
|
|
8072
8077
|
}
|
|
@@ -9086,7 +9091,7 @@ Error generating stack: ` + y.message + `
|
|
|
9086
9091
|
var K = y.name;
|
|
9087
9092
|
K !== "" && (y.name = ""), y.defaultChecked = !y.defaultChecked, y.defaultChecked = !!y._wrapperState.initialChecked, K !== "" && (y.name = K);
|
|
9088
9093
|
}
|
|
9089
|
-
function
|
|
9094
|
+
function fn(a, s) {
|
|
9090
9095
|
var d = a;
|
|
9091
9096
|
Xe(d, s), Mt(d, s);
|
|
9092
9097
|
}
|
|
@@ -10308,16 +10313,16 @@ Check the render method of \`` + a + "`." : "";
|
|
|
10308
10313
|
function un() {
|
|
10309
10314
|
je = !0, tt(), d.apply(y, Tt), Fe = !1;
|
|
10310
10315
|
}
|
|
10311
|
-
var en, Kn = !1,
|
|
10316
|
+
var en, Kn = !1, zn = !1;
|
|
10312
10317
|
function He(qe) {
|
|
10313
|
-
if (en = qe.error, Kn = !0, en === null && qe.colno === 0 && qe.lineno === 0 && (
|
|
10318
|
+
if (en = qe.error, Kn = !0, en === null && qe.colno === 0 && qe.lineno === 0 && (zn = !0), qe.defaultPrevented && en != null && typeof en == "object")
|
|
10314
10319
|
try {
|
|
10315
10320
|
en._suppressLogging = !0;
|
|
10316
10321
|
} catch {
|
|
10317
10322
|
}
|
|
10318
10323
|
}
|
|
10319
10324
|
var nt = "react-" + (s || "invokeguardedcallback");
|
|
10320
|
-
if (window.addEventListener("error", He), qm.addEventListener(nt, un, !1), we.initEvent(nt, !1, !1), qm.dispatchEvent(we), Je && Object.defineProperty(window, "event", Je), je && Fe && (Kn ?
|
|
10325
|
+
if (window.addEventListener("error", He), qm.addEventListener(nt, un, !1), we.initEvent(nt, !1, !1), qm.dispatchEvent(we), Je && Object.defineProperty(window, "event", Je), je && Fe && (Kn ? zn && (en = new Error("A cross-origin error was thrown. React doesn't have access to the actual error object in development. See https://reactjs.org/link/crossorigin-error for more information.")) : en = new Error(`An error was thrown inside one of your components, but React doesn't know what it was. This is likely due to browser flakiness. React does its best to preserve the "Pause on exceptions" behavior of the DevTools, which requires some DEV-mode only tricks. It's possible that these don't work in your browser. Try triggering the error in production mode, or switching to a modern browser. If you suspect that this is actually an issue with React, please file an issue.`), this.onError(en)), window.removeEventListener("error", He), !je)
|
|
10321
10326
|
return tt(), T1.apply(this, arguments);
|
|
10322
10327
|
};
|
|
10323
10328
|
}
|
|
@@ -11444,20 +11449,20 @@ Check the render method of \`` + a + "`." : "";
|
|
|
11444
11449
|
function Us() {
|
|
11445
11450
|
vp = !1, Ur !== null && bc(Ur) && (Ur = null), Na !== null && bc(Na) && (Na = null), ci !== null && bc(ci) && (ci = null), Ff.forEach(R0), Bf.forEach(R0);
|
|
11446
11451
|
}
|
|
11447
|
-
function
|
|
11452
|
+
function Bn(a, s) {
|
|
11448
11453
|
a.blockedOn === s && (a.blockedOn = null, vp || (vp = !0, e.unstable_scheduleCallback(e.unstable_NormalPriority, Us)));
|
|
11449
11454
|
}
|
|
11450
11455
|
function Kr(a) {
|
|
11451
11456
|
if (Uf.length > 0) {
|
|
11452
|
-
|
|
11457
|
+
Bn(Uf[0], a);
|
|
11453
11458
|
for (var s = 1; s < Uf.length; s++) {
|
|
11454
11459
|
var d = Uf[s];
|
|
11455
11460
|
d.blockedOn === a && (d.blockedOn = null);
|
|
11456
11461
|
}
|
|
11457
11462
|
}
|
|
11458
|
-
Ur !== null &&
|
|
11463
|
+
Ur !== null && Bn(Ur, a), Na !== null && Bn(Na, a), ci !== null && Bn(ci, a);
|
|
11459
11464
|
var y = function(K) {
|
|
11460
|
-
return
|
|
11465
|
+
return Bn(K, a);
|
|
11461
11466
|
};
|
|
11462
11467
|
Ff.forEach(y), Bf.forEach(y);
|
|
11463
11468
|
for (var _ = 0; _ < Pa.length; _++) {
|
|
@@ -12155,7 +12160,7 @@ Check the render method of \`` + a + "`." : "";
|
|
|
12155
12160
|
function Pt(a, s, d) {
|
|
12156
12161
|
a === "focusin" ? (dt(), lt(s, d)) : a === "focusout" && dt();
|
|
12157
12162
|
}
|
|
12158
|
-
function
|
|
12163
|
+
function $t(a, s) {
|
|
12159
12164
|
if (a === "selectionchange" || a === "keyup" || a === "keydown")
|
|
12160
12165
|
return Ae(E);
|
|
12161
12166
|
}
|
|
@@ -12177,7 +12182,7 @@ Check the render method of \`` + a + "`." : "";
|
|
|
12177
12182
|
}
|
|
12178
12183
|
function Ve(a, s, d, y, _, M, B) {
|
|
12179
12184
|
var K = d ? Q0(d) : window, X, he;
|
|
12180
|
-
if (I(K) ? X = De : hw(K) ? Ye ? X = $e : (X =
|
|
12185
|
+
if (I(K) ? X = De : hw(K) ? Ye ? X = $e : (X = $t, he = Pt) : Vt(K) && (X = na), X) {
|
|
12181
12186
|
var we = X(s, d);
|
|
12182
12187
|
if (we) {
|
|
12183
12188
|
f(a, we, y, _);
|
|
@@ -12216,23 +12221,23 @@ Check the render method of \`` + a + "`." : "";
|
|
|
12216
12221
|
if (Fe !== Ge) {
|
|
12217
12222
|
var Tt = D0, un = "onMouseLeave", en = "onMouseEnter", Kn = "mouse";
|
|
12218
12223
|
(s === "pointerout" || s === "pointerover") && (Tt = cw, un = "onPointerLeave", en = "onPointerEnter", Kn = "pointer");
|
|
12219
|
-
var
|
|
12220
|
-
nt.target =
|
|
12224
|
+
var zn = Fe == null ? we : Q0(Fe), He = Ge == null ? we : Q0(Ge), nt = new Tt(un, Kn + "leave", Fe, y, _);
|
|
12225
|
+
nt.target = zn, nt.relatedTarget = He;
|
|
12221
12226
|
var qe = null, pt = Rp(_);
|
|
12222
12227
|
if (pt === d) {
|
|
12223
12228
|
var Ut = new Tt(en, Kn + "enter", Ge, y, _);
|
|
12224
|
-
Ut.target = He, Ut.relatedTarget =
|
|
12229
|
+
Ut.target = He, Ut.relatedTarget = zn, qe = Ut;
|
|
12225
12230
|
}
|
|
12226
12231
|
yj(a, nt, qe, Fe, Ge);
|
|
12227
12232
|
}
|
|
12228
12233
|
}
|
|
12229
12234
|
}
|
|
12230
|
-
function
|
|
12235
|
+
function dn(a, s) {
|
|
12231
12236
|
return a === s && (a !== 0 || 1 / a === 1 / s) || a !== a && s !== s;
|
|
12232
12237
|
}
|
|
12233
|
-
var
|
|
12238
|
+
var Ht = typeof Object.is == "function" ? Object.is : dn;
|
|
12234
12239
|
function pn(a, s) {
|
|
12235
|
-
if (
|
|
12240
|
+
if (Ht(a, s))
|
|
12236
12241
|
return !0;
|
|
12237
12242
|
if (typeof a != "object" || a === null || typeof s != "object" || s === null)
|
|
12238
12243
|
return !1;
|
|
@@ -12241,7 +12246,7 @@ Check the render method of \`` + a + "`." : "";
|
|
|
12241
12246
|
return !1;
|
|
12242
12247
|
for (var _ = 0; _ < d.length; _++) {
|
|
12243
12248
|
var M = d[_];
|
|
12244
|
-
if (!te.call(s, M) ||
|
|
12249
|
+
if (!te.call(s, M) || !Ht(a[M], s[M]))
|
|
12245
12250
|
return !1;
|
|
12246
12251
|
}
|
|
12247
12252
|
return !0;
|
|
@@ -12814,7 +12819,7 @@ Check the render method of \`` + a + "`." : "";
|
|
|
12814
12819
|
};
|
|
12815
12820
|
var gj = /\r\n?/g, vj = /\u0000|\uFFFD/g;
|
|
12816
12821
|
function Sw(a) {
|
|
12817
|
-
|
|
12822
|
+
Ne(a);
|
|
12818
12823
|
var s = typeof a == "string" ? a : "" + a;
|
|
12819
12824
|
return s.replace(gj, `
|
|
12820
12825
|
`).replace(vj, "");
|
|
@@ -13081,8 +13086,8 @@ Check the render method of \`` + a + "`." : "";
|
|
|
13081
13086
|
if (Je === Og) {
|
|
13082
13087
|
var en = a.innerHTML, Kn = tt ? tt[ww] : void 0;
|
|
13083
13088
|
if (Kn != null) {
|
|
13084
|
-
var
|
|
13085
|
-
|
|
13089
|
+
var zn = Ik(a, Kn);
|
|
13090
|
+
zn !== en && Lg(Je, en, zn);
|
|
13086
13091
|
}
|
|
13087
13092
|
} else if (Je === Tp) {
|
|
13088
13093
|
if (X.delete(Je), Pk) {
|
|
@@ -13164,7 +13169,7 @@ Check the render method of \`` + a + "`." : "";
|
|
|
13164
13169
|
function Rj(a, s, d) {
|
|
13165
13170
|
switch (s) {
|
|
13166
13171
|
case "input":
|
|
13167
|
-
|
|
13172
|
+
fn(a, d);
|
|
13168
13173
|
return;
|
|
13169
13174
|
case "textarea":
|
|
13170
13175
|
Mm(a, d);
|
|
@@ -13953,8 +13958,8 @@ Check the render method of \`` + a + "`." : "";
|
|
|
13953
13958
|
var he = M - M % 5, we = (1 << he) - 1, je = (B & we).toString(32), Fe = B >> he, Ge = M - he, Je = zw(s) + Ge, tt = K << Ge, Tt = tt | Fe, un = je + _;
|
|
13954
13959
|
Mc = 1 << Je | Tt, Tc = un;
|
|
13955
13960
|
} else {
|
|
13956
|
-
var en = K << M, Kn = en | B,
|
|
13957
|
-
Mc = 1 << X | Kn, Tc =
|
|
13961
|
+
var en = K << M, Kn = en | B, zn = _;
|
|
13962
|
+
Mc = 1 << X | Kn, Tc = zn;
|
|
13958
13963
|
}
|
|
13959
13964
|
}
|
|
13960
13965
|
function g6(a) {
|
|
@@ -14821,7 +14826,7 @@ See https://reactjs.org/link/refs-must-have-owner for more information.`);
|
|
|
14821
14826
|
var _n = CC(qe, He.mode, pt);
|
|
14822
14827
|
return _n.return = He, _n;
|
|
14823
14828
|
}
|
|
14824
|
-
function
|
|
14829
|
+
function zn(He, nt, qe, pt) {
|
|
14825
14830
|
var Ut = typeof qe == "object" && qe !== null && qe.type === fr && qe.key === null;
|
|
14826
14831
|
if (Ut && (qe = qe.props.children), typeof qe == "object" && qe !== null) {
|
|
14827
14832
|
switch (qe.$$typeof) {
|
|
@@ -14831,7 +14836,7 @@ See https://reactjs.org/link/refs-must-have-owner for more information.`);
|
|
|
14831
14836
|
return B(Kn(He, nt, qe, pt));
|
|
14832
14837
|
case Dt:
|
|
14833
14838
|
var Lt = qe._payload, yn = qe._init;
|
|
14834
|
-
return
|
|
14839
|
+
return zn(He, nt, yn(Lt), pt);
|
|
14835
14840
|
}
|
|
14836
14841
|
if (qn(qe))
|
|
14837
14842
|
return tt(He, nt, qe, pt);
|
|
@@ -14841,7 +14846,7 @@ See https://reactjs.org/link/refs-must-have-owner for more information.`);
|
|
|
14841
14846
|
}
|
|
14842
14847
|
return typeof qe == "string" && qe !== "" || typeof qe == "number" ? B(un(He, nt, "" + qe, pt)) : (typeof qe == "function" && qw(He), d(He, nt));
|
|
14843
14848
|
}
|
|
14844
|
-
return
|
|
14849
|
+
return zn;
|
|
14845
14850
|
}
|
|
14846
14851
|
var ry = fM(!0), dM = fM(!1);
|
|
14847
14852
|
function fH(a, s) {
|
|
@@ -15183,11 +15188,11 @@ See https://reactjs.org/link/refs-must-have-owner for more information.`);
|
|
|
15183
15188
|
if (M !== null) {
|
|
15184
15189
|
var Ge = _.baseState, Je = ot, tt = null, Tt = null, un = null, en = M;
|
|
15185
15190
|
do {
|
|
15186
|
-
var Kn = en.lane,
|
|
15191
|
+
var Kn = en.lane, zn = en.eventTime;
|
|
15187
15192
|
if (gc(y, Kn)) {
|
|
15188
15193
|
if (un !== null) {
|
|
15189
15194
|
var nt = {
|
|
15190
|
-
eventTime:
|
|
15195
|
+
eventTime: zn,
|
|
15191
15196
|
// This update is going to be committed so we never want uncommit
|
|
15192
15197
|
// it. Using NoLane works because 0 is a subset of all bitmasks, so
|
|
15193
15198
|
// this will never be skipped by the check above.
|
|
@@ -15210,7 +15215,7 @@ See https://reactjs.org/link/refs-must-have-owner for more information.`);
|
|
|
15210
15215
|
}
|
|
15211
15216
|
} else {
|
|
15212
15217
|
var He = {
|
|
15213
|
-
eventTime:
|
|
15218
|
+
eventTime: zn,
|
|
15214
15219
|
lane: Kn,
|
|
15215
15220
|
tag: en.tag,
|
|
15216
15221
|
payload: en.payload,
|
|
@@ -15421,7 +15426,7 @@ See https://reactjs.org/link/invalid-hook-call for tips about how to debug and f
|
|
|
15421
15426
|
Previous: %s
|
|
15422
15427
|
Incoming: %s`, it, "[" + s.join(", ") + "]", "[" + a.join(", ") + "]");
|
|
15423
15428
|
for (var d = 0; d < s.length && d < a.length; d++)
|
|
15424
|
-
if (
|
|
15429
|
+
if (!Ht(a[d], s[d]))
|
|
15425
15430
|
return !1;
|
|
15426
15431
|
return !0;
|
|
15427
15432
|
}
|
|
@@ -15572,15 +15577,15 @@ Incoming: %s`, it, "[" + s.join(", ") + "]", "[" + a.join(", ") + "]");
|
|
|
15572
15577
|
}
|
|
15573
15578
|
tt = tt.next;
|
|
15574
15579
|
} while (tt !== null && tt !== we);
|
|
15575
|
-
Je === null ? Fe = je : Je.next = Ge,
|
|
15580
|
+
Je === null ? Fe = je : Je.next = Ge, Ht(je, y.memoizedState) || uv(), y.memoizedState = je, y.baseState = Fe, y.baseQueue = Je, _.lastRenderedState = je;
|
|
15576
15581
|
}
|
|
15577
|
-
var
|
|
15578
|
-
if (
|
|
15579
|
-
var He =
|
|
15582
|
+
var zn = _.interleaved;
|
|
15583
|
+
if (zn !== null) {
|
|
15584
|
+
var He = zn;
|
|
15580
15585
|
do {
|
|
15581
15586
|
var nt = He.lane;
|
|
15582
15587
|
mr.lanes = Cn(mr.lanes, nt), wv(nt), He = He.next;
|
|
15583
|
-
} while (He !==
|
|
15588
|
+
} while (He !== zn);
|
|
15584
15589
|
} else B === null && (_.lanes = ot);
|
|
15585
15590
|
var qe = _.dispatch;
|
|
15586
15591
|
return [y.memoizedState, qe];
|
|
@@ -15598,7 +15603,7 @@ Incoming: %s`, it, "[" + s.join(", ") + "]", "[" + a.join(", ") + "]");
|
|
|
15598
15603
|
var we = he.action;
|
|
15599
15604
|
K = a(K, we), he = he.next;
|
|
15600
15605
|
} while (he !== X);
|
|
15601
|
-
|
|
15606
|
+
Ht(K, y.memoizedState) || uv(), y.memoizedState = K, y.baseQueue === null && (y.baseState = K), _.lastRenderedState = K;
|
|
15602
15607
|
}
|
|
15603
15608
|
return [K, M];
|
|
15604
15609
|
}
|
|
@@ -15615,7 +15620,7 @@ Incoming: %s`, it, "[" + s.join(", ") + "]", "[" + a.join(", ") + "]");
|
|
|
15615
15620
|
} else {
|
|
15616
15621
|
if (M = s(), !ly) {
|
|
15617
15622
|
var K = s();
|
|
15618
|
-
|
|
15623
|
+
Ht(M, K) || (u("The result of getSnapshot should be cached to avoid an infinite loop"), ly = !0);
|
|
15619
15624
|
}
|
|
15620
15625
|
var X = D_();
|
|
15621
15626
|
if (X === null)
|
|
@@ -15633,9 +15638,9 @@ Incoming: %s`, it, "[" + s.join(", ") + "]", "[" + a.join(", ") + "]");
|
|
|
15633
15638
|
var y = mr, _ = Po(), M = s();
|
|
15634
15639
|
if (!ly) {
|
|
15635
15640
|
var B = s();
|
|
15636
|
-
|
|
15641
|
+
Ht(M, B) || (u("The result of getSnapshot should be cached to avoid an infinite loop"), ly = !0);
|
|
15637
15642
|
}
|
|
15638
|
-
var K = _.memoizedState, X =
|
|
15643
|
+
var K = _.memoizedState, X = !Ht(K, M);
|
|
15639
15644
|
X && (_.memoizedState = M, uv());
|
|
15640
15645
|
var he = _.queue;
|
|
15641
15646
|
if (nv(OM.bind(null, y, he, a), [a]), he.getSnapshot !== s || X || // Check if the susbcribe function changed. We can save some memory by
|
|
@@ -15675,7 +15680,7 @@ Incoming: %s`, it, "[" + s.join(", ") + "]", "[" + a.join(", ") + "]");
|
|
|
15675
15680
|
var s = a.getSnapshot, d = a.value;
|
|
15676
15681
|
try {
|
|
15677
15682
|
var y = s();
|
|
15678
|
-
return
|
|
15683
|
+
return !Ht(d, y);
|
|
15679
15684
|
} catch {
|
|
15680
15685
|
return !0;
|
|
15681
15686
|
}
|
|
@@ -15850,7 +15855,7 @@ Incoming: %s`, it, "[" + s.join(", ") + "]", "[" + a.join(", ") + "]");
|
|
|
15850
15855
|
function UM(a, s, d) {
|
|
15851
15856
|
var y = !V1(Fp);
|
|
15852
15857
|
if (y) {
|
|
15853
|
-
if (
|
|
15858
|
+
if (!Ht(d, s)) {
|
|
15854
15859
|
var _ = K1();
|
|
15855
15860
|
mr.lanes = Cn(mr.lanes, _), wv(_), a.baseState = !0;
|
|
15856
15861
|
}
|
|
@@ -15947,7 +15952,7 @@ Incoming: %s`, it, "[" + s.join(", ") + "]", "[" + a.join(", ") + "]");
|
|
|
15947
15952
|
K = It.current, It.current = bu;
|
|
15948
15953
|
try {
|
|
15949
15954
|
var X = s.lastRenderedState, he = B(X, d);
|
|
15950
|
-
if (_.hasEagerState = !0, _.eagerState = he,
|
|
15955
|
+
if (_.hasEagerState = !0, _.eagerState = he, Ht(he, X)) {
|
|
15951
15956
|
mH(a, s, _, y);
|
|
15952
15957
|
return;
|
|
15953
15958
|
}
|
|
@@ -17552,7 +17557,7 @@ Check the render method of \`` + y + "`.");
|
|
|
17552
17557
|
var tt = y.fallback, Tt = y.children, un = oq(a, s, Tt, tt, d), en = s.child, Kn = a.child.memoizedState;
|
|
17553
17558
|
return en.memoizedState = Kn === null ? jS(d) : nq(Kn, d), en.childLanes = aq(a, d), s.memoizedState = zS, un;
|
|
17554
17559
|
} else {
|
|
17555
|
-
var
|
|
17560
|
+
var zn = y.children, He = sq(a, s, zn, d);
|
|
17556
17561
|
return s.memoizedState = null, He;
|
|
17557
17562
|
}
|
|
17558
17563
|
}
|
|
@@ -17680,8 +17685,8 @@ Check the render method of \`` + y + "`.");
|
|
|
17680
17685
|
return y$(_, en), null;
|
|
17681
17686
|
} else {
|
|
17682
17687
|
eH(s, _, M.treeContext);
|
|
17683
|
-
var Kn = y.children,
|
|
17684
|
-
return
|
|
17688
|
+
var Kn = y.children, zn = $S(s, Kn);
|
|
17689
|
+
return zn.flags |= Rs, zn;
|
|
17685
17690
|
}
|
|
17686
17691
|
}
|
|
17687
17692
|
}
|
|
@@ -17865,7 +17870,7 @@ Check the render method of \`` + y + "`.");
|
|
|
17865
17870
|
}
|
|
17866
17871
|
if (yM(s, _, K), B !== null) {
|
|
17867
17872
|
var he = B.value;
|
|
17868
|
-
if (
|
|
17873
|
+
if (Ht(he, K)) {
|
|
17869
17874
|
if (B.children === M.children && !Pw())
|
|
17870
17875
|
return Oc(a, s, d);
|
|
17871
17876
|
} else
|
|
@@ -18042,18 +18047,18 @@ Check the render method of \`` + y + "`.");
|
|
|
18042
18047
|
case R:
|
|
18043
18048
|
return vq(a, s, d);
|
|
18044
18049
|
case de: {
|
|
18045
|
-
var en = s.type, Kn = s.pendingProps,
|
|
18050
|
+
var en = s.type, Kn = s.pendingProps, zn = wu(en, Kn);
|
|
18046
18051
|
if (s.type !== s.elementType) {
|
|
18047
18052
|
var He = en.propTypes;
|
|
18048
18053
|
He && yu(
|
|
18049
18054
|
He,
|
|
18050
|
-
|
|
18055
|
+
zn,
|
|
18051
18056
|
// Resolved for outer only
|
|
18052
18057
|
"prop",
|
|
18053
18058
|
Hn(en)
|
|
18054
18059
|
);
|
|
18055
18060
|
}
|
|
18056
|
-
return
|
|
18061
|
+
return zn = wu(en.type, zn), fT(a, s, en, zn, d);
|
|
18057
18062
|
}
|
|
18058
18063
|
case ce:
|
|
18059
18064
|
return dT(a, s, s.type, s.pendingProps, d);
|
|
@@ -18253,8 +18258,8 @@ Check the render method of \`` + y + "`.");
|
|
|
18253
18258
|
}
|
|
18254
18259
|
if ((s.flags & mn) !== sn)
|
|
18255
18260
|
return s.lanes = d, (s.mode & gn) !== Yt && mS(s), s;
|
|
18256
|
-
var
|
|
18257
|
-
if (
|
|
18261
|
+
var zn = en !== null, He = a !== null && a.memoizedState !== null;
|
|
18262
|
+
if (zn !== He && zn) {
|
|
18258
18263
|
var nt = s.child;
|
|
18259
18264
|
if (nt.flags |= Xu, (s.mode & Xt) !== Yt) {
|
|
18260
18265
|
var qe = a === null && (s.memoizedProps.unstable_avoidThisFallback !== !0 || !N);
|
|
@@ -18262,7 +18267,7 @@ Check the render method of \`` + y + "`.");
|
|
|
18262
18267
|
}
|
|
18263
18268
|
}
|
|
18264
18269
|
var pt = s.updateQueue;
|
|
18265
|
-
if (pt !== null && (s.flags |= En), hi(s), (s.mode & gn) !== Yt &&
|
|
18270
|
+
if (pt !== null && (s.flags |= En), hi(s), (s.mode & gn) !== Yt && zn) {
|
|
18266
18271
|
var Ut = s.child;
|
|
18267
18272
|
Ut !== null && (s.treeBaseDuration -= Ut.treeBaseDuration);
|
|
18268
18273
|
}
|
|
@@ -18426,7 +18431,7 @@ Check the render method of \`` + y + "`.");
|
|
|
18426
18431
|
}
|
|
18427
18432
|
var LT = null;
|
|
18428
18433
|
LT = /* @__PURE__ */ new Set();
|
|
18429
|
-
var k_ = !1, yi = !1, Sq = typeof WeakSet == "function" ? WeakSet : Set,
|
|
18434
|
+
var k_ = !1, yi = !1, Sq = typeof WeakSet == "function" ? WeakSet : Set, qt = null, hy = null, yy = null;
|
|
18430
18435
|
function Cq(a) {
|
|
18431
18436
|
oc(null, function() {
|
|
18432
18437
|
throw a;
|
|
@@ -18500,19 +18505,19 @@ Check the render method of \`` + y + "`.");
|
|
|
18500
18505
|
}
|
|
18501
18506
|
var IT = !1;
|
|
18502
18507
|
function kq(a, s) {
|
|
18503
|
-
Bj(a.containerInfo),
|
|
18508
|
+
Bj(a.containerInfo), qt = s, Mq();
|
|
18504
18509
|
var d = IT;
|
|
18505
18510
|
return IT = !1, d;
|
|
18506
18511
|
}
|
|
18507
18512
|
function Mq() {
|
|
18508
|
-
for (;
|
|
18509
|
-
var a =
|
|
18510
|
-
(a.subtreeFlags & vf) !== sn && s !== null ? (s.return = a,
|
|
18513
|
+
for (; qt !== null; ) {
|
|
18514
|
+
var a = qt, s = a.child;
|
|
18515
|
+
(a.subtreeFlags & vf) !== sn && s !== null ? (s.return = a, qt = s) : Tq();
|
|
18511
18516
|
}
|
|
18512
18517
|
}
|
|
18513
18518
|
function Tq() {
|
|
18514
|
-
for (;
|
|
18515
|
-
var a =
|
|
18519
|
+
for (; qt !== null; ) {
|
|
18520
|
+
var a = qt;
|
|
18516
18521
|
or(a);
|
|
18517
18522
|
try {
|
|
18518
18523
|
Rq(a);
|
|
@@ -18522,10 +18527,10 @@ Check the render method of \`` + y + "`.");
|
|
|
18522
18527
|
Vr();
|
|
18523
18528
|
var s = a.sibling;
|
|
18524
18529
|
if (s !== null) {
|
|
18525
|
-
s.return = a.return,
|
|
18530
|
+
s.return = a.return, qt = s;
|
|
18526
18531
|
return;
|
|
18527
18532
|
}
|
|
18528
|
-
|
|
18533
|
+
qt = a.return;
|
|
18529
18534
|
}
|
|
18530
18535
|
}
|
|
18531
18536
|
function Rq(a) {
|
|
@@ -18723,8 +18728,8 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
18723
18728
|
e: for (; Kn !== null; ) {
|
|
18724
18729
|
switch (Kn.tag) {
|
|
18725
18730
|
case w:
|
|
18726
|
-
var
|
|
18727
|
-
|
|
18731
|
+
var zn = Kn.stateNode;
|
|
18732
|
+
zn.effectDuration += Tt;
|
|
18728
18733
|
break e;
|
|
18729
18734
|
case q:
|
|
18730
18735
|
var He = Kn.stateNode;
|
|
@@ -19198,21 +19203,21 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
19198
19203
|
return;
|
|
19199
19204
|
}
|
|
19200
19205
|
case C: {
|
|
19201
|
-
var
|
|
19206
|
+
var zn = y !== null && y.memoizedState !== null;
|
|
19202
19207
|
if (
|
|
19203
19208
|
// TODO: Remove this dead flag
|
|
19204
19209
|
a.mode & Xt
|
|
19205
19210
|
) {
|
|
19206
19211
|
var He = yi;
|
|
19207
|
-
yi = He ||
|
|
19212
|
+
yi = He || zn, Cu(s, a), yi = He;
|
|
19208
19213
|
} else
|
|
19209
19214
|
Cu(s, a);
|
|
19210
19215
|
if (gl(a), _ & Xu) {
|
|
19211
19216
|
var nt = a.stateNode, qe = a.memoizedState, pt = qe !== null, Ut = a;
|
|
19212
|
-
if (nt.isHidden = pt, pt && !
|
|
19213
|
-
|
|
19217
|
+
if (nt.isHidden = pt, pt && !zn && (Ut.mode & Xt) !== Yt) {
|
|
19218
|
+
qt = Ut;
|
|
19214
19219
|
for (var Lt = Ut.child; Lt !== null; )
|
|
19215
|
-
|
|
19220
|
+
qt = Lt, Hq(Lt), Lt = Lt.sibling;
|
|
19216
19221
|
}
|
|
19217
19222
|
Pq(Ut, pt);
|
|
19218
19223
|
}
|
|
@@ -19243,11 +19248,11 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
19243
19248
|
s & Rs && (a.flags &= ~Rs);
|
|
19244
19249
|
}
|
|
19245
19250
|
function $q(a, s, d) {
|
|
19246
|
-
hy = d, yy = s,
|
|
19251
|
+
hy = d, yy = s, qt = a, HT(a, s, d), hy = null, yy = null;
|
|
19247
19252
|
}
|
|
19248
19253
|
function HT(a, s, d) {
|
|
19249
|
-
for (var y = (a.mode & Xt) !== Yt;
|
|
19250
|
-
var _ =
|
|
19254
|
+
for (var y = (a.mode & Xt) !== Yt; qt !== null; ) {
|
|
19255
|
+
var _ = qt, M = _.child;
|
|
19251
19256
|
if (_.tag === C && y) {
|
|
19252
19257
|
var B = _.memoizedState !== null, K = B || k_;
|
|
19253
19258
|
if (K) {
|
|
@@ -19255,24 +19260,24 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
19255
19260
|
continue;
|
|
19256
19261
|
} else {
|
|
19257
19262
|
var X = _.alternate, he = X !== null && X.memoizedState !== null, we = he || yi, je = k_, Fe = yi;
|
|
19258
|
-
k_ = K, yi = we, yi && !Fe && (
|
|
19263
|
+
k_ = K, yi = we, yi && !Fe && (qt = _, qq(_));
|
|
19259
19264
|
for (var Ge = M; Ge !== null; )
|
|
19260
|
-
|
|
19265
|
+
qt = Ge, HT(
|
|
19261
19266
|
Ge,
|
|
19262
19267
|
// New root; bubble back up to here and stop.
|
|
19263
19268
|
s,
|
|
19264
19269
|
d
|
|
19265
19270
|
), Ge = Ge.sibling;
|
|
19266
|
-
|
|
19271
|
+
qt = _, k_ = je, yi = Fe, JS(a, s, d);
|
|
19267
19272
|
continue;
|
|
19268
19273
|
}
|
|
19269
19274
|
}
|
|
19270
|
-
(_.subtreeFlags & ei) !== sn && M !== null ? (M.return = _,
|
|
19275
|
+
(_.subtreeFlags & ei) !== sn && M !== null ? (M.return = _, qt = M) : JS(a, s, d);
|
|
19271
19276
|
}
|
|
19272
19277
|
}
|
|
19273
19278
|
function JS(a, s, d) {
|
|
19274
|
-
for (;
|
|
19275
|
-
var y =
|
|
19279
|
+
for (; qt !== null; ) {
|
|
19280
|
+
var y = qt;
|
|
19276
19281
|
if ((y.flags & ei) !== sn) {
|
|
19277
19282
|
var _ = y.alternate;
|
|
19278
19283
|
or(y);
|
|
@@ -19284,20 +19289,20 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
19284
19289
|
Vr();
|
|
19285
19290
|
}
|
|
19286
19291
|
if (y === a) {
|
|
19287
|
-
|
|
19292
|
+
qt = null;
|
|
19288
19293
|
return;
|
|
19289
19294
|
}
|
|
19290
19295
|
var M = y.sibling;
|
|
19291
19296
|
if (M !== null) {
|
|
19292
|
-
M.return = y.return,
|
|
19297
|
+
M.return = y.return, qt = M;
|
|
19293
19298
|
return;
|
|
19294
19299
|
}
|
|
19295
|
-
|
|
19300
|
+
qt = y.return;
|
|
19296
19301
|
}
|
|
19297
19302
|
}
|
|
19298
19303
|
function Hq(a) {
|
|
19299
|
-
for (;
|
|
19300
|
-
var s =
|
|
19304
|
+
for (; qt !== null; ) {
|
|
19305
|
+
var s = qt, d = s.child;
|
|
19301
19306
|
switch (s.tag) {
|
|
19302
19307
|
case p:
|
|
19303
19308
|
case D:
|
|
@@ -19332,27 +19337,27 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
19332
19337
|
break;
|
|
19333
19338
|
}
|
|
19334
19339
|
}
|
|
19335
|
-
d !== null ? (d.return = s,
|
|
19340
|
+
d !== null ? (d.return = s, qt = d) : qT(a);
|
|
19336
19341
|
}
|
|
19337
19342
|
}
|
|
19338
19343
|
function qT(a) {
|
|
19339
|
-
for (;
|
|
19340
|
-
var s =
|
|
19344
|
+
for (; qt !== null; ) {
|
|
19345
|
+
var s = qt;
|
|
19341
19346
|
if (s === a) {
|
|
19342
|
-
|
|
19347
|
+
qt = null;
|
|
19343
19348
|
return;
|
|
19344
19349
|
}
|
|
19345
19350
|
var d = s.sibling;
|
|
19346
19351
|
if (d !== null) {
|
|
19347
|
-
d.return = s.return,
|
|
19352
|
+
d.return = s.return, qt = d;
|
|
19348
19353
|
return;
|
|
19349
19354
|
}
|
|
19350
|
-
|
|
19355
|
+
qt = s.return;
|
|
19351
19356
|
}
|
|
19352
19357
|
}
|
|
19353
19358
|
function qq(a) {
|
|
19354
|
-
for (;
|
|
19355
|
-
var s =
|
|
19359
|
+
for (; qt !== null; ) {
|
|
19360
|
+
var s = qt, d = s.child;
|
|
19356
19361
|
if (s.tag === C) {
|
|
19357
19362
|
var y = s.memoizedState !== null;
|
|
19358
19363
|
if (y) {
|
|
@@ -19360,12 +19365,12 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
19360
19365
|
continue;
|
|
19361
19366
|
}
|
|
19362
19367
|
}
|
|
19363
|
-
d !== null ? (d.return = s,
|
|
19368
|
+
d !== null ? (d.return = s, qt = d) : VT(a);
|
|
19364
19369
|
}
|
|
19365
19370
|
}
|
|
19366
19371
|
function VT(a) {
|
|
19367
|
-
for (;
|
|
19368
|
-
var s =
|
|
19372
|
+
for (; qt !== null; ) {
|
|
19373
|
+
var s = qt;
|
|
19369
19374
|
or(s);
|
|
19370
19375
|
try {
|
|
19371
19376
|
Nq(s);
|
|
@@ -19373,29 +19378,29 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
19373
19378
|
Lr(s, s.return, y);
|
|
19374
19379
|
}
|
|
19375
19380
|
if (Vr(), s === a) {
|
|
19376
|
-
|
|
19381
|
+
qt = null;
|
|
19377
19382
|
return;
|
|
19378
19383
|
}
|
|
19379
19384
|
var d = s.sibling;
|
|
19380
19385
|
if (d !== null) {
|
|
19381
|
-
d.return = s.return,
|
|
19386
|
+
d.return = s.return, qt = d;
|
|
19382
19387
|
return;
|
|
19383
19388
|
}
|
|
19384
|
-
|
|
19389
|
+
qt = s.return;
|
|
19385
19390
|
}
|
|
19386
19391
|
}
|
|
19387
19392
|
function Vq(a, s, d, y) {
|
|
19388
|
-
|
|
19393
|
+
qt = s, Gq(s, a, d, y);
|
|
19389
19394
|
}
|
|
19390
19395
|
function Gq(a, s, d, y) {
|
|
19391
|
-
for (;
|
|
19392
|
-
var _ =
|
|
19393
|
-
(_.subtreeFlags & Os) !== sn && M !== null ? (M.return = _,
|
|
19396
|
+
for (; qt !== null; ) {
|
|
19397
|
+
var _ = qt, M = _.child;
|
|
19398
|
+
(_.subtreeFlags & Os) !== sn && M !== null ? (M.return = _, qt = M) : Wq(a, s, d, y);
|
|
19394
19399
|
}
|
|
19395
19400
|
}
|
|
19396
19401
|
function Wq(a, s, d, y) {
|
|
19397
|
-
for (;
|
|
19398
|
-
var _ =
|
|
19402
|
+
for (; qt !== null; ) {
|
|
19403
|
+
var _ = qt;
|
|
19399
19404
|
if ((_.flags & Ir) !== sn) {
|
|
19400
19405
|
or(_);
|
|
19401
19406
|
try {
|
|
@@ -19406,15 +19411,15 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
19406
19411
|
Vr();
|
|
19407
19412
|
}
|
|
19408
19413
|
if (_ === a) {
|
|
19409
|
-
|
|
19414
|
+
qt = null;
|
|
19410
19415
|
return;
|
|
19411
19416
|
}
|
|
19412
19417
|
var M = _.sibling;
|
|
19413
19418
|
if (M !== null) {
|
|
19414
|
-
M.return = _.return,
|
|
19419
|
+
M.return = _.return, qt = M;
|
|
19415
19420
|
return;
|
|
19416
19421
|
}
|
|
19417
|
-
|
|
19422
|
+
qt = _.return;
|
|
19418
19423
|
}
|
|
19419
19424
|
}
|
|
19420
19425
|
function Kq(a, s, d, y) {
|
|
@@ -19436,17 +19441,17 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
19436
19441
|
}
|
|
19437
19442
|
}
|
|
19438
19443
|
function Yq(a) {
|
|
19439
|
-
|
|
19444
|
+
qt = a, Jq();
|
|
19440
19445
|
}
|
|
19441
19446
|
function Jq() {
|
|
19442
|
-
for (;
|
|
19443
|
-
var a =
|
|
19444
|
-
if ((
|
|
19447
|
+
for (; qt !== null; ) {
|
|
19448
|
+
var a = qt, s = a.child;
|
|
19449
|
+
if ((qt.flags & ir) !== sn) {
|
|
19445
19450
|
var d = a.deletions;
|
|
19446
19451
|
if (d !== null) {
|
|
19447
19452
|
for (var y = 0; y < d.length; y++) {
|
|
19448
19453
|
var _ = d[y];
|
|
19449
|
-
|
|
19454
|
+
qt = _, Xq(_, a);
|
|
19450
19455
|
}
|
|
19451
19456
|
{
|
|
19452
19457
|
var M = a.alternate;
|
|
@@ -19461,22 +19466,22 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
19461
19466
|
}
|
|
19462
19467
|
}
|
|
19463
19468
|
}
|
|
19464
|
-
|
|
19469
|
+
qt = a;
|
|
19465
19470
|
}
|
|
19466
19471
|
}
|
|
19467
|
-
(a.subtreeFlags & Os) !== sn && s !== null ? (s.return = a,
|
|
19472
|
+
(a.subtreeFlags & Os) !== sn && s !== null ? (s.return = a, qt = s) : Qq();
|
|
19468
19473
|
}
|
|
19469
19474
|
}
|
|
19470
19475
|
function Qq() {
|
|
19471
|
-
for (;
|
|
19472
|
-
var a =
|
|
19476
|
+
for (; qt !== null; ) {
|
|
19477
|
+
var a = qt;
|
|
19473
19478
|
(a.flags & Ir) !== sn && (or(a), Zq(a), Vr());
|
|
19474
19479
|
var s = a.sibling;
|
|
19475
19480
|
if (s !== null) {
|
|
19476
|
-
s.return = a.return,
|
|
19481
|
+
s.return = a.return, qt = s;
|
|
19477
19482
|
return;
|
|
19478
19483
|
}
|
|
19479
|
-
|
|
19484
|
+
qt = a.return;
|
|
19480
19485
|
}
|
|
19481
19486
|
}
|
|
19482
19487
|
function Zq(a) {
|
|
@@ -19490,25 +19495,25 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
19490
19495
|
}
|
|
19491
19496
|
}
|
|
19492
19497
|
function Xq(a, s) {
|
|
19493
|
-
for (;
|
|
19494
|
-
var d =
|
|
19498
|
+
for (; qt !== null; ) {
|
|
19499
|
+
var d = qt;
|
|
19495
19500
|
or(d), tV(d, s), Vr();
|
|
19496
19501
|
var y = d.child;
|
|
19497
|
-
y !== null ? (y.return = d,
|
|
19502
|
+
y !== null ? (y.return = d, qt = y) : eV(a);
|
|
19498
19503
|
}
|
|
19499
19504
|
}
|
|
19500
19505
|
function eV(a) {
|
|
19501
|
-
for (;
|
|
19502
|
-
var s =
|
|
19506
|
+
for (; qt !== null; ) {
|
|
19507
|
+
var s = qt, d = s.sibling, y = s.return;
|
|
19503
19508
|
if (UT(s), s === a) {
|
|
19504
|
-
|
|
19509
|
+
qt = null;
|
|
19505
19510
|
return;
|
|
19506
19511
|
}
|
|
19507
19512
|
if (d !== null) {
|
|
19508
|
-
d.return = y,
|
|
19513
|
+
d.return = y, qt = d;
|
|
19509
19514
|
return;
|
|
19510
19515
|
}
|
|
19511
|
-
|
|
19516
|
+
qt = y;
|
|
19512
19517
|
}
|
|
19513
19518
|
}
|
|
19514
19519
|
function tV(a, s) {
|
|
@@ -19842,7 +19847,7 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
19842
19847
|
for (var _ = 0; _ < y.length; _++) {
|
|
19843
19848
|
var M = y[_], B = M.getSnapshot, K = M.value;
|
|
19844
19849
|
try {
|
|
19845
|
-
if (
|
|
19850
|
+
if (!Ht(B(), K))
|
|
19846
19851
|
return !1;
|
|
19847
19852
|
} catch {
|
|
19848
19853
|
return !1;
|
|
@@ -21730,7 +21735,7 @@ function f2() {
|
|
|
21730
21735
|
'The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array'
|
|
21731
21736
|
);
|
|
21732
21737
|
if (P === U) return 0;
|
|
21733
|
-
for (var ee = P.length, oe = U.length, Ee = 0,
|
|
21738
|
+
for (var ee = P.length, oe = U.length, Ee = 0, Ne = Math.min(ee, oe); Ee < Ne; ++Ee)
|
|
21734
21739
|
if (P[Ee] !== U[Ee]) {
|
|
21735
21740
|
ee = P[Ee], oe = U[Ee];
|
|
21736
21741
|
break;
|
|
@@ -21764,18 +21769,18 @@ function f2() {
|
|
|
21764
21769
|
U += P[ee].length;
|
|
21765
21770
|
var oe = c.allocUnsafe(U), Ee = 0;
|
|
21766
21771
|
for (ee = 0; ee < P.length; ++ee) {
|
|
21767
|
-
var
|
|
21768
|
-
if (ue(
|
|
21769
|
-
Ee +
|
|
21772
|
+
var Ne = P[ee];
|
|
21773
|
+
if (ue(Ne, Uint8Array))
|
|
21774
|
+
Ee + Ne.length > oe.length ? c.from(Ne).copy(oe, Ee) : Uint8Array.prototype.set.call(
|
|
21770
21775
|
oe,
|
|
21771
|
-
|
|
21776
|
+
Ne,
|
|
21772
21777
|
Ee
|
|
21773
21778
|
);
|
|
21774
|
-
else if (c.isBuffer(
|
|
21775
|
-
|
|
21779
|
+
else if (c.isBuffer(Ne))
|
|
21780
|
+
Ne.copy(oe, Ee);
|
|
21776
21781
|
else
|
|
21777
21782
|
throw new TypeError('"list" argument must be an Array of Buffers');
|
|
21778
|
-
Ee +=
|
|
21783
|
+
Ee += Ne.length;
|
|
21779
21784
|
}
|
|
21780
21785
|
return oe;
|
|
21781
21786
|
};
|
|
@@ -21892,12 +21897,12 @@ function f2() {
|
|
|
21892
21897
|
if (U >= ee)
|
|
21893
21898
|
return 1;
|
|
21894
21899
|
if (U >>>= 0, ee >>>= 0, oe >>>= 0, Ee >>>= 0, this === P) return 0;
|
|
21895
|
-
for (var
|
|
21900
|
+
for (var Ne = Ee - oe, Qe = ee - U, st = Math.min(Ne, Qe), _t = this.slice(oe, Ee), St = P.slice(U, ee), Z = 0; Z < st; ++Z)
|
|
21896
21901
|
if (_t[Z] !== St[Z]) {
|
|
21897
|
-
|
|
21902
|
+
Ne = _t[Z], Qe = St[Z];
|
|
21898
21903
|
break;
|
|
21899
21904
|
}
|
|
21900
|
-
return
|
|
21905
|
+
return Ne < Qe ? -1 : Qe < Ne ? 1 : 0;
|
|
21901
21906
|
};
|
|
21902
21907
|
function de(J, P, U, ee, oe) {
|
|
21903
21908
|
if (J.length === 0) return -1;
|
|
@@ -21914,11 +21919,11 @@ function f2() {
|
|
|
21914
21919
|
throw new TypeError("val must be string, number or Buffer");
|
|
21915
21920
|
}
|
|
21916
21921
|
function ce(J, P, U, ee, oe) {
|
|
21917
|
-
var Ee = 1,
|
|
21922
|
+
var Ee = 1, Ne = J.length, Qe = P.length;
|
|
21918
21923
|
if (ee !== void 0 && (ee = String(ee).toLowerCase(), ee === "ucs2" || ee === "ucs-2" || ee === "utf16le" || ee === "utf-16le")) {
|
|
21919
21924
|
if (J.length < 2 || P.length < 2)
|
|
21920
21925
|
return -1;
|
|
21921
|
-
Ee = 2,
|
|
21926
|
+
Ee = 2, Ne /= 2, Qe /= 2, U /= 2;
|
|
21922
21927
|
}
|
|
21923
21928
|
function st(G, ge) {
|
|
21924
21929
|
return Ee === 1 ? G[ge] : G.readUInt16BE(ge * Ee);
|
|
@@ -21926,13 +21931,13 @@ function f2() {
|
|
|
21926
21931
|
var _t;
|
|
21927
21932
|
if (oe) {
|
|
21928
21933
|
var St = -1;
|
|
21929
|
-
for (_t = U; _t <
|
|
21934
|
+
for (_t = U; _t < Ne; _t++)
|
|
21930
21935
|
if (st(J, _t) === st(P, St === -1 ? 0 : _t - St)) {
|
|
21931
21936
|
if (St === -1 && (St = _t), _t - St + 1 === Qe) return St * Ee;
|
|
21932
21937
|
} else
|
|
21933
21938
|
St !== -1 && (_t -= _t - St), St = -1;
|
|
21934
21939
|
} else
|
|
21935
|
-
for (U + Qe >
|
|
21940
|
+
for (U + Qe > Ne && (U = Ne - Qe), _t = U; _t >= 0; _t--) {
|
|
21936
21941
|
for (var Z = !0, H = 0; H < Qe; H++)
|
|
21937
21942
|
if (st(J, _t + H) !== st(P, H)) {
|
|
21938
21943
|
Z = !1;
|
|
@@ -21955,12 +21960,12 @@ function f2() {
|
|
|
21955
21960
|
ee ? (ee = Number(ee), ee > oe && (ee = oe)) : ee = oe;
|
|
21956
21961
|
var Ee = P.length;
|
|
21957
21962
|
ee > Ee / 2 && (ee = Ee / 2);
|
|
21958
|
-
for (var
|
|
21959
|
-
var Qe = parseInt(P.substr(
|
|
21960
|
-
if (te(Qe)) return
|
|
21961
|
-
J[U +
|
|
21963
|
+
for (var Ne = 0; Ne < ee; ++Ne) {
|
|
21964
|
+
var Qe = parseInt(P.substr(Ne * 2, 2), 16);
|
|
21965
|
+
if (te(Qe)) return Ne;
|
|
21966
|
+
J[U + Ne] = Qe;
|
|
21962
21967
|
}
|
|
21963
|
-
return
|
|
21968
|
+
return Ne;
|
|
21964
21969
|
}
|
|
21965
21970
|
function Se(J, P, U, ee) {
|
|
21966
21971
|
return pe(Me(P, J.length - U), J, U, ee);
|
|
@@ -21989,7 +21994,7 @@ function f2() {
|
|
|
21989
21994
|
if ((ee === void 0 || ee > Ee) && (ee = Ee), P.length > 0 && (ee < 0 || U < 0) || U > this.length)
|
|
21990
21995
|
throw new RangeError("Attempt to write outside buffer bounds");
|
|
21991
21996
|
oe || (oe = "utf8");
|
|
21992
|
-
for (var
|
|
21997
|
+
for (var Ne = !1; ; )
|
|
21993
21998
|
switch (oe) {
|
|
21994
21999
|
case "hex":
|
|
21995
22000
|
return me(this, P, U, ee);
|
|
@@ -22008,8 +22013,8 @@ function f2() {
|
|
|
22008
22013
|
case "utf-16le":
|
|
22009
22014
|
return ke(this, P, U, ee);
|
|
22010
22015
|
default:
|
|
22011
|
-
if (
|
|
22012
|
-
oe = ("" + oe).toLowerCase(),
|
|
22016
|
+
if (Ne) throw new TypeError("Unknown encoding: " + oe);
|
|
22017
|
+
oe = ("" + oe).toLowerCase(), Ne = !0;
|
|
22013
22018
|
}
|
|
22014
22019
|
}, c.prototype.toJSON = function() {
|
|
22015
22020
|
return {
|
|
@@ -22023,24 +22028,24 @@ function f2() {
|
|
|
22023
22028
|
function x(J, P, U) {
|
|
22024
22029
|
U = Math.min(J.length, U);
|
|
22025
22030
|
for (var ee = [], oe = P; oe < U; ) {
|
|
22026
|
-
var Ee = J[oe],
|
|
22031
|
+
var Ee = J[oe], Ne = null, Qe = Ee > 239 ? 4 : Ee > 223 ? 3 : Ee > 191 ? 2 : 1;
|
|
22027
22032
|
if (oe + Qe <= U) {
|
|
22028
22033
|
var st, _t, St, Z;
|
|
22029
22034
|
switch (Qe) {
|
|
22030
22035
|
case 1:
|
|
22031
|
-
Ee < 128 && (
|
|
22036
|
+
Ee < 128 && (Ne = Ee);
|
|
22032
22037
|
break;
|
|
22033
22038
|
case 2:
|
|
22034
|
-
st = J[oe + 1], (st & 192) === 128 && (Z = (Ee & 31) << 6 | st & 63, Z > 127 && (
|
|
22039
|
+
st = J[oe + 1], (st & 192) === 128 && (Z = (Ee & 31) << 6 | st & 63, Z > 127 && (Ne = Z));
|
|
22035
22040
|
break;
|
|
22036
22041
|
case 3:
|
|
22037
|
-
st = J[oe + 1], _t = J[oe + 2], (st & 192) === 128 && (_t & 192) === 128 && (Z = (Ee & 15) << 12 | (st & 63) << 6 | _t & 63, Z > 2047 && (Z < 55296 || Z > 57343) && (
|
|
22042
|
+
st = J[oe + 1], _t = J[oe + 2], (st & 192) === 128 && (_t & 192) === 128 && (Z = (Ee & 15) << 12 | (st & 63) << 6 | _t & 63, Z > 2047 && (Z < 55296 || Z > 57343) && (Ne = Z));
|
|
22038
22043
|
break;
|
|
22039
22044
|
case 4:
|
|
22040
|
-
st = J[oe + 1], _t = J[oe + 2], St = J[oe + 3], (st & 192) === 128 && (_t & 192) === 128 && (St & 192) === 128 && (Z = (Ee & 15) << 18 | (st & 63) << 12 | (_t & 63) << 6 | St & 63, Z > 65535 && Z < 1114112 && (
|
|
22045
|
+
st = J[oe + 1], _t = J[oe + 2], St = J[oe + 3], (st & 192) === 128 && (_t & 192) === 128 && (St & 192) === 128 && (Z = (Ee & 15) << 18 | (st & 63) << 12 | (_t & 63) << 6 | St & 63, Z > 65535 && Z < 1114112 && (Ne = Z));
|
|
22041
22046
|
}
|
|
22042
22047
|
}
|
|
22043
|
-
|
|
22048
|
+
Ne === null ? (Ne = 65533, Qe = 1) : Ne > 65535 && (Ne -= 65536, ee.push(Ne >>> 10 & 1023 | 55296), Ne = 56320 | Ne & 1023), ee.push(Ne), oe += Qe;
|
|
22044
22049
|
}
|
|
22045
22050
|
return z(ee);
|
|
22046
22051
|
}
|
|
@@ -22094,8 +22099,8 @@ function f2() {
|
|
|
22094
22099
|
}
|
|
22095
22100
|
c.prototype.readUintLE = c.prototype.readUIntLE = function(P, U, ee) {
|
|
22096
22101
|
P = P >>> 0, U = U >>> 0, ee || N(P, U, this.length);
|
|
22097
|
-
for (var oe = this[P], Ee = 1,
|
|
22098
|
-
oe += this[P +
|
|
22102
|
+
for (var oe = this[P], Ee = 1, Ne = 0; ++Ne < U && (Ee *= 256); )
|
|
22103
|
+
oe += this[P + Ne] * Ee;
|
|
22099
22104
|
return oe;
|
|
22100
22105
|
}, c.prototype.readUintBE = c.prototype.readUIntBE = function(P, U, ee) {
|
|
22101
22106
|
P = P >>> 0, U = U >>> 0, ee || N(P, U, this.length);
|
|
@@ -22114,14 +22119,14 @@ function f2() {
|
|
|
22114
22119
|
return P = P >>> 0, U || N(P, 4, this.length), this[P] * 16777216 + (this[P + 1] << 16 | this[P + 2] << 8 | this[P + 3]);
|
|
22115
22120
|
}, c.prototype.readIntLE = function(P, U, ee) {
|
|
22116
22121
|
P = P >>> 0, U = U >>> 0, ee || N(P, U, this.length);
|
|
22117
|
-
for (var oe = this[P], Ee = 1,
|
|
22118
|
-
oe += this[P +
|
|
22122
|
+
for (var oe = this[P], Ee = 1, Ne = 0; ++Ne < U && (Ee *= 256); )
|
|
22123
|
+
oe += this[P + Ne] * Ee;
|
|
22119
22124
|
return Ee *= 128, oe >= Ee && (oe -= Math.pow(2, 8 * U)), oe;
|
|
22120
22125
|
}, c.prototype.readIntBE = function(P, U, ee) {
|
|
22121
22126
|
P = P >>> 0, U = U >>> 0, ee || N(P, U, this.length);
|
|
22122
|
-
for (var oe = U, Ee = 1,
|
|
22123
|
-
|
|
22124
|
-
return Ee *= 128,
|
|
22127
|
+
for (var oe = U, Ee = 1, Ne = this[P + --oe]; oe > 0 && (Ee *= 256); )
|
|
22128
|
+
Ne += this[P + --oe] * Ee;
|
|
22129
|
+
return Ee *= 128, Ne >= Ee && (Ne -= Math.pow(2, 8 * U)), Ne;
|
|
22125
22130
|
}, c.prototype.readInt8 = function(P, U) {
|
|
22126
22131
|
return P = P >>> 0, U || N(P, 1, this.length), this[P] & 128 ? (255 - this[P] + 1) * -1 : this[P];
|
|
22127
22132
|
}, c.prototype.readInt16LE = function(P, U) {
|
|
@@ -22155,18 +22160,18 @@ function f2() {
|
|
|
22155
22160
|
var Ee = Math.pow(2, 8 * ee) - 1;
|
|
22156
22161
|
k(this, P, U, ee, Ee, 0);
|
|
22157
22162
|
}
|
|
22158
|
-
var
|
|
22159
|
-
for (this[U] = P & 255; ++Qe < ee && (
|
|
22160
|
-
this[U + Qe] = P /
|
|
22163
|
+
var Ne = 1, Qe = 0;
|
|
22164
|
+
for (this[U] = P & 255; ++Qe < ee && (Ne *= 256); )
|
|
22165
|
+
this[U + Qe] = P / Ne & 255;
|
|
22161
22166
|
return U + ee;
|
|
22162
22167
|
}, c.prototype.writeUintBE = c.prototype.writeUIntBE = function(P, U, ee, oe) {
|
|
22163
22168
|
if (P = +P, U = U >>> 0, ee = ee >>> 0, !oe) {
|
|
22164
22169
|
var Ee = Math.pow(2, 8 * ee) - 1;
|
|
22165
22170
|
k(this, P, U, ee, Ee, 0);
|
|
22166
22171
|
}
|
|
22167
|
-
var
|
|
22168
|
-
for (this[U +
|
|
22169
|
-
this[U +
|
|
22172
|
+
var Ne = ee - 1, Qe = 1;
|
|
22173
|
+
for (this[U + Ne] = P & 255; --Ne >= 0 && (Qe *= 256); )
|
|
22174
|
+
this[U + Ne] = P / Qe & 255;
|
|
22170
22175
|
return U + ee;
|
|
22171
22176
|
}, c.prototype.writeUint8 = c.prototype.writeUInt8 = function(P, U, ee) {
|
|
22172
22177
|
return P = +P, U = U >>> 0, ee || k(this, P, U, 1, 255, 0), this[U] = P & 255, U + 1;
|
|
@@ -22183,18 +22188,18 @@ function f2() {
|
|
|
22183
22188
|
var Ee = Math.pow(2, 8 * ee - 1);
|
|
22184
22189
|
k(this, P, U, ee, Ee - 1, -Ee);
|
|
22185
22190
|
}
|
|
22186
|
-
var
|
|
22187
|
-
for (this[U] = P & 255; ++
|
|
22188
|
-
P < 0 && st === 0 && this[U +
|
|
22191
|
+
var Ne = 0, Qe = 1, st = 0;
|
|
22192
|
+
for (this[U] = P & 255; ++Ne < ee && (Qe *= 256); )
|
|
22193
|
+
P < 0 && st === 0 && this[U + Ne - 1] !== 0 && (st = 1), this[U + Ne] = (P / Qe >> 0) - st & 255;
|
|
22189
22194
|
return U + ee;
|
|
22190
22195
|
}, c.prototype.writeIntBE = function(P, U, ee, oe) {
|
|
22191
22196
|
if (P = +P, U = U >>> 0, !oe) {
|
|
22192
22197
|
var Ee = Math.pow(2, 8 * ee - 1);
|
|
22193
22198
|
k(this, P, U, ee, Ee - 1, -Ee);
|
|
22194
22199
|
}
|
|
22195
|
-
var
|
|
22196
|
-
for (this[U +
|
|
22197
|
-
P < 0 && st === 0 && this[U +
|
|
22200
|
+
var Ne = ee - 1, Qe = 1, st = 0;
|
|
22201
|
+
for (this[U + Ne] = P & 255; --Ne >= 0 && (Qe *= 256); )
|
|
22202
|
+
P < 0 && st === 0 && this[U + Ne + 1] !== 0 && (st = 1), this[U + Ne] = (P / Qe >> 0) - st & 255;
|
|
22198
22203
|
return U + ee;
|
|
22199
22204
|
}, c.prototype.writeInt8 = function(P, U, ee) {
|
|
22200
22205
|
return P = +P, U = U >>> 0, ee || k(this, P, U, 1, 127, -128), P < 0 && (P = 255 + P + 1), this[U] = P & 255, U + 1;
|
|
@@ -22256,16 +22261,16 @@ function f2() {
|
|
|
22256
22261
|
if (ee <= U)
|
|
22257
22262
|
return this;
|
|
22258
22263
|
U = U >>> 0, ee = ee === void 0 ? this.length : ee >>> 0, P || (P = 0);
|
|
22259
|
-
var
|
|
22264
|
+
var Ne;
|
|
22260
22265
|
if (typeof P == "number")
|
|
22261
|
-
for (
|
|
22262
|
-
this[
|
|
22266
|
+
for (Ne = U; Ne < ee; ++Ne)
|
|
22267
|
+
this[Ne] = P;
|
|
22263
22268
|
else {
|
|
22264
22269
|
var Qe = c.isBuffer(P) ? P : c.from(P, oe), st = Qe.length;
|
|
22265
22270
|
if (st === 0)
|
|
22266
22271
|
throw new TypeError('The value "' + P + '" is invalid for argument "value"');
|
|
22267
|
-
for (
|
|
22268
|
-
this[
|
|
22272
|
+
for (Ne = 0; Ne < ee - U; ++Ne)
|
|
22273
|
+
this[Ne + U] = Qe[Ne % st];
|
|
22269
22274
|
}
|
|
22270
22275
|
return this;
|
|
22271
22276
|
};
|
|
@@ -22278,13 +22283,13 @@ function f2() {
|
|
|
22278
22283
|
}
|
|
22279
22284
|
function Me(J, P) {
|
|
22280
22285
|
P = P || 1 / 0;
|
|
22281
|
-
for (var U, ee = J.length, oe = null, Ee = [],
|
|
22282
|
-
if (U = J.charCodeAt(
|
|
22286
|
+
for (var U, ee = J.length, oe = null, Ee = [], Ne = 0; Ne < ee; ++Ne) {
|
|
22287
|
+
if (U = J.charCodeAt(Ne), U > 55295 && U < 57344) {
|
|
22283
22288
|
if (!oe) {
|
|
22284
22289
|
if (U > 56319) {
|
|
22285
22290
|
(P -= 3) > -1 && Ee.push(239, 191, 189);
|
|
22286
22291
|
continue;
|
|
22287
|
-
} else if (
|
|
22292
|
+
} else if (Ne + 1 === ee) {
|
|
22288
22293
|
(P -= 3) > -1 && Ee.push(239, 191, 189);
|
|
22289
22294
|
continue;
|
|
22290
22295
|
}
|
|
@@ -22332,8 +22337,8 @@ function f2() {
|
|
|
22332
22337
|
return P;
|
|
22333
22338
|
}
|
|
22334
22339
|
function se(J, P) {
|
|
22335
|
-
for (var U, ee, oe, Ee = [],
|
|
22336
|
-
U = J.charCodeAt(
|
|
22340
|
+
for (var U, ee, oe, Ee = [], Ne = 0; Ne < J.length && !((P -= 2) < 0); ++Ne)
|
|
22341
|
+
U = J.charCodeAt(Ne), ee = U >> 8, oe = U % 256, Ee.push(oe), Ee.push(ee);
|
|
22337
22342
|
return Ee;
|
|
22338
22343
|
}
|
|
22339
22344
|
function fe(J) {
|
|
@@ -24129,7 +24134,7 @@ q4.exports;
|
|
|
24129
24134
|
return N !== 0 ? O.words[k] = N | 0 : O.length--, O._strip();
|
|
24130
24135
|
}
|
|
24131
24136
|
var L = function(x, O, z) {
|
|
24132
|
-
var F = x.words, j = O.words, Q = z.words, ae = 0, N, k, Y, ie = F[0] | 0, $ = ie & 8191, be = ie >>> 13, Ie = F[1] | 0, Me = Ie & 8191, Ue = Ie >>> 13, se = F[2] | 0, fe = se & 8191, pe = se >>> 13, ue = F[3] | 0, te = ue & 8191, ye = ue >>> 13, J = F[4] | 0, P = J & 8191, U = J >>> 13, ee = F[5] | 0, oe = ee & 8191, Ee = ee >>> 13,
|
|
24137
|
+
var F = x.words, j = O.words, Q = z.words, ae = 0, N, k, Y, ie = F[0] | 0, $ = ie & 8191, be = ie >>> 13, Ie = F[1] | 0, Me = Ie & 8191, Ue = Ie >>> 13, se = F[2] | 0, fe = se & 8191, pe = se >>> 13, ue = F[3] | 0, te = ue & 8191, ye = ue >>> 13, J = F[4] | 0, P = J & 8191, U = J >>> 13, ee = F[5] | 0, oe = ee & 8191, Ee = ee >>> 13, Ne = F[6] | 0, Qe = Ne & 8191, st = Ne >>> 13, _t = F[7] | 0, St = _t & 8191, Z = _t >>> 13, H = F[8] | 0, G = H & 8191, ge = H >>> 13, _e = F[9] | 0, Re = _e & 8191, Be = _e >>> 13, wt = j[0] | 0, yt = wt & 8191, gt = wt >>> 13, Et = j[1] | 0, Rt = Et & 8191, nn = Et >>> 13, Mr = j[2] | 0, Zt = Mr & 8191, Wt = Mr >>> 13, Xr = j[3] | 0, Mn = Xr & 8191, In = Xr >>> 13, Ma = j[4] | 0, ve = Ma & 8191, xe = Ma >>> 13, ct = j[5] | 0, at = ct & 8191, ft = ct >>> 13, Dn = j[6] | 0, hn = Dn & 8191, Sn = Dn >>> 13, fr = j[7] | 0, On = fr & 8191, Un = fr >>> 13, Te = j[8] | 0, et = Te & 8191, rt = Te >>> 13, Nt = j[9] | 0, Ft = Nt & 8191, Bt = Nt >>> 13;
|
|
24133
24138
|
z.negative = x.negative ^ O.negative, z.length = 19, N = Math.imul($, yt), k = Math.imul($, gt), k = k + Math.imul(be, yt) | 0, Y = Math.imul(be, gt);
|
|
24134
24139
|
var Dt = (ae + N | 0) + ((k & 8191) << 13) | 0;
|
|
24135
24140
|
ae = (Y + (k >>> 13) | 0) + (Dt >>> 26) | 0, Dt &= 67108863, N = Math.imul(Me, yt), k = Math.imul(Me, gt), k = k + Math.imul(Ue, yt) | 0, Y = Math.imul(Ue, gt), N = N + Math.imul($, Rt) | 0, k = k + Math.imul($, nn) | 0, k = k + Math.imul(be, Rt) | 0, Y = Y + Math.imul(be, nn) | 0;
|
|
@@ -26377,9 +26382,9 @@ var uI = { exports: {} };
|
|
|
26377
26382
|
return this.encode(this.outputBits, !0), k.prototype.finalize.call(this);
|
|
26378
26383
|
};
|
|
26379
26384
|
var ie = function($) {
|
|
26380
|
-
var be, Ie, Me, Ue, se, fe, pe, ue, te, ye, J, P, U, ee, oe, Ee,
|
|
26385
|
+
var be, Ie, Me, Ue, se, fe, pe, ue, te, ye, J, P, U, ee, oe, Ee, Ne, Qe, st, _t, St, Z, H, G, ge, _e, Re, Be, wt, yt, gt, Et, Rt, nn, Mr, Zt, Wt, Xr, Mn, In, Ma, ve, xe, ct, at, ft, Dn, hn, Sn, fr, On, Un, Te, et, rt, Nt, Ft, Bt, Dt, Kt, dr, jn, Yn;
|
|
26381
26386
|
for (Me = 0; Me < 48; Me += 2)
|
|
26382
|
-
Ue = $[0] ^ $[10] ^ $[20] ^ $[30] ^ $[40], se = $[1] ^ $[11] ^ $[21] ^ $[31] ^ $[41], fe = $[2] ^ $[12] ^ $[22] ^ $[32] ^ $[42], pe = $[3] ^ $[13] ^ $[23] ^ $[33] ^ $[43], ue = $[4] ^ $[14] ^ $[24] ^ $[34] ^ $[44], te = $[5] ^ $[15] ^ $[25] ^ $[35] ^ $[45], ye = $[6] ^ $[16] ^ $[26] ^ $[36] ^ $[46], J = $[7] ^ $[17] ^ $[27] ^ $[37] ^ $[47], P = $[8] ^ $[18] ^ $[28] ^ $[38] ^ $[48], U = $[9] ^ $[19] ^ $[29] ^ $[39] ^ $[49], be = P ^ (fe << 1 | pe >>> 31), Ie = U ^ (pe << 1 | fe >>> 31), $[0] ^= be, $[1] ^= Ie, $[10] ^= be, $[11] ^= Ie, $[20] ^= be, $[21] ^= Ie, $[30] ^= be, $[31] ^= Ie, $[40] ^= be, $[41] ^= Ie, be = Ue ^ (ue << 1 | te >>> 31), Ie = se ^ (te << 1 | ue >>> 31), $[2] ^= be, $[3] ^= Ie, $[12] ^= be, $[13] ^= Ie, $[22] ^= be, $[23] ^= Ie, $[32] ^= be, $[33] ^= Ie, $[42] ^= be, $[43] ^= Ie, be = fe ^ (ye << 1 | J >>> 31), Ie = pe ^ (J << 1 | ye >>> 31), $[4] ^= be, $[5] ^= Ie, $[14] ^= be, $[15] ^= Ie, $[24] ^= be, $[25] ^= Ie, $[34] ^= be, $[35] ^= Ie, $[44] ^= be, $[45] ^= Ie, be = ue ^ (P << 1 | U >>> 31), Ie = te ^ (U << 1 | P >>> 31), $[6] ^= be, $[7] ^= Ie, $[16] ^= be, $[17] ^= Ie, $[26] ^= be, $[27] ^= Ie, $[36] ^= be, $[37] ^= Ie, $[46] ^= be, $[47] ^= Ie, be = ye ^ (Ue << 1 | se >>> 31), Ie = J ^ (se << 1 | Ue >>> 31), $[8] ^= be, $[9] ^= Ie, $[18] ^= be, $[19] ^= Ie, $[28] ^= be, $[29] ^= Ie, $[38] ^= be, $[39] ^= Ie, $[48] ^= be, $[49] ^= Ie, ee = $[0], oe = $[1], ft = $[11] << 4 | $[10] >>> 28, Dn = $[10] << 4 | $[11] >>> 28, Be = $[20] << 3 | $[21] >>> 29, wt = $[21] << 3 | $[20] >>> 29, Kt = $[31] << 9 | $[30] >>> 23, dr = $[30] << 9 | $[31] >>> 23, ve = $[40] << 18 | $[41] >>> 14, xe = $[41] << 18 | $[40] >>> 14, nn = $[2] << 1 | $[3] >>> 31, Mr = $[3] << 1 | $[2] >>> 31, Ee = $[13] << 12 | $[12] >>> 20,
|
|
26387
|
+
Ue = $[0] ^ $[10] ^ $[20] ^ $[30] ^ $[40], se = $[1] ^ $[11] ^ $[21] ^ $[31] ^ $[41], fe = $[2] ^ $[12] ^ $[22] ^ $[32] ^ $[42], pe = $[3] ^ $[13] ^ $[23] ^ $[33] ^ $[43], ue = $[4] ^ $[14] ^ $[24] ^ $[34] ^ $[44], te = $[5] ^ $[15] ^ $[25] ^ $[35] ^ $[45], ye = $[6] ^ $[16] ^ $[26] ^ $[36] ^ $[46], J = $[7] ^ $[17] ^ $[27] ^ $[37] ^ $[47], P = $[8] ^ $[18] ^ $[28] ^ $[38] ^ $[48], U = $[9] ^ $[19] ^ $[29] ^ $[39] ^ $[49], be = P ^ (fe << 1 | pe >>> 31), Ie = U ^ (pe << 1 | fe >>> 31), $[0] ^= be, $[1] ^= Ie, $[10] ^= be, $[11] ^= Ie, $[20] ^= be, $[21] ^= Ie, $[30] ^= be, $[31] ^= Ie, $[40] ^= be, $[41] ^= Ie, be = Ue ^ (ue << 1 | te >>> 31), Ie = se ^ (te << 1 | ue >>> 31), $[2] ^= be, $[3] ^= Ie, $[12] ^= be, $[13] ^= Ie, $[22] ^= be, $[23] ^= Ie, $[32] ^= be, $[33] ^= Ie, $[42] ^= be, $[43] ^= Ie, be = fe ^ (ye << 1 | J >>> 31), Ie = pe ^ (J << 1 | ye >>> 31), $[4] ^= be, $[5] ^= Ie, $[14] ^= be, $[15] ^= Ie, $[24] ^= be, $[25] ^= Ie, $[34] ^= be, $[35] ^= Ie, $[44] ^= be, $[45] ^= Ie, be = ue ^ (P << 1 | U >>> 31), Ie = te ^ (U << 1 | P >>> 31), $[6] ^= be, $[7] ^= Ie, $[16] ^= be, $[17] ^= Ie, $[26] ^= be, $[27] ^= Ie, $[36] ^= be, $[37] ^= Ie, $[46] ^= be, $[47] ^= Ie, be = ye ^ (Ue << 1 | se >>> 31), Ie = J ^ (se << 1 | Ue >>> 31), $[8] ^= be, $[9] ^= Ie, $[18] ^= be, $[19] ^= Ie, $[28] ^= be, $[29] ^= Ie, $[38] ^= be, $[39] ^= Ie, $[48] ^= be, $[49] ^= Ie, ee = $[0], oe = $[1], ft = $[11] << 4 | $[10] >>> 28, Dn = $[10] << 4 | $[11] >>> 28, Be = $[20] << 3 | $[21] >>> 29, wt = $[21] << 3 | $[20] >>> 29, Kt = $[31] << 9 | $[30] >>> 23, dr = $[30] << 9 | $[31] >>> 23, ve = $[40] << 18 | $[41] >>> 14, xe = $[41] << 18 | $[40] >>> 14, nn = $[2] << 1 | $[3] >>> 31, Mr = $[3] << 1 | $[2] >>> 31, Ee = $[13] << 12 | $[12] >>> 20, Ne = $[12] << 12 | $[13] >>> 20, hn = $[22] << 10 | $[23] >>> 22, Sn = $[23] << 10 | $[22] >>> 22, yt = $[33] << 13 | $[32] >>> 19, gt = $[32] << 13 | $[33] >>> 19, jn = $[42] << 2 | $[43] >>> 30, Yn = $[43] << 2 | $[42] >>> 30, et = $[5] << 30 | $[4] >>> 2, rt = $[4] << 30 | $[5] >>> 2, Zt = $[14] << 6 | $[15] >>> 26, Wt = $[15] << 6 | $[14] >>> 26, Qe = $[25] << 11 | $[24] >>> 21, st = $[24] << 11 | $[25] >>> 21, fr = $[34] << 15 | $[35] >>> 17, On = $[35] << 15 | $[34] >>> 17, Et = $[45] << 29 | $[44] >>> 3, Rt = $[44] << 29 | $[45] >>> 3, G = $[6] << 28 | $[7] >>> 4, ge = $[7] << 28 | $[6] >>> 4, Nt = $[17] << 23 | $[16] >>> 9, Ft = $[16] << 23 | $[17] >>> 9, Xr = $[26] << 25 | $[27] >>> 7, Mn = $[27] << 25 | $[26] >>> 7, _t = $[36] << 21 | $[37] >>> 11, St = $[37] << 21 | $[36] >>> 11, Un = $[47] << 24 | $[46] >>> 8, Te = $[46] << 24 | $[47] >>> 8, ct = $[8] << 27 | $[9] >>> 5, at = $[9] << 27 | $[8] >>> 5, _e = $[18] << 20 | $[19] >>> 12, Re = $[19] << 20 | $[18] >>> 12, Bt = $[29] << 7 | $[28] >>> 25, Dt = $[28] << 7 | $[29] >>> 25, In = $[38] << 8 | $[39] >>> 24, Ma = $[39] << 8 | $[38] >>> 24, Z = $[48] << 14 | $[49] >>> 18, H = $[49] << 14 | $[48] >>> 18, $[0] = ee ^ ~Ee & Qe, $[1] = oe ^ ~Ne & st, $[10] = G ^ ~_e & Be, $[11] = ge ^ ~Re & wt, $[20] = nn ^ ~Zt & Xr, $[21] = Mr ^ ~Wt & Mn, $[30] = ct ^ ~ft & hn, $[31] = at ^ ~Dn & Sn, $[40] = et ^ ~Nt & Bt, $[41] = rt ^ ~Ft & Dt, $[2] = Ee ^ ~Qe & _t, $[3] = Ne ^ ~st & St, $[12] = _e ^ ~Be & yt, $[13] = Re ^ ~wt & gt, $[22] = Zt ^ ~Xr & In, $[23] = Wt ^ ~Mn & Ma, $[32] = ft ^ ~hn & fr, $[33] = Dn ^ ~Sn & On, $[42] = Nt ^ ~Bt & Kt, $[43] = Ft ^ ~Dt & dr, $[4] = Qe ^ ~_t & Z, $[5] = st ^ ~St & H, $[14] = Be ^ ~yt & Et, $[15] = wt ^ ~gt & Rt, $[24] = Xr ^ ~In & ve, $[25] = Mn ^ ~Ma & xe, $[34] = hn ^ ~fr & Un, $[35] = Sn ^ ~On & Te, $[44] = Bt ^ ~Kt & jn, $[45] = Dt ^ ~dr & Yn, $[6] = _t ^ ~Z & ee, $[7] = St ^ ~H & oe, $[16] = yt ^ ~Et & G, $[17] = gt ^ ~Rt & ge, $[26] = In ^ ~ve & nn, $[27] = Ma ^ ~xe & Mr, $[36] = fr ^ ~Un & ct, $[37] = On ^ ~Te & at, $[46] = Kt ^ ~jn & et, $[47] = dr ^ ~Yn & rt, $[8] = Z ^ ~ee & Ee, $[9] = H ^ ~oe & Ne, $[18] = Et ^ ~G & _e, $[19] = Rt ^ ~ge & Re, $[28] = ve ^ ~nn & Zt, $[29] = xe ^ ~Mr & Wt, $[38] = Un ^ ~ct & ft, $[39] = Te ^ ~at & Dn, $[48] = jn ^ ~et & Nt, $[49] = Yn ^ ~rt & Ft, $[0] ^= A[Me], $[1] ^= A[Me + 1];
|
|
26383
26388
|
};
|
|
26384
26389
|
if (c)
|
|
26385
26390
|
n.exports = x;
|
|
@@ -37397,15 +37402,15 @@ var VZ = qZ, GZ = VZ, WZ = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrst
|
|
|
37397
37402
|
return P.reverse();
|
|
37398
37403
|
}
|
|
37399
37404
|
return function(pe, ue, te, ye, J) {
|
|
37400
|
-
var P, U, ee, oe, Ee,
|
|
37401
|
-
for (_t >= 0 && (oe = N, N = 0, pe = pe.replace(".", ""), st = new ie(ue),
|
|
37402
|
-
de(R(
|
|
37405
|
+
var P, U, ee, oe, Ee, Ne, Qe, st, _t = pe.indexOf("."), St = C, Z = x;
|
|
37406
|
+
for (_t >= 0 && (oe = N, N = 0, pe = pe.replace(".", ""), st = new ie(ue), Ne = st.pow(pe.length - _t), N = oe, st.c = fe(
|
|
37407
|
+
de(R(Ne.c), Ne.e, "0"),
|
|
37403
37408
|
10,
|
|
37404
37409
|
te,
|
|
37405
37410
|
se
|
|
37406
37411
|
), st.e = st.c.length), Qe = fe(pe, ue, te, J ? (P = Y, se) : (P = se, Y)), ee = oe = Qe.length; Qe[--oe] == 0; Qe.pop()) ;
|
|
37407
37412
|
if (!Qe[0]) return P.charAt(0);
|
|
37408
|
-
if (_t < 0 ? --ee : (
|
|
37413
|
+
if (_t < 0 ? --ee : (Ne.c = Qe, Ne.e = ee, Ne.s = ye, Ne = me(Ne, st, St, Z, te), Qe = Ne.c, Ee = Ne.r, ee = Ne.e), U = ee + St + 1, _t = Qe[U], oe = te / 2, Ee = Ee || U < 0 || Qe[U + 1] != null, Ee = Z < 4 ? (_t != null || Ee) && (Z == 0 || Z == (Ne.s < 0 ? 3 : 2)) : _t > oe || _t == oe && (Z == 4 || Ee || Z == 6 && Qe[U - 1] & 1 || Z == (Ne.s < 0 ? 8 : 7)), U < 1 || !Qe[0])
|
|
37409
37414
|
pe = Ee ? de(P.charAt(1), -St, P.charAt(0)) : P.charAt(0);
|
|
37410
37415
|
else {
|
|
37411
37416
|
if (Qe.length = U, Ee)
|
|
@@ -37419,9 +37424,9 @@ var VZ = qZ, GZ = VZ, WZ = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrst
|
|
|
37419
37424
|
};
|
|
37420
37425
|
}(), me = /* @__PURE__ */ function() {
|
|
37421
37426
|
function se(ue, te, ye) {
|
|
37422
|
-
var J, P, U, ee, oe = 0, Ee = ue.length,
|
|
37427
|
+
var J, P, U, ee, oe = 0, Ee = ue.length, Ne = te % g, Qe = te / g | 0;
|
|
37423
37428
|
for (ue = ue.slice(); Ee--; )
|
|
37424
|
-
U = ue[Ee] % g, ee = ue[Ee] / g | 0, J = Qe * U + ee *
|
|
37429
|
+
U = ue[Ee] % g, ee = ue[Ee] / g | 0, J = Qe * U + ee * Ne, P = Ne * U + J % g * g + oe, oe = (P / ye | 0) + (J / g | 0) + Qe * ee, ue[Ee] = P % ye;
|
|
37425
37430
|
return oe && (ue = [oe].concat(ue)), ue;
|
|
37426
37431
|
}
|
|
37427
37432
|
function fe(ue, te, ye, J) {
|
|
@@ -37442,7 +37447,7 @@ var VZ = qZ, GZ = VZ, WZ = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrst
|
|
|
37442
37447
|
for (; !ue[0] && ue.length > 1; ue.splice(0, 1)) ;
|
|
37443
37448
|
}
|
|
37444
37449
|
return function(ue, te, ye, J, P) {
|
|
37445
|
-
var U, ee, oe, Ee,
|
|
37450
|
+
var U, ee, oe, Ee, Ne, Qe, st, _t, St, Z, H, G, ge, _e, Re, Be, wt, yt = ue.s == te.s ? 1 : -1, gt = ue.c, Et = te.c;
|
|
37446
37451
|
if (!gt || !gt[0] || !Et || !Et[0])
|
|
37447
37452
|
return new ie(
|
|
37448
37453
|
// Return NaN if either NaN, or both Infinity or 0.
|
|
@@ -37455,20 +37460,20 @@ var VZ = qZ, GZ = VZ, WZ = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrst
|
|
|
37455
37460
|
if (Et[oe] > (gt[oe] || 0) && ee--, yt < 0)
|
|
37456
37461
|
St.push(1), Ee = !0;
|
|
37457
37462
|
else {
|
|
37458
|
-
for (_e = gt.length, Be = Et.length, oe = 0, yt += 2,
|
|
37463
|
+
for (_e = gt.length, Be = Et.length, oe = 0, yt += 2, Ne = u(P / (Et[0] + 1)), Ne > 1 && (Et = se(Et, Ne, P), gt = se(gt, Ne, P), Be = Et.length, _e = gt.length), ge = Be, Z = gt.slice(0, Be), H = Z.length; H < Be; Z[H++] = 0) ;
|
|
37459
37464
|
wt = Et.slice(), wt = [0].concat(wt), Re = Et[0], Et[1] >= P / 2 && Re++;
|
|
37460
37465
|
do {
|
|
37461
|
-
if (
|
|
37462
|
-
if (G = Z[0], Be != H && (G = G * P + (Z[1] || 0)),
|
|
37463
|
-
for (
|
|
37464
|
-
|
|
37466
|
+
if (Ne = 0, U = fe(Et, Z, Be, H), U < 0) {
|
|
37467
|
+
if (G = Z[0], Be != H && (G = G * P + (Z[1] || 0)), Ne = u(G / Re), Ne > 1)
|
|
37468
|
+
for (Ne >= P && (Ne = P - 1), Qe = se(Et, Ne, P), st = Qe.length, H = Z.length; fe(Qe, Z, st, H) == 1; )
|
|
37469
|
+
Ne--, pe(Qe, Be < st ? wt : Et, st, P), st = Qe.length, U = 1;
|
|
37465
37470
|
else
|
|
37466
|
-
|
|
37471
|
+
Ne == 0 && (U = Ne = 1), Qe = Et.slice(), st = Qe.length;
|
|
37467
37472
|
if (st < H && (Qe = [0].concat(Qe)), pe(Z, Qe, H, P), H = Z.length, U == -1)
|
|
37468
37473
|
for (; fe(Et, Z, Be, H) < 1; )
|
|
37469
|
-
|
|
37470
|
-
} else U === 0 && (
|
|
37471
|
-
St[oe++] =
|
|
37474
|
+
Ne++, pe(Z, Be < H ? wt : Et, H, P), H = Z.length;
|
|
37475
|
+
} else U === 0 && (Ne++, Z = [0]);
|
|
37476
|
+
St[oe++] = Ne, Z[0] ? Z[H++] = gt[ge] || 0 : (Z = [gt[ge]], H = 1);
|
|
37472
37477
|
} while ((ge++ < _e || Z[0] != null) && yt--);
|
|
37473
37478
|
Ee = Z[0] != null, St[0] || St.splice(0, 1);
|
|
37474
37479
|
}
|
|
@@ -37516,8 +37521,8 @@ var VZ = qZ, GZ = VZ, WZ = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrst
|
|
|
37516
37521
|
if (ue.test(oe))
|
|
37517
37522
|
ye.s = isNaN(oe) ? null : oe < 0 ? -1 : 1;
|
|
37518
37523
|
else {
|
|
37519
|
-
if (!P && (oe = oe.replace(se, function(Ee,
|
|
37520
|
-
return ee = (Qe = Qe.toLowerCase()) == "x" ? 16 : Qe == "b" ? 2 : 8, !U || U == ee ?
|
|
37524
|
+
if (!P && (oe = oe.replace(se, function(Ee, Ne, Qe) {
|
|
37525
|
+
return ee = (Qe = Qe.toLowerCase()) == "x" ? 16 : Qe == "b" ? 2 : 8, !U || U == ee ? Ne : Ee;
|
|
37521
37526
|
}), U && (ee = U, oe = oe.replace(fe, "$1").replace(pe, "0.$1")), J != oe))
|
|
37522
37527
|
return new ie(oe, ee);
|
|
37523
37528
|
if (ie.DEBUG)
|
|
@@ -37528,12 +37533,12 @@ var VZ = qZ, GZ = VZ, WZ = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrst
|
|
|
37528
37533
|
};
|
|
37529
37534
|
}();
|
|
37530
37535
|
function Me(se, fe, pe, ue) {
|
|
37531
|
-
var te, ye, J, P, U, ee, oe, Ee = se.c,
|
|
37536
|
+
var te, ye, J, P, U, ee, oe, Ee = se.c, Ne = b;
|
|
37532
37537
|
if (Ee) {
|
|
37533
37538
|
e: {
|
|
37534
37539
|
for (te = 1, P = Ee[0]; P >= 10; P /= 10, te++) ;
|
|
37535
37540
|
if (ye = fe - te, ye < 0)
|
|
37536
|
-
ye += m, J = fe, U = Ee[ee = 0], oe = U /
|
|
37541
|
+
ye += m, J = fe, U = Ee[ee = 0], oe = U / Ne[te - J - 1] % 10 | 0;
|
|
37537
37542
|
else if (ee = o((ye + 1) / m), ee >= Ee.length)
|
|
37538
37543
|
if (ue) {
|
|
37539
37544
|
for (; Ee.length <= ee; Ee.push(0)) ;
|
|
@@ -37542,15 +37547,15 @@ var VZ = qZ, GZ = VZ, WZ = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrst
|
|
|
37542
37547
|
break e;
|
|
37543
37548
|
else {
|
|
37544
37549
|
for (U = P = Ee[ee], te = 1; P >= 10; P /= 10, te++) ;
|
|
37545
|
-
ye %= m, J = ye - m + te, oe = J < 0 ? 0 : U /
|
|
37550
|
+
ye %= m, J = ye - m + te, oe = J < 0 ? 0 : U / Ne[te - J - 1] % 10 | 0;
|
|
37546
37551
|
}
|
|
37547
37552
|
if (ue = ue || fe < 0 || // Are there any non-zero digits after the rounding digit?
|
|
37548
37553
|
// The expression n % pows10[d - j - 1] returns all digits of n to the right
|
|
37549
37554
|
// of the digit at j, e.g. if n is 908714 and j is 2, the expression gives 714.
|
|
37550
|
-
Ee[ee + 1] != null || (J < 0 ? U : U %
|
|
37551
|
-
(ye > 0 ? J > 0 ? U /
|
|
37552
|
-
return Ee.length = 0, ue ? (fe -= se.e + 1, Ee[0] =
|
|
37553
|
-
if (ye == 0 ? (Ee.length = ee, P = 1, ee--) : (Ee.length = ee + 1, P =
|
|
37555
|
+
Ee[ee + 1] != null || (J < 0 ? U : U % Ne[te - J - 1]), ue = pe < 4 ? (oe || ue) && (pe == 0 || pe == (se.s < 0 ? 3 : 2)) : oe > 5 || oe == 5 && (pe == 4 || ue || pe == 6 && // Check whether the digit to the left of the rounding digit is odd.
|
|
37556
|
+
(ye > 0 ? J > 0 ? U / Ne[te - J] : 0 : Ee[ee - 1]) % 10 & 1 || pe == (se.s < 0 ? 8 : 7)), fe < 1 || !Ee[0])
|
|
37557
|
+
return Ee.length = 0, ue ? (fe -= se.e + 1, Ee[0] = Ne[(m - fe % m) % m], se.e = -fe || 0) : Ee[0] = se.e = 0, se;
|
|
37558
|
+
if (ye == 0 ? (Ee.length = ee, P = 1, ee--) : (Ee.length = ee + 1, P = Ne[m - ye], Ee[ee] = J > 0 ? u(U / Ne[te - J] % Ne[J]) * P : 0), ue)
|
|
37554
37559
|
for (; ; )
|
|
37555
37560
|
if (ee == 0) {
|
|
37556
37561
|
for (ye = 1, J = Ee[0]; J >= 10; J /= 10, ye++) ;
|
|
@@ -37680,13 +37685,13 @@ var VZ = qZ, GZ = VZ, WZ = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrst
|
|
|
37680
37685
|
var pe, ue, te = this;
|
|
37681
37686
|
return se = new ie(se, fe), !te.c || !se.s || se.c && !se.c[0] ? new ie(NaN) : !se.c || te.c && !te.c[0] ? new ie(te) : (ae == 9 ? (ue = se.s, se.s = 1, pe = me(te, se, 0, 3), se.s = ue, pe.s *= ue) : pe = me(te, se, 0, ae), se = te.minus(pe.times(se)), !se.c[0] && ae == 1 && (se.s = te.s), se);
|
|
37682
37687
|
}, ne.multipliedBy = ne.times = function(se, fe) {
|
|
37683
|
-
var pe, ue, te, ye, J, P, U, ee, oe, Ee,
|
|
37688
|
+
var pe, ue, te, ye, J, P, U, ee, oe, Ee, Ne, Qe, st, _t, St, Z = this, H = Z.c, G = (se = new ie(se, fe)).c;
|
|
37684
37689
|
if (!H || !G || !H[0] || !G[0])
|
|
37685
37690
|
return !Z.s || !se.s || H && !H[0] && !G || G && !G[0] && !H ? se.c = se.e = se.s = null : (se.s *= Z.s, !H || !G ? se.c = se.e = null : (se.c = [0], se.e = 0)), se;
|
|
37686
37691
|
for (ue = T(Z.e / m) + T(se.e / m), se.s *= Z.s, U = H.length, Ee = G.length, U < Ee && (st = H, H = G, G = st, te = U, U = Ee, Ee = te), te = U + Ee, st = []; te--; st.push(0)) ;
|
|
37687
37692
|
for (_t = h, St = g, te = Ee; --te >= 0; ) {
|
|
37688
|
-
for (pe = 0,
|
|
37689
|
-
ee = H[--J] % St, oe = H[J] / St | 0, P = Qe * ee + oe *
|
|
37693
|
+
for (pe = 0, Ne = G[te] % St, Qe = G[te] / St | 0, J = U, ye = te + J; ye > te; )
|
|
37694
|
+
ee = H[--J] % St, oe = H[J] / St | 0, P = Qe * ee + oe * Ne, ee = Ne * ee + P % St * St + st[ye] + pe, pe = (ee / _t | 0) + (P / St | 0) + Qe * oe, st[ye--] = ee % _t;
|
|
37690
37695
|
st[ye] = pe;
|
|
37691
37696
|
}
|
|
37692
37697
|
return pe ? ++ue : st.splice(0, 1), Ie(se, st, ue);
|
|
@@ -37752,10 +37757,10 @@ var VZ = qZ, GZ = VZ, WZ = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrst
|
|
|
37752
37757
|
else if (typeof pe != "object")
|
|
37753
37758
|
throw Error(c + "Argument not an object: " + pe);
|
|
37754
37759
|
if (ue = te.toFixed(se, fe), te.c) {
|
|
37755
|
-
var ye, J = ue.split("."), P = +pe.groupSize, U = +pe.secondaryGroupSize, ee = pe.groupSeparator || "", oe = J[0], Ee = J[1],
|
|
37760
|
+
var ye, J = ue.split("."), P = +pe.groupSize, U = +pe.secondaryGroupSize, ee = pe.groupSeparator || "", oe = J[0], Ee = J[1], Ne = te.s < 0, Qe = Ne ? oe.slice(1) : oe, st = Qe.length;
|
|
37756
37761
|
if (U && (ye = P, P = U, U = ye, st -= ye), P > 0 && st > 0) {
|
|
37757
37762
|
for (ye = st % P || P, oe = Qe.substr(0, ye); ye < st; ye += P) oe += ee + Qe.substr(ye, P);
|
|
37758
|
-
U > 0 && (oe += ee + Qe.slice(ye)),
|
|
37763
|
+
U > 0 && (oe += ee + Qe.slice(ye)), Ne && (oe = "-" + oe);
|
|
37759
37764
|
}
|
|
37760
37765
|
ue = Ee ? oe + (pe.decimalSeparator || "") + ((U = +pe.fractionGroupSize) ? Ee.replace(
|
|
37761
37766
|
new RegExp("\\d{" + U + "}\\B", "g"),
|
|
@@ -37764,11 +37769,11 @@ var VZ = qZ, GZ = VZ, WZ = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrst
|
|
|
37764
37769
|
}
|
|
37765
37770
|
return (pe.prefix || "") + ue + (pe.suffix || "");
|
|
37766
37771
|
}, ne.toFraction = function(se) {
|
|
37767
|
-
var fe, pe, ue, te, ye, J, P, U, ee, oe, Ee,
|
|
37772
|
+
var fe, pe, ue, te, ye, J, P, U, ee, oe, Ee, Ne, Qe = this, st = Qe.c;
|
|
37768
37773
|
if (se != null && (P = new ie(se), !P.isInteger() && (P.c || P.s !== 1) || P.lt(ke)))
|
|
37769
37774
|
throw Error(c + "Argument " + (P.isInteger() ? "out of range: " : "not an integer: ") + Ue(P));
|
|
37770
37775
|
if (!st) return new ie(Qe);
|
|
37771
|
-
for (fe = new ie(ke), ee = pe = new ie(ke), ue = U = new ie(ke),
|
|
37776
|
+
for (fe = new ie(ke), ee = pe = new ie(ke), ue = U = new ie(ke), Ne = R(st), ye = fe.e = Ne.length - Qe.e - 1, fe.c[0] = b[(J = ye % m) < 0 ? m + J : J], se = !se || P.comparedTo(fe) > 0 ? ye > 0 ? fe : ee : P, J = j, j = 1 / 0, P = new ie(Ne), U.c[0] = 0; oe = me(P, fe, 0, 1), te = pe.plus(oe.times(ue)), te.comparedTo(se) != 1; )
|
|
37772
37777
|
pe = ue, ue = te, ee = U.plus(oe.times(te = ee)), U = te, fe = P.minus(oe.times(te = fe)), P = te;
|
|
37773
37778
|
return te = me(se.minus(pe), ue, 0, 1), U = U.plus(te.times(ee)), pe = pe.plus(te.times(ue)), U.s = ee.s = Qe.s, ye = ye * 2, Ee = me(ee, ue, ye, x).minus(Qe).abs().comparedTo(
|
|
37774
37779
|
me(U, pe, ye, x).minus(Qe).abs()
|
|
@@ -44561,7 +44566,7 @@ var wF = { exports: {} }, d8 = { exports: {} }, Fd = {};
|
|
|
44561
44566
|
throw new TypeError(
|
|
44562
44567
|
"The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type " + typeof Z
|
|
44563
44568
|
);
|
|
44564
|
-
if (
|
|
44569
|
+
if (Ne(Z, ArrayBuffer) || Z && Ne(Z.buffer, ArrayBuffer) || typeof SharedArrayBuffer < "u" && (Ne(Z, SharedArrayBuffer) || Z && Ne(Z.buffer, SharedArrayBuffer)))
|
|
44565
44570
|
return A(Z, H, G);
|
|
44566
44571
|
if (typeof Z == "number")
|
|
44567
44572
|
throw new TypeError(
|
|
@@ -44616,7 +44621,7 @@ var wF = { exports: {} }, d8 = { exports: {} }, Fd = {};
|
|
|
44616
44621
|
return G;
|
|
44617
44622
|
}
|
|
44618
44623
|
function S(Z) {
|
|
44619
|
-
if (
|
|
44624
|
+
if (Ne(Z, Uint8Array)) {
|
|
44620
44625
|
const H = new Uint8Array(Z);
|
|
44621
44626
|
return A(H.buffer, H.byteOffset, H.byteLength);
|
|
44622
44627
|
}
|
|
@@ -44651,7 +44656,7 @@ var wF = { exports: {} }, d8 = { exports: {} }, Fd = {};
|
|
|
44651
44656
|
c.isBuffer = function(H) {
|
|
44652
44657
|
return H != null && H._isBuffer === !0 && H !== c.prototype;
|
|
44653
44658
|
}, c.compare = function(H, G) {
|
|
44654
|
-
if (
|
|
44659
|
+
if (Ne(H, Uint8Array) && (H = c.from(H, H.offset, H.byteLength)), Ne(G, Uint8Array) && (G = c.from(G, G.offset, G.byteLength)), !c.isBuffer(H) || !c.isBuffer(G))
|
|
44655
44660
|
throw new TypeError(
|
|
44656
44661
|
'The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array'
|
|
44657
44662
|
);
|
|
@@ -44693,7 +44698,7 @@ var wF = { exports: {} }, d8 = { exports: {} }, Fd = {};
|
|
|
44693
44698
|
let Re = 0;
|
|
44694
44699
|
for (ge = 0; ge < H.length; ++ge) {
|
|
44695
44700
|
let Be = H[ge];
|
|
44696
|
-
if (
|
|
44701
|
+
if (Ne(Be, Uint8Array))
|
|
44697
44702
|
Re + Be.length > _e.length ? (c.isBuffer(Be) || (Be = c.from(Be)), Be.copy(_e, Re)) : Uint8Array.prototype.set.call(
|
|
44698
44703
|
_e,
|
|
44699
44704
|
Be,
|
|
@@ -44710,7 +44715,7 @@ var wF = { exports: {} }, d8 = { exports: {} }, Fd = {};
|
|
|
44710
44715
|
function D(Z, H) {
|
|
44711
44716
|
if (c.isBuffer(Z))
|
|
44712
44717
|
return Z.length;
|
|
44713
|
-
if (ArrayBuffer.isView(Z) ||
|
|
44718
|
+
if (ArrayBuffer.isView(Z) || Ne(Z, ArrayBuffer))
|
|
44714
44719
|
return Z.byteLength;
|
|
44715
44720
|
if (typeof Z != "string")
|
|
44716
44721
|
throw new TypeError(
|
|
@@ -44809,7 +44814,7 @@ var wF = { exports: {} }, d8 = { exports: {} }, Fd = {};
|
|
|
44809
44814
|
const G = n.INSPECT_MAX_BYTES;
|
|
44810
44815
|
return H = this.toString("hex", 0, G).replace(/(.{2})/g, "$1 ").trim(), this.length > G && (H += " ... "), "<Buffer " + H + ">";
|
|
44811
44816
|
}, r && (c.prototype[r] = c.prototype.inspect), c.prototype.compare = function(H, G, ge, _e, Re) {
|
|
44812
|
-
if (
|
|
44817
|
+
if (Ne(H, Uint8Array) && (H = c.from(H, H.offset, H.byteLength)), !c.isBuffer(H))
|
|
44813
44818
|
throw new TypeError(
|
|
44814
44819
|
'The "target" argument must be one of type Buffer or Uint8Array. Received type ' + typeof H
|
|
44815
44820
|
);
|
|
@@ -45421,7 +45426,7 @@ var wF = { exports: {} }, d8 = { exports: {} }, Fd = {};
|
|
|
45421
45426
|
H[_e + G] = Z[_e];
|
|
45422
45427
|
return _e;
|
|
45423
45428
|
}
|
|
45424
|
-
function
|
|
45429
|
+
function Ne(Z, H) {
|
|
45425
45430
|
return Z instanceof H || Z != null && Z.constructor != null && Z.constructor.name != null && Z.constructor.name === H.name;
|
|
45426
45431
|
}
|
|
45427
45432
|
function Qe(Z) {
|
|
@@ -47242,7 +47247,7 @@ function W2() {
|
|
|
47242
47247
|
SymbolAsyncIterator: w,
|
|
47243
47248
|
Symbol: b
|
|
47244
47249
|
} = ma;
|
|
47245
|
-
v8 =
|
|
47250
|
+
v8 = Ne, Ne.ReadableState = Ee;
|
|
47246
47251
|
const { EventEmitter: g } = U2, { Stream: S, prependListener: A } = q5, { Buffer: T } = Fd, { addAbortSignal: R } = V2, L = zd;
|
|
47247
47252
|
let D = xs.debuglog("stream", (ve) => {
|
|
47248
47253
|
D = ve;
|
|
@@ -47258,7 +47263,7 @@ function W2() {
|
|
|
47258
47263
|
},
|
|
47259
47264
|
AbortError: x
|
|
47260
47265
|
} = Xs, { validateObject: O } = Vb, z = b("kPaused"), { StringDecoder: F } = oB, j = uB;
|
|
47261
|
-
c(
|
|
47266
|
+
c(Ne.prototype, S.prototype), c(Ne, S);
|
|
47262
47267
|
const Q = () => {
|
|
47263
47268
|
}, { errorOrDestroy: ae } = W, N = 1, k = 2, Y = 4, ie = 8, $ = 16, be = 32, Ie = 64, Me = 128, Ue = 256, se = 512, fe = 1024, pe = 2048, ue = 4096, te = 8192, ye = 16384, J = 32768, P = 65536, U = 1 << 17, ee = 1 << 18;
|
|
47264
47269
|
function oe(ve) {
|
|
@@ -47312,23 +47317,23 @@ function W2() {
|
|
|
47312
47317
|
function Ee(ve, xe, ct) {
|
|
47313
47318
|
typeof ct != "boolean" && (ct = xe instanceof Kc()), this.state = pe | ue | $ | be, ve && ve.objectMode && (this.state |= N), ct && ve && ve.readableObjectMode && (this.state |= N), this.highWaterMark = ve ? de(this, ve, "readableHighWaterMark", ct) : ce(!1), this.buffer = new q(), this.length = 0, this.pipes = [], this.flowing = null, this[z] = null, ve && ve.emitClose === !1 && (this.state &= ~pe), ve && ve.autoDestroy === !1 && (this.state &= ~ue), this.errored = null, this.defaultEncoding = ve && ve.defaultEncoding || "utf8", this.awaitDrainWriters = null, this.decoder = null, this.encoding = null, ve && ve.encoding && (this.decoder = new F(ve.encoding), this.encoding = ve.encoding);
|
|
47314
47319
|
}
|
|
47315
|
-
function
|
|
47316
|
-
if (!(this instanceof
|
|
47320
|
+
function Ne(ve) {
|
|
47321
|
+
if (!(this instanceof Ne)) return new Ne(ve);
|
|
47317
47322
|
const xe = this instanceof Kc();
|
|
47318
47323
|
this._readableState = new Ee(ve, this, xe), ve && (typeof ve.read == "function" && (this._read = ve.read), typeof ve.destroy == "function" && (this._destroy = ve.destroy), typeof ve.construct == "function" && (this._construct = ve.construct), ve.signal && !xe && R(ve.signal, this)), S.call(this, ve), W.construct(this, () => {
|
|
47319
47324
|
this._readableState.needReadable && _e(this, this._readableState);
|
|
47320
47325
|
});
|
|
47321
47326
|
}
|
|
47322
|
-
|
|
47327
|
+
Ne.prototype.destroy = W.destroy, Ne.prototype._undestroy = W.undestroy, Ne.prototype._destroy = function(ve, xe) {
|
|
47323
47328
|
xe(ve);
|
|
47324
|
-
},
|
|
47329
|
+
}, Ne.prototype[g.captureRejectionSymbol] = function(ve) {
|
|
47325
47330
|
this.destroy(ve);
|
|
47326
|
-
},
|
|
47331
|
+
}, Ne.prototype[m] = function() {
|
|
47327
47332
|
let ve;
|
|
47328
47333
|
return this.destroyed || (ve = this.readableEnded ? null : new x(), this.destroy(ve)), new p((xe, ct) => L(this, (at) => at && at !== ve ? ct(at) : xe(null)));
|
|
47329
|
-
},
|
|
47334
|
+
}, Ne.prototype.push = function(ve, xe) {
|
|
47330
47335
|
return Qe(this, ve, xe, !1);
|
|
47331
|
-
},
|
|
47336
|
+
}, Ne.prototype.unshift = function(ve, xe) {
|
|
47332
47337
|
return Qe(this, ve, xe, !0);
|
|
47333
47338
|
};
|
|
47334
47339
|
function Qe(ve, xe, ct, at) {
|
|
@@ -47359,10 +47364,10 @@ function W2() {
|
|
|
47359
47364
|
function st(ve, xe, ct, at) {
|
|
47360
47365
|
xe.flowing && xe.length === 0 && !xe.sync && ve.listenerCount("data") > 0 ? (xe.state & P ? xe.awaitDrainWriters.clear() : xe.awaitDrainWriters = null, xe.dataEmitted = !0, ve.emit("data", ct)) : (xe.length += xe.objectMode ? 1 : ct.length, at ? xe.buffer.unshift(ct) : xe.buffer.push(ct), xe.state & Ie && G(ve)), _e(ve, xe);
|
|
47361
47366
|
}
|
|
47362
|
-
|
|
47367
|
+
Ne.prototype.isPaused = function() {
|
|
47363
47368
|
const ve = this._readableState;
|
|
47364
47369
|
return ve[z] === !0 || ve.flowing === !1;
|
|
47365
|
-
},
|
|
47370
|
+
}, Ne.prototype.setEncoding = function(ve) {
|
|
47366
47371
|
const xe = new F(ve);
|
|
47367
47372
|
this._readableState.decoder = xe, this._readableState.encoding = this._readableState.decoder.encoding;
|
|
47368
47373
|
const ct = this._readableState.buffer;
|
|
@@ -47380,7 +47385,7 @@ function W2() {
|
|
|
47380
47385
|
function Z(ve, xe) {
|
|
47381
47386
|
return ve <= 0 || xe.length === 0 && xe.ended ? 0 : xe.state & N ? 1 : r(ve) ? xe.flowing && xe.length ? xe.buffer.first().length : xe.length : ve <= xe.length ? ve : xe.ended ? xe.length : 0;
|
|
47382
47387
|
}
|
|
47383
|
-
|
|
47388
|
+
Ne.prototype.read = function(ve) {
|
|
47384
47389
|
D("read", ve), ve === void 0 ? ve = NaN : t(ve) || (ve = i(ve, 10));
|
|
47385
47390
|
const xe = this._readableState, ct = ve;
|
|
47386
47391
|
if (ve > xe.highWaterMark && (xe.highWaterMark = St(ve)), ve !== 0 && (xe.state &= ~Me), ve === 0 && xe.needReadable && ((xe.highWaterMark !== 0 ? xe.length >= xe.highWaterMark : xe.length > 0) || xe.ended))
|
|
@@ -47430,9 +47435,9 @@ function W2() {
|
|
|
47430
47435
|
}
|
|
47431
47436
|
xe.readingMore = !1;
|
|
47432
47437
|
}
|
|
47433
|
-
|
|
47438
|
+
Ne.prototype._read = function(ve) {
|
|
47434
47439
|
throw new Ce("_read()");
|
|
47435
|
-
},
|
|
47440
|
+
}, Ne.prototype.pipe = function(ve, xe) {
|
|
47436
47441
|
const ct = this, at = this._readableState;
|
|
47437
47442
|
at.pipes.length === 1 && (at.multiAwaitDrain || (at.multiAwaitDrain = !0, at.awaitDrainWriters = new h(at.awaitDrainWriters ? [at.awaitDrainWriters] : []))), at.pipes.push(ve), D("pipe count=%d opts=%j", at.pipes.length, xe);
|
|
47438
47443
|
const Dn = (!xe || xe.end !== !1) && ve !== n.stdout && ve !== n.stderr ? Sn : Bt;
|
|
@@ -47482,7 +47487,7 @@ function W2() {
|
|
|
47482
47487
|
at.awaitDrainWriters === xe ? (D("pipeOnDrain", 1), at.awaitDrainWriters = null) : at.multiAwaitDrain && (D("pipeOnDrain", at.awaitDrainWriters.size), at.awaitDrainWriters.delete(xe)), (!at.awaitDrainWriters || at.awaitDrainWriters.size === 0) && ve.listenerCount("data") && ve.resume();
|
|
47483
47488
|
};
|
|
47484
47489
|
}
|
|
47485
|
-
|
|
47490
|
+
Ne.prototype.unpipe = function(ve) {
|
|
47486
47491
|
const xe = this._readableState, ct = {
|
|
47487
47492
|
hasUnpiped: !1
|
|
47488
47493
|
};
|
|
@@ -47498,13 +47503,13 @@ function W2() {
|
|
|
47498
47503
|
}
|
|
47499
47504
|
const at = e(xe.pipes, ve);
|
|
47500
47505
|
return at === -1 ? this : (xe.pipes.splice(at, 1), xe.pipes.length === 0 && this.pause(), ve.emit("unpipe", this, ct), this);
|
|
47501
|
-
},
|
|
47506
|
+
}, Ne.prototype.on = function(ve, xe) {
|
|
47502
47507
|
const ct = S.prototype.on.call(this, ve, xe), at = this._readableState;
|
|
47503
47508
|
return ve === "data" ? (at.readableListening = this.listenerCount("readable") > 0, at.flowing !== !1 && this.resume()) : ve === "readable" && !at.endEmitted && !at.readableListening && (at.readableListening = at.needReadable = !0, at.flowing = !1, at.emittedReadable = !1, D("on readable", at.length, at.reading), at.length ? G(this) : at.reading || n.nextTick(yt, this)), ct;
|
|
47504
|
-
},
|
|
47509
|
+
}, Ne.prototype.addListener = Ne.prototype.on, Ne.prototype.removeListener = function(ve, xe) {
|
|
47505
47510
|
const ct = S.prototype.removeListener.call(this, ve, xe);
|
|
47506
47511
|
return ve === "readable" && n.nextTick(wt, this), ct;
|
|
47507
|
-
},
|
|
47512
|
+
}, Ne.prototype.off = Ne.prototype.removeListener, Ne.prototype.removeAllListeners = function(ve) {
|
|
47508
47513
|
const xe = S.prototype.removeAllListeners.apply(this, arguments);
|
|
47509
47514
|
return (ve === "readable" || ve === void 0) && n.nextTick(wt, this), xe;
|
|
47510
47515
|
};
|
|
@@ -47515,7 +47520,7 @@ function W2() {
|
|
|
47515
47520
|
function yt(ve) {
|
|
47516
47521
|
D("readable nexttick read 0"), ve.read(0);
|
|
47517
47522
|
}
|
|
47518
|
-
|
|
47523
|
+
Ne.prototype.resume = function() {
|
|
47519
47524
|
const ve = this._readableState;
|
|
47520
47525
|
return ve.flowing || (D("resume"), ve.flowing = !ve.readableListening, gt(this, ve)), ve[z] = !1, this;
|
|
47521
47526
|
};
|
|
@@ -47525,14 +47530,14 @@ function W2() {
|
|
|
47525
47530
|
function Et(ve, xe) {
|
|
47526
47531
|
D("resume", xe.reading), xe.reading || ve.read(0), xe.resumeScheduled = !1, ve.emit("resume"), Rt(ve), xe.flowing && !xe.reading && ve.read(0);
|
|
47527
47532
|
}
|
|
47528
|
-
|
|
47533
|
+
Ne.prototype.pause = function() {
|
|
47529
47534
|
return D("call pause flowing=%j", this._readableState.flowing), this._readableState.flowing !== !1 && (D("pause"), this._readableState.flowing = !1, this.emit("pause")), this._readableState[z] = !0, this;
|
|
47530
47535
|
};
|
|
47531
47536
|
function Rt(ve) {
|
|
47532
47537
|
const xe = ve._readableState;
|
|
47533
47538
|
for (D("flow", xe.flowing); xe.flowing && ve.read() !== null; ) ;
|
|
47534
47539
|
}
|
|
47535
|
-
|
|
47540
|
+
Ne.prototype.wrap = function(ve) {
|
|
47536
47541
|
let xe = !1;
|
|
47537
47542
|
ve.on("data", (at) => {
|
|
47538
47543
|
!this.push(at) && ve.pause && (xe = !0, ve.pause());
|
|
@@ -47553,13 +47558,13 @@ function W2() {
|
|
|
47553
47558
|
this[ft] === void 0 && typeof ve[ft] == "function" && (this[ft] = ve[ft].bind(ve));
|
|
47554
47559
|
}
|
|
47555
47560
|
return this;
|
|
47556
|
-
},
|
|
47561
|
+
}, Ne.prototype[w] = function() {
|
|
47557
47562
|
return nn(this);
|
|
47558
|
-
},
|
|
47563
|
+
}, Ne.prototype.iterator = function(ve) {
|
|
47559
47564
|
return ve !== void 0 && O(ve, "options"), nn(this, ve);
|
|
47560
47565
|
};
|
|
47561
47566
|
function nn(ve, xe) {
|
|
47562
|
-
typeof ve.read != "function" && (ve =
|
|
47567
|
+
typeof ve.read != "function" && (ve = Ne.wrap(ve, {
|
|
47563
47568
|
objectMode: !0
|
|
47564
47569
|
}));
|
|
47565
47570
|
const ct = Mr(ve, xe);
|
|
@@ -47600,7 +47605,7 @@ function W2() {
|
|
|
47600
47605
|
(ft || (xe == null ? void 0 : xe.destroyOnReturn) !== !1) && (ft === void 0 || ve._readableState.autoDestroy) ? W.destroyer(ve, null) : (ve.off("readable", at), Dn());
|
|
47601
47606
|
}
|
|
47602
47607
|
}
|
|
47603
|
-
o(
|
|
47608
|
+
o(Ne.prototype, {
|
|
47604
47609
|
readable: {
|
|
47605
47610
|
__proto__: null,
|
|
47606
47611
|
get() {
|
|
@@ -47718,7 +47723,7 @@ function W2() {
|
|
|
47718
47723
|
this[z] = !!ve;
|
|
47719
47724
|
}
|
|
47720
47725
|
}
|
|
47721
|
-
}),
|
|
47726
|
+
}), Ne._fromList = Zt;
|
|
47722
47727
|
function Zt(ve, xe) {
|
|
47723
47728
|
if (xe.length === 0) return null;
|
|
47724
47729
|
let ct;
|
|
@@ -47743,20 +47748,20 @@ function W2() {
|
|
|
47743
47748
|
function Mn(ve) {
|
|
47744
47749
|
ve.writable && !ve.writableEnded && !ve.destroyed && ve.end();
|
|
47745
47750
|
}
|
|
47746
|
-
|
|
47747
|
-
return j(
|
|
47751
|
+
Ne.from = function(ve, xe) {
|
|
47752
|
+
return j(Ne, ve, xe);
|
|
47748
47753
|
};
|
|
47749
47754
|
let In;
|
|
47750
47755
|
function Ma() {
|
|
47751
47756
|
return In === void 0 && (In = {}), In;
|
|
47752
47757
|
}
|
|
47753
|
-
return
|
|
47758
|
+
return Ne.fromWeb = function(ve, xe) {
|
|
47754
47759
|
return Ma().newStreamReadableFromReadableStream(ve, xe);
|
|
47755
|
-
},
|
|
47760
|
+
}, Ne.toWeb = function(ve, xe) {
|
|
47756
47761
|
return Ma().newReadableStreamFromStreamReadable(ve, xe);
|
|
47757
|
-
},
|
|
47762
|
+
}, Ne.wrap = function(ve, xe) {
|
|
47758
47763
|
var ct, at;
|
|
47759
|
-
return new
|
|
47764
|
+
return new Ne({
|
|
47760
47765
|
objectMode: (ct = (at = ve.readableObjectMode) !== null && at !== void 0 ? at : ve.objectMode) !== null && ct !== void 0 ? ct : !0,
|
|
47761
47766
|
...xe,
|
|
47762
47767
|
destroy(ft, Dn) {
|
|
@@ -47927,17 +47932,17 @@ function G5() {
|
|
|
47927
47932
|
let ee = J;
|
|
47928
47933
|
if (te.bufferProcessing = !0, U > 1 && ue._writev) {
|
|
47929
47934
|
te.pendingcb -= U - 1;
|
|
47930
|
-
const oe = te.allNoop ? ne : (
|
|
47935
|
+
const oe = te.allNoop ? ne : (Ne) => {
|
|
47931
47936
|
for (let Qe = ee; Qe < ye.length; ++Qe)
|
|
47932
|
-
ye[Qe].callback(
|
|
47937
|
+
ye[Qe].callback(Ne);
|
|
47933
47938
|
}, Ee = te.allNoop && ee === 0 ? ye : e(ye, ee);
|
|
47934
47939
|
Ee.allBuffers = te.allBuffers, j(ue, te, !0, te.length, Ee, "", oe), x(te);
|
|
47935
47940
|
} else {
|
|
47936
47941
|
do {
|
|
47937
|
-
const { chunk: oe, encoding: Ee, callback:
|
|
47942
|
+
const { chunk: oe, encoding: Ee, callback: Ne } = ye[ee];
|
|
47938
47943
|
ye[ee++] = null;
|
|
47939
47944
|
const Qe = P ? 1 : oe.length;
|
|
47940
|
-
j(ue, te, !1, Qe, oe, Ee,
|
|
47945
|
+
j(ue, te, !1, Qe, oe, Ee, Ne);
|
|
47941
47946
|
} while (ee < ye.length && !te.writing);
|
|
47942
47947
|
ee === ye.length ? x(te) : ee > 256 ? (ye.splice(0, ee), te.bufferedIndex = 0) : te.bufferedIndex = ee;
|
|
47943
47948
|
}
|
|
@@ -49301,7 +49306,7 @@ const ii = {
|
|
|
49301
49306
|
ElvCrypto: async () => {
|
|
49302
49307
|
try {
|
|
49303
49308
|
if (!ii.elvCrypto) {
|
|
49304
|
-
const n = (await import("./index-
|
|
49309
|
+
const n = (await import("./index-BkrmVSC9.mjs")).default;
|
|
49305
49310
|
ii.elvCrypto = await new n().init();
|
|
49306
49311
|
}
|
|
49307
49312
|
return ii.elvCrypto;
|
|
@@ -65591,7 +65596,7 @@ class i2 {
|
|
|
65591
65596
|
constructor({ target: e, video: t, parameters: r, SetErrorMessage: i }) {
|
|
65592
65597
|
this.loading = !0, this.target = e, this.video = t, this.SetErrorMessage = i, this.controls = new pme({ player: this }), this.__settingsListeners = [], this.__listenerDisposers = [], this.__showPlayerProfileForm = !1, this.playbackStarted = !1, this.reloads = 0, this.canPlay = !1;
|
|
65593
65598
|
try {
|
|
65594
|
-
r.playerOptions.hlsjsOptions && Object.keys(r.playerOptions.hlsjsOptions).length > 0 && (this.customHLSOptions = r.playerOptions.hlsjsOptions, r.playerOptions.playerProfile =
|
|
65599
|
+
r.playerOptions.hlsjsOptions && Object.keys(r.playerOptions.hlsjsOptions).length > 0 && (this.customHLSOptions = r.playerOptions.hlsjsOptions, r.playerOptions.playerProfile = jt.playerProfile.CUSTOM);
|
|
65595
65600
|
} catch (o) {
|
|
65596
65601
|
this.Log(o, !0);
|
|
65597
65602
|
}
|
|
@@ -65614,7 +65619,7 @@ class i2 {
|
|
|
65614
65619
|
t.objectId = e.utils.DecodeVersionHash(g.mediaHash).objectId, t.versionHash = g.mediaHash, this.sourceOptions.playoutOptions = void 0;
|
|
65615
65620
|
}
|
|
65616
65621
|
let r, i, o = {};
|
|
65617
|
-
if ((t.clipStart || t.clipEnd) && (o.clip_start = parseFloat(t.clipStart || 0), t.clipEnd && (o.clip_end = parseFloat(t.clipEnd))), o.ignore_trimming = t.ignoreTrimming, o.resolve = t.resolve, t.offering || t.directLink || (t.offerings || []).length > 0) {
|
|
65622
|
+
if ((t.clipStart || t.clipEnd) && (o.clip_start = parseFloat(t.clipStart || 0), t.clipEnd && (o.clip_end = parseFloat(t.clipEnd))), o.ignore_trimming = t.ignoreTrimming, o.resolve = t.resolve, this.dvrEnabled && (o.dvr = 1), t.offering || t.directLink || (t.offerings || []).length > 0) {
|
|
65618
65623
|
let g = await e.AvailableOfferings({
|
|
65619
65624
|
objectId: t.objectId,
|
|
65620
65625
|
versionHash: t.versionHash,
|
|
@@ -65706,9 +65711,9 @@ class i2 {
|
|
|
65706
65711
|
}
|
|
65707
65712
|
async __Initialize(e, t) {
|
|
65708
65713
|
if (!this.__destroyed) {
|
|
65709
|
-
this.__Reset(), this.loading = !0, this.initTime = Date.now(), this.__SettingsUpdate(), e && (this.originalParameters = Oz(e), this.clientOptions = e.clientOptions, this.sourceOptions = e.sourceOptions, this.playerOptions = e.playerOptions), this.isLive = e.sourceOptions.contentInfo.type ===
|
|
65714
|
+
this.__Reset(), this.loading = !0, this.initTime = Date.now(), this.__SettingsUpdate(), e && (this.originalParameters = Oz(e), this.clientOptions = e.clientOptions, this.sourceOptions = e.sourceOptions, this.playerOptions = e.playerOptions), this.isLive = e.sourceOptions.contentInfo.type === jt.type.LIVE, this.dvrEnabled = e.sourceOptions.contentInfo.liveDVR === jt.liveDVR.ON, this.errors = 0, this.__Client();
|
|
65710
65715
|
try {
|
|
65711
|
-
t && (this.video.volume = t.volume, this.video.muted = t.muted, t.playing && (this.playerOptions.autoplay =
|
|
65716
|
+
t && (this.video.volume = t.volume, this.video.muted = t.muted, t.playing && (this.playerOptions.autoplay = jt.autoplay.ON), t.currentTime && this.__RegisterVideoEventListener(
|
|
65712
65717
|
"loadedmetadata",
|
|
65713
65718
|
() => this.video.currentTime = t.currentTime
|
|
65714
65719
|
)), this.__RegisterVideoEventListener("play", () => {
|
|
@@ -65718,7 +65723,7 @@ class i2 {
|
|
|
65718
65723
|
this.canPlay && (isFinite(this.video.duration) ? this.video.duration && this.videoDuration > 0 && this.video.duration - this.videoDuration > 1 && (this.isLive = !0) : this.isLive = !0);
|
|
65719
65724
|
};
|
|
65720
65725
|
this.__RegisterVideoEventListener("canplay", () => {
|
|
65721
|
-
this.initTime && !this.initTimeLogged && (this.Log(`Player initialization: ${((Date.now() - this.initTime) / 1e3).toFixed(2)} seconds`), this.initTimeLogged = !0, this.canPlay = !0, r(), this.playerOptions.autoplay ===
|
|
65726
|
+
this.initTime && !this.initTimeLogged && (this.Log(`Player initialization: ${((Date.now() - this.initTime) / 1e3).toFixed(2)} seconds`), this.initTimeLogged = !0, this.canPlay = !0, r(), this.playerOptions.autoplay === jt.autoplay.ON && this.controls.Play());
|
|
65722
65727
|
}), this.__RegisterVideoEventListener("durationchange", () => {
|
|
65723
65728
|
r(), this.videoDuration = this.video.duration;
|
|
65724
65729
|
}), await this.__LoadCollection(), this.collectionInfo && this.collectionInfo.isPlaylist && this.collectionInfo.mediaIndex < this.collectionInfo.mediaLength - 1 && this.__RegisterVideoEventListener("ended", () => this.controls && this.controls.CollectionPlayNext({ autoplay: !0 }));
|
|
@@ -65727,12 +65732,12 @@ class i2 {
|
|
|
65727
65732
|
const m = this.sourceOptions.playoutParameters.authorizationToken || o.searchParams.get("authorization");
|
|
65728
65733
|
if (this.__destroyed)
|
|
65729
65734
|
return;
|
|
65730
|
-
u === "hls" ? await this.__InitializeHLS({ playoutUrl: o, authorizationToken: m, drm: c, drms: p, multiviewOptions: h }) : await this.__InitializeDash({ playoutUrl: o, authorizationToken: m, drm: c, drms: p, multiviewOptions: h }), this.playerOptions.collectVideoAnalytics && import("./Analytics-
|
|
65735
|
+
u === "hls" ? await this.__InitializeHLS({ playoutUrl: o, authorizationToken: m, drm: c, drms: p, multiviewOptions: h }) : await this.__InitializeDash({ playoutUrl: o, authorizationToken: m, drm: c, drms: p, multiviewOptions: h }), this.playerOptions.collectVideoAnalytics && import("./Analytics-JJE0W0Gi.mjs").then(({ InitializeMuxMonitoring: w }) => w({
|
|
65731
65736
|
appName: this.playerOptions.appName || "elv-player-js",
|
|
65732
65737
|
elvPlayer: this,
|
|
65733
65738
|
playoutUrl: o,
|
|
65734
65739
|
authorizationToken: m,
|
|
65735
|
-
disableCookies: this.playerOptions.collectVideoAnalytics ===
|
|
65740
|
+
disableCookies: this.playerOptions.collectVideoAnalytics === jt.collectVideoAnalytics.DISABLE_COOKIES
|
|
65736
65741
|
})), this.playerOptions.verifyContent && setTimeout(() => {
|
|
65737
65742
|
this.__VerifyContent();
|
|
65738
65743
|
}, 1e3), this.playerOptions.playerCallback && this.playerOptions.playerCallback({
|
|
@@ -65762,8 +65767,8 @@ class i2 {
|
|
|
65762
65767
|
}
|
|
65763
65768
|
}
|
|
65764
65769
|
async __InitializeHLS({ playoutUrl: e, authorizationToken: t, drm: r, drms: i, multiviewOptions: o }) {
|
|
65765
|
-
if (this.HLS = (await import("./hls-DHFAkcd1.mjs")).default, [
|
|
65766
|
-
if (this.nativeHLS = !0, r ===
|
|
65770
|
+
if (this.HLS = (await import("./hls-DHFAkcd1.mjs")).default, [jt.drms.FAIRPLAY, jt.drms.SAMPLE_AES].includes(r) || !this.HLS.isSupported()) {
|
|
65771
|
+
if (this.nativeHLS = !0, r === jt.drms.FAIRPLAY ? uW({ playoutOptions: this.sourceOptions.playoutOptions, video: this.video }) : this.video.src = e.toString(), o.enabled) {
|
|
65767
65772
|
const u = o.SwitchView;
|
|
65768
65773
|
o.SwitchView = async (c) => {
|
|
65769
65774
|
await u(c);
|
|
@@ -65772,29 +65777,29 @@ class i2 {
|
|
|
65772
65777
|
} else {
|
|
65773
65778
|
e.searchParams.delete("authorization");
|
|
65774
65779
|
let u = {};
|
|
65775
|
-
(r ===
|
|
65780
|
+
(r === jt.drms.PLAYREADY || r === jt.drms.WIDEVINE) && (u = {
|
|
65776
65781
|
drmSystems: {},
|
|
65777
65782
|
emeEnabled: !0,
|
|
65778
65783
|
licenseXhrSetup: (m, w) => {
|
|
65779
65784
|
m.open("POST", w, !0), m.setRequestHeader("Authorization", `Bearer ${t}`);
|
|
65780
65785
|
}
|
|
65781
|
-
}, r ===
|
|
65786
|
+
}, r === jt.drms.PLAYREADY ? u.drmSystems = {
|
|
65782
65787
|
"com.microsoft.playready": {
|
|
65783
65788
|
licenseUrl: i[r].licenseServers[0]
|
|
65784
65789
|
}
|
|
65785
|
-
} : r ===
|
|
65790
|
+
} : r === jt.drms.WIDEVINE && (u.drmSystems = {
|
|
65786
65791
|
"com.widevine.alpha": {
|
|
65787
65792
|
licenseUrl: i[r].licenseServers[0]
|
|
65788
65793
|
}
|
|
65789
65794
|
}));
|
|
65790
|
-
const c = (yme[this.playerOptions.playerProfile] || {}).hlsSettings || {}, p = this.playerOptions.playerProfile ===
|
|
65795
|
+
const c = (yme[this.playerOptions.playerProfile] || {}).hlsSettings || {}, p = this.playerOptions.playerProfile === jt.playerProfile.CUSTOM ? this.customHLSOptions : {};
|
|
65791
65796
|
this.hlsOptions = {
|
|
65792
65797
|
capLevelToPlayerSize: this.playerOptions.capLevelToPlayerSize,
|
|
65793
65798
|
xhrSetup: (m) => (m.setRequestHeader("Authorization", `Bearer ${t}`), (this.playerOptions.hlsjsOptions || {}).xhrSetup && this.playerOptions.hlsjsOptions.xhrSetup(m), m),
|
|
65794
65799
|
...u,
|
|
65795
65800
|
...c,
|
|
65796
65801
|
...p
|
|
65797
|
-
};
|
|
65802
|
+
}, this.dvrEnabled && (delete this.hlsOptions.liveMaxLatencyDuration, delete this.hlsOptions.liveMaxLatencyDurationCount);
|
|
65798
65803
|
const h = new this.HLS(this.hlsOptions);
|
|
65799
65804
|
if (this.playerOptions.maxBitrate && h.on(this.HLS.Events.MANIFEST_PARSED, (m, { levels: w, firstLevel: b }) => {
|
|
65800
65805
|
let g = w.map((S, A) => S.bitrate > this.playerOptions.maxBitrate ? A : void 0).filter((S) => typeof S < "u").reverse();
|
|
@@ -65816,7 +65821,12 @@ class i2 {
|
|
|
65816
65821
|
].map((m) => h.on(m, () => this.__SettingsUpdate())), this.SetPlayerProfile = async ({ profile: m, customHLSOptions: w = {} }) => {
|
|
65817
65822
|
this.videoDuration = void 0, this.playerOptions.playerProfile = m, this.customHLSOptions = w;
|
|
65818
65823
|
const b = !this.video.paused, g = this.video.currentTime;
|
|
65819
|
-
|
|
65824
|
+
try {
|
|
65825
|
+
this.hlsPlayer.destroy();
|
|
65826
|
+
} catch (S) {
|
|
65827
|
+
this.Log("Failed to destroy HLS player", !0), this.Log(S, !0);
|
|
65828
|
+
}
|
|
65829
|
+
await this.__InitializeHLS({
|
|
65820
65830
|
playoutUrl: e,
|
|
65821
65831
|
authorizationToken: t,
|
|
65822
65832
|
drm: r,
|
|
@@ -65831,7 +65841,7 @@ class i2 {
|
|
|
65831
65841
|
}
|
|
65832
65842
|
}
|
|
65833
65843
|
async __InitializeDash({ playoutUrl: e, authorizationToken: t, drm: r, drms: i }) {
|
|
65834
|
-
this.Dash = (await import("./dash.all.min-
|
|
65844
|
+
this.Dash = (await import("./dash.all.min-D16RxkcD.mjs").then((c) => c.d)).default;
|
|
65835
65845
|
const o = this.Dash.MediaPlayer().create(), u = this.playerOptions.dashjsOptions || {};
|
|
65836
65846
|
if (o.updateSettings({
|
|
65837
65847
|
...u,
|
|
@@ -65864,7 +65874,7 @@ class i2 {
|
|
|
65864
65874
|
modifyRequestHeader: (c) => (c.setRequestHeader("Authorization", `Bearer ${t}`), c),
|
|
65865
65875
|
modifyRequestURL: (c) => c
|
|
65866
65876
|
};
|
|
65867
|
-
}), r ===
|
|
65877
|
+
}), r === jt.drms.WIDEVINE) {
|
|
65868
65878
|
const c = i.widevine.licenseServers[0];
|
|
65869
65879
|
o.setProtectionData({
|
|
65870
65880
|
"com.widevine.alpha": {
|
|
@@ -65875,7 +65885,7 @@ class i2 {
|
|
|
65875
65885
|
o.initialize(
|
|
65876
65886
|
this.video,
|
|
65877
65887
|
e.toString(),
|
|
65878
|
-
this.playerOptions.autoplay ===
|
|
65888
|
+
this.playerOptions.autoplay === jt.autoplay.ON
|
|
65879
65889
|
), [
|
|
65880
65890
|
this.Dash.MediaPlayer.events.TRACK_CHANGE_RENDERED,
|
|
65881
65891
|
this.Dash.MediaPlayer.events.QUALITY_CHANGE_RENDERED,
|
|
@@ -65892,7 +65902,7 @@ class i2 {
|
|
|
65892
65902
|
try {
|
|
65893
65903
|
return await this.video.play(), !0;
|
|
65894
65904
|
} catch (e) {
|
|
65895
|
-
if (this.Log("Unable to autoplay", !0), this.Log(e, !0), this.playbackStarted = !1, this.playerOptions.muted ===
|
|
65905
|
+
if (this.Log("Unable to autoplay", !0), this.Log(e, !0), this.playbackStarted = !1, this.playerOptions.muted === jt.muted.OFF_IF_POSSIBLE && this.video.paused && !this.video.muted) {
|
|
65896
65906
|
await new Promise((t) => setTimeout(t, 250)), this.Log("Attempting to autoplay muted"), this.video.muted = !0;
|
|
65897
65907
|
try {
|
|
65898
65908
|
return await this.video.play(), !0;
|
|
@@ -65986,11 +65996,17 @@ class i2 {
|
|
|
65986
65996
|
}
|
|
65987
65997
|
__Reset() {
|
|
65988
65998
|
if (this.player) {
|
|
65989
|
-
|
|
65999
|
+
this.Log("Destroying player"), this.video && this.video.pause();
|
|
66000
|
+
try {
|
|
66001
|
+
this.hlsPlayer ? this.hlsPlayer.destroy() : this.dashPlayer && this.dashPlayer.destroy();
|
|
66002
|
+
} catch (e) {
|
|
66003
|
+
this.Log("Failed to destroy abr player", !0), this.Log(e, !0);
|
|
66004
|
+
}
|
|
66005
|
+
if (this.__listenerDisposers.forEach((e) => {
|
|
65990
66006
|
try {
|
|
65991
66007
|
e();
|
|
65992
66008
|
} catch (t) {
|
|
65993
|
-
this.Log("Failed to dispose of video event listener", !0), this.Log(t);
|
|
66009
|
+
this.Log("Failed to dispose of video event listener", !0), this.Log(t, !0);
|
|
65994
66010
|
}
|
|
65995
66011
|
}), this.__listenerDisposers = [], this.__showPlayerProfileForm = !1, this.video.mux)
|
|
65996
66012
|
try {
|
|
@@ -65998,7 +66014,7 @@ class i2 {
|
|
|
65998
66014
|
} catch (e) {
|
|
65999
66015
|
this.Log("Error destroying mux monitoring:"), this.Log(e);
|
|
66000
66016
|
}
|
|
66001
|
-
this.contentHash = void 0, this.nativeHLS = !1, this.hlsPlayer = void 0, this.dashPlayer = void 0, this.player = void 0, this.initTimeLogged = !1, this.canPlay = !1;
|
|
66017
|
+
this.contentHash = void 0, this.nativeHLS = !1, this.hlsPlayer = void 0, this.dashPlayer = void 0, this.player = void 0, this.initTimeLogged = !1, this.canPlay = !1, this.isLive = !1, this.dvrEnabled = !1;
|
|
66002
66018
|
}
|
|
66003
66019
|
}
|
|
66004
66020
|
async __HardReload(e, t = 6e3) {
|
|
@@ -66040,7 +66056,7 @@ class i2 {
|
|
|
66040
66056
|
t ? console.error("ELUVIO PLAYER:", e) : this.playerOptions.debugLogging && console.warn("ELUVIO PLAYER:", e);
|
|
66041
66057
|
}
|
|
66042
66058
|
}
|
|
66043
|
-
i2.EluvioPlayerParameters =
|
|
66059
|
+
i2.EluvioPlayerParameters = jt;
|
|
66044
66060
|
i2.EluvioPlayer = i2;
|
|
66045
66061
|
var Lz = function() {
|
|
66046
66062
|
if (typeof Map < "u")
|
|
@@ -66400,7 +66416,7 @@ const l3 = ({ element: n, Hide: e }) => {
|
|
|
66400
66416
|
const u = new Nme(o);
|
|
66401
66417
|
return u.observe(n), () => u.disconnect();
|
|
66402
66418
|
}, Dme = ({ player: n }) => {
|
|
66403
|
-
const e = n.video, t = n.playerOptions.autoplay ===
|
|
66419
|
+
const e = n.video, t = n.playerOptions.autoplay === jt.autoplay.WHEN_VISIBLE, r = n.playerOptions.muted === jt.muted.WHEN_NOT_VISIBLE;
|
|
66404
66420
|
if (!t && !r)
|
|
66405
66421
|
return;
|
|
66406
66422
|
let i, o;
|
|
@@ -66435,9 +66451,9 @@ const l3 = ({ element: n, Hide: e }) => {
|
|
|
66435
66451
|
u.map((p) => n.video.removeEventListener(p, o)), c.map((p) => n.target.removeEventListener(p, o));
|
|
66436
66452
|
};
|
|
66437
66453
|
}, Fme = ({ player: n, setRecentUserAction: e }) => {
|
|
66438
|
-
if (n.playerOptions.keyboardControls ===
|
|
66454
|
+
if (n.playerOptions.keyboardControls === jt.keyboardControls.OFF)
|
|
66439
66455
|
return;
|
|
66440
|
-
const t = n.playerOptions.keyboardControls ===
|
|
66456
|
+
const t = n.playerOptions.keyboardControls === jt.keyboardControls.ARROW_KEYS_DISABLED, r = Tz(n, e)(), i = (o) => {
|
|
66441
66457
|
if (
|
|
66442
66458
|
// Keyboard controls should only fire if the player is in focus
|
|
66443
66459
|
!(n.target === o.target || n.target.contains(o.target)) || // Ignore keyboard controls if actively focused on a button or input
|
|
@@ -66591,40 +66607,40 @@ const l3 = ({ element: n, Hide: e }) => {
|
|
|
66591
66607
|
});
|
|
66592
66608
|
};
|
|
66593
66609
|
}
|
|
66594
|
-
}, zme = "
|
|
66610
|
+
}, zme = "_container_1q9a2_1", jme = "_autohide_1q9a2_41", $me = "_seek_1q9a2_162", Hme = "_controls_1q9a2_195", qme = "_time_1q9a2_209", Vme = "_spacer_1q9a2_259", Gme = "_watermark_1q9a2_271", Wme = "_fadein_1q9a2_1", Kme = "_menu_1q9a2_37", Fn = {
|
|
66595
66611
|
container: zme,
|
|
66596
|
-
"container--default-controls": "_container--default-
|
|
66597
|
-
"bottom-controls-container": "_bottom-controls-
|
|
66612
|
+
"container--default-controls": "_container--default-controls_1q9a2_33",
|
|
66613
|
+
"bottom-controls-container": "_bottom-controls-container_1q9a2_37",
|
|
66598
66614
|
autohide: jme,
|
|
66599
|
-
"info-container": "_info-
|
|
66600
|
-
"bottom-controls-container--autohide": "_bottom-controls-container--
|
|
66601
|
-
"icon-button": "_icon-
|
|
66602
|
-
"icon-button-active": "_icon-button-
|
|
66603
|
-
"info-image-container": "_info-image-
|
|
66604
|
-
"info-image": "_info-
|
|
66605
|
-
"info-text": "_info-
|
|
66606
|
-
"info-headers": "_info-
|
|
66607
|
-
"info-description": "_info-
|
|
66608
|
-
"info-title": "_info-
|
|
66609
|
-
"info-subtitle": "_info-
|
|
66610
|
-
"center-play-button": "_center-play-
|
|
66611
|
-
"center-play-button--hidden": "_center-play-button--
|
|
66615
|
+
"info-container": "_info-container_1q9a2_44",
|
|
66616
|
+
"bottom-controls-container--autohide": "_bottom-controls-container--autohide_1q9a2_45",
|
|
66617
|
+
"icon-button": "_icon-button_1q9a2_51",
|
|
66618
|
+
"icon-button-active": "_icon-button-active_1q9a2_65",
|
|
66619
|
+
"info-image-container": "_info-image-container_1q9a2_94",
|
|
66620
|
+
"info-image": "_info-image_1q9a2_94",
|
|
66621
|
+
"info-text": "_info-text_1q9a2_110",
|
|
66622
|
+
"info-headers": "_info-headers_1q9a2_119",
|
|
66623
|
+
"info-description": "_info-description_1q9a2_129",
|
|
66624
|
+
"info-title": "_info-title_1q9a2_135",
|
|
66625
|
+
"info-subtitle": "_info-subtitle_1q9a2_140",
|
|
66626
|
+
"center-play-button": "_center-play-button_1q9a2_148",
|
|
66627
|
+
"center-play-button--hidden": "_center-play-button--hidden_1q9a2_155",
|
|
66612
66628
|
seek: $me,
|
|
66613
|
-
"bottom-controls-gradient": "_bottom-controls-
|
|
66629
|
+
"bottom-controls-gradient": "_bottom-controls-gradient_1q9a2_182",
|
|
66614
66630
|
controls: Hme,
|
|
66615
|
-
"play-pause-button": "_play-pause-
|
|
66631
|
+
"play-pause-button": "_play-pause-button_1q9a2_205",
|
|
66616
66632
|
time: qme,
|
|
66617
|
-
"live-indicator": "_live-
|
|
66618
|
-
"collection-button-container": "_collection-button-
|
|
66619
|
-
"collection-button-text": "_collection-button-
|
|
66620
|
-
"collection-button-container--loading": "_collection-button-container--
|
|
66633
|
+
"live-indicator": "_live-indicator_1q9a2_219",
|
|
66634
|
+
"collection-button-container": "_collection-button-container_1q9a2_229",
|
|
66635
|
+
"collection-button-text": "_collection-button-text_1q9a2_234",
|
|
66636
|
+
"collection-button-container--loading": "_collection-button-container--loading_1q9a2_243",
|
|
66621
66637
|
spacer: Vme,
|
|
66622
|
-
"floating-volume-toggle": "_floating-volume-
|
|
66638
|
+
"floating-volume-toggle": "_floating-volume-toggle_1q9a2_263",
|
|
66623
66639
|
watermark: Gme,
|
|
66624
|
-
"content-verified-badge": "_content-verified-
|
|
66625
|
-
"content-verification-menu-button": "_content-verification-menu-
|
|
66640
|
+
"content-verified-badge": "_content-verified-badge_1q9a2_282",
|
|
66641
|
+
"content-verification-menu-button": "_content-verification-menu-button_1q9a2_283",
|
|
66626
66642
|
fadein: Wme,
|
|
66627
|
-
"menu-control-container": "_menu-control-
|
|
66643
|
+
"menu-control-container": "_menu-control-container_1q9a2_297",
|
|
66628
66644
|
menu: Kme
|
|
66629
66645
|
}, Fz = '<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> <circle cx="16" cy="16" r="16" fill="currentColor"/> <path d="M22 15.5L13.75 21.1292L13.75 9.87083L22 15.5Z" fill="black"/></svg>', Bz = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="currentColor" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-play"><polygon points="5 3 19 12 5 21 5 3"></polygon></svg>', zz = '<?xml version="1.0" encoding="utf-8"?><!-- Generator: Adobe Illustrator 26.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) --><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" xml:space="preserve"><circle cx="16" cy="16" r="16" fill="currentColor"/><path d="M22.8,16l-11.6,7V9L22.8,16z" fill="black"/></svg>', Yme = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="currentColor" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-pause"><rect x="6" y="4" width="4" height="16"></rect><rect x="14" y="4" width="4" height="16"></rect></svg>', jz = '<?xml version="1.0" encoding="utf-8"?><!-- Generator: Adobe Illustrator 26.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) --><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" xml:space="preserve"><circle cx="16" cy="16" r="16" fill="currentColor"/><g> <rect x="10.4" y="9" width="4.5" height="14.1" fill="black"/> <rect x="17.5" y="9" width="4.5" height="14.1" fill="black"/></g></svg>', Jme = '<svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.46154 18.9985L5.84615 18.9942C6.03997 18.9942 6.22584 18.9172 6.36289 18.7801C6.49993 18.6431 6.57692 18.4572 6.57692 18.2634C6.57692 18.0696 6.49993 17.8837 6.36289 17.7467C6.22584 17.6096 6.03997 17.5326 5.84615 17.5326L1.46154 17.537V13.1538C1.46154 12.96 1.38455 12.7742 1.2475 12.6371C1.11046 12.5001 0.924581 12.4231 0.730769 12.4231C0.536957 12.4231 0.351083 12.5001 0.214037 12.6371C0.0769915 12.7742 0 12.96 0 13.1538V19H1.46154V18.9985ZM1.46154 0.00146249V3.57628e-07H0V5.84615C0 6.03997 0.0769915 6.22584 0.214037 6.36289C0.351083 6.49993 0.536957 6.57692 0.730769 6.57692C0.924581 6.57692 1.11046 6.49993 1.2475 6.36289C1.38455 6.22584 1.46154 6.03997 1.46154 5.84615V1.463L5.84615 1.46738C6.03997 1.46738 6.22584 1.39039 6.36289 1.25335C6.49993 1.1163 6.57692 0.930427 6.57692 0.736615C6.57692 0.542803 6.49993 0.35693 6.36289 0.219884C6.22584 0.0828385 6.03997 0.00584609 5.84615 0.00584609L1.46154 0.00146249V0.00146249ZM17.5385 18.9985V19H19V13.1538C19 12.96 18.923 12.7742 18.786 12.6371C18.6489 12.5001 18.463 12.4231 18.2692 12.4231C18.0754 12.4231 17.8895 12.5001 17.7525 12.6371C17.6155 12.7742 17.5385 12.96 17.5385 13.1538V17.537L13.1538 17.5326C12.96 17.5326 12.7742 17.6096 12.6371 17.7467C12.5001 17.8837 12.4231 18.0696 12.4231 18.2634C12.4231 18.4572 12.5001 18.6431 12.6371 18.7801C12.7742 18.9172 12.96 18.9942 13.1538 18.9942L17.5385 18.9985V18.9985ZM17.5385 0.00146249L13.1538 0.00584609C12.96 0.00584609 12.7742 0.0828385 12.6371 0.219884C12.5001 0.35693 12.4231 0.542803 12.4231 0.736615C12.4231 0.930427 12.5001 1.1163 12.6371 1.25335C12.7742 1.39039 12.96 1.46738 13.1538 1.46738L17.5385 1.463V5.84615C17.5385 6.03997 17.6155 6.22584 17.7525 6.36289C17.8895 6.49993 18.0754 6.57692 18.2692 6.57692C18.463 6.57692 18.6489 6.49993 18.786 6.36289C18.923 6.22584 19 6.03997 19 5.84615V3.57628e-07H17.5385V0.00146249V0.00146249Z" fill="currentColor"/></svg>', Qme = '<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 51.94 50.82"><defs><style>.cls-1{fill:none;stroke:#fff;stroke-linecap:round;stroke-miterlimit:10;stroke-width:4px;}</style></defs><polyline class="cls-1" points="12.1 49.82 12.1 35.59 1 35.59"/><polyline class="cls-1" points="39.84 1 39.84 15.22 50.94 15.22"/><polyline class="cls-1" points="12.1 1 12.1 15.22 1 15.22"/><polyline class="cls-1" points="39.84 49.82 39.84 35.59 50.94 35.59"/></svg>', Zme = '<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_363_9540)"><path d="M16.0889 9.77734C12.6223 9.77734 9.8667 12.5329 9.8667 15.9996C9.8667 19.4662 12.6223 22.2218 16.0889 22.2218C19.5556 22.2218 22.3111 19.4662 22.3111 15.9996C22.3111 12.5329 19.5556 9.77734 16.0889 9.77734ZM16.0889 20.444C13.6 20.444 11.6445 18.4885 11.6445 15.9996C11.6445 13.5107 13.6 11.5551 16.0889 11.5551C18.5778 11.5551 20.5334 13.5107 20.5334 15.9996C20.5334 18.4885 18.5778 20.444 16.0889 20.444Z" fill="currentColor"/><path d="M29.1556 13.0662L26.6667 12.2662L26.1334 10.9329L27.3778 8.62179C27.6445 8.08845 27.5556 7.37734 27.1112 6.9329L24.9778 4.79957C24.5334 4.35512 23.8223 4.26623 23.2889 4.5329L20.9778 5.77734L19.6445 5.24401L18.8445 2.75512C18.6667 2.22179 18.1334 1.77734 17.5112 1.77734H14.4889C13.8667 1.77734 13.3334 2.22179 13.2445 2.84401L12.4445 5.3329C11.9112 5.42179 11.4667 5.59957 11.0223 5.86623L8.71117 4.62179C8.17783 4.35512 7.46672 4.44401 7.02228 4.88845L4.88894 7.02179C4.4445 7.46623 4.35561 8.17734 4.62228 8.71068L5.77783 10.9329C5.60005 11.3773 5.42228 11.9107 5.2445 12.3551L2.75561 13.1551C2.22228 13.3329 1.77783 13.8662 1.77783 14.4885V17.5107C1.77783 18.1329 2.22228 18.6662 2.8445 18.844L5.33339 19.644L5.86672 20.9773L4.62228 23.2885C4.35561 23.8218 4.4445 24.5329 4.88894 24.9773L7.02228 27.1107C7.46672 27.5551 8.17783 27.644 8.71117 27.3773L11.0223 26.1329L12.3556 26.6662L13.1556 29.244C13.3334 29.7773 13.8667 30.2218 14.4889 30.2218H17.5112C18.1334 30.2218 18.6667 29.7773 18.8445 29.244L19.6445 26.6662L20.9778 26.1329L23.2889 27.3773C23.8223 27.644 24.5334 27.5551 24.9778 27.1107L27.1112 24.9773C27.5556 24.5329 27.6445 23.8218 27.3778 23.2885L26.1334 20.9773L26.6667 19.644L29.2445 18.844C29.7778 18.6662 30.2223 18.1329 30.2223 17.5107V14.4885C30.2223 13.8662 29.7778 13.244 29.1556 13.0662ZM28.4445 17.244L25.2445 18.2218L25.1556 18.6662L24.3556 20.5329L24.0889 20.9773L25.6889 23.9107L23.9112 25.6885L20.9778 24.0885L20.5334 24.3551C19.9112 24.7107 19.2889 24.9773 18.6667 25.1551L18.2223 25.244L17.2445 28.444H14.7556L13.7778 25.244L13.3334 25.1551L11.4667 24.3551L11.0223 24.0885L8.08894 25.6885L6.31117 23.9107L7.91117 20.9773L7.6445 20.5329C7.28894 19.9107 7.02228 19.2885 6.8445 18.6662L6.75561 18.2218L3.55561 17.244V14.7551L6.57783 13.8662L6.75561 13.4218C6.93339 12.7107 7.20005 12.0885 7.55561 11.4662L7.82228 11.0218L6.31117 8.08846L8.08894 6.31068L10.9334 7.91068L11.3778 7.64401C12.0001 7.28846 12.6223 7.02179 13.3334 6.84401L13.7778 6.66623L14.7556 3.55512H17.2445L18.2223 6.66623L18.6667 6.84401C19.2889 7.02179 19.9112 7.28846 20.5334 7.64401L20.9778 7.91068L23.9112 6.31068L25.6889 8.08846L24.0889 11.0218L24.3556 11.4662C24.7112 12.0885 24.9778 12.7107 25.1556 13.3329L25.2445 13.7773L28.4445 14.7551V17.244Z" fill="currentColor"/></g><defs><clipPath id="clip0_363_9540"><rect width="32" height="32" fill="currentColor"/></clipPath></defs></svg>', pk = '<?xml version="1.0" encoding="utf-8"?><!-- Generator: Adobe Illustrator 26.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) --><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 13 12" style="enable-background:new 0 0 10.2 12;" xml:space="preserve"><path d="M5.3,1.4c0.1,0,0.1,0.1,0.2,0.2c0,0.1,0.1,0.2,0.1,0.2v7.4c0,0.1,0,0.2-0.1,0.2c0,0.1-0.1,0.1-0.2,0.2c-0.1,0-0.2,0.1-0.3,0 c-0.1,0-0.2,0-0.2-0.1L2.6,7.8H0.5c-0.1,0-0.2,0-0.3-0.1C0,7.6,0,7.5,0,7.4V3.7c0-0.1,0-0.2,0.1-0.3c0.1-0.1,0.2-0.1,0.3-0.1h2.1 l2.2-1.7C4.9,1.4,4.9,1.4,5,1.4C5.1,1.4,5.2,1.4,5.3,1.4L5.3,1.4z" fill="currentColor"/><g> <rect x="7.7" y="3.4" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -1.4992 7.4586)" width="1.2" height="4.2" fill="currentColor"/> <rect x="6.1" y="4.9" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -1.5119 7.4281)" width="4.2" height="1.2" fill="currentColor"/></g></svg>', $z = '<?xml version="1.0" encoding="utf-8"?><!-- Generator: Adobe Illustrator 26.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) --><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 13 12" style="enable-background:new 0 0 10.2 12;" xml:space="preserve"><path d="M7.1,8.5C7.5,8.1,7.8,7.6,8,7.1c0.2-0.5,0.3-1,0.3-1.6C8.3,5,8.2,4.5,8,4C7.8,3.4,7.5,3,7.1,2.6L6.5,3.3 c0.3,0.3,0.5,0.7,0.7,1c0.2,0.4,0.2,0.8,0.2,1.2c0,0.4-0.1,0.8-0.2,1.2C7,7.2,6.8,7.5,6.5,7.8L7.1,8.5z M5.3,1.4 c0.1,0,0.1,0.1,0.2,0.2c0,0.1,0.1,0.2,0.1,0.2v7.4c0,0.1,0,0.2-0.1,0.2c0,0.1-0.1,0.1-0.2,0.2c-0.1,0-0.2,0.1-0.3,0 c-0.1,0-0.2,0-0.2-0.1L2.6,7.8H0.5c-0.1,0-0.2,0-0.3-0.1C0,7.6,0,7.5,0,7.4V3.7c0-0.1,0-0.2,0.1-0.3c0.1-0.1,0.2-0.1,0.3-0.1h2.1 l2.2-1.7C4.9,1.4,4.9,1.4,5,1.4C5.1,1.4,5.2,1.4,5.3,1.4L5.3,1.4z" fill="currentColor"/></svg>', Xme = '<?xml version="1.0" encoding="utf-8"?><!-- Generator: Adobe Illustrator 26.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) --><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 13 12" style="enable-background:new 0 0 10.2 12;" xml:space="preserve"><path d="M8.4,9.8c0.6-0.6,1-1.2,1.3-1.9c0.3-0.7,0.5-1.5,0.5-2.3c0-0.8-0.2-1.6-0.5-2.3C9.4,2.5,9,1.9,8.4,1.3L7.8,2 c0.5,0.5,0.8,1,1.1,1.6c0.3,0.6,0.4,1.3,0.4,1.9c0,0.7-0.1,1.3-0.4,1.9C8.6,8.1,8.2,8.7,7.8,9.1L8.4,9.8z" fill="currentColor"/><path d="M7.1,8.5C7.5,8.1,7.8,7.6,8,7.1c0.2-0.5,0.3-1,0.3-1.6C8.3,5,8.2,4.5,8,4C7.8,3.4,7.5,3,7.1,2.6L6.5,3.3 c0.3,0.3,0.5,0.7,0.7,1c0.2,0.4,0.2,0.8,0.2,1.2c0,0.4-0.1,0.8-0.2,1.2C7,7.2,6.8,7.5,6.5,7.8L7.1,8.5z M5.3,1.4 c0.1,0,0.1,0.1,0.2,0.2c0,0.1,0.1,0.2,0.1,0.2v7.4c0,0.1,0,0.2-0.1,0.2c0,0.1-0.1,0.1-0.2,0.2c-0.1,0-0.2,0.1-0.3,0 c-0.1,0-0.2,0-0.2-0.1L2.6,7.8H0.5c-0.1,0-0.2,0-0.3-0.1C0,7.6,0,7.5,0,7.4V3.7c0-0.1,0-0.2,0.1-0.3c0.1-0.1,0.2-0.1,0.3-0.1h2.1 l2.2-1.7C4.9,1.4,4.9,1.4,5,1.4C5.1,1.4,5.2,1.4,5.3,1.4L5.3,1.4z" fill="currentColor"/></svg>', u2 = '<svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.71196 11.08C10.4407 10.3533 11.0186 9.4898 11.4125 8.53906C11.8064 7.58832 12.0085 6.56911 12.0072 5.54C12.0085 4.51089 11.8064 3.49168 11.4125 2.54094C11.0186 1.5902 10.4407 0.726679 9.71196 0L9.05933 0.65171C9.7023 1.2929 10.2122 2.05484 10.5598 2.89374C10.9073 3.73264 11.0856 4.63196 11.0845 5.54C11.0845 7.44904 10.3102 9.17741 9.05933 10.4283L9.71196 11.08V11.08Z" fill="currentColor"/><path d="M8.40781 9.77644C8.96502 9.2207 9.40692 8.56034 9.70812 7.83329C10.0093 7.10624 10.1639 6.32683 10.1629 5.53986C10.1639 4.75289 10.0093 3.97349 9.70812 3.24644C9.40692 2.51939 8.96502 1.85902 8.40781 1.30328L7.7561 1.95499C8.22759 2.42525 8.60149 2.98403 8.85634 3.59924C9.11119 4.21445 9.24195 4.87396 9.24112 5.53986C9.2422 6.20586 9.11164 6.8655 8.85694 7.48087C8.60225 8.09625 8.22845 8.65522 7.75703 9.12565L8.40781 9.77644Z" fill="currentColor"/><path d="M7.10429 8.47307C7.49005 8.08831 7.79596 7.6311 8.00446 7.12773C8.21296 6.62436 8.31993 6.08475 8.31922 5.53991C8.31993 4.99507 8.21296 4.45546 8.00446 3.95209C7.79596 3.44872 7.49005 2.99152 7.10429 2.60675L6.45258 3.25846C6.75261 3.55774 6.99054 3.91337 7.15269 4.30489C7.31483 4.69642 7.39801 5.11614 7.39742 5.53991C7.39795 5.96368 7.31476 6.38338 7.15261 6.7749C6.99047 7.16642 6.75257 7.52205 6.45258 7.82136L7.10429 8.47307ZM5.26991 1.43791C5.348 1.47553 5.4139 1.53441 5.46004 1.60778C5.50618 1.68115 5.5307 1.76605 5.53078 1.85272V9.2271C5.53066 9.31383 5.50607 9.39876 5.45984 9.47214C5.4136 9.54551 5.34761 9.60436 5.26943 9.64191C5.19125 9.67945 5.10407 9.69418 5.01789 9.6844C4.93172 9.67462 4.85005 9.64072 4.78228 9.5866L2.60408 7.8444H0.460899C0.338661 7.8444 0.221429 7.79585 0.134994 7.70941C0.0485588 7.62298 0 7.50574 0 7.38351V3.69632C0 3.57408 0.0485588 3.45685 0.134994 3.37041C0.221429 3.28398 0.338661 3.23542 0.460899 3.23542H2.60408L4.78228 1.49322C4.8501 1.43901 4.93185 1.40506 5.01812 1.39527C5.1044 1.38549 5.19168 1.40027 5.26991 1.43791V1.43791Z" fill="currentColor"/></svg>', ege = '<svg width="25" height="16" viewBox="0 0 25 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1.5 8L24 8" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> <path d="M8.5 1L1.5 8L8.5 15" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>', jP = '<svg width="91" height="92" viewBox="0 0 91 92" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M62.8896 63.918L62.8897 28.2377L34.8552 46.0779L62.8896 63.918Z" fill="currentColor"/><path d="M45.3281 63.918L45.3281 28.2377L17.2937 46.0779L45.3281 63.918Z" fill="currentColor"/></svg>', tge = '<svg width="91" height="92" viewBox="0 0 91 92" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="45.2374" cy="45.798" r="45.2374" fill="currentColor"/><path d="M62.8896 63.918L62.8897 28.2377L34.8552 46.0779L62.8896 63.918Z" fill="black"/><path d="M45.3281 63.918L45.3281 28.2377L17.2937 46.0779L45.3281 63.918Z" fill="black"/></svg>', $P = '<svg width="91" height="92" viewBox="0 0 91 92" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M26.8555 28.9512V64.6314L54.8899 46.7913L26.8555 28.9512Z" fill="currentColor"/><path d="M44.417 28.9512V64.6314L72.4515 46.7913L44.417 28.9512Z" fill="currentColor"/></svg>', nge = '<svg width="91" height="92" viewBox="0 0 91 92" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="45.7169" cy="45.796" r="45.2374" fill="currentColor"/><path d="M26.8555 28.9512V64.6314L54.8899 46.7913L26.8555 28.9512Z" fill="black"/><path d="M44.417 28.9512V64.6314L72.4515 46.7913L44.417 28.9512Z" fill="black"/></svg>', hk = '<?xml version="1.0" encoding="utf-8"?><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 30.8 32" style="enable-background:new 0 0 30.8 32;" xml:space="preserve"><g> <path d="M3.1,16L30.8,0v32L3.1,16z" fill="currentColor"/> <rect y="3.7" width="6.2" height="24.6" fill="currentColor"/></g></svg>', yk = '<?xml version="1.0" encoding="utf-8"?><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 30.8 32" style="enable-background:new 0 0 30.8 32;" xml:space="preserve"><g> <path d="M27.7,16L0,32V0L27.7,16z" fill="currentColor"/> <rect x="24.6" y="3.7" width="6.2" height="24.6" fill="currentColor"/></g></svg>', Hz = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-list"><line x1="8" y1="6" x2="21" y2="6"></line><line x1="8" y1="12" x2="21" y2="12"></line><line x1="8" y1="18" x2="21" y2="18"></line><line x1="3" y1="6" x2="3.01" y2="6"></line><line x1="3" y1="12" x2="3.01" y2="12"></line><line x1="3" y1="18" x2="3.01" y2="18"></line></svg>', Iy = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right"><polyline points="9 18 15 12 9 6"></polyline></svg>', rge = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check"><polyline points="20 6 9 17 4 12"></polyline></svg>', age = '<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-badge-cc" width="48" height="48" viewBox="0 0 24 24" stroke="black" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"> <path stroke="none" d="M0 0h24v24H0z" fill="none"></path> <rect x="3" y="5" width="18" height="14" rx="2" stroke="currentColor"></rect> <path d="M10 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0" stroke="currentColor"></path> <path d="M17 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0" stroke="currentColor"></path></svg>', ige = '<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-badge-cc" width="48" height="48" viewBox="0 0 24 24" stroke="black" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"> <path stroke="none" d="M0 0h24v24H0z" fill="none"></path> <rect x="3" y="5" width="18" height="14" rx="2" stroke="currentColor"></rect> <path d="M10 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0" stroke="currentColor"></path> <path d="M17 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0" stroke="currentColor"></path> <path d="M3 3l18 18" stroke="currentColor"></path></svg>', sge = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-rotate-cw"><polyline points="23 4 23 10 17 10"></polyline><path d="M20.49 15a9 9 0 1 1-2.12-9.36L23 10"></path></svg>', l2 = '<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15 27.5C15 27.5 25 22.5 25 15V6.25L15 2.5L5 6.25V15C5 22.5 15 27.5 15 27.5Z" stroke="currentColor" stroke-width="2.14286" stroke-linecap="round" stroke-linejoin="round"/><path d="M19.715 11.3574L13.8221 17.8396L11.1436 14.8931" stroke="currentColor" stroke-width="2.14286" stroke-linecap="round" stroke-linejoin="round"/></svg>', HP = '<svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M23.7508 12.9997V23.7508H13.0003C7.05943 23.7508 2.24919 18.9406 2.24919 12.9997C2.24919 7.05888 7.05943 2.24864 13.0003 2.24864C18.9411 2.24864 23.7508 7.05888 23.7508 12.9997ZM0 12.9997C0 5.82396 5.82396 0 12.9997 0C20.1755 0 26 5.82396 26 12.9997V25.9995H13.0003C5.82396 25.9995 0 20.1755 0 12.9997ZM5.174 13.5197C5.174 16.1976 6.98078 18.4599 9.85371 18.4599C12.2198 18.4599 13.8185 16.9 14.2084 14.8589H11.8686C11.5698 15.7951 10.8155 16.367 9.85371 16.367C8.39758 16.367 7.44886 15.2227 7.44886 13.5202C7.44886 11.8178 8.39813 10.6735 9.85371 10.6735C10.7899 10.6735 11.5305 11.2066 11.8429 12.0903H14.1959C13.7797 10.1011 12.1941 8.58055 9.85371 8.58055C6.96822 8.58001 5.174 10.8418 5.174 13.5197ZM17.3419 8.83999H15.132V18.2131H17.4331V13.3253C17.4331 12.4022 17.6931 11.8041 18.1349 11.4273C18.5249 11.0761 19.0318 10.8942 19.8642 10.8942H20.4491V8.72256H19.8773C18.668 8.72256 17.8624 9.16442 17.3424 9.8406V8.82633V8.83999H17.3419Z" fill="currentColor"/></svg>', oge = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-copy"><rect x="9" y="9" width="13" height="13" rx="2" ry="2"></rect><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"></path></svg>';
|
|
66630
66646
|
(function(n, e) {
|
|
@@ -66747,7 +66763,7 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
66747
66763
|
"copy-button": "_copy-button_7th3b_564",
|
|
66748
66764
|
"copy-button--copied": "_copy-button--copied_7th3b_567",
|
|
66749
66765
|
fadeout: pge
|
|
66750
|
-
}, Ob = ({ light: n, className: e = "" }) => /* @__PURE__ */
|
|
66766
|
+
}, Ob = ({ light: n, className: e = "" }) => /* @__PURE__ */ Le.jsx("div", { className: `${e} ${Ot.spinner} ${n ? Ot["spinner--light"] : ""}`, children: /* @__PURE__ */ Le.jsx("div", { className: Ot["spinner-inner"] }) }), bd = ({ icon: n, className: e = "" }) => /* @__PURE__ */ Le.jsx("div", { className: `${Ot.svg} ${e}`, dangerouslySetInnerHTML: { __html: n } }), qP = {
|
|
66751
66767
|
[Pn.PLAY]: Bz,
|
|
66752
66768
|
[Pn.PAUSE]: Yme,
|
|
66753
66769
|
[Pn.MUTE]: pk,
|
|
@@ -66764,8 +66780,8 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
66764
66780
|
[Pn.PLAY_NEXT]: yk
|
|
66765
66781
|
}, hge = ({ action: n }) => {
|
|
66766
66782
|
if (!(!n || !qP[n.action]))
|
|
66767
|
-
return /* @__PURE__ */
|
|
66768
|
-
/* @__PURE__ */
|
|
66783
|
+
return /* @__PURE__ */ Le.jsxs("div", { className: Ot["user-action-indicator-container"], children: [
|
|
66784
|
+
/* @__PURE__ */ Le.jsx("div", { className: Ot["user-action-indicator"], children: /* @__PURE__ */ Le.jsx(
|
|
66769
66785
|
bd,
|
|
66770
66786
|
{
|
|
66771
66787
|
icon: qP[n.action],
|
|
@@ -66773,7 +66789,7 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
66773
66789
|
className: Ot["user-action-indicator-icon"]
|
|
66774
66790
|
}
|
|
66775
66791
|
) }),
|
|
66776
|
-
n.text ? /* @__PURE__ */
|
|
66792
|
+
n.text ? /* @__PURE__ */ Le.jsx("div", { className: Ot["user-action-indicator-text"], children: n.text }) : null
|
|
66777
66793
|
] });
|
|
66778
66794
|
}, Vz = ({ player: n, videoState: e, setRecentUserAction: t, className: r = "" }) => {
|
|
66779
66795
|
const [i, o] = Ct.useState(n.video.currentTime), [u, c] = Ct.useState(0), [p, h] = Ct.useState(void 0);
|
|
@@ -66783,8 +66799,8 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
66783
66799
|
return () => {
|
|
66784
66800
|
m && m(), w && w();
|
|
66785
66801
|
};
|
|
66786
|
-
}, []), n.isLive ? null : /* @__PURE__ */
|
|
66787
|
-
/* @__PURE__ */
|
|
66802
|
+
}, []), n.isLive && !n.dvrEnabled ? null : /* @__PURE__ */ Le.jsxs("div", { className: `${r} ${Ot["seek-container"]} ${r}`, children: [
|
|
66803
|
+
/* @__PURE__ */ Le.jsx(
|
|
66788
66804
|
"progress",
|
|
66789
66805
|
{
|
|
66790
66806
|
max: 1,
|
|
@@ -66792,7 +66808,7 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
66792
66808
|
className: Ot["seek-buffer"]
|
|
66793
66809
|
}
|
|
66794
66810
|
),
|
|
66795
|
-
/* @__PURE__ */
|
|
66811
|
+
/* @__PURE__ */ Le.jsx(
|
|
66796
66812
|
"progress",
|
|
66797
66813
|
{
|
|
66798
66814
|
max: 1,
|
|
@@ -66800,7 +66816,7 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
66800
66816
|
className: Ot["seek-playhead"]
|
|
66801
66817
|
}
|
|
66802
66818
|
),
|
|
66803
|
-
/* @__PURE__ */
|
|
66819
|
+
/* @__PURE__ */ Le.jsx(
|
|
66804
66820
|
"input",
|
|
66805
66821
|
{
|
|
66806
66822
|
"aria-label": "Seek slider",
|
|
@@ -66815,8 +66831,8 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
66815
66831
|
}
|
|
66816
66832
|
)
|
|
66817
66833
|
] });
|
|
66818
|
-
}, yge = ({ player: n, videoState: e }) => /* @__PURE__ */
|
|
66819
|
-
/* @__PURE__ */
|
|
66834
|
+
}, yge = ({ player: n, videoState: e }) => /* @__PURE__ */ Le.jsxs("div", { className: Ot["volume-controls"], children: [
|
|
66835
|
+
/* @__PURE__ */ Le.jsx(
|
|
66820
66836
|
qc,
|
|
66821
66837
|
{
|
|
66822
66838
|
"aria-label": e.muted ? "Unmute" : "Mute",
|
|
@@ -66826,8 +66842,8 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
66826
66842
|
},
|
|
66827
66843
|
"mute-button"
|
|
66828
66844
|
),
|
|
66829
|
-
/* @__PURE__ */
|
|
66830
|
-
/* @__PURE__ */
|
|
66845
|
+
/* @__PURE__ */ Le.jsxs("div", { className: Ot["volume-slider"], children: [
|
|
66846
|
+
/* @__PURE__ */ Le.jsx(
|
|
66831
66847
|
"progress",
|
|
66832
66848
|
{
|
|
66833
66849
|
max: 1,
|
|
@@ -66835,7 +66851,7 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
66835
66851
|
className: Ot["volume-progress"]
|
|
66836
66852
|
}
|
|
66837
66853
|
),
|
|
66838
|
-
/* @__PURE__ */
|
|
66854
|
+
/* @__PURE__ */ Le.jsx(
|
|
66839
66855
|
"input",
|
|
66840
66856
|
{
|
|
66841
66857
|
"aria-label": "Volume slider",
|
|
@@ -66891,21 +66907,21 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
66891
66907
|
}
|
|
66892
66908
|
};
|
|
66893
66909
|
let m;
|
|
66894
|
-
return r ? m = /* @__PURE__ */
|
|
66895
|
-
/* @__PURE__ */
|
|
66910
|
+
return r ? m = /* @__PURE__ */ Le.jsxs("div", { role: "menu", className: `${Ot.menu} ${Ot.submenu} ${t}`, children: [
|
|
66911
|
+
/* @__PURE__ */ Le.jsxs(
|
|
66896
66912
|
"button",
|
|
66897
66913
|
{
|
|
66898
66914
|
onClick: () => p(void 0),
|
|
66899
66915
|
"aria-label": "Back to settings menu",
|
|
66900
66916
|
className: `${Ot["menu-option"]} ${Ot["menu-option-back"]}`,
|
|
66901
66917
|
children: [
|
|
66902
|
-
/* @__PURE__ */
|
|
66903
|
-
/* @__PURE__ */
|
|
66918
|
+
/* @__PURE__ */ Le.jsx("div", { dangerouslySetInnerHTML: { __html: ege }, className: Ot["menu-option-back-icon"] }),
|
|
66919
|
+
/* @__PURE__ */ Le.jsx("div", { children: h[r].label })
|
|
66904
66920
|
]
|
|
66905
66921
|
}
|
|
66906
66922
|
),
|
|
66907
66923
|
o[r].options.map(
|
|
66908
|
-
(w) => /* @__PURE__ */
|
|
66924
|
+
(w) => /* @__PURE__ */ Le.jsxs(
|
|
66909
66925
|
"button",
|
|
66910
66926
|
{
|
|
66911
66927
|
role: "menuitemradio",
|
|
@@ -66918,14 +66934,14 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
66918
66934
|
className: `${Ot["menu-option"]} ${w.active ? Ot["menu-option-active"] : ""}`,
|
|
66919
66935
|
children: [
|
|
66920
66936
|
w.label || "",
|
|
66921
|
-
w.active ? /* @__PURE__ */
|
|
66937
|
+
w.active ? /* @__PURE__ */ Le.jsx(bd, { icon: rge, className: Ot["menu-option-icon"] }) : null
|
|
66922
66938
|
]
|
|
66923
66939
|
},
|
|
66924
66940
|
`option-${w.index}`
|
|
66925
66941
|
)
|
|
66926
66942
|
)
|
|
66927
|
-
] }, "submenu") : m = /* @__PURE__ */
|
|
66928
|
-
o.hasQualityOptions ? /* @__PURE__ */
|
|
66943
|
+
] }, "submenu") : m = /* @__PURE__ */ Le.jsxs("div", { role: "menu", className: `${Ot.menu} ${t}`, children: [
|
|
66944
|
+
o.hasQualityOptions ? /* @__PURE__ */ Le.jsxs(
|
|
66929
66945
|
"button",
|
|
66930
66946
|
{
|
|
66931
66947
|
autoFocus: !0,
|
|
@@ -66934,27 +66950,27 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
66934
66950
|
className: Ot["menu-option"],
|
|
66935
66951
|
children: [
|
|
66936
66952
|
`${h.quality.label}: ${o.quality.active && o.quality.active.activeLabel || ""}`,
|
|
66937
|
-
/* @__PURE__ */
|
|
66953
|
+
/* @__PURE__ */ Le.jsx(bd, { icon: Iy, className: Ot["menu-option-icon"] })
|
|
66938
66954
|
]
|
|
66939
66955
|
}
|
|
66940
66956
|
) : null,
|
|
66941
|
-
o.hasAudioOptions ? /* @__PURE__ */
|
|
66957
|
+
o.hasAudioOptions ? /* @__PURE__ */ Le.jsxs("button", { autoFocus: !o.hasQualityOptions, role: "menuitem", onClick: () => p("audio"), className: Ot["menu-option"], children: [
|
|
66942
66958
|
`${h.audio.label}: ${o.audio.active && o.audio.active.label || ""}`,
|
|
66943
|
-
/* @__PURE__ */
|
|
66959
|
+
/* @__PURE__ */ Le.jsx(bd, { icon: Iy, className: Ot["menu-option-icon"] })
|
|
66944
66960
|
] }) : null,
|
|
66945
|
-
o.hasTextOptions ? /* @__PURE__ */
|
|
66961
|
+
o.hasTextOptions ? /* @__PURE__ */ Le.jsxs("button", { autoFocus: !o.hasQualityOptions && !o.hasAudioOptions, role: "menuitem", onClick: () => p("text"), className: Ot["menu-option"], children: [
|
|
66946
66962
|
`${h.text.label}: ${o.text.active && o.text.active.label || ""}`,
|
|
66947
|
-
/* @__PURE__ */
|
|
66963
|
+
/* @__PURE__ */ Le.jsx(bd, { icon: Iy, className: Ot["menu-option-icon"] })
|
|
66948
66964
|
] }) : null,
|
|
66949
|
-
o.hasProfileOptons ? /* @__PURE__ */
|
|
66965
|
+
o.hasProfileOptons ? /* @__PURE__ */ Le.jsxs("button", { autoFocus: !o.hasQualityOptions && !o.hasAudioOptions && !o.hasTextOptions, role: "menuitem", onClick: () => p("profile"), className: Ot["menu-option"], children: [
|
|
66950
66966
|
`${h.profile.label}: ${o.profile.active && o.profile.active.label || ""}`,
|
|
66951
|
-
/* @__PURE__ */
|
|
66967
|
+
/* @__PURE__ */ Le.jsx(bd, { icon: Iy, className: Ot["menu-option-icon"] })
|
|
66952
66968
|
] }) : null,
|
|
66953
|
-
o.hasRateOptions ? /* @__PURE__ */
|
|
66969
|
+
o.hasRateOptions ? /* @__PURE__ */ Le.jsxs("button", { autoFocus: !o.hasQualityOptions && !o.hasAudioOptions && !o.hasTextOptions && !o.hasProfileOptons, role: "menuitem", onClick: () => p("rate"), className: Ot["menu-option"], children: [
|
|
66954
66970
|
`${h.rate.label}: ${o.rate.active && o.rate.active.label || ""}`,
|
|
66955
|
-
/* @__PURE__ */
|
|
66971
|
+
/* @__PURE__ */ Le.jsx(bd, { icon: Iy, className: Ot["menu-option-icon"] })
|
|
66956
66972
|
] }) : null
|
|
66957
|
-
] }, "menu"), /* @__PURE__ */
|
|
66973
|
+
] }, "menu"), /* @__PURE__ */ Le.jsx("div", { ref: c, children: m });
|
|
66958
66974
|
}, mge = async (n) => {
|
|
66959
66975
|
try {
|
|
66960
66976
|
n = (n || "").toString(), await navigator.clipboard.writeText(n);
|
|
@@ -66964,7 +66980,7 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
66964
66980
|
}
|
|
66965
66981
|
}, gge = ({ label: n, value: e, className: t = "" }) => {
|
|
66966
66982
|
const [r, i] = Ct.useState(!1);
|
|
66967
|
-
return /* @__PURE__ */
|
|
66983
|
+
return /* @__PURE__ */ Le.jsx(
|
|
66968
66984
|
"button",
|
|
66969
66985
|
{
|
|
66970
66986
|
onClick: () => {
|
|
@@ -66975,13 +66991,13 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
66975
66991
|
title: `Copy ${n}`
|
|
66976
66992
|
}
|
|
66977
66993
|
);
|
|
66978
|
-
}, Tu = ({ label: n, value: e, copyable: t }) => e ? /* @__PURE__ */
|
|
66979
|
-
/* @__PURE__ */
|
|
66994
|
+
}, Tu = ({ label: n, value: e, copyable: t }) => e ? /* @__PURE__ */ Le.jsxs("div", { className: Ot["verification-menu__detail"], children: [
|
|
66995
|
+
/* @__PURE__ */ Le.jsxs("label", { className: Ot["verification-menu__detail-label"], children: [
|
|
66980
66996
|
n,
|
|
66981
66997
|
":"
|
|
66982
66998
|
] }),
|
|
66983
|
-
/* @__PURE__ */
|
|
66984
|
-
t ? /* @__PURE__ */
|
|
66999
|
+
/* @__PURE__ */ Le.jsx("div", { className: Ot["verification-menu__detail-value"], children: e }),
|
|
67000
|
+
t ? /* @__PURE__ */ Le.jsx(
|
|
66985
67001
|
gge,
|
|
66986
67002
|
{
|
|
66987
67003
|
label: n,
|
|
@@ -67007,72 +67023,72 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67007
67023
|
}, [r]), !i)
|
|
67008
67024
|
return null;
|
|
67009
67025
|
let m;
|
|
67010
|
-
return u ? m = /* @__PURE__ */
|
|
67011
|
-
/* @__PURE__ */
|
|
67012
|
-
/* @__PURE__ */
|
|
67013
|
-
/* @__PURE__ */
|
|
67014
|
-
/* @__PURE__ */
|
|
67015
|
-
/* @__PURE__ */
|
|
67026
|
+
return u ? m = /* @__PURE__ */ Le.jsxs(Le.Fragment, { children: [
|
|
67027
|
+
/* @__PURE__ */ Le.jsxs("div", { className: Ot["verification-menu__group"], children: [
|
|
67028
|
+
/* @__PURE__ */ Le.jsx("div", { dangerouslySetInnerHTML: { __html: l2 }, className: Ot["verification-menu__group-icon"] }),
|
|
67029
|
+
/* @__PURE__ */ Le.jsxs("div", { className: Ot["verification-menu__group-text"], children: [
|
|
67030
|
+
/* @__PURE__ */ Le.jsx("div", { className: Ot["verification-menu__group-title"], children: "This content has been verified as authentic" }),
|
|
67031
|
+
/* @__PURE__ */ Le.jsxs("div", { className: Ot["verification-menu__group-subtitle"], children: [
|
|
67016
67032
|
"Last Verified: ",
|
|
67017
67033
|
new Date(i.verifiedAt).toLocaleTimeString(navigator.language || "en-us", { year: "numeric", month: "long", day: "numeric" })
|
|
67018
67034
|
] })
|
|
67019
67035
|
] })
|
|
67020
67036
|
] }),
|
|
67021
|
-
/* @__PURE__ */
|
|
67022
|
-
/* @__PURE__ */
|
|
67023
|
-
/* @__PURE__ */
|
|
67024
|
-
/* @__PURE__ */
|
|
67025
|
-
/* @__PURE__ */
|
|
67037
|
+
/* @__PURE__ */ Le.jsxs("div", { className: Ot["verification-menu__group"], children: [
|
|
67038
|
+
/* @__PURE__ */ Le.jsx("div", { dangerouslySetInnerHTML: { __html: HP }, className: [Ot["verification-menu__group-icon"], Ot["verification-menu__group-icon--cc"]].join(" ") }),
|
|
67039
|
+
/* @__PURE__ */ Le.jsxs("div", { className: Ot["verification-menu__group-text"], children: [
|
|
67040
|
+
/* @__PURE__ */ Le.jsx("button", { onClick: () => c(!0), className: Ot["verification-menu__group-title"], children: "Content Credentials" }),
|
|
67041
|
+
/* @__PURE__ */ Le.jsxs("div", { className: Ot["verification-menu__group-subtitle"], children: [
|
|
67026
67042
|
"Issued by the",
|
|
67027
|
-
/* @__PURE__ */
|
|
67043
|
+
/* @__PURE__ */ Le.jsx("a", { href: "https://main.net955305.contentfabric.io/config", target: "_blank", rel: "noreferrer", children: "Content Fabric" })
|
|
67028
67044
|
] })
|
|
67029
67045
|
] })
|
|
67030
67046
|
] }),
|
|
67031
|
-
/* @__PURE__ */
|
|
67032
|
-
/* @__PURE__ */
|
|
67033
|
-
/* @__PURE__ */
|
|
67034
|
-
/* @__PURE__ */
|
|
67035
|
-
/* @__PURE__ */
|
|
67036
|
-
/* @__PURE__ */
|
|
67047
|
+
/* @__PURE__ */ Le.jsxs("div", { className: Ot["verification-menu__details"], children: [
|
|
67048
|
+
/* @__PURE__ */ Le.jsx(Tu, { label: "Content Fabric Object ID", value: i.details.objectId, copyable: !0 }),
|
|
67049
|
+
/* @__PURE__ */ Le.jsx(Tu, { label: "Organization Address", value: i.details.tenantAddress, copyable: !0 }),
|
|
67050
|
+
/* @__PURE__ */ Le.jsx(Tu, { label: "Organization Name", value: i.details.tenantName && i.details.tenantName.toString() }),
|
|
67051
|
+
/* @__PURE__ */ Le.jsx(Tu, { label: "Owner Address", value: i.details.ownerAddress, copyable: !0 }),
|
|
67052
|
+
/* @__PURE__ */ Le.jsx(
|
|
67037
67053
|
Tu,
|
|
67038
67054
|
{
|
|
67039
67055
|
label: "Content Object Contract Address",
|
|
67040
|
-
value: i.details.explorerUrl ? /* @__PURE__ */
|
|
67056
|
+
value: i.details.explorerUrl ? /* @__PURE__ */ Le.jsx("a", { href: i.details.explorerUrl, target: "_blank", rel: "noreferrer", children: i.details.address }) : i.details.address,
|
|
67041
67057
|
copyable: !0
|
|
67042
67058
|
}
|
|
67043
67059
|
),
|
|
67044
|
-
/* @__PURE__ */
|
|
67045
|
-
/* @__PURE__ */
|
|
67046
|
-
i.details.lastCommittedAt ? /* @__PURE__ */
|
|
67047
|
-
/* @__PURE__ */
|
|
67048
|
-
/* @__PURE__ */
|
|
67060
|
+
/* @__PURE__ */ Le.jsx(Tu, { label: "Versions", value: i.details.versionCount }),
|
|
67061
|
+
/* @__PURE__ */ Le.jsx(Tu, { label: "Content Version Hash", value: i.details.versionHash, copyable: !0 }),
|
|
67062
|
+
i.details.lastCommittedAt ? /* @__PURE__ */ Le.jsx(Tu, { label: "Latest Commit", value: new Date(i.details.lastCommittedAt).toLocaleTimeString(navigator.language || "en-us", { year: "numeric", month: "long", day: "numeric" }) }) : null,
|
|
67063
|
+
/* @__PURE__ */ Le.jsx(Tu, { label: "Latest Version Hash", value: i.details.latestVersionHash, copyable: !0 }),
|
|
67064
|
+
/* @__PURE__ */ Le.jsx(
|
|
67049
67065
|
Tu,
|
|
67050
67066
|
{
|
|
67051
67067
|
label: "Latest Transaction",
|
|
67052
|
-
value: i.details._state !== "full" ? /* @__PURE__ */
|
|
67068
|
+
value: i.details._state !== "full" ? /* @__PURE__ */ Le.jsx(Ob, { className: Ot["verification-menu__loader"] }) : i.details.latestTransactionHashUrl ? /* @__PURE__ */ Le.jsx("a", { href: i.details.latestTransactionHashUrl, target: "_blank", rel: "noreferrer", children: i.details.latestTransactionHash && i.details.latestTransactionHash.toString() }) : void 0
|
|
67053
67069
|
}
|
|
67054
67070
|
),
|
|
67055
|
-
/* @__PURE__ */
|
|
67071
|
+
/* @__PURE__ */ Le.jsx(Tu, { label: "Signature Algorithm", value: i.details.signatureMethod })
|
|
67056
67072
|
] }, `details-${i.details._state}`)
|
|
67057
|
-
] }) : m = /* @__PURE__ */
|
|
67058
|
-
/* @__PURE__ */
|
|
67059
|
-
/* @__PURE__ */
|
|
67060
|
-
/* @__PURE__ */
|
|
67061
|
-
/* @__PURE__ */
|
|
67062
|
-
/* @__PURE__ */
|
|
67073
|
+
] }) : m = /* @__PURE__ */ Le.jsxs(Le.Fragment, { children: [
|
|
67074
|
+
/* @__PURE__ */ Le.jsxs("div", { className: Ot["verification-menu__group"], children: [
|
|
67075
|
+
/* @__PURE__ */ Le.jsx("div", { dangerouslySetInnerHTML: { __html: l2 }, className: Ot["verification-menu__group-icon"] }),
|
|
67076
|
+
/* @__PURE__ */ Le.jsxs("div", { className: Ot["verification-menu__group-text"], children: [
|
|
67077
|
+
/* @__PURE__ */ Le.jsx("div", { className: Ot["verification-menu__group-title"], children: "This content has been verified as authentic" }),
|
|
67078
|
+
/* @__PURE__ */ Le.jsxs("div", { className: Ot["verification-menu__group-subtitle"], children: [
|
|
67063
67079
|
"Last Verified: ",
|
|
67064
67080
|
new Date(i.verifiedAt).toLocaleTimeString(navigator.language || "en-us", { year: "numeric", month: "long", day: "numeric" })
|
|
67065
67081
|
] })
|
|
67066
67082
|
] })
|
|
67067
67083
|
] }),
|
|
67068
|
-
/* @__PURE__ */
|
|
67069
|
-
/* @__PURE__ */
|
|
67070
|
-
/* @__PURE__ */
|
|
67084
|
+
/* @__PURE__ */ Le.jsxs("div", { className: Ot["verification-menu__group"], children: [
|
|
67085
|
+
/* @__PURE__ */ Le.jsx("div", { dangerouslySetInnerHTML: { __html: HP }, className: [Ot["verification-menu__group-icon"], Ot["verification-menu__group-icon--cc"]].join(" ") }),
|
|
67086
|
+
/* @__PURE__ */ Le.jsx("div", { className: Ot["verification-menu__group-text"], children: /* @__PURE__ */ Le.jsxs("button", { onClick: () => c(!0), className: Ot["verification-menu__group-title"], children: [
|
|
67071
67087
|
"View Content Credentials",
|
|
67072
|
-
/* @__PURE__ */
|
|
67088
|
+
/* @__PURE__ */ Le.jsx("div", { className: Ot["verification-menu__inline-icon"], dangerouslySetInnerHTML: { __html: Iy } })
|
|
67073
67089
|
] }) })
|
|
67074
67090
|
] })
|
|
67075
|
-
] }), /* @__PURE__ */
|
|
67091
|
+
] }), /* @__PURE__ */ Le.jsx("div", { ref: r, children: /* @__PURE__ */ Le.jsx("div", { role: "menu", className: `${Ot.menu} ${Ot["verification-menu"]} ${u ? Ot["verification-menu--details"] : ""} ${t}`, children: m }, "menu") });
|
|
67076
67092
|
}, Kz = ({ player: n, Hide: e, className: t = "" }) => {
|
|
67077
67093
|
const r = Ct.createRef(), [i, o] = Ct.useState(void 0);
|
|
67078
67094
|
if (Ct.useEffect(() => {
|
|
@@ -67090,9 +67106,9 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67090
67106
|
const u = (c) => {
|
|
67091
67107
|
n.controls.CollectionPlay({ mediaIndex: c }), e();
|
|
67092
67108
|
};
|
|
67093
|
-
return /* @__PURE__ */
|
|
67094
|
-
/* @__PURE__ */
|
|
67095
|
-
i.content.map((c) => /* @__PURE__ */
|
|
67109
|
+
return /* @__PURE__ */ Le.jsxs("div", { role: "menu", className: `${Ot.menu} ${Ot["collection-menu"]} ${t}`, ref: r, children: [
|
|
67110
|
+
/* @__PURE__ */ Le.jsx("div", { className: `${Ot["menu-option"]} ${Ot["menu-header"]}`, children: i.title }),
|
|
67111
|
+
i.content.map((c) => /* @__PURE__ */ Le.jsx(
|
|
67096
67112
|
"button",
|
|
67097
67113
|
{
|
|
67098
67114
|
"aria-label": `${c.title || c.mediaId} ${c.active ? "(active)" : ""}`,
|
|
@@ -67106,12 +67122,13 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67106
67122
|
`collection-item-${c.mediaId}`
|
|
67107
67123
|
))
|
|
67108
67124
|
] }, "menu");
|
|
67109
|
-
}, qc = ({ icon: n, className: e = "", ...t }) => /* @__PURE__ */
|
|
67125
|
+
}, qc = ({ icon: n, className: e = "", ...t }) => /* @__PURE__ */ Le.jsx("button", { ...t, className: `${Fn["icon-button"]} ${e}`, dangerouslySetInnerHTML: { __html: n } }), vge = ({ player: n, videoState: e }) => {
|
|
67110
67126
|
const [t, r] = Ct.useState(n.video.currentTime);
|
|
67111
67127
|
return Ct.useEffect(() => {
|
|
67112
67128
|
const i = dk({ video: n.video, setCurrentTime: r, rate: 10 });
|
|
67113
67129
|
return () => i && i();
|
|
67114
|
-
}, []), n.isLive ? /* @__PURE__ */
|
|
67130
|
+
}, []), n.isLive && !n.dvrEnabled ? /* @__PURE__ */ Le.jsx("div", { className: Fn["live-indicator"], children: "Live" }) : /* @__PURE__ */ Le.jsxs("div", { className: Fn.time, children: [
|
|
67131
|
+
n.isLive ? /* @__PURE__ */ Le.jsx("button", { onClick: () => n.controls.Seek({ time: n.controls.GetDuration() - 2 }), className: Fn["live-indicator"], children: "Live" }) : null,
|
|
67115
67132
|
a2(t, e.duration),
|
|
67116
67133
|
" / ",
|
|
67117
67134
|
a2(e.duration, e.duration)
|
|
@@ -67121,25 +67138,25 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67121
67138
|
if (!e || e.mediaLength === 0 || !e.isPlaylist)
|
|
67122
67139
|
return null;
|
|
67123
67140
|
const t = e.content[e.mediaIndex - 1], r = e.content[e.mediaIndex + 1], i = n.controls.IsReady();
|
|
67124
|
-
return /* @__PURE__ */
|
|
67125
|
-
t ? /* @__PURE__ */
|
|
67141
|
+
return /* @__PURE__ */ Le.jsxs(Le.Fragment, { children: [
|
|
67142
|
+
t ? /* @__PURE__ */ Le.jsxs(
|
|
67126
67143
|
"div",
|
|
67127
67144
|
{
|
|
67128
|
-
className: `${
|
|
67145
|
+
className: `${Fn["collection-button-container"]} ${i ? "" : Fn["collection-button-container--loading"]}`,
|
|
67129
67146
|
children: [
|
|
67130
|
-
/* @__PURE__ */
|
|
67131
|
-
/* @__PURE__ */
|
|
67147
|
+
/* @__PURE__ */ Le.jsx(qc, { "aria-label": `Play Previous: ${t.title}`, disabled: !i, icon: hk, onClick: () => n.controls.CollectionPlayPrevious() }),
|
|
67148
|
+
/* @__PURE__ */ Le.jsx("div", { className: Fn["collection-button-text"], children: t.title })
|
|
67132
67149
|
]
|
|
67133
67150
|
},
|
|
67134
67151
|
`media-previous-${e.mediaIndex}`
|
|
67135
67152
|
) : null,
|
|
67136
|
-
r ? /* @__PURE__ */
|
|
67153
|
+
r ? /* @__PURE__ */ Le.jsxs(
|
|
67137
67154
|
"div",
|
|
67138
67155
|
{
|
|
67139
|
-
className: `${
|
|
67156
|
+
className: `${Fn["collection-button-container"]} ${i ? "" : Fn["collection-button-container--loading"]}`,
|
|
67140
67157
|
children: [
|
|
67141
|
-
/* @__PURE__ */
|
|
67142
|
-
/* @__PURE__ */
|
|
67158
|
+
/* @__PURE__ */ Le.jsx(qc, { "aria-label": `Play Next: ${r.title}`, disabled: !i, icon: yk, onClick: () => n.controls.CollectionPlayNext() }),
|
|
67159
|
+
/* @__PURE__ */ Le.jsx("div", { className: Fn["collection-button-text"], children: r.title })
|
|
67143
67160
|
]
|
|
67144
67161
|
},
|
|
67145
67162
|
`media-next-${e.mediaIndex}`
|
|
@@ -67147,8 +67164,8 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67147
67164
|
] });
|
|
67148
67165
|
}, z4 = ({ label: n, icon: e, player: t, MenuComponent: r, className: i = "" }) => {
|
|
67149
67166
|
const [o, u] = Ct.useState(!1);
|
|
67150
|
-
return /* @__PURE__ */
|
|
67151
|
-
/* @__PURE__ */
|
|
67167
|
+
return /* @__PURE__ */ Le.jsxs("div", { className: [Fn["menu-control-container"], i].join(" "), children: [
|
|
67168
|
+
/* @__PURE__ */ Le.jsx(
|
|
67152
67169
|
qc,
|
|
67153
67170
|
{
|
|
67154
67171
|
"aria-label": o ? `Hide ${n} Menu` : n,
|
|
@@ -67157,10 +67174,10 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67157
67174
|
onClick: () => {
|
|
67158
67175
|
t.controls.__ToggleMenu(!o), u(!o);
|
|
67159
67176
|
},
|
|
67160
|
-
className: o ?
|
|
67177
|
+
className: o ? Fn["icon-button-active"] : ""
|
|
67161
67178
|
}
|
|
67162
67179
|
),
|
|
67163
|
-
o ? /* @__PURE__ */
|
|
67180
|
+
o ? /* @__PURE__ */ Le.jsx(
|
|
67164
67181
|
r,
|
|
67165
67182
|
{
|
|
67166
67183
|
player: t,
|
|
@@ -67174,15 +67191,15 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67174
67191
|
const [e, t] = Ct.useState(void 0), { title: r, subtitle: i, description: o, image: u, headers: c } = n.controls.GetContentInfo() || {};
|
|
67175
67192
|
return Ct.useEffect(() => {
|
|
67176
67193
|
t(void 0), u && fk({ player: n, pathOrUrl: u, width: 200 }).then((p) => t(p));
|
|
67177
|
-
}, [u]), !r || n.playerOptions.title ===
|
|
67178
|
-
e ? /* @__PURE__ */
|
|
67179
|
-
/* @__PURE__ */
|
|
67180
|
-
c.length === 0 ? null : /* @__PURE__ */
|
|
67181
|
-
(p, h) => /* @__PURE__ */
|
|
67194
|
+
}, [u]), !r || n.playerOptions.title === jt.title.FULLSCREEN_ONLY && !n.controls.IsFullscreen() || n.playerOptions.title === jt.title.OFF ? null : /* @__PURE__ */ Le.jsxs("div", { className: Fn["info-container"], children: [
|
|
67195
|
+
e ? /* @__PURE__ */ Le.jsx("div", { className: Fn["info-image-container"], children: /* @__PURE__ */ Le.jsx("img", { src: e, alt: "Image", className: Fn["info-image"] }) }) : null,
|
|
67196
|
+
/* @__PURE__ */ Le.jsxs("div", { className: Fn["info-text"], children: [
|
|
67197
|
+
c.length === 0 ? null : /* @__PURE__ */ Le.jsx("div", { className: Fn["info-headers"], children: c.map(
|
|
67198
|
+
(p, h) => /* @__PURE__ */ Le.jsx("div", { className: Fn["info-header"], children: p }, `header-${h}`)
|
|
67182
67199
|
) }),
|
|
67183
|
-
r ? /* @__PURE__ */
|
|
67184
|
-
i ? /* @__PURE__ */
|
|
67185
|
-
o ? /* @__PURE__ */
|
|
67200
|
+
r ? /* @__PURE__ */ Le.jsx("div", { className: Fn["info-title"], children: r }) : null,
|
|
67201
|
+
i ? /* @__PURE__ */ Le.jsx("div", { className: Fn["info-subtitle"], children: i }) : null,
|
|
67202
|
+
o ? /* @__PURE__ */ Le.jsx("div", { className: Fn["info-description"], children: o }) : null
|
|
67186
67203
|
] })
|
|
67187
67204
|
] });
|
|
67188
67205
|
}, _ge = ({ player: n }) => {
|
|
@@ -67192,16 +67209,16 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67192
67209
|
r();
|
|
67193
67210
|
const i = n.controls.RegisterSettingsListener(r);
|
|
67194
67211
|
return () => i && i();
|
|
67195
|
-
}, []), e ? /* @__PURE__ */
|
|
67196
|
-
/* @__PURE__ */
|
|
67197
|
-
/* @__PURE__ */
|
|
67212
|
+
}, []), e ? /* @__PURE__ */ Le.jsxs(Le.Fragment, { children: [
|
|
67213
|
+
/* @__PURE__ */ Le.jsx("div", { className: Fn["content-verified-badge"], children: "VERIFIED" }),
|
|
67214
|
+
/* @__PURE__ */ Le.jsx(
|
|
67198
67215
|
z4,
|
|
67199
67216
|
{
|
|
67200
67217
|
label: "Content Verification Menu",
|
|
67201
67218
|
icon: l2,
|
|
67202
67219
|
player: n,
|
|
67203
67220
|
MenuComponent: Wz,
|
|
67204
|
-
className:
|
|
67221
|
+
className: Fn["content-verification-menu-button"]
|
|
67205
67222
|
}
|
|
67206
67223
|
)
|
|
67207
67224
|
] }) : null;
|
|
@@ -67215,27 +67232,27 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67215
67232
|
};
|
|
67216
67233
|
}, []), !u)
|
|
67217
67234
|
return null;
|
|
67218
|
-
const b = n.controls.GetCollectionInfo(), g = r || !e || m, S = !g && n.playerOptions.controls ===
|
|
67219
|
-
return n.__SetControlsVisibility(!S), /* @__PURE__ */
|
|
67235
|
+
const b = n.controls.GetCollectionInfo(), g = r || !e || m, S = !g && n.playerOptions.controls === jt.controls.AUTO_HIDE;
|
|
67236
|
+
return n.__SetControlsVisibility(!S), /* @__PURE__ */ Le.jsxs(
|
|
67220
67237
|
"div",
|
|
67221
67238
|
{
|
|
67222
67239
|
onClick: p,
|
|
67223
67240
|
className: [
|
|
67224
67241
|
o,
|
|
67225
|
-
|
|
67226
|
-
g ? "" :
|
|
67227
|
-
n.playerOptions.controls !==
|
|
67242
|
+
Fn.container,
|
|
67243
|
+
g ? "" : Fn.autohide,
|
|
67244
|
+
n.playerOptions.controls !== jt.controls.DEFAULT ? "" : Fn["container--default-controls"],
|
|
67228
67245
|
n.controls.IsMenuVisible() ? "menu-active" : ""
|
|
67229
67246
|
].join(" "),
|
|
67230
67247
|
children: [
|
|
67231
|
-
/* @__PURE__ */
|
|
67248
|
+
/* @__PURE__ */ Le.jsx(wge, { player: n }, `content-info-${b && b.mediaIndex}`),
|
|
67232
67249
|
// Main bottom control bar
|
|
67233
67250
|
[
|
|
67234
|
-
|
|
67235
|
-
|
|
67236
|
-
|
|
67237
|
-
].includes(n.playerOptions.controls) ? null : /* @__PURE__ */
|
|
67238
|
-
/* @__PURE__ */
|
|
67251
|
+
jt.controls.DEFAULT,
|
|
67252
|
+
jt.controls.OFF,
|
|
67253
|
+
jt.controls.OFF_WITH_VOLUME_TOGGLE
|
|
67254
|
+
].includes(n.playerOptions.controls) ? null : /* @__PURE__ */ Le.jsxs(Le.Fragment, { children: [
|
|
67255
|
+
/* @__PURE__ */ Le.jsx(
|
|
67239
67256
|
qc,
|
|
67240
67257
|
{
|
|
67241
67258
|
"aria-label": "Play",
|
|
@@ -67244,28 +67261,28 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67244
67261
|
onClick: () => {
|
|
67245
67262
|
n.controls.Play(), n.target.firstChild.focus();
|
|
67246
67263
|
},
|
|
67247
|
-
className: `${
|
|
67264
|
+
className: `${Fn["center-play-button"]} ${t && !e ? "" : Fn["center-play-button--hidden"]}`
|
|
67248
67265
|
}
|
|
67249
67266
|
),
|
|
67250
|
-
/* @__PURE__ */
|
|
67251
|
-
/* @__PURE__ */
|
|
67252
|
-
/* @__PURE__ */
|
|
67253
|
-
/* @__PURE__ */
|
|
67254
|
-
/* @__PURE__ */
|
|
67267
|
+
/* @__PURE__ */ Le.jsxs("div", { className: `${Fn["bottom-controls-container"]} ${S ? Fn["bottom-controls-container--autohide"] : ""}`, children: [
|
|
67268
|
+
/* @__PURE__ */ Le.jsx("div", { className: Fn["bottom-controls-gradient"] }),
|
|
67269
|
+
/* @__PURE__ */ Le.jsx(Vz, { player: n, videoState: u, setRecentUserAction: i, className: Fn.seek }),
|
|
67270
|
+
/* @__PURE__ */ Le.jsxs("div", { className: Fn.controls, children: [
|
|
67271
|
+
/* @__PURE__ */ Le.jsx(
|
|
67255
67272
|
qc,
|
|
67256
67273
|
{
|
|
67257
67274
|
"aria-label": u.playing ? "Pause" : "Play",
|
|
67258
67275
|
icon: u.playing ? jz : zz,
|
|
67259
67276
|
onClick: () => n.controls.TogglePlay(),
|
|
67260
|
-
className:
|
|
67277
|
+
className: Fn["play-pause-button"]
|
|
67261
67278
|
}
|
|
67262
67279
|
),
|
|
67263
|
-
/* @__PURE__ */
|
|
67264
|
-
/* @__PURE__ */
|
|
67265
|
-
/* @__PURE__ */
|
|
67266
|
-
/* @__PURE__ */
|
|
67267
|
-
/* @__PURE__ */
|
|
67268
|
-
b ? /* @__PURE__ */
|
|
67280
|
+
/* @__PURE__ */ Le.jsx(bge, { player: n }),
|
|
67281
|
+
/* @__PURE__ */ Le.jsx(yge, { player: n, videoState: u }),
|
|
67282
|
+
/* @__PURE__ */ Le.jsx(vge, { player: n, videoState: u }),
|
|
67283
|
+
/* @__PURE__ */ Le.jsx("div", { className: Fn.spacer }),
|
|
67284
|
+
/* @__PURE__ */ Le.jsx(_ge, { player: n }),
|
|
67285
|
+
b ? /* @__PURE__ */ Le.jsx(
|
|
67269
67286
|
z4,
|
|
67270
67287
|
{
|
|
67271
67288
|
label: "Collection Menu",
|
|
@@ -67274,16 +67291,16 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67274
67291
|
MenuComponent: Kz
|
|
67275
67292
|
}
|
|
67276
67293
|
) : null,
|
|
67277
|
-
n.controls.IsRotatable() ? /* @__PURE__ */
|
|
67294
|
+
n.controls.IsRotatable() ? /* @__PURE__ */ Le.jsx(
|
|
67278
67295
|
qc,
|
|
67279
67296
|
{
|
|
67280
67297
|
"aria-label": "Rotate Video",
|
|
67281
67298
|
icon: sge,
|
|
67282
67299
|
onClick: () => n.controls.SetAllowRotation(!n.controls.AllowRotation()),
|
|
67283
|
-
className:
|
|
67300
|
+
className: Fn["right-control-button"]
|
|
67284
67301
|
}
|
|
67285
67302
|
) : null,
|
|
67286
|
-
n.controls.GetOptions().hasAnyOptions ? /* @__PURE__ */
|
|
67303
|
+
n.controls.GetOptions().hasAnyOptions ? /* @__PURE__ */ Le.jsx(
|
|
67287
67304
|
z4,
|
|
67288
67305
|
{
|
|
67289
67306
|
label: "Settings Menu",
|
|
@@ -67292,31 +67309,31 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67292
67309
|
MenuComponent: Gz
|
|
67293
67310
|
}
|
|
67294
67311
|
) : null,
|
|
67295
|
-
/* @__PURE__ */
|
|
67312
|
+
/* @__PURE__ */ Le.jsx(
|
|
67296
67313
|
qc,
|
|
67297
67314
|
{
|
|
67298
67315
|
"aria-label": u.fullscreen ? "Exit Fullscreen" : "Fullscreen",
|
|
67299
67316
|
icon: u.fullscreen ? Qme : Jme,
|
|
67300
67317
|
onClick: () => n.controls.ToggleFullscreen(),
|
|
67301
|
-
className:
|
|
67318
|
+
className: Fn["right-control-button"]
|
|
67302
67319
|
}
|
|
67303
67320
|
)
|
|
67304
67321
|
] })
|
|
67305
67322
|
] })
|
|
67306
67323
|
] }),
|
|
67307
67324
|
// Floating volume control for 'off with volume toggle' setting
|
|
67308
|
-
n.playerOptions.controls !==
|
|
67325
|
+
n.playerOptions.controls !== jt.controls.OFF_WITH_VOLUME_TOGGLE ? null : /* @__PURE__ */ Le.jsx("div", { className: Fn["floating-volume-toggle"], children: /* @__PURE__ */ Le.jsx(
|
|
67309
67326
|
qc,
|
|
67310
67327
|
{
|
|
67311
67328
|
"aria-label": u.muted ? "Unmute" : "Mute",
|
|
67312
67329
|
icon: u.muted || u.volume === 0 ? pk : u2,
|
|
67313
67330
|
onClick: () => n.controls.ToggleMuted(),
|
|
67314
|
-
className:
|
|
67331
|
+
className: Fn["volume-button"]
|
|
67315
67332
|
},
|
|
67316
67333
|
"mute-button"
|
|
67317
67334
|
) }),
|
|
67318
67335
|
// Watermark
|
|
67319
|
-
n.playerOptions.watermark ===
|
|
67336
|
+
n.playerOptions.watermark === jt.watermark.OFF ? null : /* @__PURE__ */ Le.jsx("div", { className: Fn.watermark, children: /* @__PURE__ */ Le.jsx("img", { src: qz, alt: "Eluvio" }) })
|
|
67320
67337
|
]
|
|
67321
67338
|
}
|
|
67322
67339
|
);
|
|
@@ -67361,7 +67378,7 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67361
67378
|
});
|
|
67362
67379
|
R(q), o && L({ client: q, code: o });
|
|
67363
67380
|
});
|
|
67364
|
-
}, []), m ? /* @__PURE__ */
|
|
67381
|
+
}, []), m ? /* @__PURE__ */ Le.jsx(
|
|
67365
67382
|
"div",
|
|
67366
67383
|
{
|
|
67367
67384
|
role: "complementary",
|
|
@@ -67372,9 +67389,9 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67372
67389
|
"--portal-height": `${e.height}px`
|
|
67373
67390
|
},
|
|
67374
67391
|
className: [wi["ticket-form-container"], wi[`size-${e.size}`], wi[`orientation-${e.orientation}`]].join(" "),
|
|
67375
|
-
children: /* @__PURE__ */
|
|
67392
|
+
children: /* @__PURE__ */ Le.jsx("div", { className: wi["ticket-form-overlay"], children: /* @__PURE__ */ Le.jsx(Ob, { className: wi.spinner }) })
|
|
67376
67393
|
}
|
|
67377
|
-
) : /* @__PURE__ */
|
|
67394
|
+
) : /* @__PURE__ */ Le.jsx(
|
|
67378
67395
|
"div",
|
|
67379
67396
|
{
|
|
67380
67397
|
role: "complementary",
|
|
@@ -67385,7 +67402,7 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67385
67402
|
"--portal-height": `${e.height}px`
|
|
67386
67403
|
},
|
|
67387
67404
|
className: [wi["ticket-form-container"], wi[`size-${e.size}`], wi[`orientation-${e.orientation}`]].join(" "),
|
|
67388
|
-
children: /* @__PURE__ */
|
|
67405
|
+
children: /* @__PURE__ */ Le.jsx("div", { className: wi["ticket-form-overlay"], children: /* @__PURE__ */ Le.jsxs(
|
|
67389
67406
|
"form",
|
|
67390
67407
|
{
|
|
67391
67408
|
onSubmit: (D) => {
|
|
@@ -67393,12 +67410,12 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67393
67410
|
},
|
|
67394
67411
|
className: wi["ticket-form"],
|
|
67395
67412
|
children: [
|
|
67396
|
-
/* @__PURE__ */
|
|
67397
|
-
/* @__PURE__ */
|
|
67398
|
-
/* @__PURE__ */
|
|
67413
|
+
/* @__PURE__ */ Le.jsxs("div", { className: wi.text, children: [
|
|
67414
|
+
/* @__PURE__ */ Le.jsx("h2", { className: wi.title, children: n.clientOptions.ticketTitle || "This content requires a code to view" }),
|
|
67415
|
+
/* @__PURE__ */ Le.jsx("p", { className: wi.description, children: n.clientOptions.ticketDescription || "Please enter your code below" })
|
|
67399
67416
|
] }),
|
|
67400
|
-
/* @__PURE__ */
|
|
67401
|
-
/* @__PURE__ */
|
|
67417
|
+
/* @__PURE__ */ Le.jsxs("div", { className: wi.inputs, children: [
|
|
67418
|
+
/* @__PURE__ */ Le.jsx(
|
|
67402
67419
|
"input",
|
|
67403
67420
|
{
|
|
67404
67421
|
disabled: c,
|
|
@@ -67416,18 +67433,18 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67416
67433
|
className: wi.input
|
|
67417
67434
|
}
|
|
67418
67435
|
),
|
|
67419
|
-
/* @__PURE__ */
|
|
67436
|
+
/* @__PURE__ */ Le.jsx(
|
|
67420
67437
|
"button",
|
|
67421
67438
|
{
|
|
67422
67439
|
type: "submit",
|
|
67423
67440
|
"aria-label": "Submit Code",
|
|
67424
67441
|
disabled: !p || !T || c,
|
|
67425
67442
|
className: wi.submit,
|
|
67426
|
-
children: b ? /* @__PURE__ */
|
|
67443
|
+
children: b ? /* @__PURE__ */ Le.jsx(Ob, { light: !0 }) : "Submit"
|
|
67427
67444
|
}
|
|
67428
67445
|
)
|
|
67429
67446
|
] }),
|
|
67430
|
-
/* @__PURE__ */
|
|
67447
|
+
/* @__PURE__ */ Le.jsxs("div", { className: wi["error-message"], children: [
|
|
67431
67448
|
S,
|
|
67432
67449
|
" "
|
|
67433
67450
|
] })
|
|
@@ -67436,7 +67453,7 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67436
67453
|
) })
|
|
67437
67454
|
}
|
|
67438
67455
|
);
|
|
67439
|
-
}, Oge = "_container_o1vpa_1", Lge = "_autohide_o1vpa_34", Nge = "_fadein_o1vpa_1", Pge = "_title_o1vpa_134", Ige = "_spacer_o1vpa_310", Dge = "_watermark_o1vpa_314", Uge = "_menu_o1vpa_145",
|
|
67456
|
+
}, Oge = "_container_o1vpa_1", Lge = "_autohide_o1vpa_34", Nge = "_fadein_o1vpa_1", Pge = "_title_o1vpa_134", Ige = "_spacer_o1vpa_310", Dge = "_watermark_o1vpa_314", Uge = "_menu_o1vpa_145", cn = {
|
|
67440
67457
|
container: Oge,
|
|
67441
67458
|
"container--default-controls": "_container--default-controls_o1vpa_29",
|
|
67442
67459
|
autohide: Lge,
|
|
@@ -67477,69 +67494,69 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67477
67494
|
spacer: Ige,
|
|
67478
67495
|
watermark: Dge,
|
|
67479
67496
|
menu: Uge
|
|
67480
|
-
}, Xp = ({ icon: n, ...e }) => /* @__PURE__ */
|
|
67497
|
+
}, Xp = ({ icon: n, ...e }) => /* @__PURE__ */ Le.jsx("button", { ...e, className: `${cn["icon-button"]} ${e.className || ""}`, dangerouslySetInnerHTML: { __html: n } }), Fge = ({ player: n, videoState: e }) => {
|
|
67481
67498
|
const [t, r] = Ct.useState(n.video.currentTime);
|
|
67482
67499
|
return Ct.useEffect(() => {
|
|
67483
67500
|
const i = dk({ video: n.video, setCurrentTime: r, rate: 10 });
|
|
67484
67501
|
return () => i && i();
|
|
67485
|
-
}, []), n.isLive ? null : /* @__PURE__ */
|
|
67486
|
-
/* @__PURE__ */
|
|
67487
|
-
/* @__PURE__ */
|
|
67488
|
-
/* @__PURE__ */
|
|
67502
|
+
}, []), n.isLive && !n.dvrEnabled ? null : /* @__PURE__ */ Le.jsxs("div", { className: cn["time-container"], children: [
|
|
67503
|
+
/* @__PURE__ */ Le.jsx("div", { className: cn.time, children: a2(t, e.duration) }),
|
|
67504
|
+
/* @__PURE__ */ Le.jsx("div", { className: cn.spacer }),
|
|
67505
|
+
/* @__PURE__ */ Le.jsx("div", { className: cn.time, children: a2(e.duration, e.duration) })
|
|
67489
67506
|
] });
|
|
67490
67507
|
}, Bge = ({ player: n, videoState: e }) => {
|
|
67491
67508
|
const t = n.controls.GetCollectionInfo(), r = t && t.isPlaylist && t.content[t.mediaIndex - 1], i = t && t.isPlaylist && t.content[t.mediaIndex + 1], o = n.controls.IsReady();
|
|
67492
|
-
return /* @__PURE__ */
|
|
67493
|
-
!r && !i ? null : /* @__PURE__ */
|
|
67509
|
+
return /* @__PURE__ */ Le.jsxs("div", { className: cn["center-buttons"], children: [
|
|
67510
|
+
!r && !i ? null : /* @__PURE__ */ Le.jsx(
|
|
67494
67511
|
Xp,
|
|
67495
67512
|
{
|
|
67496
67513
|
disabled: !o || !r,
|
|
67497
67514
|
icon: hk,
|
|
67498
67515
|
onClick: () => n.controls.CollectionPlayPrevious(),
|
|
67499
|
-
className: `${
|
|
67516
|
+
className: `${cn["track-button"]} ${cn["icon-button--drop-shadow-focus"]}`
|
|
67500
67517
|
}
|
|
67501
67518
|
),
|
|
67502
|
-
/* @__PURE__ */
|
|
67519
|
+
/* @__PURE__ */ Le.jsx(
|
|
67503
67520
|
Xp,
|
|
67504
67521
|
{
|
|
67505
67522
|
"aria-label": "Back 10 Seconds",
|
|
67506
67523
|
icon: tge,
|
|
67507
67524
|
onClick: () => n.controls.Seek({ relativeSeconds: -10 }),
|
|
67508
|
-
className:
|
|
67525
|
+
className: cn["icon-button--drop-shadow-focus"]
|
|
67509
67526
|
}
|
|
67510
67527
|
),
|
|
67511
|
-
/* @__PURE__ */
|
|
67528
|
+
/* @__PURE__ */ Le.jsx(
|
|
67512
67529
|
Xp,
|
|
67513
67530
|
{
|
|
67514
67531
|
"aria-label": e.playing ? "Pause" : "Play",
|
|
67515
67532
|
icon: e.playing ? jz : zz,
|
|
67516
67533
|
onClick: () => n.controls.TogglePlay(),
|
|
67517
|
-
className: `${
|
|
67534
|
+
className: `${cn["play-pause-button"]} ${cn["icon-button--drop-shadow-focus"]}`
|
|
67518
67535
|
}
|
|
67519
67536
|
),
|
|
67520
|
-
/* @__PURE__ */
|
|
67537
|
+
/* @__PURE__ */ Le.jsx(
|
|
67521
67538
|
Xp,
|
|
67522
67539
|
{
|
|
67523
67540
|
"aria-label": "Forward 10 Seconds",
|
|
67524
67541
|
icon: nge,
|
|
67525
67542
|
onClick: () => n.controls.Seek({ relativeSeconds: 10 }),
|
|
67526
|
-
className:
|
|
67543
|
+
className: cn["icon-button--drop-shadow-focus"]
|
|
67527
67544
|
}
|
|
67528
67545
|
),
|
|
67529
|
-
!r && !i ? null : /* @__PURE__ */
|
|
67546
|
+
!r && !i ? null : /* @__PURE__ */ Le.jsx(
|
|
67530
67547
|
Xp,
|
|
67531
67548
|
{
|
|
67532
67549
|
disabled: !o || !i,
|
|
67533
67550
|
icon: yk,
|
|
67534
67551
|
onClick: () => n.controls.CollectionPlayNext(),
|
|
67535
|
-
className: `${
|
|
67552
|
+
className: `${cn["track-button"]} ${cn["icon-button--drop-shadow-focus"]}`
|
|
67536
67553
|
}
|
|
67537
67554
|
)
|
|
67538
67555
|
] });
|
|
67539
67556
|
}, j4 = ({ label: n, icon: e, children: t, player: r, MenuComponent: i }) => {
|
|
67540
67557
|
const [o, u] = Ct.useState(!1);
|
|
67541
|
-
return /* @__PURE__ */
|
|
67542
|
-
e ? /* @__PURE__ */
|
|
67558
|
+
return /* @__PURE__ */ Le.jsxs("div", { className: cn["menu-control-container"], children: [
|
|
67559
|
+
e ? /* @__PURE__ */ Le.jsx(
|
|
67543
67560
|
Xp,
|
|
67544
67561
|
{
|
|
67545
67562
|
"aria-label": o ? `Hide ${n} Menu` : n,
|
|
@@ -67548,26 +67565,26 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67548
67565
|
onClick: () => {
|
|
67549
67566
|
r.controls.__ToggleMenu(!o), u(!o);
|
|
67550
67567
|
},
|
|
67551
|
-
className: `${
|
|
67568
|
+
className: `${cn["icon-button--circle-focus"]} ${o ? cn["icon-button-active"] : ""}`
|
|
67552
67569
|
}
|
|
67553
|
-
) : /* @__PURE__ */
|
|
67570
|
+
) : /* @__PURE__ */ Le.jsx(
|
|
67554
67571
|
"button",
|
|
67555
67572
|
{
|
|
67556
67573
|
onClick: () => {
|
|
67557
67574
|
r.controls.__ToggleMenu(!o), u(!o);
|
|
67558
67575
|
},
|
|
67559
|
-
className: `${
|
|
67576
|
+
className: `${cn["text-button"]} ${o ? cn["text-button--active"] : ""}`,
|
|
67560
67577
|
children: t
|
|
67561
67578
|
}
|
|
67562
67579
|
),
|
|
67563
|
-
o ? /* @__PURE__ */
|
|
67580
|
+
o ? /* @__PURE__ */ Le.jsx(
|
|
67564
67581
|
i,
|
|
67565
67582
|
{
|
|
67566
67583
|
player: r,
|
|
67567
67584
|
Hide: () => {
|
|
67568
67585
|
r.controls.__ToggleMenu(!1), u(!1);
|
|
67569
67586
|
},
|
|
67570
|
-
className:
|
|
67587
|
+
className: cn.menu
|
|
67571
67588
|
}
|
|
67572
67589
|
) : null
|
|
67573
67590
|
] });
|
|
@@ -67580,34 +67597,34 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67580
67597
|
h && (h.key || "").toLowerCase() === "escape" && e();
|
|
67581
67598
|
};
|
|
67582
67599
|
return document.body.addEventListener("keydown", p), () => document.body.removeEventListener("keydown", p);
|
|
67583
|
-
}, []), /* @__PURE__ */
|
|
67584
|
-
/* @__PURE__ */
|
|
67600
|
+
}, []), /* @__PURE__ */ Le.jsxs("div", { className: cn["info-box-container"], children: [
|
|
67601
|
+
/* @__PURE__ */ Le.jsx(
|
|
67585
67602
|
"button",
|
|
67586
67603
|
{
|
|
67587
67604
|
autoFocus: !0,
|
|
67588
67605
|
onClick: () => e(),
|
|
67589
|
-
className: `${
|
|
67606
|
+
className: `${cn["info-box-button"]} ${cn["info-box-button--info"]}`,
|
|
67590
67607
|
children: "Info"
|
|
67591
67608
|
}
|
|
67592
67609
|
),
|
|
67593
|
-
/* @__PURE__ */
|
|
67594
|
-
t ? /* @__PURE__ */
|
|
67595
|
-
/* @__PURE__ */
|
|
67596
|
-
!c || c.length === 0 ? null : /* @__PURE__ */
|
|
67597
|
-
(p, h) => /* @__PURE__ */
|
|
67610
|
+
/* @__PURE__ */ Le.jsxs("div", { className: cn["info-box"], children: [
|
|
67611
|
+
t ? /* @__PURE__ */ Le.jsx("div", { className: cn["info-box-image-container"], children: /* @__PURE__ */ Le.jsx("img", { src: t, alt: "Image", className: cn["info-box-image"] }) }) : null,
|
|
67612
|
+
/* @__PURE__ */ Le.jsxs("div", { className: `${cn["info-box-text"]} ${t && c && c.length === 0 ? cn["info-box-text--top-padding"] : ""}`, children: [
|
|
67613
|
+
!c || c.length === 0 ? null : /* @__PURE__ */ Le.jsx("div", { className: cn["info-box-headers"], children: c.map(
|
|
67614
|
+
(p, h) => /* @__PURE__ */ Le.jsx("div", { className: cn["info-box-header"], children: p }, `header-${h}`)
|
|
67598
67615
|
) }),
|
|
67599
|
-
/* @__PURE__ */
|
|
67600
|
-
/* @__PURE__ */
|
|
67616
|
+
/* @__PURE__ */ Le.jsx("div", { className: cn["info-box-title"], children: i || "" }),
|
|
67617
|
+
/* @__PURE__ */ Le.jsx("div", { className: cn["info-box-description"], children: o || "" })
|
|
67601
67618
|
] }),
|
|
67602
|
-
/* @__PURE__ */
|
|
67619
|
+
/* @__PURE__ */ Le.jsx("div", { className: cn["info-box-actions"], children: /* @__PURE__ */ Le.jsxs(
|
|
67603
67620
|
"button",
|
|
67604
67621
|
{
|
|
67605
67622
|
onClick: () => {
|
|
67606
67623
|
n.controls.Seek({ time: 0 }), e();
|
|
67607
67624
|
},
|
|
67608
|
-
className: `${
|
|
67625
|
+
className: `${cn["info-box-button"]} ${cn["info-box-button--restart"]}`,
|
|
67609
67626
|
children: [
|
|
67610
|
-
/* @__PURE__ */
|
|
67627
|
+
/* @__PURE__ */ Le.jsx(bd, { icon: Bz }),
|
|
67611
67628
|
"From Beginning"
|
|
67612
67629
|
]
|
|
67613
67630
|
}
|
|
@@ -67619,14 +67636,14 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67619
67636
|
return Ct.useEffect(() => {
|
|
67620
67637
|
const r = () => t(n.controls.ContentVerified());
|
|
67621
67638
|
r(), n.controls.RegisterSettingsListener(r);
|
|
67622
|
-
}, []), e ? /* @__PURE__ */
|
|
67639
|
+
}, []), e ? /* @__PURE__ */ Le.jsx(
|
|
67623
67640
|
j4,
|
|
67624
67641
|
{
|
|
67625
67642
|
label: "Content Verification Menu",
|
|
67626
67643
|
icon: l2,
|
|
67627
67644
|
player: n,
|
|
67628
67645
|
MenuComponent: Wz,
|
|
67629
|
-
className:
|
|
67646
|
+
className: cn["content-verification-menu-button"],
|
|
67630
67647
|
children: "Verified"
|
|
67631
67648
|
}
|
|
67632
67649
|
) : null;
|
|
@@ -67638,20 +67655,20 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67638
67655
|
return () => T && T();
|
|
67639
67656
|
}, []), !u)
|
|
67640
67657
|
return null;
|
|
67641
|
-
const { title: b } = n.controls.GetContentInfo() || {}, g = n.controls.GetCollectionInfo(), S = r || !e || n.controls.IsMenuVisible(), A = !S && n.playerOptions.controls ===
|
|
67642
|
-
return n.__SetControlsVisibility(!A), /* @__PURE__ */
|
|
67658
|
+
const { title: b } = n.controls.GetContentInfo() || {}, g = n.controls.GetCollectionInfo(), S = r || !e || n.controls.IsMenuVisible(), A = !S && n.playerOptions.controls === jt.controls.AUTO_HIDE;
|
|
67659
|
+
return n.__SetControlsVisibility(!A), /* @__PURE__ */ Le.jsxs(
|
|
67643
67660
|
"div",
|
|
67644
67661
|
{
|
|
67645
67662
|
onClick: p,
|
|
67646
67663
|
className: [
|
|
67647
67664
|
o,
|
|
67648
|
-
|
|
67649
|
-
S ? "" :
|
|
67650
|
-
n.playerOptions.controls !==
|
|
67665
|
+
cn.container,
|
|
67666
|
+
S ? "" : cn.autohide,
|
|
67667
|
+
n.playerOptions.controls !== jt.controls.DEFAULT ? "" : cn["container--default-controls"],
|
|
67651
67668
|
n.controls.IsMenuVisible() ? "menu-active" : ""
|
|
67652
67669
|
].join(" "),
|
|
67653
67670
|
children: [
|
|
67654
|
-
/* @__PURE__ */
|
|
67671
|
+
/* @__PURE__ */ Le.jsx(
|
|
67655
67672
|
Xp,
|
|
67656
67673
|
{
|
|
67657
67674
|
"aria-label": "Play",
|
|
@@ -67660,16 +67677,16 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67660
67677
|
onClick: () => {
|
|
67661
67678
|
n.controls.Play(), n.target.firstChild.focus();
|
|
67662
67679
|
},
|
|
67663
|
-
className: `${
|
|
67680
|
+
className: `${cn["center-play-button"]} ${cn["icon-button--drop-shadow-focus"]} ${t && !e ? "" : cn["center-play-button--hidden"]}`
|
|
67664
67681
|
}
|
|
67665
67682
|
),
|
|
67666
|
-
m ? /* @__PURE__ */
|
|
67667
|
-
/* @__PURE__ */
|
|
67668
|
-
/* @__PURE__ */
|
|
67669
|
-
/* @__PURE__ */
|
|
67670
|
-
/* @__PURE__ */
|
|
67671
|
-
n.isLive ? /* @__PURE__ */
|
|
67672
|
-
g ? /* @__PURE__ */
|
|
67683
|
+
m ? /* @__PURE__ */ Le.jsx(zge, { player: n, Hide: () => w(!1) }) : /* @__PURE__ */ Le.jsxs("div", { className: `${cn["bottom-controls-container"]} ${A ? cn["bottom-controls-container--autohide"] : ""}`, children: [
|
|
67684
|
+
/* @__PURE__ */ Le.jsx("div", { className: cn["bottom-controls-gradient"] }),
|
|
67685
|
+
/* @__PURE__ */ Le.jsxs("div", { className: cn["title-container"], children: [
|
|
67686
|
+
/* @__PURE__ */ Le.jsx("div", { className: cn.title, children: n.playerOptions.title === jt.title.OFF || n.playerOptions.title === jt.title.FULLSCREEN_ONLY && !n.controls.IsFullscreen() ? "" : b || "" }),
|
|
67687
|
+
/* @__PURE__ */ Le.jsx("div", { className: cn.spacer }),
|
|
67688
|
+
n.isLive ? n.dvrEnabled ? /* @__PURE__ */ Le.jsx("button", { onClick: () => n.controls.Seek({ time: n.controls.GetDuration() - 2 }), className: cn["live-indicator"], children: "Live" }) : /* @__PURE__ */ Le.jsx("div", { className: cn["live-indicator"], children: "Live" }) : null,
|
|
67689
|
+
g ? /* @__PURE__ */ Le.jsx(
|
|
67673
67690
|
j4,
|
|
67674
67691
|
{
|
|
67675
67692
|
label: "Collection Menu",
|
|
@@ -67679,14 +67696,14 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67679
67696
|
}
|
|
67680
67697
|
) : null
|
|
67681
67698
|
] }),
|
|
67682
|
-
/* @__PURE__ */
|
|
67683
|
-
/* @__PURE__ */
|
|
67684
|
-
/* @__PURE__ */
|
|
67685
|
-
/* @__PURE__ */
|
|
67686
|
-
/* @__PURE__ */
|
|
67687
|
-
/* @__PURE__ */
|
|
67688
|
-
/* @__PURE__ */
|
|
67689
|
-
n.controls.GetOptions().hasAnyOptions ? /* @__PURE__ */
|
|
67699
|
+
/* @__PURE__ */ Le.jsx(Vz, { player: n, videoState: u, setRecentUserAction: i }),
|
|
67700
|
+
/* @__PURE__ */ Le.jsx(Fge, { player: n, videoState: u }),
|
|
67701
|
+
/* @__PURE__ */ Le.jsxs("div", { className: cn["bottom-controls"], children: [
|
|
67702
|
+
/* @__PURE__ */ Le.jsx("div", { className: cn["bottom-left-controls"], children: !b || n.playerOptions.title === jt.title.OFF ? null : /* @__PURE__ */ Le.jsx("button", { className: cn["text-button"], onClick: () => w(!0), children: "Info" }) }),
|
|
67703
|
+
/* @__PURE__ */ Le.jsx(Bge, { player: n, videoState: u }),
|
|
67704
|
+
/* @__PURE__ */ Le.jsxs("div", { className: cn["bottom-right-controls"], children: [
|
|
67705
|
+
/* @__PURE__ */ Le.jsx(jge, { player: n }),
|
|
67706
|
+
n.controls.GetOptions().hasAnyOptions ? /* @__PURE__ */ Le.jsx(
|
|
67690
67707
|
j4,
|
|
67691
67708
|
{
|
|
67692
67709
|
label: "Settings",
|
|
@@ -67700,7 +67717,7 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67700
67717
|
] })
|
|
67701
67718
|
] }),
|
|
67702
67719
|
// Watermark
|
|
67703
|
-
n.playerOptions.watermark ===
|
|
67720
|
+
n.playerOptions.watermark === jt.watermark.OFF ? null : /* @__PURE__ */ Le.jsx("div", { className: cn.watermark, children: /* @__PURE__ */ Le.jsx("img", { src: qz, alt: "Eluvio" }) })
|
|
67704
67721
|
]
|
|
67705
67722
|
},
|
|
67706
67723
|
"controls"
|
|
@@ -67730,27 +67747,27 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67730
67747
|
const h = async (m) => {
|
|
67731
67748
|
m.preventDefault();
|
|
67732
67749
|
try {
|
|
67733
|
-
o(!0), await n.controls.SetPlayerProfile({ profile: "custom",
|
|
67750
|
+
o(!0), await n.controls.SetPlayerProfile({ profile: "custom", customOptions: JSON.parse(t) }), e();
|
|
67734
67751
|
} catch (w) {
|
|
67735
67752
|
c(w.toString()), o(!1);
|
|
67736
67753
|
}
|
|
67737
67754
|
};
|
|
67738
|
-
return /* @__PURE__ */
|
|
67755
|
+
return /* @__PURE__ */ Le.jsx(
|
|
67739
67756
|
"div",
|
|
67740
67757
|
{
|
|
67741
67758
|
role: "complementary",
|
|
67742
67759
|
tabIndex: -1,
|
|
67743
67760
|
className: co.container,
|
|
67744
|
-
children: /* @__PURE__ */
|
|
67761
|
+
children: /* @__PURE__ */ Le.jsx("div", { className: co.overlay, children: /* @__PURE__ */ Le.jsxs(
|
|
67745
67762
|
"form",
|
|
67746
67763
|
{
|
|
67747
67764
|
onSubmit: h,
|
|
67748
67765
|
className: co.form,
|
|
67749
67766
|
ref: p,
|
|
67750
67767
|
children: [
|
|
67751
|
-
/* @__PURE__ */
|
|
67752
|
-
/* @__PURE__ */
|
|
67753
|
-
/* @__PURE__ */
|
|
67768
|
+
/* @__PURE__ */ Le.jsx("h2", { className: co.header, children: "Custom hls.js Options" }),
|
|
67769
|
+
/* @__PURE__ */ Le.jsxs("div", { className: co["input-container"], children: [
|
|
67770
|
+
/* @__PURE__ */ Le.jsx(
|
|
67754
67771
|
"textarea",
|
|
67755
67772
|
{
|
|
67756
67773
|
disabled: i,
|
|
@@ -67772,16 +67789,16 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67772
67789
|
className: `${co.input} ${u ? co["input--invalid"] : ""}`
|
|
67773
67790
|
}
|
|
67774
67791
|
),
|
|
67775
|
-
/* @__PURE__ */
|
|
67776
|
-
/* @__PURE__ */
|
|
67777
|
-
/* @__PURE__ */
|
|
67792
|
+
/* @__PURE__ */ Le.jsxs("div", { className: co["player-info"], children: [
|
|
67793
|
+
/* @__PURE__ */ Le.jsx("a", { tabIndex: 0, href: "https://github.com/video-dev/hls.js/blob/master/docs/API.md", rel: "noreferrer", target: "_blank", className: co["api-link"], children: "API Docs" }),
|
|
67794
|
+
/* @__PURE__ */ Le.jsxs("div", { className: co["player-version"], children: [
|
|
67778
67795
|
"hls.js ",
|
|
67779
67796
|
n.HLS.version
|
|
67780
67797
|
] })
|
|
67781
67798
|
] })
|
|
67782
67799
|
] }),
|
|
67783
|
-
/* @__PURE__ */
|
|
67784
|
-
/* @__PURE__ */
|
|
67800
|
+
/* @__PURE__ */ Le.jsxs("div", { className: co.actions, children: [
|
|
67801
|
+
/* @__PURE__ */ Le.jsx(
|
|
67785
67802
|
"button",
|
|
67786
67803
|
{
|
|
67787
67804
|
type: "button",
|
|
@@ -67791,14 +67808,14 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67791
67808
|
children: "Cancel"
|
|
67792
67809
|
}
|
|
67793
67810
|
),
|
|
67794
|
-
/* @__PURE__ */
|
|
67811
|
+
/* @__PURE__ */ Le.jsx(
|
|
67795
67812
|
"button",
|
|
67796
67813
|
{
|
|
67797
67814
|
type: "submit",
|
|
67798
67815
|
"aria-label": "Submit",
|
|
67799
67816
|
disabled: !!u,
|
|
67800
67817
|
className: co.submit,
|
|
67801
|
-
children: i ? /* @__PURE__ */
|
|
67818
|
+
children: i ? /* @__PURE__ */ Le.jsx(Ob, { light: !0 }) : "Submit"
|
|
67802
67819
|
}
|
|
67803
67820
|
)
|
|
67804
67821
|
] })
|
|
@@ -67811,7 +67828,7 @@ const qz = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW0AAABSCAYAAACfWoXuAA
|
|
|
67811
67828
|
const [e, t] = Ct.useState(void 0), { posterImage: r } = n.controls.GetContentInfo() || {};
|
|
67812
67829
|
return Ct.useEffect(() => {
|
|
67813
67830
|
t(void 0), r && fk({ player: n, pathOrUrl: r, width: 200 }).then((i) => t(i));
|
|
67814
|
-
}, [r]), e ? /* @__PURE__ */
|
|
67831
|
+
}, [r]), e ? /* @__PURE__ */ Le.jsx(
|
|
67815
67832
|
"img",
|
|
67816
67833
|
{
|
|
67817
67834
|
alt: "Video Poster",
|
|
@@ -67880,7 +67897,7 @@ const tve = ({ target: n, parameters: e, InitCallback: t, ErrorCallback: r, Unmo
|
|
|
67880
67897
|
O(void 0);
|
|
67881
67898
|
}, 1e3));
|
|
67882
67899
|
}, [x]), e.clientOptions.promptTicket && !p)
|
|
67883
|
-
return /* @__PURE__ */
|
|
67900
|
+
return /* @__PURE__ */ Le.jsx(
|
|
67884
67901
|
Rge,
|
|
67885
67902
|
{
|
|
67886
67903
|
parameters: e,
|
|
@@ -67888,8 +67905,8 @@ const tve = ({ target: n, parameters: e, InitCallback: t, ErrorCallback: r, Unmo
|
|
|
67888
67905
|
onComplete: (k) => h(k)
|
|
67889
67906
|
}
|
|
67890
67907
|
);
|
|
67891
|
-
const N = e.playerOptions.ui ===
|
|
67892
|
-
return /* @__PURE__ */
|
|
67908
|
+
const N = e.playerOptions.ui === jt.ui.WEB && u && u.controls.IsRotatable() && z;
|
|
67909
|
+
return /* @__PURE__ */ Le.jsxs(
|
|
67893
67910
|
"div",
|
|
67894
67911
|
{
|
|
67895
67912
|
role: "complementary",
|
|
@@ -67902,23 +67919,23 @@ const tve = ({ target: n, parameters: e, InitCallback: t, ErrorCallback: r, Unmo
|
|
|
67902
67919
|
},
|
|
67903
67920
|
className: [Al["player-container"], N ? Al["player-container--rotated"] : "", `__eluvio-player--size-${m}`, `__eluvio-player--orientation-${b}`].join(" "),
|
|
67904
67921
|
children: [
|
|
67905
|
-
!Ce || !L ? null : /* @__PURE__ */
|
|
67906
|
-
/* @__PURE__ */
|
|
67922
|
+
!Ce || !L ? null : /* @__PURE__ */ Le.jsx(Zge, { player: u, Close: () => u.controls.HidePlayerProfileForm() }),
|
|
67923
|
+
/* @__PURE__ */ Le.jsx(
|
|
67907
67924
|
"video",
|
|
67908
67925
|
{
|
|
67909
67926
|
playsInline: !0,
|
|
67910
67927
|
disablePictureInPicture: !0,
|
|
67911
67928
|
ref: j,
|
|
67912
|
-
muted: [
|
|
67913
|
-
controls: e.playerOptions.controls ===
|
|
67914
|
-
loop: e.playerOptions.loop ===
|
|
67929
|
+
muted: [jt.muted.ON, jt.muted.WHEN_NOT_VISIBLE].includes(e.playerOptions.muted),
|
|
67930
|
+
controls: e.playerOptions.controls === jt.controls.DEFAULT,
|
|
67931
|
+
loop: e.playerOptions.loop === jt.loop.ON,
|
|
67915
67932
|
className: Al.video
|
|
67916
67933
|
}
|
|
67917
67934
|
),
|
|
67918
|
-
!u || q || !de ? null : /* @__PURE__ */
|
|
67919
|
-
L || T || !e.playerOptions.showLoader ? null : /* @__PURE__ */
|
|
67920
|
-
T ? /* @__PURE__ */
|
|
67921
|
-
u ? e.playerOptions.ui ===
|
|
67935
|
+
!u || q || !de ? null : /* @__PURE__ */ Le.jsx(Xge, { player: u }),
|
|
67936
|
+
L || T || !e.playerOptions.showLoader ? null : /* @__PURE__ */ Le.jsx("div", { className: Al["spinner-container"], children: /* @__PURE__ */ Le.jsx(Ob, { className: Al.spinner }) }),
|
|
67937
|
+
T ? /* @__PURE__ */ Le.jsx("div", { className: Al["error-message"], children: T }) : null,
|
|
67938
|
+
u ? e.playerOptions.ui === jt.ui.WEB ? /* @__PURE__ */ Le.jsx(
|
|
67922
67939
|
xge,
|
|
67923
67940
|
{
|
|
67924
67941
|
player: u,
|
|
@@ -67928,7 +67945,7 @@ const tve = ({ target: n, parameters: e, InitCallback: t, ErrorCallback: r, Unmo
|
|
|
67928
67945
|
setRecentUserAction: ae,
|
|
67929
67946
|
className: Al.controls
|
|
67930
67947
|
}
|
|
67931
|
-
) : /* @__PURE__ */
|
|
67948
|
+
) : /* @__PURE__ */ Le.jsx(
|
|
67932
67949
|
$ge,
|
|
67933
67950
|
{
|
|
67934
67951
|
player: u,
|
|
@@ -67939,7 +67956,7 @@ const tve = ({ target: n, parameters: e, InitCallback: t, ErrorCallback: r, Unmo
|
|
|
67939
67956
|
className: Al.controls
|
|
67940
67957
|
}
|
|
67941
67958
|
) : null,
|
|
67942
|
-
x ? /* @__PURE__ */
|
|
67959
|
+
x ? /* @__PURE__ */ Le.jsx(
|
|
67943
67960
|
hge,
|
|
67944
67961
|
{
|
|
67945
67962
|
action: x
|
|
@@ -67962,7 +67979,7 @@ const tve = ({ target: n, parameters: e, InitCallback: t, ErrorCallback: r, Unmo
|
|
|
67962
67979
|
}, mve = (n, e) => (n.innerHTML = "", n.classList.add(qG.reset), n.classList.add(Al["player-target"]), e = Oz(e), e.playerOptions && e.playerOptions.backgroundColor && (n.style.backgroundColor = e.playerOptions.backgroundColor), new Promise((t, r) => {
|
|
67963
67980
|
const i = Vv.createRoot(n);
|
|
67964
67981
|
i.render(
|
|
67965
|
-
/* @__PURE__ */
|
|
67982
|
+
/* @__PURE__ */ Le.jsx(zG.StrictMode, { children: /* @__PURE__ */ Le.jsx(
|
|
67966
67983
|
nve,
|
|
67967
67984
|
{
|
|
67968
67985
|
target: n,
|
|
@@ -67982,7 +67999,7 @@ const tve = ({ target: n, parameters: e, InitCallback: t, ErrorCallback: r, Unmo
|
|
|
67982
67999
|
}));
|
|
67983
68000
|
export {
|
|
67984
68001
|
mve as I,
|
|
67985
|
-
|
|
68002
|
+
jt as P,
|
|
67986
68003
|
V4 as a,
|
|
67987
68004
|
Za as b,
|
|
67988
68005
|
dW as c,
|