60p82u21t54k 0.3.24 → 0.3.25

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.
@@ -65,19 +65,19 @@ G.interceptors.response.use(
65
65
  return e.response ? (a.status = e.response.status, a.message = e.response.data.message || e.response.statusText, console.error("Error response:", JSON.stringify(a)), e.response.status === 401 ? console.error("Unauthorized access - redirecting to login.") : e.response.status === 404 ? console.error("Resource not found.") : e.response.status >= 500 && console.error("Server error. Please try again later.")) : e.request ? console.error("No response received:", e.request) : console.error("Error setting up request:", e.message), Promise.reject(a);
66
66
  }
67
67
  );
68
- let Ce = {
68
+ let Ne = {
69
69
  prefix: "188",
70
70
  timezone: -4,
71
71
  currency: "¥",
72
72
  language: "zh"
73
73
  };
74
74
  const Ta = (e) => {
75
- Ce = { ...Ce, ...e };
76
- }, he = () => Ce, Fu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
75
+ Ne = { ...Ne, ...e };
76
+ }, he = () => Ne, Fu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
77
77
  __proto__: null,
78
78
  getConfig: he,
79
79
  setConfig: Ta
80
- }, Symbol.toStringTag, { value: "Module" })), ea = 6048e5, va = 864e5, wa = 6e4, Ra = 36e5, Pa = 1e3, xt = Symbol.for("constructDateFrom");
80
+ }, Symbol.toStringTag, { value: "Module" })), ea = 6048e5, va = 864e5, wa = 6e4, Pa = 36e5, Ra = 1e3, xt = Symbol.for("constructDateFrom");
81
81
  function j(e, a) {
82
82
  return typeof e == "function" ? e(a) : e && typeof e == "object" && xt in e ? e[xt](a) : e instanceof Date ? new e.constructor(a) : new Date(a);
83
83
  }
@@ -217,7 +217,7 @@ const ja = {
217
217
  one: "almost 1 year",
218
218
  other: "almost {{count}} years"
219
219
  }
220
- }, Ca = (e, a, t) => {
220
+ }, Na = (e, a, t) => {
221
221
  let n;
222
222
  const r = ja[e];
223
223
  return typeof r == "string" ? n = r : a === 1 ? n = r.one : n = r.other.replace("{{count}}", a.toString()), t != null && t.addSuffix ? t.comparison && t.comparison > 0 ? "in " + n : n + " ago" : n;
@@ -228,7 +228,7 @@ function De(e) {
228
228
  return e.formats[t] || e.formats[e.defaultWidth];
229
229
  };
230
230
  }
231
- const Na = {
231
+ const Ca = {
232
232
  full: "EEEE, MMMM do, y",
233
233
  long: "MMMM do, y",
234
234
  medium: "MMM d, y",
@@ -245,7 +245,7 @@ const Na = {
245
245
  short: "{{date}}, {{time}}"
246
246
  }, Ga = {
247
247
  date: De({
248
- formats: Na,
248
+ formats: Ca,
249
249
  defaultWidth: "full"
250
250
  }),
251
251
  time: De({
@@ -576,7 +576,7 @@ const Za = /^(\d+)(th|st|nd|rd)?/i, Ja = /\d+/i, Ka = {
576
576
  })
577
577
  }, na = {
578
578
  code: "en-US",
579
- formatDistance: Ca,
579
+ formatDistance: Na,
580
580
  formatLong: Ga,
581
581
  formatRelative: za,
582
582
  localize: Va,
@@ -612,7 +612,7 @@ function sa(e, a) {
612
612
  const t = I(e, a == null ? void 0 : a.in), n = +U(t, a) - +mn(t, a);
613
613
  return Math.round(n / ea) + 1;
614
614
  }
615
- function R(e, a) {
615
+ function P(e, a) {
616
616
  const t = e < 0 ? "-" : "", n = Math.abs(e).toString().padStart(a, "0");
617
617
  return t + n;
618
618
  }
@@ -620,16 +620,16 @@ const H = {
620
620
  // Year
621
621
  y(e, a) {
622
622
  const t = e.getFullYear(), n = t > 0 ? t : 1 - t;
623
- return R(a === "yy" ? n % 100 : n, a.length);
623
+ return P(a === "yy" ? n % 100 : n, a.length);
624
624
  },
625
625
  // Month
626
626
  M(e, a) {
627
627
  const t = e.getMonth();
628
- return a === "M" ? String(t + 1) : R(t + 1, 2);
628
+ return a === "M" ? String(t + 1) : P(t + 1, 2);
629
629
  },
630
630
  // Day of the month
631
631
  d(e, a) {
632
- return R(e.getDate(), a.length);
632
+ return P(e.getDate(), a.length);
633
633
  },
634
634
  // AM or PM
635
635
  a(e, a) {
@@ -649,26 +649,26 @@ const H = {
649
649
  },
650
650
  // Hour [1-12]
651
651
  h(e, a) {
652
- return R(e.getHours() % 12 || 12, a.length);
652
+ return P(e.getHours() % 12 || 12, a.length);
653
653
  },
654
654
  // Hour [0-23]
655
655
  H(e, a) {
656
- return R(e.getHours(), a.length);
656
+ return P(e.getHours(), a.length);
657
657
  },
658
658
  // Minute
659
659
  m(e, a) {
660
- return R(e.getMinutes(), a.length);
660
+ return P(e.getMinutes(), a.length);
661
661
  },
662
662
  // Second
663
663
  s(e, a) {
664
- return R(e.getSeconds(), a.length);
664
+ return P(e.getSeconds(), a.length);
665
665
  },
666
666
  // Fraction of second
667
667
  S(e, a) {
668
668
  const t = a.length, n = e.getMilliseconds(), r = Math.trunc(
669
669
  n * Math.pow(10, t - 3)
670
670
  );
671
- return R(r, a.length);
671
+ return P(r, a.length);
672
672
  }
673
673
  }, X = {
674
674
  midnight: "midnight",
@@ -709,14 +709,14 @@ const H = {
709
709
  const r = Ge(e, n), s = r > 0 ? r : 1 - r;
710
710
  if (a === "YY") {
711
711
  const o = s % 100;
712
- return R(o, 2);
712
+ return P(o, 2);
713
713
  }
714
- return a === "Yo" ? t.ordinalNumber(s, { unit: "year" }) : R(s, a.length);
714
+ return a === "Yo" ? t.ordinalNumber(s, { unit: "year" }) : P(s, a.length);
715
715
  },
716
716
  // ISO week-numbering year
717
717
  R: function(e, a) {
718
718
  const t = aa(e);
719
- return R(t, a.length);
719
+ return P(t, a.length);
720
720
  },
721
721
  // Extended year. This is a single number designating the year of this calendar system.
722
722
  // The main difference between `y` and `u` localizers are B.C. years:
@@ -729,7 +729,7 @@ const H = {
729
729
  // while `uu` pads single digit years to 2 characters and returns other years unchanged.
730
730
  u: function(e, a) {
731
731
  const t = e.getFullYear();
732
- return R(t, a.length);
732
+ return P(t, a.length);
733
733
  },
734
734
  // Quarter
735
735
  Q: function(e, a, t) {
@@ -740,7 +740,7 @@ const H = {
740
740
  return String(n);
741
741
  // 01, 02, 03, 04
742
742
  case "QQ":
743
- return R(n, 2);
743
+ return P(n, 2);
744
744
  // 1st, 2nd, 3rd, 4th
745
745
  case "Qo":
746
746
  return t.ordinalNumber(n, { unit: "quarter" });
@@ -774,7 +774,7 @@ const H = {
774
774
  return String(n);
775
775
  // 01, 02, 03, 04
776
776
  case "qq":
777
- return R(n, 2);
777
+ return P(n, 2);
778
778
  // 1st, 2nd, 3rd, 4th
779
779
  case "qo":
780
780
  return t.ordinalNumber(n, { unit: "quarter" });
@@ -836,7 +836,7 @@ const H = {
836
836
  return String(n + 1);
837
837
  // 01, 02, ..., 12
838
838
  case "LL":
839
- return R(n + 1, 2);
839
+ return P(n + 1, 2);
840
840
  // 1st, 2nd, ..., 12th
841
841
  case "Lo":
842
842
  return t.ordinalNumber(n + 1, { unit: "month" });
@@ -861,12 +861,12 @@ const H = {
861
861
  // Local week of year
862
862
  w: function(e, a, t, n) {
863
863
  const r = sa(e, n);
864
- return a === "wo" ? t.ordinalNumber(r, { unit: "week" }) : R(r, a.length);
864
+ return a === "wo" ? t.ordinalNumber(r, { unit: "week" }) : P(r, a.length);
865
865
  },
866
866
  // ISO week of year
867
867
  I: function(e, a, t) {
868
868
  const n = ra(e);
869
- return a === "Io" ? t.ordinalNumber(n, { unit: "week" }) : R(n, a.length);
869
+ return a === "Io" ? t.ordinalNumber(n, { unit: "week" }) : P(n, a.length);
870
870
  },
871
871
  // Day of the month
872
872
  d: function(e, a, t) {
@@ -875,7 +875,7 @@ const H = {
875
875
  // Day of year
876
876
  D: function(e, a, t) {
877
877
  const n = dn(e);
878
- return a === "Do" ? t.ordinalNumber(n, { unit: "dayOfYear" }) : R(n, a.length);
878
+ return a === "Do" ? t.ordinalNumber(n, { unit: "dayOfYear" }) : P(n, a.length);
879
879
  },
880
880
  // Day of week
881
881
  E: function(e, a, t) {
@@ -919,7 +919,7 @@ const H = {
919
919
  return String(s);
920
920
  // Padded numerical value
921
921
  case "ee":
922
- return R(s, 2);
922
+ return P(s, 2);
923
923
  // 1st, 2nd, ..., 7th
924
924
  case "eo":
925
925
  return t.ordinalNumber(s, { unit: "day" });
@@ -958,7 +958,7 @@ const H = {
958
958
  return String(s);
959
959
  // Padded numerical value
960
960
  case "cc":
961
- return R(s, a.length);
961
+ return P(s, a.length);
962
962
  // 1st, 2nd, ..., 7th
963
963
  case "co":
964
964
  return t.ordinalNumber(s, { unit: "day" });
@@ -997,7 +997,7 @@ const H = {
997
997
  return String(r);
998
998
  // 02
999
999
  case "ii":
1000
- return R(r, a.length);
1000
+ return P(r, a.length);
1001
1001
  // 2nd
1002
1002
  case "io":
1003
1003
  return t.ordinalNumber(r, { unit: "day" });
@@ -1125,12 +1125,12 @@ const H = {
1125
1125
  // Hour [0-11]
1126
1126
  K: function(e, a, t) {
1127
1127
  const n = e.getHours() % 12;
1128
- return a === "Ko" ? t.ordinalNumber(n, { unit: "hour" }) : R(n, a.length);
1128
+ return a === "Ko" ? t.ordinalNumber(n, { unit: "hour" }) : P(n, a.length);
1129
1129
  },
1130
1130
  // Hour [1-24]
1131
1131
  k: function(e, a, t) {
1132
1132
  let n = e.getHours();
1133
- return n === 0 && (n = 24), a === "ko" ? t.ordinalNumber(n, { unit: "hour" }) : R(n, a.length);
1133
+ return n === 0 && (n = 24), a === "ko" ? t.ordinalNumber(n, { unit: "hour" }) : P(n, a.length);
1134
1134
  },
1135
1135
  // Minute
1136
1136
  m: function(e, a, t) {
@@ -1225,22 +1225,22 @@ const H = {
1225
1225
  // Seconds timestamp
1226
1226
  t: function(e, a, t) {
1227
1227
  const n = Math.trunc(+e / 1e3);
1228
- return R(n, a.length);
1228
+ return P(n, a.length);
1229
1229
  },
1230
1230
  // Milliseconds timestamp
1231
1231
  T: function(e, a, t) {
1232
- return R(+e, a.length);
1232
+ return P(+e, a.length);
1233
1233
  }
1234
1234
  };
1235
1235
  function St(e, a = "") {
1236
1236
  const t = e > 0 ? "-" : "+", n = Math.abs(e), r = Math.trunc(n / 60), s = n % 60;
1237
- return s === 0 ? t + String(r) : t + String(r) + a + R(s, 2);
1237
+ return s === 0 ? t + String(r) : t + String(r) + a + P(s, 2);
1238
1238
  }
1239
1239
  function It(e, a) {
1240
- return e % 60 === 0 ? (e > 0 ? "-" : "+") + R(Math.abs(e) / 60, 2) : V(e, a);
1240
+ return e % 60 === 0 ? (e > 0 ? "-" : "+") + P(Math.abs(e) / 60, 2) : V(e, a);
1241
1241
  }
1242
1242
  function V(e, a = "") {
1243
- const t = e > 0 ? "-" : "+", n = Math.abs(e), r = R(Math.trunc(n / 60), 2), s = R(n % 60, 2);
1243
+ const t = e > 0 ? "-" : "+", n = Math.abs(e), r = P(Math.trunc(n / 60), 2), s = P(n % 60, 2);
1244
1244
  return t + r + a + s;
1245
1245
  }
1246
1246
  const jt = (e, a) => {
@@ -1288,7 +1288,7 @@ const jt = (e, a) => {
1288
1288
  break;
1289
1289
  }
1290
1290
  return s.replace("{{date}}", jt(n, a)).replace("{{time}}", oa(r, a));
1291
- }, Ne = {
1291
+ }, Ce = {
1292
1292
  p: oa,
1293
1293
  P: gn
1294
1294
  }, fn = /^D+$/, pn = /^Y+$/, yn = ["D", "DD", "YY", "YYYY"];
@@ -1307,15 +1307,15 @@ function bn(e, a, t) {
1307
1307
  return `Use \`${e.toLowerCase()}\` instead of \`${e}\` (in \`${a}\`) for formatting ${n} to the input \`${t}\`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md`;
1308
1308
  }
1309
1309
  const hn = /[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g, _n = /P+p+|P+|p+|''|'(''|[^'])+('|$)|./g, Tn = /^'([^]*?)'?$/, vn = /''/g, wn = /[a-zA-Z]/;
1310
- function Rn(e, a, t) {
1311
- var c, y, p, g, T, _, k, C;
1312
- const n = te(), r = (t == null ? void 0 : t.locale) ?? n.locale ?? na, s = (t == null ? void 0 : t.firstWeekContainsDate) ?? ((y = (c = t == null ? void 0 : t.locale) == null ? void 0 : c.options) == null ? void 0 : y.firstWeekContainsDate) ?? n.firstWeekContainsDate ?? ((g = (p = n.locale) == null ? void 0 : p.options) == null ? void 0 : g.firstWeekContainsDate) ?? 1, o = (t == null ? void 0 : t.weekStartsOn) ?? ((_ = (T = t == null ? void 0 : t.locale) == null ? void 0 : T.options) == null ? void 0 : _.weekStartsOn) ?? n.weekStartsOn ?? ((C = (k = n.locale) == null ? void 0 : k.options) == null ? void 0 : C.weekStartsOn) ?? 0, l = I(e, t == null ? void 0 : t.in);
1310
+ function Pn(e, a, t) {
1311
+ var c, y, p, g, T, _, k, N;
1312
+ const n = te(), r = (t == null ? void 0 : t.locale) ?? n.locale ?? na, s = (t == null ? void 0 : t.firstWeekContainsDate) ?? ((y = (c = t == null ? void 0 : t.locale) == null ? void 0 : c.options) == null ? void 0 : y.firstWeekContainsDate) ?? n.firstWeekContainsDate ?? ((g = (p = n.locale) == null ? void 0 : p.options) == null ? void 0 : g.firstWeekContainsDate) ?? 1, o = (t == null ? void 0 : t.weekStartsOn) ?? ((_ = (T = t == null ? void 0 : t.locale) == null ? void 0 : T.options) == null ? void 0 : _.weekStartsOn) ?? n.weekStartsOn ?? ((N = (k = n.locale) == null ? void 0 : k.options) == null ? void 0 : N.weekStartsOn) ?? 0, l = I(e, t == null ? void 0 : t.in);
1313
1313
  if (!Sa(l))
1314
1314
  throw new RangeError("Invalid time value");
1315
1315
  let m = a.match(_n).map((D) => {
1316
1316
  const h = D[0];
1317
1317
  if (h === "p" || h === "P") {
1318
- const b = Ne[h];
1318
+ const b = Ce[h];
1319
1319
  return b(D, r.formatLong);
1320
1320
  }
1321
1321
  return D;
@@ -1324,7 +1324,7 @@ function Rn(e, a, t) {
1324
1324
  return { isToken: !1, value: "'" };
1325
1325
  const h = D[0];
1326
1326
  if (h === "'")
1327
- return { isToken: !1, value: Pn(D) };
1327
+ return { isToken: !1, value: Rn(D) };
1328
1328
  if (Mt[h])
1329
1329
  return { isToken: !0, value: D };
1330
1330
  if (h.match(wn))
@@ -1347,7 +1347,7 @@ function Rn(e, a, t) {
1347
1347
  return b(l, h, r.localize, i);
1348
1348
  }).join("");
1349
1349
  }
1350
- function Pn(e) {
1350
+ function Rn(e) {
1351
1351
  const a = e.match(Tn);
1352
1352
  return a ? a[1].replace(vn, "'") : e;
1353
1353
  }
@@ -1515,7 +1515,7 @@ function z(e, a) {
1515
1515
  };
1516
1516
  const n = t[1] === "+" ? 1 : -1, r = t[2] ? parseInt(t[2], 10) : 0, s = t[3] ? parseInt(t[3], 10) : 0, o = t[5] ? parseInt(t[5], 10) : 0;
1517
1517
  return {
1518
- value: n * (r * Ra + s * wa + o * Pa),
1518
+ value: n * (r * Pa + s * wa + o * Ra),
1519
1519
  rest: a.slice(t[0].length)
1520
1520
  };
1521
1521
  }
@@ -1622,7 +1622,7 @@ class jn extends w {
1622
1622
  return t.setFullYear(o, 0, 1), t.setHours(0, 0, 0, 0), t;
1623
1623
  }
1624
1624
  }
1625
- class Cn extends w {
1625
+ class Nn extends w {
1626
1626
  constructor() {
1627
1627
  super(...arguments);
1628
1628
  f(this, "priority", 130);
@@ -1681,7 +1681,7 @@ class Cn extends w {
1681
1681
  return t.setFullYear(l, 0, s.firstWeekContainsDate), t.setHours(0, 0, 0, 0), U(t, s);
1682
1682
  }
1683
1683
  }
1684
- class Nn extends w {
1684
+ class Cn extends w {
1685
1685
  constructor() {
1686
1686
  super(...arguments);
1687
1687
  f(this, "priority", 130);
@@ -2839,8 +2839,8 @@ class mr extends w {
2839
2839
  const gr = {
2840
2840
  G: new In(),
2841
2841
  y: new jn(),
2842
- Y: new Cn(),
2843
- R: new Nn(),
2842
+ Y: new Nn(),
2843
+ R: new Cn(),
2844
2844
  u: new Ln(),
2845
2845
  Q: new $n(),
2846
2846
  q: new Gn(),
@@ -2870,15 +2870,15 @@ const gr = {
2870
2870
  T: new mr()
2871
2871
  }, fr = /[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g, pr = /P+p+|P+|p+|''|'(''|[^'])+('|$)|./g, yr = /^'([^]*?)'?$/, br = /''/g, hr = /\S/, _r = /[a-zA-Z]/;
2872
2872
  function Tr(e, a, t, n) {
2873
- var k, C, D, h;
2874
- const r = () => j(t, NaN), s = ca(), o = s.locale ?? na, l = s.firstWeekContainsDate ?? ((C = (k = s.locale) == null ? void 0 : k.options) == null ? void 0 : C.firstWeekContainsDate) ?? 1, m = s.weekStartsOn ?? ((h = (D = s.locale) == null ? void 0 : D.options) == null ? void 0 : h.weekStartsOn) ?? 0, i = {
2873
+ var k, N, D, h;
2874
+ const r = () => j(t, NaN), s = ca(), o = s.locale ?? na, l = s.firstWeekContainsDate ?? ((N = (k = s.locale) == null ? void 0 : k.options) == null ? void 0 : N.firstWeekContainsDate) ?? 1, m = s.weekStartsOn ?? ((h = (D = s.locale) == null ? void 0 : D.options) == null ? void 0 : h.weekStartsOn) ?? 0, i = {
2875
2875
  firstWeekContainsDate: l,
2876
2876
  weekStartsOn: m,
2877
2877
  locale: o
2878
2878
  }, c = [new Sn(n == null ? void 0 : n.in, t)], y = a.match(pr).map((b) => {
2879
2879
  const d = b[0];
2880
- if (d in Ne) {
2881
- const $ = Ne[d];
2880
+ if (d in Ce) {
2881
+ const $ = Ce[d];
2882
2882
  return $(b, o.formatLong);
2883
2883
  }
2884
2884
  return b;
@@ -2940,9 +2940,9 @@ function Tr(e, a, t, n) {
2940
2940
  function vr(e) {
2941
2941
  return e.match(yr)[1].replace(br, "'");
2942
2942
  }
2943
- function Ct(e, a, t) {
2944
- const n = ca(), r = Pr(e, t.timeZone, t.locale ?? n.locale);
2945
- return "formatToParts" in r ? wr(r, a) : Rr(r, a);
2943
+ function Nt(e, a, t) {
2944
+ const n = ca(), r = Rr(e, t.timeZone, t.locale ?? n.locale);
2945
+ return "formatToParts" in r ? wr(r, a) : Pr(r, a);
2946
2946
  }
2947
2947
  function wr(e, a) {
2948
2948
  const t = e.formatToParts(a);
@@ -2950,11 +2950,11 @@ function wr(e, a) {
2950
2950
  if (t[n].type === "timeZoneName")
2951
2951
  return t[n].value;
2952
2952
  }
2953
- function Rr(e, a) {
2953
+ function Pr(e, a) {
2954
2954
  const t = e.format(a).replace(/\u200E/g, ""), n = / [\w-+ ]+$/.exec(t);
2955
2955
  return n ? n[0].substr(1) : "";
2956
2956
  }
2957
- function Pr(e, a, t) {
2957
+ function Rr(e, a, t) {
2958
2958
  return new Intl.DateTimeFormat(t ? [t.code, "en-US"] : void 0, {
2959
2959
  timeZone: a,
2960
2960
  timeZoneName: e
@@ -2997,7 +2997,7 @@ function Or(e, a) {
2997
2997
  parseInt(n[6], 10)
2998
2998
  ];
2999
2999
  }
3000
- const ke = {}, Nt = new Intl.DateTimeFormat("en-US", {
3000
+ const ke = {}, Ct = new Intl.DateTimeFormat("en-US", {
3001
3001
  hourCycle: "h23",
3002
3002
  timeZone: "America/New_York",
3003
3003
  year: "numeric",
@@ -3006,7 +3006,7 @@ const ke = {}, Nt = new Intl.DateTimeFormat("en-US", {
3006
3006
  hour: "2-digit",
3007
3007
  minute: "2-digit",
3008
3008
  second: "2-digit"
3009
- }).format(/* @__PURE__ */ new Date("2014-06-25T04:00:00.123Z")), Mr = Nt === "06/25/2014, 00:00:00" || Nt === "‎06‎/‎25‎/‎2014‎ ‎00‎:‎00‎:‎00";
3009
+ }).format(/* @__PURE__ */ new Date("2014-06-25T04:00:00.123Z")), Mr = Ct === "06/25/2014, 00:00:00" || Ct === "‎06‎/‎25‎/‎2014‎ ‎00‎:‎00‎:‎00";
3010
3010
  function Sr(e) {
3011
3011
  return ke[e] || (ke[e] = Mr ? new Intl.DateTimeFormat("en-US", {
3012
3012
  hourCycle: "h23",
@@ -3051,10 +3051,10 @@ function _e(e, a, t) {
3051
3051
  const o = parseInt(n[3], 10);
3052
3052
  return $t(r, o) ? (s = Math.abs(r) * Lt + o * Ir, n[1] === "+" ? -s : s) : NaN;
3053
3053
  }
3054
- if (Nr(e)) {
3054
+ if (Cr(e)) {
3055
3055
  a = new Date(a || Date.now());
3056
3056
  const o = t ? a : jr(a), l = $e(o, e);
3057
- return -(t ? l : Cr(a, l, e));
3057
+ return -(t ? l : Nr(a, l, e));
3058
3058
  }
3059
3059
  return NaN;
3060
3060
  }
@@ -3067,7 +3067,7 @@ function $e(e, a) {
3067
3067
  const s = r % 1e3;
3068
3068
  return r -= s >= 0 ? s : 1e3 + s, n - r;
3069
3069
  }
3070
- function Cr(e, a, t) {
3070
+ function Nr(e, a, t) {
3071
3071
  let r = e.getTime() - a;
3072
3072
  const s = $e(new Date(r), t);
3073
3073
  if (a === s)
@@ -3080,7 +3080,7 @@ function $t(e, a) {
3080
3080
  return -23 <= e && e <= 23 && (a == null || 0 <= a && a <= 59);
3081
3081
  }
3082
3082
  const Gt = {};
3083
- function Nr(e) {
3083
+ function Cr(e) {
3084
3084
  if (Gt[e])
3085
3085
  return !0;
3086
3086
  try {
@@ -3160,11 +3160,11 @@ const Lr = 60 * 1e3, $r = {
3160
3160
  case "z":
3161
3161
  case "zz":
3162
3162
  case "zzz":
3163
- return Ct("short", e, t);
3163
+ return Nt("short", e, t);
3164
3164
  // Long
3165
3165
  case "zzzz":
3166
3166
  default:
3167
- return Ct("long", e, t);
3167
+ return Nt("long", e, t);
3168
3168
  }
3169
3169
  }
3170
3170
  };
@@ -3196,7 +3196,7 @@ function zt(e) {
3196
3196
  const a = new Date(Date.UTC(e.getFullYear(), e.getMonth(), e.getDate(), e.getHours(), e.getMinutes(), e.getSeconds(), e.getMilliseconds()));
3197
3197
  return a.setUTCFullYear(e.getFullYear()), +e - +a;
3198
3198
  }
3199
- const fa = /(Z|[+-]\d{2}(?::?\d{2})?| UTC| [a-zA-Z]+\/[a-zA-Z_]+(?:\/[a-zA-Z_]+)?)$/, Me = 36e5, Wt = 6e4, Fr = 2, N = {
3199
+ const fa = /(Z|[+-]\d{2}(?::?\d{2})?| UTC| [a-zA-Z]+\/[a-zA-Z_]+(?:\/[a-zA-Z_]+)?)$/, Me = 36e5, Wt = 6e4, Fr = 2, C = {
3200
3200
  dateTimePattern: /^([0-9W+-]+)(T| )(.*)/,
3201
3201
  datePattern: /^([0-9W+-]+)(.*)/,
3202
3202
  // year tokens
@@ -3263,17 +3263,17 @@ function fe(e, a = {}) {
3263
3263
  }
3264
3264
  function zr(e) {
3265
3265
  const a = {};
3266
- let t = N.dateTimePattern.exec(e), n;
3267
- if (t ? (a.date = t[1], n = t[3]) : (t = N.datePattern.exec(e), t ? (a.date = t[1], n = t[2]) : (a.date = null, n = e)), n) {
3268
- const r = N.timeZone.exec(n);
3266
+ let t = C.dateTimePattern.exec(e), n;
3267
+ if (t ? (a.date = t[1], n = t[3]) : (t = C.datePattern.exec(e), t ? (a.date = t[1], n = t[2]) : (a.date = null, n = e)), n) {
3268
+ const r = C.timeZone.exec(n);
3269
3269
  r ? (a.time = n.replace(r[1], ""), a.timeZone = r[1].trim()) : a.time = n;
3270
3270
  }
3271
3271
  return a;
3272
3272
  }
3273
3273
  function Wr(e, a) {
3274
3274
  if (e) {
3275
- const t = N.YYY[a], n = N.YYYYY[a];
3276
- let r = N.YYYY.exec(e) || n.exec(e);
3275
+ const t = C.YYY[a], n = C.YYYYY[a];
3276
+ let r = C.YYYY.exec(e) || n.exec(e);
3277
3277
  if (r) {
3278
3278
  const s = r[1];
3279
3279
  return {
@@ -3281,7 +3281,7 @@ function Wr(e, a) {
3281
3281
  restDateString: e.slice(s.length)
3282
3282
  };
3283
3283
  }
3284
- if (r = N.YY.exec(e) || t.exec(e), r) {
3284
+ if (r = C.YY.exec(e) || t.exec(e), r) {
3285
3285
  const s = r[1];
3286
3286
  return {
3287
3287
  year: parseInt(s, 10) * 100,
@@ -3299,22 +3299,22 @@ function Er(e, a) {
3299
3299
  let t, n, r;
3300
3300
  if (!e || !e.length)
3301
3301
  return t = /* @__PURE__ */ new Date(0), t.setUTCFullYear(a), t;
3302
- let s = N.MM.exec(e);
3302
+ let s = C.MM.exec(e);
3303
3303
  if (s)
3304
3304
  return t = /* @__PURE__ */ new Date(0), n = parseInt(s[1], 10) - 1, Yt(a, n) ? (t.setUTCFullYear(a, n), t) : /* @__PURE__ */ new Date(NaN);
3305
- if (s = N.DDD.exec(e), s) {
3305
+ if (s = C.DDD.exec(e), s) {
3306
3306
  t = /* @__PURE__ */ new Date(0);
3307
3307
  const o = parseInt(s[1], 10);
3308
3308
  return Ur(a, o) ? (t.setUTCFullYear(a, 0, o), t) : /* @__PURE__ */ new Date(NaN);
3309
3309
  }
3310
- if (s = N.MMDD.exec(e), s) {
3310
+ if (s = C.MMDD.exec(e), s) {
3311
3311
  t = /* @__PURE__ */ new Date(0), n = parseInt(s[1], 10) - 1;
3312
3312
  const o = parseInt(s[2], 10);
3313
3313
  return Yt(a, n, o) ? (t.setUTCFullYear(a, n, o), t) : /* @__PURE__ */ new Date(NaN);
3314
3314
  }
3315
- if (s = N.Www.exec(e), s)
3315
+ if (s = C.Www.exec(e), s)
3316
3316
  return r = parseInt(s[1], 10) - 1, Bt(r) ? Et(a, r) : /* @__PURE__ */ new Date(NaN);
3317
- if (s = N.WwwD.exec(e), s) {
3317
+ if (s = C.WwwD.exec(e), s) {
3318
3318
  r = parseInt(s[1], 10) - 1;
3319
3319
  const o = parseInt(s[2], 10) - 1;
3320
3320
  return Bt(r, o) ? Et(a, r, o) : /* @__PURE__ */ new Date(NaN);
@@ -3322,12 +3322,12 @@ function Er(e, a) {
3322
3322
  return null;
3323
3323
  }
3324
3324
  function Yr(e) {
3325
- let a, t, n = N.HH.exec(e);
3325
+ let a, t, n = C.HH.exec(e);
3326
3326
  if (n)
3327
3327
  return a = parseFloat(n[1].replace(",", ".")), Se(a) ? a % 24 * Me : NaN;
3328
- if (n = N.HHMM.exec(e), n)
3328
+ if (n = C.HHMM.exec(e), n)
3329
3329
  return a = parseInt(n[1], 10), t = parseFloat(n[2].replace(",", ".")), Se(a, t) ? a % 24 * Me + t * Wt : NaN;
3330
- if (n = N.HHMMSS.exec(e), n) {
3330
+ if (n = C.HHMMSS.exec(e), n) {
3331
3331
  a = parseInt(n[1], 10), t = parseInt(n[2], 10);
3332
3332
  const r = parseFloat(n[3].replace(",", "."));
3333
3333
  return Se(a, t, r) ? a % 24 * Me + t * Wt + r * 1e3 : NaN;
@@ -3382,7 +3382,7 @@ function Vr(e, a, t = {}) {
3382
3382
  return m ? i.substring(0, l - 1) + i.substring(l + 1) : i;
3383
3383
  }, a);
3384
3384
  }
3385
- return Rn(e, a, t);
3385
+ return Pn(e, a, t);
3386
3386
  }
3387
3387
  function Ar(e, a, t) {
3388
3388
  e = fe(e, t);
@@ -3565,7 +3565,7 @@ var Y = /* @__PURE__ */ ((e) => (e.default = "default", e.pay = "pay", e.auto =
3565
3565
  const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3566
3566
  __proto__: null,
3567
3567
  PaymentType: Y
3568
- }, Symbol.toStringTag, { value: "Module" })), Re = {
3568
+ }, Symbol.toStringTag, { value: "Module" })), Pe = {
3569
3569
  depositBank: !1,
3570
3570
  depositDateTime: !1,
3571
3571
  depositDetail: !1,
@@ -3579,7 +3579,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3579
3579
  type: Y.unknown,
3580
3580
  promo: [],
3581
3581
  bank: [],
3582
- requiredField: Re,
3582
+ requiredField: Pe,
3583
3583
  hintMsg: ""
3584
3584
  }, gs = (e) => {
3585
3585
  var a;
@@ -3629,7 +3629,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3629
3629
  paymentList: n
3630
3630
  };
3631
3631
  })) ?? [];
3632
- }, Pe = (e) => {
3632
+ }, Re = (e) => {
3633
3633
  const a = {
3634
3634
  id: -1,
3635
3635
  name: "excludePromo",
@@ -3678,7 +3678,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3678
3678
  name: "manualMethod",
3679
3679
  pathName: e,
3680
3680
  type: n,
3681
- promo: Pe(a.promo),
3681
+ promo: Re(a.promo),
3682
3682
  bank: a.bank.map((s) => {
3683
3683
  const o = s.list && s.list.length > 0 ? s.list[0].mintransaction ?? "0.00" : "0.00", l = s.list && s.list.length > 0 ? s.list[0].maxtransaction ?? "0.00" : "0.00", { amountList: m, minAmount: i, maxAmount: c } = le(
3684
3684
  Number(o),
@@ -3716,7 +3716,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3716
3716
  name: "onlineBankingMethod",
3717
3717
  pathName: e,
3718
3718
  type: n,
3719
- promo: Pe(a.promo),
3719
+ promo: Re(a.promo),
3720
3720
  bank: a.banklist.map((s) => {
3721
3721
  let o = "0.00", l = "0.00";
3722
3722
  const m = s.bankindex ?? 0;
@@ -3734,9 +3734,9 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3734
3734
  min: c,
3735
3735
  max: y
3736
3736
  }, g = s.pg.map((_) => {
3737
- const k = _.mintransaction ?? "0.00", C = _.maxtransaction ?? "0.00", { amountList: D, minAmount: h, maxAmount: b } = le(
3737
+ const k = _.mintransaction ?? "0.00", N = _.maxtransaction ?? "0.00", { amountList: D, minAmount: h, maxAmount: b } = le(
3738
3738
  Number(k),
3739
- Number(C),
3739
+ Number(N),
3740
3740
  t.mdBankLevelDetail.onlinepayment_min,
3741
3741
  t.mdBankLevelDetail.onlinepayment_max
3742
3742
  );
@@ -3757,7 +3757,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3757
3757
  gateway: [p, ...g]
3758
3758
  };
3759
3759
  }),
3760
- requiredField: Re,
3760
+ requiredField: Pe,
3761
3761
  hintMsg: ""
3762
3762
  };
3763
3763
  }, ps = (e, a, t, n) => {
@@ -3804,9 +3804,9 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3804
3804
  name: "autoMethod",
3805
3805
  pathName: e,
3806
3806
  type: r,
3807
- promo: Pe(t.promo),
3807
+ promo: Re(t.promo),
3808
3808
  bank: s,
3809
- requiredField: Re,
3809
+ requiredField: Pe,
3810
3810
  hintMsg: ""
3811
3811
  };
3812
3812
  }, ys = (e, a, t) => {
@@ -3816,7 +3816,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3816
3816
  name: "fixAmountMethod",
3817
3817
  pathName: e,
3818
3818
  type: n,
3819
- promo: Pe(t.promo),
3819
+ promo: Re(t.promo),
3820
3820
  bank: t.bank.map((s) => {
3821
3821
  const o = s.amtlist.map(Number).sort((m, i) => m - i);
3822
3822
  return {
@@ -3827,7 +3827,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3827
3827
  max: o.length > 0 ? o[o.length - 1] : 0
3828
3828
  };
3829
3829
  }),
3830
- requiredField: Re,
3830
+ requiredField: Pe,
3831
3831
  hintMsg: ""
3832
3832
  };
3833
3833
  }, bs = (e) => (e == null ? void 0 : e.map((a) => ({
@@ -3857,6 +3857,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3857
3857
  gameId: c.id_GameMaster,
3858
3858
  platformId: c.id,
3859
3859
  platformCode: c.code,
3860
+ platformName: c.name_platformMaster.trim(),
3860
3861
  platformShortName: c.shortName,
3861
3862
  name: c.name,
3862
3863
  flag: {
@@ -3879,6 +3880,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3879
3880
  gameId: l.id ?? 0,
3880
3881
  platformId: l.id_PlatformProduct ?? 0,
3881
3882
  platformCode: l.code_PlatformProduct ?? "",
3883
+ platformName: (l.name_platformMaster ?? "").trim(),
3882
3884
  platformShortName: l.shortName_PlatformProduct ?? "",
3883
3885
  name: l.name ?? "",
3884
3886
  flag: {
@@ -3897,7 +3899,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3897
3899
  };
3898
3900
  }, Ts = (e) => ({
3899
3901
  list: e.mdGrade.map((a) => {
3900
- 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;
3902
+ var t, n, r, s, o, l, m, i, c, y, p, g, T, _, k, N, 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, Pt, Rt, Dt, kt;
3901
3903
  return {
3902
3904
  id: a.gradeindex,
3903
3905
  is_current_level: !1,
@@ -3934,7 +3936,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3934
3936
  bonus: v(((y = (c = a.benefit) == null ? void 0 : c.monthly) == null ? void 0 : y.bonus) ?? "0"),
3935
3937
  bonus_name: ((g = (p = a.benefit) == null ? void 0 : p.monthly) == null ? void 0 : g.bonus_name) ?? "",
3936
3938
  turnover: v(((_ = (T = a.benefit) == null ? void 0 : T.monthly) == null ? void 0 : _.turnover) ?? "0"),
3937
- turnover_name: ((C = (k = a.benefit) == null ? void 0 : k.monthly) == null ? void 0 : C.turnover_name) ?? ""
3939
+ turnover_name: ((N = (k = a.benefit) == null ? void 0 : k.monthly) == null ? void 0 : N.turnover_name) ?? ""
3938
3940
  },
3939
3941
  weekly: {
3940
3942
  isShow: !0,
@@ -3975,7 +3977,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3975
3977
  isShow: !0,
3976
3978
  bonus: v(((Tt = (_t = a.benefit) == null ? void 0 : _t.salary_20th) == null ? void 0 : Tt.bonus) ?? "0"),
3977
3979
  bonus_name: ((wt = (vt = a.benefit) == null ? void 0 : vt.salary_20th) == null ? void 0 : wt.bonus_name) ?? "",
3978
- turnover: v(((Pt = (Rt = a.benefit) == null ? void 0 : Rt.salary_20th) == null ? void 0 : Pt.turnover) ?? "0"),
3980
+ turnover: v(((Rt = (Pt = a.benefit) == null ? void 0 : Pt.salary_20th) == null ? void 0 : Rt.turnover) ?? "0"),
3979
3981
  turnover_name: ((kt = (Dt = a.benefit) == null ? void 0 : Dt.salary_20th) == null ? void 0 : kt.turnover_name) ?? ""
3980
3982
  }
3981
3983
  }
@@ -4124,10 +4126,10 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4124
4126
  claimable: e === 1,
4125
4127
  expired: e === 0,
4126
4128
  claimed: e === -1
4127
- }), Rs = (e) => e.mdVipSetting.filter((t) => t.status == 1).map((t) => ({
4129
+ }), Ps = (e) => e.mdVipSetting.filter((t) => t.status == 1).map((t) => ({
4128
4130
  fieldName: t.fieldname,
4129
4131
  showName: t.showname
4130
- })), Ps = (e) => ({
4132
+ })), Rs = (e) => ({
4131
4133
  current_deposit: e.deposit,
4132
4134
  current_turnover: e.turnOver,
4133
4135
  current_grade_id: e.mdCurrentGrade ? e.mdCurrentGrade.gradeindex : 0,
@@ -4246,17 +4248,17 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4246
4248
  name: t.company_name,
4247
4249
  date: []
4248
4250
  }))) ?? [];
4249
- }, Cs = (e) => {
4251
+ }, Ns = (e) => {
4250
4252
  var a;
4251
4253
  return ((a = e.data) == null ? void 0 : a.map((t) => {
4252
4254
  var n;
4253
4255
  return {
4254
4256
  id: t.key,
4255
- date: ((n = t.draw_date) == null ? void 0 : n.map((r) => Ns(r.draw_tmactive))) ?? []
4257
+ date: ((n = t.draw_date) == null ? void 0 : n.map((r) => Cs(r.draw_tmactive))) ?? []
4256
4258
  };
4257
4259
  })) ?? [];
4258
4260
  };
4259
- function Ns(e) {
4261
+ function Cs(e) {
4260
4262
  const a = new Date(e * 1e3), t = a.getFullYear(), n = ("0" + (a.getMonth() + 1)).slice(-2), r = ("0" + a.getDate()).slice(-2);
4261
4263
  return `${t}-${n}-${r}`;
4262
4264
  }
@@ -4344,10 +4346,10 @@ const Ls = (e) => {
4344
4346
  status: e.status == 1,
4345
4347
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
4346
4348
  flag: e.flag
4347
- }), P = (e) => ({
4349
+ }), R = (e) => ({
4348
4350
  status: e.status == 1,
4349
4351
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? ""
4350
- }), Ws = (e) => P(e), Es = (e) => {
4352
+ }), Ws = (e) => R(e), Es = (e) => {
4351
4353
  var a, t, n, r, s;
4352
4354
  return {
4353
4355
  bankCard: ((a = e.bankCard) == null ? void 0 : a.map((o) => {
@@ -4414,7 +4416,7 @@ const Ls = (e) => {
4414
4416
  withdrawCount: e.withdrawCount,
4415
4417
  withdrawMin135: Number(e.withdrawMin_135) && Number(e.withdrawMin_135) > 0 ? Number(e.withdrawMin_135) : Number(e.withdrawMin),
4416
4418
  withdrawMax135: Number(e.withdrawMax_135) && Number(e.withdrawMax_135) > 0 ? Number(e.withdrawMax_135) : Number(e.withdrawMax)
4417
- }), Bs = (e) => P(e);
4419
+ }), Bs = (e) => R(e);
4418
4420
  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 || {});
4419
4421
  const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4420
4422
  __proto__: null,
@@ -4557,7 +4559,8 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4557
4559
  gameId: s.id,
4558
4560
  platformId: s.id_PlatformProduct,
4559
4561
  platformCode: s.code_PlatformMaster,
4560
- platformShortName: "",
4562
+ platformName: s.name_PlatformMaster.trim(),
4563
+ platformShortName: s.shortName_PlatformProduct,
4561
4564
  name: s.name,
4562
4565
  flag: {
4563
4566
  value: 0,
@@ -4790,7 +4793,7 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4790
4793
  }
4791
4794
  }
4792
4795
  return a;
4793
- }, po = (e) => P(e), yo = (e) => P(e), bo = (e) => {
4796
+ }, po = (e) => R(e), yo = (e) => R(e), bo = (e) => {
4794
4797
  var a, t, n, r, s;
4795
4798
  return {
4796
4799
  status: e.status == 1,
@@ -4822,7 +4825,7 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4822
4825
  regex: a.regex,
4823
4826
  showName: a.showname,
4824
4827
  inputHelper: a.inputHelper
4825
- })) : [], _o = (e) => P(e), To = (e) => e, vo = (e) => {
4828
+ })) : [], _o = (e) => R(e), To = (e) => e, vo = (e) => {
4826
4829
  var a;
4827
4830
  return {
4828
4831
  status: e.status == 1,
@@ -4832,15 +4835,15 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4832
4835
  ledgerIndex: e.checkgame.ledgerindex ?? 0,
4833
4836
  amount: e.checkgame.amount ?? ""
4834
4837
  };
4835
- }, wo = (e) => P(e), Ro = (e) => ({
4838
+ }, wo = (e) => R(e), Po = (e) => ({
4836
4839
  status: e.status == 1,
4837
4840
  message: e.message,
4838
4841
  user: e.user ?? ""
4839
- }), Po = (e) => ({
4842
+ }), Ro = (e) => ({
4840
4843
  status: e.status == 1,
4841
4844
  message: e.msg ?? "",
4842
4845
  amount: e.amount ?? ""
4843
- }), Do = (e) => P(e), ko = (e) => {
4846
+ }), Do = (e) => R(e), ko = (e) => {
4844
4847
  var a;
4845
4848
  return {
4846
4849
  status: e.status == 1,
@@ -4874,10 +4877,10 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4874
4877
  message: e.msg ?? "",
4875
4878
  form: e.form ?? "",
4876
4879
  gameUrl: e.data ?? ""
4877
- }), So = (e) => P(e), Io = (e) => P(e), je = (e) => ({
4880
+ }), So = (e) => R(e), Io = (e) => R(e), je = (e) => ({
4878
4881
  status: e.status == 1,
4879
4882
  message: e.errormessage ?? ""
4880
- }), jo = (e) => P(e), Co = (e) => e, No = (e) => P(e), Lo = (e) => {
4883
+ }), jo = (e) => R(e), No = (e) => e, Co = (e) => R(e), Lo = (e) => {
4881
4884
  var a;
4882
4885
  return {
4883
4886
  platformProduct: ((a = e.mdPlatformProduct) == null ? void 0 : a.map((t) => ({
@@ -4901,7 +4904,7 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4901
4904
  }))) ?? []
4902
4905
  };
4903
4906
  })) ?? [];
4904
- }, 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) => ({
4907
+ }, Go = (e) => R(e), Fo = (e) => R(e), zo = (e) => R(e), Wo = (e) => R(e), Eo = (e) => R(e), Yo = (e) => R(e), Bo = (e) => R(e), Ho = (e) => ({
4905
4908
  status: e.status == 1,
4906
4909
  message: e.msg ?? "",
4907
4910
  data: e.data
@@ -5063,7 +5066,7 @@ const Yu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5063
5066
  binded: ((n = e.data) == null ? void 0 : n.binded) ?? !1
5064
5067
  }
5065
5068
  };
5066
- }, ai = (e) => P(e), ni = (e) => {
5069
+ }, ai = (e) => R(e), ni = (e) => {
5067
5070
  var a;
5068
5071
  return {
5069
5072
  status: e.status == 1,
@@ -5073,7 +5076,7 @@ const Yu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5073
5076
  createdAt: t.created_at
5074
5077
  }))) ?? []
5075
5078
  };
5076
- }, ri = (e) => P(e), si = (e) => {
5079
+ }, ri = (e) => R(e), si = (e) => {
5077
5080
  var a, t, n;
5078
5081
  return {
5079
5082
  status: e.status == 1,
@@ -5098,11 +5101,11 @@ const Yu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5098
5101
  }))) ?? []
5099
5102
  }
5100
5103
  };
5101
- }, oi = (e) => P(e), ii = (e) => ({
5104
+ }, oi = (e) => R(e), ii = (e) => ({
5102
5105
  status: e.status == 1,
5103
5106
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
5104
5107
  tokenAmount: e.token_amount
5105
- }), ui = (e) => P(e), ci = (e) => {
5108
+ }), ui = (e) => R(e), ci = (e) => {
5106
5109
  let a = 0;
5107
5110
  return e.data != null && typeof e.data == "object" && (a = e.data.amount), {
5108
5111
  status: e.status,
@@ -5185,7 +5188,7 @@ const Yu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5185
5188
  errorMessage: e.errormessage ?? "",
5186
5189
  isAutoTransfer: e.optionkey == "auto" || ((a = e.message) == null ? void 0 : a.optionkey) == "auto" || ((t = e.mdAccountSetting) == null ? void 0 : t.optionkey) == "auto"
5187
5190
  };
5188
- }, yi = (e) => P(e), bi = (e) => ({
5191
+ }, yi = (e) => R(e), bi = (e) => ({
5189
5192
  status: e.status,
5190
5193
  message: e.msg ?? "",
5191
5194
  turnover: e.data ? e.data.turnover : 0,
@@ -5267,7 +5270,7 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5267
5270
  }, wi = (e) => ({
5268
5271
  status: e.status,
5269
5272
  message: e.msg ?? ""
5270
- }), Ri = (e) => ({
5273
+ }), Pi = (e) => ({
5271
5274
  status: e.status == 1,
5272
5275
  socialLogin: e.social_login == 1,
5273
5276
  errorMessage: e.erorrmessage ?? "",
@@ -5279,14 +5282,15 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5279
5282
  maxLength: a.maxlen ?? "0",
5280
5283
  inputHelper: a.inputHelper ?? ""
5281
5284
  }))
5282
- }), Pi = (e) => ({
5285
+ }), Ri = (e) => ({
5283
5286
  currentPage: e.mdGameLists.current_page ?? 0,
5284
5287
  lastPage: e.mdGameLists.last_page ?? 0,
5285
5288
  data: e.mdGameLists.data && e.mdGameLists.data.length > 0 ? e.mdGameLists.data.map((a) => ({
5286
5289
  gameId: a.id,
5287
5290
  platformId: a.id_PlatformProduct,
5288
5291
  platformCode: a.code,
5289
- platformShortName: "",
5292
+ platformName: a.name_platformMaster.trim(),
5293
+ platformShortName: a.shortName_PlatformProduct,
5290
5294
  name: a.name,
5291
5295
  flag: {
5292
5296
  value: 0,
@@ -5299,7 +5303,7 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5299
5303
  rate: "0.00",
5300
5304
  jackpotAmount: ""
5301
5305
  })) ?? [] : []
5302
- }), Di = (e) => P(e), ki = (e) => P(e);
5306
+ }), Di = (e) => R(e), ki = (e) => R(e);
5303
5307
  var A = /* @__PURE__ */ ((e) => (e.inProgress = "inProgress", e.collectable = "collectable", e.collected = "collected", e))(A || {});
5304
5308
  const Hu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5305
5309
  __proto__: null,
@@ -5393,7 +5397,7 @@ const Hu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5393
5397
  }, ji = (e) => (console.log(e), {
5394
5398
  status: e.status,
5395
5399
  message: e.message ?? ""
5396
- }), Ci = (e) => ({
5400
+ }), Ni = (e) => ({
5397
5401
  status: e.status == 1,
5398
5402
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
5399
5403
  coinList: e.data.map((a) => ({
@@ -5404,7 +5408,7 @@ const Hu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5404
5408
  networkId: t.network_id
5405
5409
  })) ?? []
5406
5410
  })) ?? []
5407
- }), Ni = (e) => ({
5411
+ }), Ci = (e) => ({
5408
5412
  status: e.status == 1,
5409
5413
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
5410
5414
  address: e.data ?? ""
@@ -5589,7 +5593,8 @@ const Uu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5589
5593
  gameId: s.id,
5590
5594
  platformId: s.id_PlatformProduct,
5591
5595
  platformCode: s.code,
5592
- platformShortName: "",
5596
+ platformName: s.name_platformMaster.trim(),
5597
+ platformShortName: s.shortName_PlatformProduct,
5593
5598
  name: s.name,
5594
5599
  flag: {
5595
5600
  value: 0,
@@ -5622,7 +5627,7 @@ const Uu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5622
5627
  status: e.status == 1,
5623
5628
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
5624
5629
  tokenAmount: e.token_amount
5625
- }), Ji = (e) => P(e);
5630
+ }), Ji = (e) => R(e);
5626
5631
  var J = /* @__PURE__ */ ((e) => (e.inProgress = "inProgress", e.collectable = "collectable", e.collected = "collected", e))(J || {});
5627
5632
  const qu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5628
5633
  __proto__: null,
@@ -5884,13 +5889,13 @@ const Vu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5884
5889
  code: "",
5885
5890
  value: a.list.map((d) => d.benefit_list.salary_1st.turnover)
5886
5891
  });
5887
- const C = n.findIndex(
5892
+ const N = n.findIndex(
5888
5893
  (d) => d.fieldName == "salary_bonus_10th"
5889
5894
  );
5890
5895
  a.list.map((d) => {
5891
- d.benefit_list.salary_10th.isShow = C > -1;
5892
- }), a.bonus.salary_10th.isShow = C > -1, C > -1 && r.push({
5893
- name: n[C].showName,
5896
+ d.benefit_list.salary_10th.isShow = N > -1;
5897
+ }), a.bonus.salary_10th.isShow = N > -1, N > -1 && r.push({
5898
+ name: n[N].showName,
5894
5899
  code: "",
5895
5900
  value: a.list.map((d) => d.benefit_list.salary_10th.bonus)
5896
5901
  });
@@ -6210,10 +6215,10 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6210
6215
  replyBy: a.replyby ?? "",
6211
6216
  replyOn: a.replyon ?? ""
6212
6217
  })) ?? []
6213
- }, Ru = (e) => ({
6218
+ }, Pu = (e) => ({
6214
6219
  status: e.status == 1,
6215
6220
  message: e.message ?? ""
6216
- }), Pu = (e) => {
6221
+ }), Ru = (e) => {
6217
6222
  if (u.casinoGameList in e && (e != null && e.casinoGameList)) {
6218
6223
  const a = e.casinoGameList;
6219
6224
  if (u.getPlatformTurnoverRate in e && (e != null && e.getPlatformTurnoverRate)) {
@@ -6245,7 +6250,8 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6245
6250
  gameId: s.id,
6246
6251
  platformId: s.id_PlatformProduct,
6247
6252
  platformCode: s.code_PlatformMaster,
6248
- platformShortName: "",
6253
+ platformName: s.name_PlatformMaster.trim(),
6254
+ platformShortName: s.shortName_PlatformProduct,
6249
6255
  name: s.name,
6250
6256
  flag: {
6251
6257
  value: 0,
@@ -6307,10 +6313,10 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6307
6313
  o.result[i] = ws(c);
6308
6314
  break;
6309
6315
  case u.vipFieldStatus:
6310
- o.result[i] = Rs(c);
6316
+ o.result[i] = Ps(c);
6311
6317
  break;
6312
6318
  case u.vipStatus:
6313
- o.result[i] = Ps(c);
6319
+ o.result[i] = Rs(c);
6314
6320
  break;
6315
6321
  case u.promotion:
6316
6322
  o.result[i] = vs(c);
@@ -6345,7 +6351,7 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6345
6351
  o.result[i] = js(c);
6346
6352
  break;
6347
6353
  case u.searchResultDate:
6348
- o.result[i] = Cs(
6354
+ o.result[i] = Ns(
6349
6355
  c
6350
6356
  );
6351
6357
  break;
@@ -6521,12 +6527,12 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6521
6527
  o.result[i] = wo(c);
6522
6528
  break;
6523
6529
  case u.getUsernameByRefer:
6524
- o.result[i] = Ro(
6530
+ o.result[i] = Po(
6525
6531
  c
6526
6532
  );
6527
6533
  break;
6528
6534
  case u.applyPromo:
6529
- o.result[i] = Po(c);
6535
+ o.result[i] = Ro(c);
6530
6536
  break;
6531
6537
  case u.applyRedPacket:
6532
6538
  o.result[i] = Do(c);
@@ -6563,10 +6569,10 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6563
6569
  );
6564
6570
  break;
6565
6571
  case u.friendList:
6566
- o.result[i] = Co(c);
6572
+ o.result[i] = No(c);
6567
6573
  break;
6568
6574
  case u.friendListEdit:
6569
- o.result[i] = No(c);
6575
+ o.result[i] = Co(c);
6570
6576
  break;
6571
6577
  case u.getActivePP:
6572
6578
  o.result[i] = Lo(c);
@@ -6754,10 +6760,10 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6754
6760
  );
6755
6761
  break;
6756
6762
  case u.registerForm:
6757
- o.result[i] = Ri(c);
6763
+ o.result[i] = Pi(c);
6758
6764
  break;
6759
6765
  case u.getFavouriteGame:
6760
- o.result[i] = Pi(
6766
+ o.result[i] = Ri(
6761
6767
  c
6762
6768
  );
6763
6769
  break;
@@ -6802,10 +6808,10 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6802
6808
  );
6803
6809
  break;
6804
6810
  case u.getCryptoList:
6805
- o.result[i] = Ci(c);
6811
+ o.result[i] = Ni(c);
6806
6812
  break;
6807
6813
  case u.getCryptoAddress:
6808
- o.result[i] = Ni(
6814
+ o.result[i] = Ci(
6809
6815
  c
6810
6816
  );
6811
6817
  break;
@@ -6892,14 +6898,14 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6892
6898
  o.result[i] = wu(c);
6893
6899
  break;
6894
6900
  case u.submitFeedback:
6895
- o.result[i] = Ru(c);
6901
+ o.result[i] = Pu(c);
6896
6902
  break;
6897
6903
  case u.casinoGameList:
6898
6904
  o.result[i] = ku(c);
6899
6905
  break;
6900
6906
  }
6901
6907
  }
6902
- return o.result = iu(o.result), o.result = au(o.result), o.result = ru(o.result), o.result = ou(o.result), o.result = lu(o.result), o.result = mu(o.result), o.result = gu(o.result), o.result = yu(o.result), o.result = bu(o.result), o.result = Pu(o.result), o;
6908
+ return o.result = iu(o.result), o.result = au(o.result), o.result = ru(o.result), o.result = ou(o.result), o.result = lu(o.result), o.result = mu(o.result), o.result = gu(o.result), o.result = yu(o.result), o.result = bu(o.result), o.result = Ru(o.result), o;
6903
6909
  } catch (n) {
6904
6910
  return Kt.isAxiosError(n) ? {
6905
6911
  status: ((a = n.response) == null ? void 0 : a.status) || 600,
@@ -7049,7 +7055,7 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7049
7055
  status: !1,
7050
7056
  message: ""
7051
7057
  }
7052
- }, Cu = async (e, a) => {
7058
+ }, Nu = async (e, a) => {
7053
7059
  let t = {
7054
7060
  status: 200,
7055
7061
  message: "",
@@ -7076,8 +7082,8 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7076
7082
  return t;
7077
7083
  }, tc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7078
7084
  __proto__: null,
7079
- call: Cu
7080
- }, Symbol.toStringTag, { value: "Module" })), Nu = async (e, a, t, n, r) => {
7085
+ call: Nu
7086
+ }, Symbol.toStringTag, { value: "Module" })), Cu = async (e, a, t, n, r) => {
7081
7087
  let s = {
7082
7088
  status: 200,
7083
7089
  message: "",
@@ -7117,7 +7123,7 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7117
7123
  return s;
7118
7124
  }, ac = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7119
7125
  __proto__: null,
7120
- call: Nu
7126
+ call: Cu
7121
7127
  }, Symbol.toStringTag, { value: "Module" })), Jt = {
7122
7128
  data: {
7123
7129
  status: !1,
@@ -7195,10 +7201,10 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7195
7201
  __proto__: null
7196
7202
  }, Symbol.toStringTag, { value: "Module" })), wc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7197
7203
  __proto__: null
7198
- }, Symbol.toStringTag, { value: "Module" })), Rc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7199
- __proto__: null
7200
7204
  }, Symbol.toStringTag, { value: "Module" })), Pc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7201
7205
  __proto__: null
7206
+ }, Symbol.toStringTag, { value: "Module" })), Rc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7207
+ __proto__: null
7202
7208
  }, Symbol.toStringTag, { value: "Module" })), Dc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7203
7209
  __proto__: null
7204
7210
  }, Symbol.toStringTag, { value: "Module" })), kc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
@@ -7215,10 +7221,10 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7215
7221
  __proto__: null
7216
7222
  }, Symbol.toStringTag, { value: "Module" })), jc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7217
7223
  __proto__: null
7218
- }, Symbol.toStringTag, { value: "Module" })), Cc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7219
- __proto__: null
7220
7224
  }, Symbol.toStringTag, { value: "Module" })), Nc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7221
7225
  __proto__: null
7226
+ }, Symbol.toStringTag, { value: "Module" })), Cc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7227
+ __proto__: null
7222
7228
  }, Symbol.toStringTag, { value: "Module" })), Lc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7223
7229
  __proto__: null
7224
7230
  }, Symbol.toStringTag, { value: "Module" })), $c = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
@@ -7306,10 +7312,10 @@ const qc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7306
7312
  __proto__: null
7307
7313
  }, Symbol.toStringTag, { value: "Module" })), wl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7308
7314
  __proto__: null
7309
- }, Symbol.toStringTag, { value: "Module" })), Rl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7310
- __proto__: null
7311
7315
  }, Symbol.toStringTag, { value: "Module" })), Pl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7312
7316
  __proto__: null
7317
+ }, Symbol.toStringTag, { value: "Module" })), Rl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7318
+ __proto__: null
7313
7319
  }, Symbol.toStringTag, { value: "Module" })), Dl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7314
7320
  __proto__: null
7315
7321
  }, Symbol.toStringTag, { value: "Module" })), kl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
@@ -7326,10 +7332,10 @@ const qc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7326
7332
  __proto__: null
7327
7333
  }, Symbol.toStringTag, { value: "Module" })), jl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7328
7334
  __proto__: null
7329
- }, Symbol.toStringTag, { value: "Module" })), Cl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7330
- __proto__: null
7331
7335
  }, Symbol.toStringTag, { value: "Module" })), Nl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7332
7336
  __proto__: null
7337
+ }, Symbol.toStringTag, { value: "Module" })), Cl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7338
+ __proto__: null
7333
7339
  }, Symbol.toStringTag, { value: "Module" })), Ll = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7334
7340
  __proto__: null
7335
7341
  }, Symbol.toStringTag, { value: "Module" })), $l = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
@@ -7415,14 +7421,14 @@ const qc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7415
7421
  }, Symbol.toStringTag, { value: "Module" }));
7416
7422
  export {
7417
7423
  pc as addBankCardType,
7418
- Pl as agTransferCreditReportType,
7424
+ Rl as agTransferCreditReportType,
7419
7425
  oc as announcementType,
7420
7426
  Qu as api,
7421
7427
  zu as apiType,
7422
7428
  fd as applyGoldEggType,
7423
7429
  el as applyPromoType,
7424
7430
  al as applyRedPacketType,
7425
- Nl as applyReliefFund,
7431
+ Cl as applyReliefFund,
7426
7432
  tl as applySignInType,
7427
7433
  gc as applyVipBonusType,
7428
7434
  zl as applyWeekCard,
@@ -7441,7 +7447,7 @@ export {
7441
7447
  fl as commissionWithdrawType,
7442
7448
  Fu as config,
7443
7449
  mc as depositType,
7444
- Rc as fishGameListType,
7450
+ Pc as fishGameListType,
7445
7451
  cl as friendListEditType,
7446
7452
  ul as friendListType,
7447
7453
  ic as gameListType,
@@ -7463,7 +7469,7 @@ export {
7463
7469
  qc as getImageType,
7464
7470
  Bl as getIncentiveData,
7465
7471
  Hl as getIncentiveRebate,
7466
- Cc as getInviteRewardClaimType,
7472
+ Nc as getInviteRewardClaimType,
7467
7473
  xc as getInviteRewardDataType,
7468
7474
  Oc as getInviteRewardReportType,
7469
7475
  $c as getInviteRewardSettingType,
@@ -7477,7 +7483,7 @@ export {
7477
7483
  $l as getReliefFundReport,
7478
7484
  Ic as getRewardReferralType,
7479
7485
  Vu as getSettingType,
7480
- Nc as getTopUpRewardClaimType,
7486
+ Cc as getTopUpRewardClaimType,
7481
7487
  Gc as getTopUpRewardSettingType,
7482
7488
  Mc as getTopupRewardDataType,
7483
7489
  Sc as getTopupRewardReportType,
@@ -7520,7 +7526,7 @@ export {
7520
7526
  Jl as rebateRefundSettingType,
7521
7527
  wl as referralMemberProfileType,
7522
7528
  vl as referralProfileType,
7523
- Rl as registerActionType,
7529
+ Pl as registerActionType,
7524
7530
  ql as registerFormType,
7525
7531
  zc as requestForgetPasswordType,
7526
7532
  Ql as requestForgetUsernameType,
@@ -7533,7 +7539,7 @@ export {
7533
7539
  tc as setLocaleApi,
7534
7540
  Tl as signInRecordType,
7535
7541
  _l as signInViewInfoType,
7536
- Pc as slotGameListType,
7542
+ Rc as slotGameListType,
7537
7543
  ld as spinWheelType,
7538
7544
  yl as submitCryptoAccountType,
7539
7545
  Td as submitFeedbackType,
@@ -7545,7 +7551,7 @@ export {
7545
7551
  xl as submitTwoFactorAuthenticateType,
7546
7552
  Hc as submitUpdateMobileTacCode,
7547
7553
  ol as submitValidateType,
7548
- Cl as submitWithdrawalAlipayType,
7554
+ Nl as submitWithdrawalAlipayType,
7549
7555
  pl as submitWithdrawalCodeType,
7550
7556
  Xu as telegramLoginApi,
7551
7557
  Eu as transactionReportType,