60p82u21t54k 0.3.14 → 0.3.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/60p82u21t54k.es.js +93 -85
- package/dist/60p82u21t54k.umd.js +1 -1
- package/dist/model/casinoGameList/getCasinoGameListResponse.d.ts.map +1 -1
- package/dist/model/cmsList/getCmsListResponse.d.ts +27 -10
- package/dist/model/cmsList/getCmsListResponse.d.ts.map +1 -1
- package/dist/model/cmsList/type.d.ts +9 -1
- package/dist/model/cmsList/type.d.ts.map +1 -1
- package/dist/model/fishGameList/getFishGameListResponse.d.ts.map +1 -1
- package/dist/model/gameList/getGameListResponse.d.ts.map +1 -1
- package/dist/model/getFavouriteGame/getGetFavouriteGameResponse.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/60p82u21t54k.es.js
CHANGED
|
@@ -317,7 +317,7 @@ const Wa = {
|
|
|
317
317
|
"November",
|
|
318
318
|
"December"
|
|
319
319
|
]
|
|
320
|
-
},
|
|
320
|
+
}, Ba = {
|
|
321
321
|
narrow: ["S", "M", "T", "W", "T", "F", "S"],
|
|
322
322
|
short: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"],
|
|
323
323
|
abbreviated: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"],
|
|
@@ -330,7 +330,7 @@ const Wa = {
|
|
|
330
330
|
"Friday",
|
|
331
331
|
"Saturday"
|
|
332
332
|
]
|
|
333
|
-
},
|
|
333
|
+
}, Ha = {
|
|
334
334
|
narrow: {
|
|
335
335
|
am: "a",
|
|
336
336
|
pm: "p",
|
|
@@ -420,11 +420,11 @@ const Wa = {
|
|
|
420
420
|
defaultWidth: "wide"
|
|
421
421
|
}),
|
|
422
422
|
day: oe({
|
|
423
|
-
values:
|
|
423
|
+
values: Ba,
|
|
424
424
|
defaultWidth: "wide"
|
|
425
425
|
}),
|
|
426
426
|
dayPeriod: oe({
|
|
427
|
-
values:
|
|
427
|
+
values: Ha,
|
|
428
428
|
defaultWidth: "wide",
|
|
429
429
|
formattingValues: Ua,
|
|
430
430
|
defaultFormattingWidth: "wide"
|
|
@@ -616,7 +616,7 @@ function R(e, a) {
|
|
|
616
616
|
const t = e < 0 ? "-" : "", n = Math.abs(e).toString().padStart(a, "0");
|
|
617
617
|
return t + n;
|
|
618
618
|
}
|
|
619
|
-
const
|
|
619
|
+
const H = {
|
|
620
620
|
// Year
|
|
621
621
|
y(e, a) {
|
|
622
622
|
const t = e.getFullYear(), n = t > 0 ? t : 1 - t;
|
|
@@ -702,7 +702,7 @@ const B = {
|
|
|
702
702
|
const n = e.getFullYear(), r = n > 0 ? n : 1 - n;
|
|
703
703
|
return t.ordinalNumber(r, { unit: "year" });
|
|
704
704
|
}
|
|
705
|
-
return
|
|
705
|
+
return H.y(e, a);
|
|
706
706
|
},
|
|
707
707
|
// Local week-numbering year
|
|
708
708
|
Y: function(e, a, t, n) {
|
|
@@ -805,7 +805,7 @@ const B = {
|
|
|
805
805
|
switch (a) {
|
|
806
806
|
case "M":
|
|
807
807
|
case "MM":
|
|
808
|
-
return
|
|
808
|
+
return H.M(e, a);
|
|
809
809
|
// 1st, 2nd, ..., 12th
|
|
810
810
|
case "Mo":
|
|
811
811
|
return t.ordinalNumber(n + 1, { unit: "month" });
|
|
@@ -870,7 +870,7 @@ const B = {
|
|
|
870
870
|
},
|
|
871
871
|
// Day of the month
|
|
872
872
|
d: function(e, a, t) {
|
|
873
|
-
return a === "do" ? t.ordinalNumber(e.getDate(), { unit: "date" }) :
|
|
873
|
+
return a === "do" ? t.ordinalNumber(e.getDate(), { unit: "date" }) : H.d(e, a);
|
|
874
874
|
},
|
|
875
875
|
// Day of year
|
|
876
876
|
D: function(e, a, t) {
|
|
@@ -1116,11 +1116,11 @@ const B = {
|
|
|
1116
1116
|
let n = e.getHours() % 12;
|
|
1117
1117
|
return n === 0 && (n = 12), t.ordinalNumber(n, { unit: "hour" });
|
|
1118
1118
|
}
|
|
1119
|
-
return
|
|
1119
|
+
return H.h(e, a);
|
|
1120
1120
|
},
|
|
1121
1121
|
// Hour [0-23]
|
|
1122
1122
|
H: function(e, a, t) {
|
|
1123
|
-
return a === "Ho" ? t.ordinalNumber(e.getHours(), { unit: "hour" }) :
|
|
1123
|
+
return a === "Ho" ? t.ordinalNumber(e.getHours(), { unit: "hour" }) : H.H(e, a);
|
|
1124
1124
|
},
|
|
1125
1125
|
// Hour [0-11]
|
|
1126
1126
|
K: function(e, a, t) {
|
|
@@ -1134,15 +1134,15 @@ const B = {
|
|
|
1134
1134
|
},
|
|
1135
1135
|
// Minute
|
|
1136
1136
|
m: function(e, a, t) {
|
|
1137
|
-
return a === "mo" ? t.ordinalNumber(e.getMinutes(), { unit: "minute" }) :
|
|
1137
|
+
return a === "mo" ? t.ordinalNumber(e.getMinutes(), { unit: "minute" }) : H.m(e, a);
|
|
1138
1138
|
},
|
|
1139
1139
|
// Second
|
|
1140
1140
|
s: function(e, a, t) {
|
|
1141
|
-
return a === "so" ? t.ordinalNumber(e.getSeconds(), { unit: "second" }) :
|
|
1141
|
+
return a === "so" ? t.ordinalNumber(e.getSeconds(), { unit: "second" }) : H.s(e, a);
|
|
1142
1142
|
},
|
|
1143
1143
|
// Fraction of second
|
|
1144
1144
|
S: function(e, a) {
|
|
1145
|
-
return
|
|
1145
|
+
return H.S(e, a);
|
|
1146
1146
|
},
|
|
1147
1147
|
// Timezone (ISO-8601. If offset is 0, output is always `'Z'`)
|
|
1148
1148
|
X: function(e, a, t) {
|
|
@@ -2039,7 +2039,7 @@ function Yn(e, a, t) {
|
|
|
2039
2039
|
const n = I(e, t == null ? void 0 : t.in), r = ra(n, t) - a;
|
|
2040
2040
|
return n.setDate(n.getDate() - r * 7), n;
|
|
2041
2041
|
}
|
|
2042
|
-
class
|
|
2042
|
+
class Bn extends w {
|
|
2043
2043
|
constructor() {
|
|
2044
2044
|
super(...arguments);
|
|
2045
2045
|
f(this, "priority", 100);
|
|
@@ -2077,7 +2077,7 @@ class Hn extends w {
|
|
|
2077
2077
|
return K(Yn(t, r));
|
|
2078
2078
|
}
|
|
2079
2079
|
}
|
|
2080
|
-
const
|
|
2080
|
+
const Hn = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31], Un = [
|
|
2081
2081
|
31,
|
|
2082
2082
|
29,
|
|
2083
2083
|
31,
|
|
@@ -2123,7 +2123,7 @@ class qn extends w {
|
|
|
2123
2123
|
}
|
|
2124
2124
|
validate(t, n) {
|
|
2125
2125
|
const r = t.getFullYear(), s = ga(r), o = t.getMonth();
|
|
2126
|
-
return s ? n >= 1 && n <= Un[o] : n >= 1 && n <=
|
|
2126
|
+
return s ? n >= 1 && n <= Un[o] : n >= 1 && n <= Hn[o];
|
|
2127
2127
|
}
|
|
2128
2128
|
set(t, n, r) {
|
|
2129
2129
|
return t.setDate(r), t.setHours(0, 0, 0, 0), t;
|
|
@@ -2847,7 +2847,7 @@ const gr = {
|
|
|
2847
2847
|
M: new Fn(),
|
|
2848
2848
|
L: new zn(),
|
|
2849
2849
|
w: new En(),
|
|
2850
|
-
I: new
|
|
2850
|
+
I: new Bn(),
|
|
2851
2851
|
d: new qn(),
|
|
2852
2852
|
D: new Vn(),
|
|
2853
2853
|
E: new An(),
|
|
@@ -3313,11 +3313,11 @@ function Er(e, a) {
|
|
|
3313
3313
|
return Yt(a, n, o) ? (t.setUTCFullYear(a, n, o), t) : /* @__PURE__ */ new Date(NaN);
|
|
3314
3314
|
}
|
|
3315
3315
|
if (s = N.Www.exec(e), s)
|
|
3316
|
-
return r = parseInt(s[1], 10) - 1,
|
|
3316
|
+
return r = parseInt(s[1], 10) - 1, Bt(r) ? Et(a, r) : /* @__PURE__ */ new Date(NaN);
|
|
3317
3317
|
if (s = N.WwwD.exec(e), s) {
|
|
3318
3318
|
r = parseInt(s[1], 10) - 1;
|
|
3319
3319
|
const o = parseInt(s[2], 10) - 1;
|
|
3320
|
-
return
|
|
3320
|
+
return Bt(r, o) ? Et(a, r, o) : /* @__PURE__ */ new Date(NaN);
|
|
3321
3321
|
}
|
|
3322
3322
|
return null;
|
|
3323
3323
|
}
|
|
@@ -3341,7 +3341,7 @@ function Et(e, a, t) {
|
|
|
3341
3341
|
const r = n.getUTCDay() || 7, s = a * 7 + t + 1 - r;
|
|
3342
3342
|
return n.setUTCDate(n.getUTCDate() + s), n;
|
|
3343
3343
|
}
|
|
3344
|
-
const
|
|
3344
|
+
const Br = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31], Hr = [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
|
|
3345
3345
|
function pa(e) {
|
|
3346
3346
|
return e % 400 === 0 || e % 4 === 0 && e % 100 !== 0;
|
|
3347
3347
|
}
|
|
@@ -3352,7 +3352,7 @@ function Yt(e, a, t) {
|
|
|
3352
3352
|
if (t < 1)
|
|
3353
3353
|
return !1;
|
|
3354
3354
|
const n = pa(e);
|
|
3355
|
-
if (n && t >
|
|
3355
|
+
if (n && t > Hr[a] || !n && t > Br[a])
|
|
3356
3356
|
return !1;
|
|
3357
3357
|
}
|
|
3358
3358
|
return !0;
|
|
@@ -3363,7 +3363,7 @@ function Ur(e, a) {
|
|
|
3363
3363
|
const t = pa(e);
|
|
3364
3364
|
return !(t && a > 366 || !t && a > 365);
|
|
3365
3365
|
}
|
|
3366
|
-
function
|
|
3366
|
+
function Bt(e, a) {
|
|
3367
3367
|
return !(e < 0 || e > 52 || a != null && (a < 0 || a > 6));
|
|
3368
3368
|
}
|
|
3369
3369
|
function Se(e, a, t) {
|
|
@@ -3402,40 +3402,40 @@ const Xr = (e) => new TextEncoder().encode(e), Zr = (e) => {
|
|
|
3402
3402
|
} catch (a) {
|
|
3403
3403
|
return console.error("Failed to decode Base64:", a), "";
|
|
3404
3404
|
}
|
|
3405
|
-
},
|
|
3405
|
+
}, B = (e) => {
|
|
3406
3406
|
const { timezone: a } = he(), t = 24 - a, n = (/* @__PURE__ */ new Date()).getTimezoneOffset() / 60, r = t - n;
|
|
3407
3407
|
return e.setDate(a < 0 ? e.getDate() - 1 : e.getDate()), e.setHours(r), e;
|
|
3408
3408
|
}, Te = (e) => {
|
|
3409
3409
|
const a = /* @__PURE__ */ new Date(), t = a.getFullYear(), n = a.getMonth();
|
|
3410
|
-
return
|
|
3410
|
+
return B(
|
|
3411
3411
|
new Date(n - 1 < 0 ? t - 1 : t, n - 1 < 0 ? 12 : n - 1, e)
|
|
3412
3412
|
);
|
|
3413
3413
|
}, ve = (e) => {
|
|
3414
3414
|
const a = /* @__PURE__ */ new Date(), t = a.getFullYear(), n = a.getMonth();
|
|
3415
|
-
return
|
|
3415
|
+
return B(new Date(t, n, e));
|
|
3416
3416
|
}, we = (e) => {
|
|
3417
3417
|
const a = /* @__PURE__ */ new Date(), t = a.getFullYear(), n = a.getMonth();
|
|
3418
|
-
return
|
|
3418
|
+
return B(
|
|
3419
3419
|
new Date(n + 1 > 12 ? t + 1 : t, n + 1 > 12 ? 1 : n + 1, e)
|
|
3420
3420
|
);
|
|
3421
3421
|
}, Jr = () => {
|
|
3422
3422
|
const e = /* @__PURE__ */ new Date(), a = e.getDay(), t = a === 0 ? 13 : a - 1 + 7;
|
|
3423
|
-
return e.setDate(e.getDate() - t),
|
|
3423
|
+
return e.setDate(e.getDate() - t), B(e);
|
|
3424
3424
|
}, Kr = () => {
|
|
3425
3425
|
const e = /* @__PURE__ */ new Date(), a = e.getDay(), t = a === 0 ? 6 : a - 1;
|
|
3426
|
-
return e.setDate(e.getDate() - t),
|
|
3426
|
+
return e.setDate(e.getDate() - t), B(e);
|
|
3427
3427
|
}, es = () => {
|
|
3428
3428
|
const e = /* @__PURE__ */ new Date(), a = e.getDay(), t = a === 0 ? 1 : 8 - a;
|
|
3429
|
-
return e.setDate(e.getDate() + t), e.setHours(12, 0, 0, 0),
|
|
3429
|
+
return e.setDate(e.getDate() + t), e.setHours(12, 0, 0, 0), B(e);
|
|
3430
3430
|
}, ts = () => {
|
|
3431
3431
|
const e = /* @__PURE__ */ new Date();
|
|
3432
|
-
return e.setDate(e.getDate() - 1), e.setHours(12, 0, 0, 0),
|
|
3432
|
+
return e.setDate(e.getDate() - 1), e.setHours(12, 0, 0, 0), B(e);
|
|
3433
3433
|
}, as = () => {
|
|
3434
3434
|
const e = /* @__PURE__ */ new Date();
|
|
3435
|
-
return e.setHours(12, 0, 0, 0),
|
|
3435
|
+
return e.setHours(12, 0, 0, 0), B(e);
|
|
3436
3436
|
}, ns = () => {
|
|
3437
3437
|
const e = /* @__PURE__ */ new Date();
|
|
3438
|
-
return e.setDate(e.getDate() + 1), e.setHours(12, 0, 0, 0),
|
|
3438
|
+
return e.setDate(e.getDate() + 1), e.setHours(12, 0, 0, 0), B(e);
|
|
3439
3439
|
}, ae = (e, a, t) => {
|
|
3440
3440
|
const n = /* @__PURE__ */ new Date(), r = e.getTime() - a.getTime(), s = t.getTime() - e.getTime();
|
|
3441
3441
|
let o = 0, l = 0, m = 0;
|
|
@@ -3522,7 +3522,7 @@ const Xr = (e) => new TextEncoder().encode(e), Zr = (e) => {
|
|
|
3522
3522
|
}, ya = (e) => {
|
|
3523
3523
|
const t = e.replace(" at ", " ").replace(/GMT([+-]\d+)/, (y, p) => `${p.padStart(3, "0")}:00`), n = new Date(t.replace(/0([+-]\d{1,2}:\d{2})/, "$1")), r = n.getFullYear(), s = String(n.getMonth() + 1).padStart(2, "0"), o = String(n.getDate()).padStart(2, "0"), l = String(n.getHours()).padStart(2, "0"), m = String(n.getMinutes()).padStart(2, "0"), i = String(n.getSeconds()).padStart(2, "0");
|
|
3524
3524
|
return `${r}-${s}-${o} ${l}:${m}:${i}`;
|
|
3525
|
-
}, ds = () => Date.now(), ms = (e) => new Date(e).getTime(),
|
|
3525
|
+
}, ds = () => Date.now(), ms = (e) => new Date(e).getTime(), Ht = (e, a = 0) => {
|
|
3526
3526
|
const t = ds(), n = ms(
|
|
3527
3527
|
ya(pe(e))
|
|
3528
3528
|
);
|
|
@@ -3865,7 +3865,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
3865
3865
|
new: (c.flag & 8) > 0
|
|
3866
3866
|
},
|
|
3867
3867
|
imageUrl: `${e.mdDomains[c.mdDomains_id]}${ee(c.img, c.id_GameMaster, `?ts=${c.filemtime}`)}`,
|
|
3868
|
-
logoUrl: `/
|
|
3868
|
+
logoUrl: l.code ? `/image/platform_logo/platform_logo_${l.code.toLowerCase()}.png?v=1` : "",
|
|
3869
3869
|
rate: "0.00",
|
|
3870
3870
|
jackpotAmount: ""
|
|
3871
3871
|
}))) ?? [] : []
|
|
@@ -3886,7 +3886,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
3886
3886
|
new: (l.flag ?? 0) > 0
|
|
3887
3887
|
},
|
|
3888
3888
|
imageUrl: e.mdDomains && e.mdDomains.length > 0 ? `${e.mdDomains[l.mdDomains_id ?? 0]}${ee(l.img ?? "", l.id ?? 0, `?ts=${l.filemtime}`)}` : "",
|
|
3889
|
-
logoUrl: l.
|
|
3889
|
+
logoUrl: l.com ? `/image/platform_logo/platform_logo_${l.com}.png?v=1` : "",
|
|
3890
3890
|
rate: "0.00",
|
|
3891
3891
|
jackpotAmount: l.jackpotAmount ?? ""
|
|
3892
3892
|
}))) == null ? void 0 : o.sort((l, m) => (m.jackpotAmount ? 1 : 0) - (l.jackpotAmount ? 1 : 0))) ?? []
|
|
@@ -3895,7 +3895,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
3895
3895
|
};
|
|
3896
3896
|
}, Ts = (e) => ({
|
|
3897
3897
|
list: e.mdGrade.map((a) => {
|
|
3898
|
-
var t, n, r, s, o, l, m, i, c, y, p, g, T, _, k, C, D, h, b, d, $, ne, Q, re, se, Ye,
|
|
3898
|
+
var t, n, r, s, o, l, m, i, c, y, p, g, T, _, k, C, D, h, b, d, $, ne, Q, re, se, Ye, Be, He, Ue, qe, Ve, Ae, Qe, Xe, Ze, Je, Ke, et, tt, at, nt, rt, st, ot, it, ut, ct, lt, dt, mt, gt, ft, pt, yt, bt, ht, _t, Tt, vt, wt, Rt, Pt, Dt, kt;
|
|
3899
3899
|
return {
|
|
3900
3900
|
id: a.gradeindex,
|
|
3901
3901
|
is_current_level: !1,
|
|
@@ -3944,7 +3944,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
3944
3944
|
upgrade: {
|
|
3945
3945
|
isShow: !0,
|
|
3946
3946
|
bonus: v(((Ye = (se = a.benefit) == null ? void 0 : se.upgrade) == null ? void 0 : Ye.bonus) ?? "0"),
|
|
3947
|
-
bonus_name: ((
|
|
3947
|
+
bonus_name: ((He = (Be = a.benefit) == null ? void 0 : Be.upgrade) == null ? void 0 : He.bonus_name) ?? "",
|
|
3948
3948
|
turnover: v(((qe = (Ue = a.benefit) == null ? void 0 : Ue.upgrade) == null ? void 0 : qe.turnover) ?? "0"),
|
|
3949
3949
|
turnover_name: ((Ae = (Ve = a.benefit) == null ? void 0 : Ve.upgrade) == null ? void 0 : Ae.turnover_name) ?? ""
|
|
3950
3950
|
},
|
|
@@ -4180,28 +4180,36 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4180
4180
|
googleAnalyticArr: e.google_analytic_arr ?? []
|
|
4181
4181
|
};
|
|
4182
4182
|
}, ks = (e) => {
|
|
4183
|
-
var a, t, n, r, s, o;
|
|
4183
|
+
var a, t, n, r, s, o, l, m;
|
|
4184
4184
|
return {
|
|
4185
|
-
banner: ((a = e.mobileBanner) == null ? void 0 : a.map((
|
|
4186
|
-
ad: ((t = e.mobileAd) == null ? void 0 : t.map((
|
|
4187
|
-
about: ((n = e.about) == null ? void 0 : n.map((
|
|
4188
|
-
name:
|
|
4189
|
-
content:
|
|
4190
|
-
link:
|
|
4185
|
+
banner: ((a = e.mobileBanner) == null ? void 0 : a.map((i) => `${i.imagepath}?ts=${i.filemtime}`)) ?? [],
|
|
4186
|
+
ad: ((t = e.mobileAd) == null ? void 0 : t.map((i) => `${i.imagepath}?ts=${i.filemtime}`)) ?? [],
|
|
4187
|
+
about: ((n = e.about) == null ? void 0 : n.map((i) => ({
|
|
4188
|
+
name: i.name,
|
|
4189
|
+
content: i.content,
|
|
4190
|
+
link: i.link
|
|
4191
|
+
}))) ?? [],
|
|
4192
|
+
mobileAbout: ((r = e.mobileAbout) == null ? void 0 : r.map((i) => ({
|
|
4193
|
+
name: i.name,
|
|
4194
|
+
content: i.content,
|
|
4195
|
+
link: i.link
|
|
4191
4196
|
}))) ?? [],
|
|
4192
|
-
|
|
4193
|
-
|
|
4194
|
-
|
|
4195
|
-
link: l.link
|
|
4197
|
+
appAd: ((s = e.appAd) == null ? void 0 : s.map((i) => ({
|
|
4198
|
+
imgUrl: `${i.imagepath}?ts=${i.filemtime}`,
|
|
4199
|
+
link: i.link
|
|
4196
4200
|
}))) ?? [],
|
|
4197
|
-
|
|
4198
|
-
|
|
4199
|
-
|
|
4201
|
+
depositHint: ((o = e.deposit) == null ? void 0 : o.map((i) => ({
|
|
4202
|
+
paymentName: i.name,
|
|
4203
|
+
path: i.link,
|
|
4204
|
+
content: i.content
|
|
4200
4205
|
}))) ?? [],
|
|
4201
|
-
|
|
4202
|
-
|
|
4203
|
-
|
|
4204
|
-
|
|
4206
|
+
eventPopupBotLeft: ((l = e.eventPopupBotLeft) == null ? void 0 : l.map((i) => ({
|
|
4207
|
+
imgUrl: `${i.imagepath}?ts=${i.filemtime}`,
|
|
4208
|
+
link: i.link
|
|
4209
|
+
}))) ?? [],
|
|
4210
|
+
eventPopupBotRight: ((m = e.eventPopupBotRight) == null ? void 0 : m.map((i) => ({
|
|
4211
|
+
imgUrl: `${i.imagepath}?ts=${i.filemtime}`,
|
|
4212
|
+
link: i.link
|
|
4205
4213
|
}))) ?? []
|
|
4206
4214
|
};
|
|
4207
4215
|
}, xs = (e) => {
|
|
@@ -4300,10 +4308,10 @@ const Ls = (e) => {
|
|
|
4300
4308
|
}
|
|
4301
4309
|
};
|
|
4302
4310
|
})
|
|
4303
|
-
})), Gs = (e) => e.data ? e.data.filter((a) => !
|
|
4311
|
+
})), Gs = (e) => e.data ? e.data.filter((a) => !Ht(a.matchDate, 120)).map((a) => ({
|
|
4304
4312
|
id: a.id,
|
|
4305
4313
|
date: ya(pe(a.matchDate)),
|
|
4306
|
-
started:
|
|
4314
|
+
started: Ht(a.matchDate),
|
|
4307
4315
|
stage: a.Stage,
|
|
4308
4316
|
sportId: a.SportID,
|
|
4309
4317
|
matchId: a.MatchID,
|
|
@@ -4402,12 +4410,12 @@ const Ls = (e) => {
|
|
|
4402
4410
|
withdrawCount: e.withdrawCount,
|
|
4403
4411
|
withdrawMin135: Number(e.withdrawMin_135) && Number(e.withdrawMin_135) > 0 ? Number(e.withdrawMin_135) : Number(e.withdrawMin),
|
|
4404
4412
|
withdrawMax135: Number(e.withdrawMax_135) && Number(e.withdrawMax_135) > 0 ? Number(e.withdrawMax_135) : Number(e.withdrawMax)
|
|
4405
|
-
}),
|
|
4413
|
+
}), Bs = (e) => P(e);
|
|
4406
4414
|
var L = /* @__PURE__ */ ((e) => (e.deposit = "deposit", e.withdraw = "withdraw", e.promo = "promotion", e.manual = "adjustment", e.cashIn = "cashIn", e.cashOut = "cashOut", e.transfer = "transfer", e.incentive = "incentive", e.upgradeBonus = "upgradeBonus", e.extension = "extension", e.creditTransfer = "creditTransfer", e.shareHolder = "shareHolderDividend", e))(L || {});
|
|
4407
4415
|
const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
4408
4416
|
__proto__: null,
|
|
4409
4417
|
TransactionMethod: L
|
|
4410
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
4418
|
+
}, Symbol.toStringTag, { value: "Module" })), Hs = (e) => {
|
|
4411
4419
|
var a, t, n, r, s, o;
|
|
4412
4420
|
return {
|
|
4413
4421
|
statusMode: ((a = e.subStatusModes) == null ? void 0 : a.map((l) => ({
|
|
@@ -4553,7 +4561,7 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4553
4561
|
new: !1
|
|
4554
4562
|
},
|
|
4555
4563
|
imageUrl: `${e.mdDomains[s.mdDomains_id]}${ee(s.img, s.id, `?ts=${s.filemtime}`)}`,
|
|
4556
|
-
logoUrl: `/image/platform_logo/platform_logo_${s.code_PlatformMaster}?v=1
|
|
4564
|
+
logoUrl: s.code_PlatformMaster ? `/image/platform_logo/platform_logo_${s.code_PlatformMaster}.png?v=1` : "",
|
|
4557
4565
|
rate: "0.00",
|
|
4558
4566
|
jackpotAmount: ""
|
|
4559
4567
|
}))) ?? []
|
|
@@ -4888,7 +4896,7 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4888
4896
|
}))) ?? []
|
|
4889
4897
|
};
|
|
4890
4898
|
})) ?? [];
|
|
4891
|
-
}, Go = (e) => P(e), Fo = (e) => P(e), zo = (e) => P(e), Wo = (e) => P(e), Eo = (e) => P(e), Yo = (e) => P(e),
|
|
4899
|
+
}, Go = (e) => P(e), Fo = (e) => P(e), zo = (e) => P(e), Wo = (e) => P(e), Eo = (e) => P(e), Yo = (e) => P(e), Bo = (e) => P(e), Ho = (e) => ({
|
|
4892
4900
|
status: e.status == 1,
|
|
4893
4901
|
message: e.msg ?? "",
|
|
4894
4902
|
data: e.data
|
|
@@ -5195,7 +5203,7 @@ const Yu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5195
5203
|
};
|
|
5196
5204
|
};
|
|
5197
5205
|
var W = /* @__PURE__ */ ((e) => (e.inProgress = "inProgress", e.collectable = "collectable", e.collected = "collected", e))(W || {});
|
|
5198
|
-
const
|
|
5206
|
+
const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
5199
5207
|
__proto__: null,
|
|
5200
5208
|
MissionStatus: W
|
|
5201
5209
|
}, Symbol.toStringTag, { value: "Module" })), Ti = (e) => {
|
|
@@ -5281,13 +5289,13 @@ const Hu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5281
5289
|
new: !1
|
|
5282
5290
|
},
|
|
5283
5291
|
imageUrl: `${e.mdDomains[a.mdDomains_id]}${ee(a.img, a.id, `?ts=${a.filemtime}`)}`,
|
|
5284
|
-
logoUrl: `/image/platform_logo/platform_logo_${a.code}?v=1
|
|
5292
|
+
logoUrl: a.code ? `/image/platform_logo/platform_logo_${a.code}.png?v=1` : "",
|
|
5285
5293
|
rate: "0.00",
|
|
5286
5294
|
jackpotAmount: ""
|
|
5287
5295
|
})) ?? [] : []
|
|
5288
5296
|
}), Di = (e) => P(e), ki = (e) => P(e);
|
|
5289
5297
|
var A = /* @__PURE__ */ ((e) => (e.inProgress = "inProgress", e.collectable = "collectable", e.collected = "collected", e))(A || {});
|
|
5290
|
-
const
|
|
5298
|
+
const Hu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
5291
5299
|
__proto__: null,
|
|
5292
5300
|
AccumulateDepositStatus: A
|
|
5293
5301
|
}, Symbol.toStringTag, { value: "Module" })), xi = (e) => {
|
|
@@ -5482,7 +5490,7 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5482
5490
|
desc: a.txn_type
|
|
5483
5491
|
}))
|
|
5484
5492
|
}
|
|
5485
|
-
}),
|
|
5493
|
+
}), Bi = (e) => e.status == 0 ? {
|
|
5486
5494
|
status: !1,
|
|
5487
5495
|
message: e.msg ?? "",
|
|
5488
5496
|
data: null
|
|
@@ -5500,7 +5508,7 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5500
5508
|
prize: a.prize
|
|
5501
5509
|
}))
|
|
5502
5510
|
}
|
|
5503
|
-
},
|
|
5511
|
+
}, Hi = (e) => ({
|
|
5504
5512
|
status: e.status === 1,
|
|
5505
5513
|
message: e.msg ?? "",
|
|
5506
5514
|
data: Number(e.data ?? "0")
|
|
@@ -5583,7 +5591,7 @@ const Uu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5583
5591
|
new: !1
|
|
5584
5592
|
},
|
|
5585
5593
|
imageUrl: `${e.mdDomains[s.mdDomains_id]}${ee(s.img, s.id, `?ts=${s.filemtime}`)}`,
|
|
5586
|
-
logoUrl: `/image/platform_logo/platform_logo_${s.
|
|
5594
|
+
logoUrl: `/image/platform_logo/platform_logo_${s.img.split("/").pop()}.png?v=1`,
|
|
5587
5595
|
rate: "0.00",
|
|
5588
5596
|
jackpotAmount: ""
|
|
5589
5597
|
}))) ?? []
|
|
@@ -5947,7 +5955,7 @@ const Vu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5947
5955
|
}
|
|
5948
5956
|
return e;
|
|
5949
5957
|
};
|
|
5950
|
-
var ce = /* @__PURE__ */ ((e) => (e.mobileBanner = "mobileBanner", e.mobileAbout = "mobileAbout", e.mobileAd = "mobileAd", e.about = "about", e.appAd = "appAd", e.deposit = "deposit", e))(ce || {});
|
|
5958
|
+
var ce = /* @__PURE__ */ ((e) => (e.mobileBanner = "mobileBanner", e.mobileAbout = "mobileAbout", e.mobileAd = "mobileAd", e.about = "about", e.appAd = "appAd", e.deposit = "deposit", e.eventPopupBotLeft = "eventPopupBotLeft", e.eventPopupBotRight = "eventPopupBotRight", e))(ce || {});
|
|
5951
5959
|
const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
5952
5960
|
__proto__: null,
|
|
5953
5961
|
CmsCategory: ce
|
|
@@ -6238,7 +6246,7 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6238
6246
|
new: !1
|
|
6239
6247
|
},
|
|
6240
6248
|
imageUrl: `${e.mdDomains[s.mdDomains_id]}${ee(s.img, s.id, `?ts=${s.filemtime}`)}`,
|
|
6241
|
-
logoUrl: `/image/platform_logo/platform_logo_${s.code_PlatformMaster}?v=1
|
|
6249
|
+
logoUrl: s.code_PlatformMaster ? `/image/platform_logo/platform_logo_${s.code_PlatformMaster}.png?v=1` : "",
|
|
6242
6250
|
rate: "0.00",
|
|
6243
6251
|
jackpotAmount: ""
|
|
6244
6252
|
}))) ?? []
|
|
@@ -6362,10 +6370,10 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6362
6370
|
o.result[i] = Ys(c);
|
|
6363
6371
|
break;
|
|
6364
6372
|
case u.addBankCard:
|
|
6365
|
-
o.result[i] =
|
|
6373
|
+
o.result[i] = Bs(c);
|
|
6366
6374
|
break;
|
|
6367
6375
|
case u.transactionReport:
|
|
6368
|
-
o.result[i] =
|
|
6376
|
+
o.result[i] = Hs(
|
|
6369
6377
|
c
|
|
6370
6378
|
);
|
|
6371
6379
|
break;
|
|
@@ -6591,12 +6599,12 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6591
6599
|
);
|
|
6592
6600
|
break;
|
|
6593
6601
|
case u.submitTransferMoney:
|
|
6594
|
-
o.result[i] =
|
|
6602
|
+
o.result[i] = Bo(
|
|
6595
6603
|
c
|
|
6596
6604
|
);
|
|
6597
6605
|
break;
|
|
6598
6606
|
case u.requestUpdateMobileTacCode:
|
|
6599
|
-
o.result[i] =
|
|
6607
|
+
o.result[i] = Ho(
|
|
6600
6608
|
c
|
|
6601
6609
|
);
|
|
6602
6610
|
break;
|
|
@@ -6825,10 +6833,10 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6825
6833
|
);
|
|
6826
6834
|
break;
|
|
6827
6835
|
case u.getWheelData:
|
|
6828
|
-
o.result[i] =
|
|
6836
|
+
o.result[i] = Bi(c);
|
|
6829
6837
|
break;
|
|
6830
6838
|
case u.getWheelTicket:
|
|
6831
|
-
o.result[i] =
|
|
6839
|
+
o.result[i] = Hi(c);
|
|
6832
6840
|
break;
|
|
6833
6841
|
case u.spinWheel:
|
|
6834
6842
|
o.result[i] = Ui(c);
|
|
@@ -7219,10 +7227,10 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
7219
7227
|
__proto__: null
|
|
7220
7228
|
}, Symbol.toStringTag, { value: "Module" })), Yc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7221
7229
|
__proto__: null
|
|
7222
|
-
}, Symbol.toStringTag, { value: "Module" })), Hc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7223
|
-
__proto__: null
|
|
7224
7230
|
}, Symbol.toStringTag, { value: "Module" })), Bc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7225
7231
|
__proto__: null
|
|
7232
|
+
}, Symbol.toStringTag, { value: "Module" })), Hc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7233
|
+
__proto__: null
|
|
7226
7234
|
}, Symbol.toStringTag, { value: "Module" })), Uc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7227
7235
|
__proto__: null
|
|
7228
7236
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
@@ -7330,10 +7338,10 @@ const qc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
7330
7338
|
__proto__: null
|
|
7331
7339
|
}, Symbol.toStringTag, { value: "Module" })), Yl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7332
7340
|
__proto__: null
|
|
7333
|
-
}, Symbol.toStringTag, { value: "Module" })), Hl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7334
|
-
__proto__: null
|
|
7335
7341
|
}, Symbol.toStringTag, { value: "Module" })), Bl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7336
7342
|
__proto__: null
|
|
7343
|
+
}, Symbol.toStringTag, { value: "Module" })), Hl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7344
|
+
__proto__: null
|
|
7337
7345
|
}, Symbol.toStringTag, { value: "Module" })), Ul = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7338
7346
|
__proto__: null
|
|
7339
7347
|
}, Symbol.toStringTag, { value: "Module" })), ql = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
@@ -7431,7 +7439,7 @@ export {
|
|
|
7431
7439
|
ic as gameListType,
|
|
7432
7440
|
Kl as getASCMatchCountType,
|
|
7433
7441
|
Zl as getAccumulateDepositClaimType,
|
|
7434
|
-
|
|
7442
|
+
Hu as getAccumulateDepositDataType,
|
|
7435
7443
|
ll as getActivePPType,
|
|
7436
7444
|
dl as getActiveProductType,
|
|
7437
7445
|
nl as getCountryType,
|
|
@@ -7445,15 +7453,15 @@ export {
|
|
|
7445
7453
|
_d as getFeedbackType,
|
|
7446
7454
|
bd as getGoldEggDataType,
|
|
7447
7455
|
qc as getImageType,
|
|
7448
|
-
|
|
7449
|
-
|
|
7456
|
+
Bl as getIncentiveData,
|
|
7457
|
+
Hl as getIncentiveRebate,
|
|
7450
7458
|
Cc as getInviteRewardClaimType,
|
|
7451
7459
|
xc as getInviteRewardDataType,
|
|
7452
7460
|
Oc as getInviteRewardReportType,
|
|
7453
7461
|
$c as getInviteRewardSettingType,
|
|
7454
7462
|
nc as getMaintenanceModeApi,
|
|
7455
7463
|
Ul as getMissionClaim,
|
|
7456
|
-
|
|
7464
|
+
Bu as getMissionData,
|
|
7457
7465
|
hd as getNewbieMissionClaimType,
|
|
7458
7466
|
qu as getNewbieMissionDataType,
|
|
7459
7467
|
nd as getPopoutItemType,
|
|
@@ -7510,7 +7518,7 @@ export {
|
|
|
7510
7518
|
Ql as requestForgetUsernameType,
|
|
7511
7519
|
Jc as requestTacCodeType,
|
|
7512
7520
|
bl as requestTransferMoneyType,
|
|
7513
|
-
|
|
7521
|
+
Bc as requestUpdateMobileTacCode,
|
|
7514
7522
|
ml as requestWithdrawTacType,
|
|
7515
7523
|
gl as requestWithdrawalCodeType,
|
|
7516
7524
|
Sl as searchNumberHistoryType,
|
|
@@ -7527,7 +7535,7 @@ export {
|
|
|
7527
7535
|
Ec as submitGiftCodeType,
|
|
7528
7536
|
hl as submitTransferMoneyType,
|
|
7529
7537
|
xl as submitTwoFactorAuthenticateType,
|
|
7530
|
-
|
|
7538
|
+
Hc as submitUpdateMobileTacCode,
|
|
7531
7539
|
ol as submitValidateType,
|
|
7532
7540
|
Cl as submitWithdrawalAlipayType,
|
|
7533
7541
|
pl as submitWithdrawalCodeType,
|