60p82u21t54k 0.0.73 → 0.0.75

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.
Files changed (57) hide show
  1. package/dist/60p82u21t54k.es.js +995 -899
  2. package/dist/60p82u21t54k.umd.js +1 -1
  3. package/dist/api/api.d.ts.map +1 -1
  4. package/dist/main.d.ts +0 -1
  5. package/dist/model/announcement/type.d.ts +3 -2
  6. package/dist/model/announcement/type.d.ts.map +1 -1
  7. package/dist/model/cmsList/type.d.ts +5 -4
  8. package/dist/model/cmsList/type.d.ts.map +1 -1
  9. package/dist/model/fishGameList/type.d.ts +3 -2
  10. package/dist/model/fishGameList/type.d.ts.map +1 -1
  11. package/dist/model/friendList/type.d.ts +6 -5
  12. package/dist/model/friendList/type.d.ts.map +1 -1
  13. package/dist/model/gameList/getGameListResponse.d.ts +38 -6
  14. package/dist/model/gameList/getGameListResponse.d.ts.map +1 -1
  15. package/dist/model/gameList/type.d.ts +11 -4
  16. package/dist/model/gameList/type.d.ts.map +1 -1
  17. package/dist/model/getCompany/type.d.ts +3 -2
  18. package/dist/model/getCompany/type.d.ts.map +1 -1
  19. package/dist/model/getCountryMobile/type.d.ts +3 -2
  20. package/dist/model/getCountryMobile/type.d.ts.map +1 -1
  21. package/dist/model/getInviteRewardReport/type.d.ts +9 -8
  22. package/dist/model/getInviteRewardReport/type.d.ts.map +1 -1
  23. package/dist/model/getLanguageSetting/type.d.ts +3 -2
  24. package/dist/model/getLanguageSetting/type.d.ts.map +1 -1
  25. package/dist/model/getPlatformTurnoverRate/type.d.ts +3 -2
  26. package/dist/model/getPlatformTurnoverRate/type.d.ts.map +1 -1
  27. package/dist/model/getReliefFundData/type.d.ts +8 -7
  28. package/dist/model/getReliefFundData/type.d.ts.map +1 -1
  29. package/dist/model/getReliefFundReport/type.d.ts +3 -2
  30. package/dist/model/getReliefFundReport/type.d.ts.map +1 -1
  31. package/dist/model/getTopupRewardReport/type.d.ts +7 -6
  32. package/dist/model/getTopupRewardReport/type.d.ts.map +1 -1
  33. package/dist/model/getTurnOverRewardReport/type.d.ts +7 -6
  34. package/dist/model/getTurnOverRewardReport/type.d.ts.map +1 -1
  35. package/dist/model/mailBox/type.d.ts +3 -2
  36. package/dist/model/mailBox/type.d.ts.map +1 -1
  37. package/dist/model/promotion/type.d.ts +2 -2
  38. package/dist/model/promotion/type.d.ts.map +1 -1
  39. package/dist/model/searchByDate/type.d.ts +23 -21
  40. package/dist/model/searchByDate/type.d.ts.map +1 -1
  41. package/dist/model/searchHot/type.d.ts +5 -4
  42. package/dist/model/searchHot/type.d.ts.map +1 -1
  43. package/dist/model/searchNumberHistory/type.d.ts +2 -2
  44. package/dist/model/searchNumberHistory/type.d.ts.map +1 -1
  45. package/dist/model/searchResultDate/type.d.ts +3 -2
  46. package/dist/model/searchResultDate/type.d.ts.map +1 -1
  47. package/dist/model/slotGameList/type.d.ts +9 -7
  48. package/dist/model/slotGameList/type.d.ts.map +1 -1
  49. package/dist/model/upcomingMatches/type.d.ts +3 -2
  50. package/dist/model/upcomingMatches/type.d.ts.map +1 -1
  51. package/dist/model/vipFieldStatus/type.d.ts +3 -2
  52. package/dist/model/vipFieldStatus/type.d.ts.map +1 -1
  53. package/dist/model/vipList/type.d.ts +54 -52
  54. package/dist/model/vipList/type.d.ts.map +1 -1
  55. package/dist/model/wallet/type.d.ts +3 -2
  56. package/dist/model/wallet/type.d.ts.map +1 -1
  57. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  import X from "axios";
2
- const I = X.create({
2
+ const L = X.create({
3
3
  baseURL: "/graph",
4
4
  timeout: 5e3,
5
5
  // Request timeout
@@ -45,11 +45,11 @@ const I = X.create({
45
45
  // },
46
46
  // },
47
47
  });
48
- I.interceptors.request.use(
48
+ L.interceptors.request.use(
49
49
  (e) => e,
50
50
  (e) => (console.error("Error request:", e.response), Promise.reject(e))
51
51
  );
52
- I.interceptors.response.use(
52
+ L.interceptors.response.use(
53
53
  (e) => e,
54
54
  (e) => {
55
55
  const t = {
@@ -59,23 +59,23 @@ I.interceptors.response.use(
59
59
  return e.response ? (t.status = e.response.status, t.message = e.response.data.message || e.response.statusText, console.error("Error response:", JSON.stringify(t)), 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(t);
60
60
  }
61
61
  );
62
- const te = (e) => new TextEncoder().encode(e), ne = (e) => {
62
+ const ne = (e) => new TextEncoder().encode(e), ae = (e) => {
63
63
  try {
64
64
  return atob(e);
65
65
  } catch (t) {
66
66
  return console.error("Failed to decode Base64:", t), "";
67
67
  }
68
- }, ae = () => {
69
- const e = /* @__PURE__ */ new Date(), t = e.getFullYear(), n = e.getMonth(), l = new Date(t, n, 1, 12, 0, 0), s = new Date(t, n + 1, 1, 12, 0, 0), u = Math.floor(
70
- (s.getTime() - e.getTime()) / 1e3
68
+ }, oe = () => {
69
+ const e = /* @__PURE__ */ new Date(), t = e.getFullYear(), n = e.getMonth(), l = new Date(t, n, 1, 12, 0, 0), i = new Date(t, n + 1, 1, 12, 0, 0), u = Math.floor(
70
+ (i.getTime() - e.getTime()) / 1e3
71
71
  ), d = Math.floor(
72
- (s.getTime() - l.getTime()) / 1e3
72
+ (i.getTime() - l.getTime()) / 1e3
73
73
  ), m = d - u;
74
74
  return {
75
75
  monthRemainingTime: u,
76
76
  monthProgressPercentage: Math.round(m / d * 100)
77
77
  };
78
- }, oe = () => {
78
+ }, re = () => {
79
79
  const e = /* @__PURE__ */ new Date(), t = e.getDay(), n = t === 1 ? 7 : 8 - t, l = new Date(
80
80
  e.getFullYear(),
81
81
  e.getMonth(),
@@ -84,12 +84,12 @@ const te = (e) => new TextEncoder().encode(e), ne = (e) => {
84
84
  0,
85
85
  0,
86
86
  0
87
- ), s = Math.floor((l.getTime() - e.getTime()) / 1e3), g = 7 * 24 * 60 * 60;
88
- return console.log(s), console.log(g), {
89
- weekRemainingTime: s,
90
- weekProgressPercentage: Math.round(s / g * 100)
87
+ ), i = Math.floor((l.getTime() - e.getTime()) / 1e3), g = 7 * 24 * 60 * 60;
88
+ return console.log(i), console.log(g), {
89
+ weekRemainingTime: i,
90
+ weekProgressPercentage: Math.round(i / g * 100)
91
91
  };
92
- }, re = () => {
92
+ }, se = () => {
93
93
  const e = /* @__PURE__ */ new Date(), t = new Date(
94
94
  e.getFullYear(),
95
95
  e.getMonth(),
@@ -104,56 +104,56 @@ const te = (e) => new TextEncoder().encode(e), ne = (e) => {
104
104
  dayProgressPercentage: Math.round(n / d * 100)
105
105
  };
106
106
  };
107
- var i = /* @__PURE__ */ ((e) => (e.announcement = "announcement", e.gameList = "gameList", e.fishGameList = "fishGameList", e.cmsList = "cmsList", e.paymentsProvider = "paymentsProvider", e.getUserProfile = "getUserProfile", e.vipList = "vipList", e.vipStatus = "vipStatus", e.vipBonus = "vipBonus", e.vipFieldStatus = "vipFieldStatus", e.promotion = "promotion", e.getSetting = "getSetting", e.getCountryMobile = "getCountryMobile", e.getPlatformTurnoverRate = "getPlatformTurnoverRate", e.mainWallet = "mainWallet", e.getLanguageSetting = "getLanguageSetting", e.getFourDimensionData = "getfourDimensionData", e.getCompany = "getCompany", e.searchResultDate = "searchResultDate", e.searchHot = "searchHot", e.searchByDate = "searchByDate", e.upcomingMatches = "upcomingMatches", e.deposit = "deposit", e.applyVipBonus = "applyVipBonus", e.getBankCardData = "getBankCardData", e.withdrawalGet = "withdrawalGet", e.withdraw = "withdraw", e.addBankCard = "addBankCard", e.transactionReport = "transactionReport", e.changePassword = "changePassword", e.wallet = "wallet", e.getEventList = "getEventlist", e.getEventToken = "getEventToken", e.getExtraGame = "getExtraGame", e.mailBox = "mailBox", e.slotGameList = "slotGameList", e.getTurnOverRewardData = "getTurnOverRewardData", e.getTurnOverRewardReport = "getTurnOverRewardReport", e.getInviteRewardData = "getInviteRewardData", e.getInviteRewardReport = "getInviteRewardReport", e.getTopupRewardData = "getTopupRewardData", e.getTopupRewardReport = "getTopupRewardReport", e.getRewardReferral = "getRewardReferral", e.submitWithdrawValidate = "submitWithdrawValidate", e.getDepositPromotion = "getDepositPromotion", e.getInviteRewardClaim = "getInviteRewardClaim", e.getTopUpRewardClaim = "getTopupRewardClaim", e.getTurnOverRewardClaim = "getTurnOverRewardClaim", e.getInviteRewardSetting = "getInviteRewardSetting", e.getTopUpRewardSetting = "getTopupRewardSetting", e.getTurnOverRewardSetting = "getTurnOverRewardSetting", e.requestForgetPassword = "requestForgetPassword", e.submitForgetPassword = "submitForgetPassword", e.getImage = "getImage", e.getDepositValidate = "getDepositValidate", e.getTransferCreditValidate = "getTransferCreditValidate", e.getWithdrawValidate = "getWithdrawValidate", e.updateProfilePicture = "updateProfilePicture", e.readMail = "readMail", e.checkRedPacketValidate = "checkRedpacketValidate", e.requestTacCode = "requestTacCode", e.getUsernameByRefer = "getUsernameByRefer", e.applyPromo = "applyPromo", e.applyRedPacket = "applyRedpacket", e.applySignIn = "applySignIn", e.getCountry = "getCountry", e.submitGiftCode = "submitGiftCode", e.playGame = "playGame", e.transferToMain = "transferToMain", e.transferProcess = "transferProcess", e.submitDepositValidate = "submitDepositValidate", e.submitTransferCreditValidate = "submitTransferCreditValidate", e.checkTransferCredit = "checkTransferCredit", e.friendList = "friendList", e.friendListEdit = "friendListEdit", e.getActivePP = "getActivePP", e.getActiveProduct = "getActiveProduct", e.requestWithdrawTac = "requestWithdrawTac", e.requestWithdrawalCode = "requestWithdrawalCode", e.commissionWithdraw = "commissionWithdraw", e.submitWithdrawalCode = "submitWithdrawalCode", e.submitCryptoAccount = "submitCryptoAccount", e.requestTransferMoney = "requestTransferMoney", e.submitTransferMoney = "submitTransferMoney", e.getVerifyPromo = "getVerifyPromo", e.requestUpdateMobileTacCode = "requestUpdateMobileTacCode", e.submitUpdateMobileTacCode = "submitUpdateMobileTacCode", e.signInViewInfo = "signInViewInfo", e.signInRecord = "signInRecord", e.referralProfile = "referralProfile", e.referralMemberProfile = "referralMemberProfile", e.registerAction = "registerAction", e.transferReport = "transferReport", e.agTransferCreditReport = "agTransferCreditReport", e.betReport = "betReport", e.getTwoFactorAuthenticate = "getTwoFactorAuthenticate", e.getUserDeviceList = "getUserDeviceList", e.submitTwoFactorAuthenticate = "submitTwoFactorAuthenticate", e.unbindUserDevice = "unbindUserDevice", e.searchNumberHistory = "searchNumberHistory", e.changeWithdrawalCode = "changeWithdrawalCode", e.checkRedPacketToken = "checkRedPacketToken", e.submitWithdrawalAlipay = "submitWithdrawalAlipay", e.applyReliefFund = "applyReliefFund", e.getReliefFundData = "getReliefFundData", e.getReliefFundReport = "getReliefFundReport", e))(i || {});
108
- const se = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
107
+ var s = /* @__PURE__ */ ((e) => (e.announcement = "announcement", e.gameList = "gameList", e.fishGameList = "fishGameList", e.cmsList = "cmsList", e.paymentsProvider = "paymentsProvider", e.getUserProfile = "getUserProfile", e.vipList = "vipList", e.vipStatus = "vipStatus", e.vipBonus = "vipBonus", e.vipFieldStatus = "vipFieldStatus", e.promotion = "promotion", e.getSetting = "getSetting", e.getCountryMobile = "getCountryMobile", e.getPlatformTurnoverRate = "getPlatformTurnoverRate", e.mainWallet = "mainWallet", e.getLanguageSetting = "getLanguageSetting", e.getFourDimensionData = "getfourDimensionData", e.getCompany = "getCompany", e.searchResultDate = "searchResultDate", e.searchHot = "searchHot", e.searchByDate = "searchByDate", e.upcomingMatches = "upcomingMatches", e.deposit = "deposit", e.applyVipBonus = "applyVipBonus", e.getBankCardData = "getBankCardData", e.withdrawalGet = "withdrawalGet", e.withdraw = "withdraw", e.addBankCard = "addBankCard", e.transactionReport = "transactionReport", e.changePassword = "changePassword", e.wallet = "wallet", e.getEventList = "getEventlist", e.getEventToken = "getEventToken", e.getExtraGame = "getExtraGame", e.mailBox = "mailBox", e.slotGameList = "slotGameList", e.getTurnOverRewardData = "getTurnOverRewardData", e.getTurnOverRewardReport = "getTurnOverRewardReport", e.getInviteRewardData = "getInviteRewardData", e.getInviteRewardReport = "getInviteRewardReport", e.getTopupRewardData = "getTopupRewardData", e.getTopupRewardReport = "getTopupRewardReport", e.getRewardReferral = "getRewardReferral", e.submitWithdrawValidate = "submitWithdrawValidate", e.getDepositPromotion = "getDepositPromotion", e.getInviteRewardClaim = "getInviteRewardClaim", e.getTopUpRewardClaim = "getTopupRewardClaim", e.getTurnOverRewardClaim = "getTurnOverRewardClaim", e.getInviteRewardSetting = "getInviteRewardSetting", e.getTopUpRewardSetting = "getTopupRewardSetting", e.getTurnOverRewardSetting = "getTurnOverRewardSetting", e.requestForgetPassword = "requestForgetPassword", e.submitForgetPassword = "submitForgetPassword", e.getImage = "getImage", e.getDepositValidate = "getDepositValidate", e.getTransferCreditValidate = "getTransferCreditValidate", e.getWithdrawValidate = "getWithdrawValidate", e.updateProfilePicture = "updateProfilePicture", e.readMail = "readMail", e.checkRedPacketValidate = "checkRedpacketValidate", e.requestTacCode = "requestTacCode", e.getUsernameByRefer = "getUsernameByRefer", e.applyPromo = "applyPromo", e.applyRedPacket = "applyRedpacket", e.applySignIn = "applySignIn", e.getCountry = "getCountry", e.submitGiftCode = "submitGiftCode", e.playGame = "playGame", e.transferToMain = "transferToMain", e.transferProcess = "transferProcess", e.submitDepositValidate = "submitDepositValidate", e.submitTransferCreditValidate = "submitTransferCreditValidate", e.checkTransferCredit = "checkTransferCredit", e.friendList = "friendList", e.friendListEdit = "friendListEdit", e.getActivePP = "getActivePP", e.getActiveProduct = "getActiveProduct", e.requestWithdrawTac = "requestWithdrawTac", e.requestWithdrawalCode = "requestWithdrawalCode", e.commissionWithdraw = "commissionWithdraw", e.submitWithdrawalCode = "submitWithdrawalCode", e.submitCryptoAccount = "submitCryptoAccount", e.requestTransferMoney = "requestTransferMoney", e.submitTransferMoney = "submitTransferMoney", e.getVerifyPromo = "getVerifyPromo", e.requestUpdateMobileTacCode = "requestUpdateMobileTacCode", e.submitUpdateMobileTacCode = "submitUpdateMobileTacCode", e.signInViewInfo = "signInViewInfo", e.signInRecord = "signInRecord", e.referralProfile = "referralProfile", e.referralMemberProfile = "referralMemberProfile", e.registerAction = "registerAction", e.transferReport = "transferReport", e.agTransferCreditReport = "agTransferCreditReport", e.betReport = "betReport", e.getTwoFactorAuthenticate = "getTwoFactorAuthenticate", e.getUserDeviceList = "getUserDeviceList", e.submitTwoFactorAuthenticate = "submitTwoFactorAuthenticate", e.unbindUserDevice = "unbindUserDevice", e.searchNumberHistory = "searchNumberHistory", e.changeWithdrawalCode = "changeWithdrawalCode", e.checkRedPacketToken = "checkRedPacketToken", e.submitWithdrawalAlipay = "submitWithdrawalAlipay", e.applyReliefFund = "applyReliefFund", e.getReliefFundData = "getReliefFundData", e.getReliefFundReport = "getReliefFundReport", e))(s || {});
108
+ const ie = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
109
109
  __proto__: null,
110
- Api: i
110
+ Api: s
111
111
  }, Symbol.toStringTag, { value: "Module" }));
112
- var j = /* @__PURE__ */ ((e) => (e.default = "default", e.pay = "pay", e.auto = "auto", e.fix = "fix", e.manual = "manual", e.unknown = "unknown", e))(j || {});
113
- const ie = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
112
+ var D = /* @__PURE__ */ ((e) => (e.default = "default", e.pay = "pay", e.auto = "auto", e.fix = "fix", e.manual = "manual", e.unknown = "unknown", e))(D || {});
113
+ const le = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
114
114
  __proto__: null,
115
- PaymentType: j
116
- }, Symbol.toStringTag, { value: "Module" })), B = {
115
+ PaymentType: D
116
+ }, Symbol.toStringTag, { value: "Module" })), F = {
117
117
  depositBank: !1,
118
118
  depositDateTime: !1,
119
119
  depositDetail: !1,
120
120
  depositMethod: !1,
121
121
  depositor: !1,
122
122
  uploadReceipt: !1
123
- }, E = {
123
+ }, W = {
124
124
  id: 0,
125
125
  name: "",
126
- type: j.unknown,
126
+ type: D.unknown,
127
127
  promo: [],
128
128
  bank: [],
129
- requiredField: B
130
- }, le = (e) => {
129
+ requiredField: F
130
+ }, ue = (e) => {
131
131
  var t;
132
132
  return ((t = e.mdPaymentChannels) == null ? void 0 : t.map((n) => {
133
133
  const l = [];
134
134
  switch (n.name) {
135
- case j.default:
135
+ case D.default:
136
136
  l.push(H(n.paymentmethod.manual, e));
137
137
  break;
138
- case j.pay:
139
- l.push(ue(n.paymentmethod.onlinebanking, e));
138
+ case D.pay:
139
+ l.push(de(n.paymentmethod.onlinebanking, e));
140
140
  break;
141
141
  default:
142
142
  if (n.paymentmethod.auto.bank.length > 0 && l.push(
143
- de(n.bankid ?? 0, n.paymentmethod.auto, e)
143
+ ce(n.bankid ?? 0, n.paymentmethod.auto, e)
144
144
  ), n.paymentmethod.manual.bank.length > 0) {
145
- let s = !1;
145
+ let i = !1;
146
146
  for (let u = 0; u < n.paymentmethod.manual.bank.length; u++) {
147
147
  const d = n.paymentmethod.manual.bank[u];
148
148
  if (d.list && d.list.length > 0) {
149
- s = !0;
149
+ i = !0;
150
150
  break;
151
151
  }
152
152
  }
153
- s && l.push(H(n.paymentmethod.manual, e));
153
+ i && l.push(H(n.paymentmethod.manual, e));
154
154
  }
155
155
  n.paymentmethod.fixamount.bank.length > 0 && l.push(
156
- ce(n.bankid ?? 0, n.paymentmethod.fixamount)
156
+ me(n.bankid ?? 0, n.paymentmethod.fixamount)
157
157
  );
158
158
  }
159
159
  return {
@@ -162,7 +162,7 @@ const ie = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
162
162
  paymentList: l
163
163
  };
164
164
  })) ?? [];
165
- }, G = (e) => {
165
+ }, B = (e) => {
166
166
  const t = {
167
167
  id: -1,
168
168
  name: "excludePromo",
@@ -178,51 +178,51 @@ const ie = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
178
178
  }));
179
179
  return [t, ...n];
180
180
  }, N = (e, t, n, l) => {
181
- let s, u;
182
- n > 0 ? s = e > 0 ? Math.max(n, e) : n : s = Math.max(e, 0), l > 0 ? u = t > 0 ? Math.min(l, t) : l : u = Math.max(t, 0);
183
- const d = Math.round(s);
181
+ let i, u;
182
+ n > 0 ? i = e > 0 ? Math.max(n, e) : n : i = Math.max(e, 0), l > 0 ? u = t > 0 ? Math.min(l, t) : l : u = Math.max(t, 0);
183
+ const d = Math.round(i);
184
184
  let m = 1e3;
185
185
  u < m && (m = Math.round(u));
186
186
  const y = m - d;
187
- let g = "", _ = "";
187
+ let g = "", h = "";
188
188
  if (y > 0) {
189
- let v = Math.round((m - d) * 0.25).toString().split(""), k = [];
190
- for (const T of v)
191
- T !== "" && k.push(T);
192
- for (let T = 0; T < k.length; T++)
193
- T === 0 ? g += (parseInt(k[T]) + 1).toString() : g += "0";
194
- v = Math.round((m - d) * 0.5).toString().split(""), k = [];
195
- for (const T of v)
196
- T !== "" && k.push(T);
197
- for (let T = 0; T < k.length; T++)
198
- T === 0 ? _ += (parseInt(k[T]) + 1).toString() : _ += "0";
189
+ let R = Math.round((m - d) * 0.25).toString().split(""), P = [];
190
+ for (const v of R)
191
+ v !== "" && P.push(v);
192
+ for (let v = 0; v < P.length; v++)
193
+ v === 0 ? g += (parseInt(P[v]) + 1).toString() : g += "0";
194
+ R = Math.round((m - d) * 0.5).toString().split(""), P = [];
195
+ for (const v of R)
196
+ v !== "" && P.push(v);
197
+ for (let v = 0; v < P.length; v++)
198
+ v === 0 ? h += (parseInt(P[v]) + 1).toString() : h += "0";
199
199
  } else
200
- g = m.toString(), _ = m.toString();
200
+ g = m.toString(), h = m.toString();
201
201
  return { amountList: [
202
202
  d.toString(),
203
203
  g,
204
- _,
204
+ h,
205
205
  m.toString()
206
206
  ], minAmount: d, maxAmount: u };
207
207
  }, H = (e, t) => t ? {
208
208
  id: 0,
209
209
  name: "manualMethod",
210
- type: j.manual,
211
- promo: G(e.promo),
212
- bank: e.bank.map((s) => {
213
- const u = s.list && s.list.length > 0 ? s.list[0].mintransaction ?? "0.00" : "0.00", d = s.list && s.list.length > 0 ? s.list[0].maxtransaction ?? "0.00" : "0.00", { amountList: m, minAmount: y, maxAmount: g } = N(
210
+ type: D.manual,
211
+ promo: B(e.promo),
212
+ bank: e.bank.map((i) => {
213
+ const u = i.list && i.list.length > 0 ? i.list[0].mintransaction ?? "0.00" : "0.00", d = i.list && i.list.length > 0 ? i.list[0].maxtransaction ?? "0.00" : "0.00", { amountList: m, minAmount: y, maxAmount: g } = N(
214
214
  Number(u),
215
215
  Number(d),
216
216
  t.mdBankLevelDetail.deposit_min,
217
217
  t.mdBankLevelDetail.deposit_max
218
218
  );
219
219
  return t.mdManualDepositRequireField.depositor = !0, {
220
- id: s.bankindex ?? 0,
221
- bankAccountId: s.list && s.list.length > 0 ? s.list[0].bankaccountindex ?? 0 : 0,
222
- name: s.list && s.list.length > 0 ? s.list[0].label ?? "" : "",
223
- accountName: s.list && s.list.length > 0 ? s.list[0].bankaccountname ?? "" : "",
224
- accountNo: s.list && s.list.length > 0 ? s.list[0].bankaccountno ?? "" : "",
225
- qrcode: s.list && s.list.length > 0 ? s.list[0].bankaccountdesc : "",
220
+ id: i.bankindex ?? 0,
221
+ bankAccountId: i.list && i.list.length > 0 ? i.list[0].bankaccountindex ?? 0 : 0,
222
+ name: i.list && i.list.length > 0 ? i.list[0].label ?? "" : "",
223
+ accountName: i.list && i.list.length > 0 ? i.list[0].bankaccountname ?? "" : "",
224
+ accountNo: i.list && i.list.length > 0 ? i.list[0].bankaccountno ?? "" : "",
225
+ qrcode: i.list && i.list.length > 0 ? i.list[0].bankaccountdesc : "",
226
226
  amountList: m,
227
227
  min: y,
228
228
  max: g
@@ -236,17 +236,17 @@ const ie = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
236
236
  depositor: t.mdManualDepositRequireField.depositor,
237
237
  uploadReceipt: t.mdUploadReceipt
238
238
  }
239
- } : E, ue = (e, t) => t ? {
239
+ } : W, de = (e, t) => t ? {
240
240
  id: 0,
241
241
  name: "onlineBankingMethod",
242
- type: j.pay,
243
- promo: G(e.promo),
244
- bank: e.banklist.map((s) => {
242
+ type: D.pay,
243
+ promo: B(e.promo),
244
+ bank: e.banklist.map((i) => {
245
245
  let u = "0.00", d = "0.00";
246
- const m = s.bankindex ?? 0;
247
- for (let v = 0; v < t.mdGatewayMinMax.length; v++)
248
- t.mdGatewayMinMax[v].bankindex == m.toString() && (u = t.mdGatewayMinMax[v].min, d = t.mdGatewayMinMax[v].max);
249
- const { amountList: y, minAmount: g, maxAmount: _ } = N(
246
+ const m = i.bankindex ?? 0;
247
+ for (let R = 0; R < t.mdGatewayMinMax.length; R++)
248
+ t.mdGatewayMinMax[R].bankindex == m.toString() && (u = t.mdGatewayMinMax[R].min, d = t.mdGatewayMinMax[R].max);
249
+ const { amountList: y, minAmount: g, maxAmount: h } = N(
250
250
  Number(u),
251
251
  Number(d),
252
252
  t.mdBankLevelDetail.onlinepayment_min,
@@ -256,40 +256,40 @@ const ie = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
256
256
  name: "autoChannel",
257
257
  amountList: y,
258
258
  min: g,
259
- max: _
260
- }, S = s.pg.map((v) => {
261
- const k = v.mintransaction ?? "0.00", q = v.maxtransaction ?? "0.00", { amountList: z, minAmount: T, maxAmount: U } = N(
262
- Number(k),
263
- Number(q),
259
+ max: h
260
+ }, M = i.pg.map((R) => {
261
+ const P = R.mintransaction ?? "0.00", G = R.maxtransaction ?? "0.00", { amountList: U, minAmount: v, maxAmount: $ } = N(
262
+ Number(P),
263
+ Number(G),
264
264
  t.mdBankLevelDetail.onlinepayment_min,
265
265
  t.mdBankLevelDetail.onlinepayment_max
266
266
  );
267
267
  return {
268
- id: v.pgindex,
269
- name: v.bankaccountname,
270
- amountList: z,
271
- min: T,
272
- max: U
268
+ id: R.pgindex,
269
+ name: R.bankaccountname,
270
+ amountList: U,
271
+ min: v,
272
+ max: $
273
273
  };
274
274
  });
275
275
  return {
276
- id: s.bankindex ?? 0,
277
- name: s.banknameenglish ?? "",
276
+ id: i.bankindex ?? 0,
277
+ name: i.banknameenglish ?? "",
278
278
  amountList: [],
279
279
  min: 0,
280
280
  max: 0,
281
- gateway: [O, ...S]
281
+ gateway: [O, ...M]
282
282
  };
283
283
  }),
284
- requiredField: B
285
- } : E, de = (e, t, n) => {
286
- if (!n) return E;
287
- const l = j.auto;
288
- let s = [];
284
+ requiredField: F
285
+ } : W, ce = (e, t, n) => {
286
+ if (!n) return W;
287
+ const l = D.auto;
288
+ let i = [];
289
289
  const u = n.mdGatewayMinMax ?? [];
290
290
  if (t.bank.length > 0 && n.mdPGSelection === "1")
291
- s = t.bank.map((m) => {
292
- const { amountList: y, minAmount: g, maxAmount: _ } = N(
291
+ i = t.bank.map((m) => {
292
+ const { amountList: y, minAmount: g, maxAmount: h } = N(
293
293
  m.mintransaction ?? 0,
294
294
  m.maxtransaction ?? 0,
295
295
  n.mdBankLevelDetail.onlinepayment_min,
@@ -300,89 +300,120 @@ const ie = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
300
300
  name: m.bankaccountname || "",
301
301
  amountList: y,
302
302
  min: g,
303
- max: _
303
+ max: h
304
304
  };
305
305
  });
306
306
  else {
307
307
  let m = "0.00", y = "0.00";
308
308
  for (let p = 0; p < u.length; p++)
309
309
  u[p].bankindex === e.toString() && (m = u[p].min, y = u[p].max);
310
- const { amountList: g, minAmount: _, maxAmount: O } = N(
310
+ const { amountList: g, minAmount: h, maxAmount: O } = N(
311
311
  Number(m),
312
312
  Number(y),
313
313
  n.mdBankLevelDetail.onlinepayment_min,
314
314
  n.mdBankLevelDetail.onlinepayment_max
315
- ), S = {
315
+ ), M = {
316
316
  id: 0,
317
317
  name: "autoChannel",
318
318
  amountList: g,
319
- min: _,
319
+ min: h,
320
320
  max: O
321
321
  };
322
- s.push(S);
322
+ i.push(M);
323
323
  }
324
324
  return {
325
325
  id: e,
326
326
  name: "autoMethod",
327
327
  type: l,
328
- promo: G(t.promo),
329
- bank: s,
330
- requiredField: B
328
+ promo: B(t.promo),
329
+ bank: i,
330
+ requiredField: F
331
331
  };
332
- }, ce = (e, t) => {
333
- const n = j.fix;
332
+ }, me = (e, t) => {
333
+ const n = D.fix;
334
334
  return {
335
335
  id: e,
336
336
  name: "fixAmountMethod",
337
337
  type: n,
338
- promo: G(t.promo),
339
- bank: t.bank.map((s) => {
340
- const u = s.amtlist.map(Number).sort((m, y) => m - y);
338
+ promo: B(t.promo),
339
+ bank: t.bank.map((i) => {
340
+ const u = i.amtlist.map(Number).sort((m, y) => m - y);
341
341
  return {
342
- id: s.pgindex,
343
- name: s.name,
344
- amountList: s.amtlist,
342
+ id: i.pgindex,
343
+ name: i.name,
344
+ amountList: i.amtlist,
345
345
  min: u.length > 0 ? u[0] : 0,
346
346
  max: u.length > 0 ? u[u.length - 1] : 0
347
347
  };
348
348
  }),
349
- requiredField: B
349
+ requiredField: F
350
350
  };
351
- }, me = (e) => (e == null ? void 0 : e.map((t) => ({
351
+ }, pe = (e) => (e == null ? void 0 : e.map((t) => ({
352
352
  alert: t.announcement_alert === "1",
353
353
  content: t.announcement_simplified ?? "",
354
354
  lastUpdatedTime: t.announcement_lastupdated
355
- }))) ?? [], pe = (e) => ({
355
+ }))) ?? [], ge = (e) => ({
356
356
  username: e.username,
357
357
  birthday: e.mdUserDetail.dob ?? "",
358
358
  email: e.mdUserDetail.email ?? "",
359
359
  fullName: e.mdUserDetail.firstname ?? "",
360
360
  phoneNumber: e.mdUserDetail.mobileno ?? "",
361
361
  profilePicUrl: e.mdUserDetail.profile_pic
362
- }), ge = (e) => {
363
- var t;
364
- return ((t = e.mdGameListResult) == null ? void 0 : t.map((n) => {
365
- var l;
366
- return {
367
- code: n.code,
368
- id: n.id,
369
- name: n.name,
370
- nextPage: n.nextPage === 1,
371
- list: ((l = n.mdPlatformProducts) == null ? void 0 : l.map((s) => ({
372
- id: Number(s.id),
373
- name: s.shortName,
374
- flag: {
375
- value: s.flag,
376
- hot: (s.flag & 2) > 0,
377
- trial: (s.flag & 4) > 0,
378
- new: (s.flag & 8) > 0
379
- },
380
- imageUrl: s.img,
381
- rate: "0.00"
382
- }))) ?? []
383
- };
384
- })) ?? [];
385
- }, be = (e) => ({
362
+ }), be = (e) => {
363
+ var t, n, l, i;
364
+ return {
365
+ platformGame: ((t = e.mdGameListResult) == null ? void 0 : t.map((u) => {
366
+ var d;
367
+ return {
368
+ code: u.code,
369
+ id: u.id,
370
+ name: u.name,
371
+ nextPage: u.nextPage === 1,
372
+ list: ((d = u.mdPlatformProducts) == null ? void 0 : d.map((m) => ({
373
+ gameId: Number(m.id_GameMaster),
374
+ platformId: Number(m.id),
375
+ name: m.shortName,
376
+ flag: {
377
+ value: m.flag,
378
+ hot: (m.flag & 2) > 0,
379
+ trial: (m.flag & 4) > 0,
380
+ new: (m.flag & 8) > 0
381
+ },
382
+ imageUrl: `${e.mdDomains[m.mdDomains_id]}${m.img}?ts=${m.filemtime}`,
383
+ rate: "0.00"
384
+ }))) ?? []
385
+ };
386
+ })) ?? [],
387
+ hotGameList: e.mdGameLists !== null ? ((l = (n = e.mdGameLists) == null ? void 0 : n.data) == null ? void 0 : l.map((u) => ({
388
+ gameId: Number(u.id),
389
+ platformId: Number(u.id_PlatformProduct),
390
+ name: u.name,
391
+ flag: {
392
+ value: u.flag,
393
+ hot: (u.flag & 2) > 0,
394
+ trial: (u.flag & 4) > 0,
395
+ new: (u.flag & 8) > 0
396
+ },
397
+ imageUrl: `${e.mdDomains[u.mdDomains_id]}${u.img}?ts=${u.filemtime}`,
398
+ rate: "0.00"
399
+ }))) ?? [] : [],
400
+ platformGameList: e.mdGameLists !== null && e.mdGameLists.length > 0 ? ((i = e.mdGameLists) == null ? void 0 : i.map((u) => ({
401
+ gameId: Number(u.id),
402
+ platformId: Number(u.id_PlatformProduct),
403
+ name: u.name,
404
+ flag: {
405
+ value: 0,
406
+ hot: !1,
407
+ trial: !1,
408
+ new: !1
409
+ },
410
+ imageUrl: `${e.mdDomains[u.mdDomains_id]}${u.img}?ts=${u.filemtime}`,
411
+ rate: "0.00"
412
+ }))) ?? [] : [],
413
+ trialGameList: [],
414
+ fishGameList: []
415
+ };
416
+ }, fe = (e) => ({
386
417
  list: e.mdGrade.map((t) => ({
387
418
  id: t.gradeindex,
388
419
  is_current_level: !1,
@@ -453,7 +484,7 @@ const ie = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
453
484
  name: t.title
454
485
  };
455
486
  })
456
- }), fe = (e) => ({
487
+ }), _e = (e) => ({
457
488
  month: {
458
489
  isClaimable: e.month === 1
459
490
  },
@@ -463,16 +494,16 @@ const ie = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
463
494
  day: {
464
495
  isClaimable: e.day === 1
465
496
  }
466
- }), _e = (e) => e.mdVipSetting.filter((n) => n.status == 1).map((n) => ({
497
+ }), he = (e) => e.mdVipSetting.filter((n) => n.status == 1).map((n) => ({
467
498
  fieldName: n.fieldname,
468
499
  showName: n.showname
469
- })), he = (e) => ({
500
+ })), Te = (e) => ({
470
501
  current_deposit: e.deposit,
471
502
  current_turnover: e.turnOver,
472
503
  current_grade_id: e.mdCurrentGrade.gradeindex,
473
504
  next_grade_id: e.mdNextGrade.gradeindex,
474
505
  percentage: Number(e.percentage) * 100
475
- }), Te = (e) => {
506
+ }), ve = (e) => {
476
507
  let t = 4;
477
508
  e.vipcalculation && (t = Number(e.vipcalculation));
478
509
  let n = [];
@@ -480,10 +511,10 @@ const ie = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
480
511
  vipCalculation: t,
481
512
  livechat: e.livechat ?? "",
482
513
  livechatList: n.filter((l) => l.status == 1).map((l) => {
483
- let s = l.imgname;
484
- return s.slice(-4) === ".png" && (s = l.imgname.slice(0, -4)), {
514
+ let i = l.imgname;
515
+ return i.slice(-4) === ".png" && (i = l.imgname.slice(0, -4)), {
485
516
  name: l.name,
486
- imageUrl: `/image/game/native/customer_service/${s}.png`,
517
+ imageUrl: `/image/game/native/customer_service/${i}.png`,
487
518
  url: l.url
488
519
  };
489
520
  }),
@@ -498,76 +529,76 @@ const ie = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
498
529
  withdrawAlipay: e.withdrawalipay === "1",
499
530
  crypto: e.crypto === "1"
500
531
  };
501
- }, ve = (e) => {
532
+ }, Re = (e) => {
502
533
  var t, n, l;
503
534
  return {
504
- banner: ((t = e.mobileBanner) == null ? void 0 : t.map((s) => `${s.imagepath}?${s.filemtime}`)) ?? [],
505
- ad: ((n = e.mobileAd) == null ? void 0 : n.map((s) => `${s.imagepath}?${s.filemtime}`)) ?? [],
506
- about: ((l = e.mobileAbout) == null ? void 0 : l.map((s) => ({
507
- name: s.name,
508
- content: s.content
535
+ banner: ((t = e.mobileBanner) == null ? void 0 : t.map((i) => `${i.imagepath}?${i.filemtime}`)) ?? [],
536
+ ad: ((n = e.mobileAd) == null ? void 0 : n.map((i) => `${i.imagepath}?${i.filemtime}`)) ?? [],
537
+ about: ((l = e.mobileAbout) == null ? void 0 : l.map((i) => ({
538
+ name: i.name,
539
+ content: i.content
509
540
  }))) ?? []
510
541
  };
511
- }, Re = (e) => {
542
+ }, Se = (e) => {
512
543
  var t;
513
544
  return ((t = e.data) == null ? void 0 : t.filter((n) => n.status == "1").map((n) => ({
514
545
  code: n.area_code,
515
546
  regex: n.regex,
516
547
  value: n.value
517
548
  }))) ?? [];
518
- }, Se = (e) => e, ke = (e) => {
549
+ }, ke = (e) => e, Pe = (e) => {
519
550
  let t = null;
520
551
  return e ? e.status != 1 ? t = 0 : t = e.mainwallet : t = 0, {
521
552
  amount: t
522
553
  };
523
- }, Pe = (e) => {
554
+ }, Oe = (e) => {
524
555
  var t;
525
556
  return ((t = e.data) == null ? void 0 : t.filter((n) => n.status == "1").map((n) => ({
526
557
  name: n.title,
527
558
  code: n.code,
528
559
  iconUrl: n.flag_icon
529
560
  }))) ?? [];
530
- }, Oe = (e) => (console.log(e), {
561
+ }, Me = (e) => (console.log(e), {
531
562
  name: ""
532
- }), Me = (e) => {
563
+ }), je = (e) => {
533
564
  var t;
534
565
  return ((t = e.data) == null ? void 0 : t.filter((n) => n.company_status == 1).map((n) => ({
535
566
  id: n.company_id,
536
567
  name: n.company_name,
537
568
  date: []
538
569
  }))) ?? [];
539
- }, je = (e) => {
570
+ }, xe = (e) => {
540
571
  var t;
541
572
  return ((t = e.data) == null ? void 0 : t.map((n) => {
542
573
  var l;
543
574
  return {
544
575
  id: n.key,
545
- date: ((l = n.draw_date) == null ? void 0 : l.map((s) => xe(s.draw_tmactive))) ?? []
576
+ date: ((l = n.draw_date) == null ? void 0 : l.map((i) => De(i.draw_tmactive))) ?? []
546
577
  };
547
578
  })) ?? [];
548
579
  };
549
- function xe(e) {
550
- const t = new Date(e * 1e3), n = t.getFullYear(), l = ("0" + (t.getMonth() + 1)).slice(-2), s = ("0" + t.getDate()).slice(-2);
551
- return `${n}-${l}-${s}`;
580
+ function De(e) {
581
+ const t = new Date(e * 1e3), n = t.getFullYear(), l = ("0" + (t.getMonth() + 1)).slice(-2), i = ("0" + t.getDate()).slice(-2);
582
+ return `${n}-${l}-${i}`;
552
583
  }
553
- const De = (e) => {
584
+ const Ce = (e) => {
554
585
  var t;
555
586
  return ((t = e.data) == null ? void 0 : t.map((n) => {
556
587
  var l;
557
588
  return {
558
589
  id: n.company_id,
559
590
  name: n.company_name,
560
- list: ((l = n.drawCount) == null ? void 0 : l.map((s) => ({
561
- combination: s.combination_combination,
562
- total: s.total
591
+ list: ((l = n.drawCount) == null ? void 0 : l.map((i) => ({
592
+ combination: i.combination_combination,
593
+ total: i.total
563
594
  }))) ?? []
564
595
  };
565
596
  })) ?? [];
566
- }, Ce = (e) => e.data.map((t) => ({
597
+ }, we = (e) => e.data.map((t) => ({
567
598
  companyId: t.company_id,
568
599
  companyName: t.company_name,
569
600
  resultByDateList: t.draws.map((n) => {
570
- const l = n.results.filter((p) => p.combination_dimension == 3).map((p) => p.combination_combination), s = n.results.filter(
601
+ const l = n.results.filter((p) => p.combination_dimension == 3).map((p) => p.combination_combination), i = n.results.filter(
571
602
  (p) => p.combination_dimension == 4 && p.combination_position === 1
572
603
  ).map((p) => p.combination_combination), u = n.results.filter(
573
604
  (p) => p.combination_dimension === 4 && p.combination_position === 2
@@ -579,14 +610,14 @@ const De = (e) => {
579
610
  (p) => p.combination_dimension === 4 && p.combination_position === 5
580
611
  ).map((p) => p.combination_combination), g = n.results.filter(
581
612
  (p) => p.combination_dimension === 5 && p.combination_position === 1
582
- ).map((p) => p.combination_combination), _ = n.results.filter((p) => p.combination_dimension == 5).map((p) => p.combination_combination), O = n.results.filter(
613
+ ).map((p) => p.combination_combination), h = n.results.filter((p) => p.combination_dimension == 5).map((p) => p.combination_combination), O = n.results.filter(
583
614
  (p) => p.combination_dimension === 6 && p.combination_position === 1
584
- ).map((p) => p.combination_combination), S = n.results.filter((p) => p.combination_dimension === 6).map((p) => p.combination_combination);
615
+ ).map((p) => p.combination_combination), M = n.results.filter((p) => p.combination_dimension === 6).map((p) => p.combination_combination);
585
616
  return {
586
617
  date: n.date,
587
618
  dimension_3: l,
588
619
  dimension_4: {
589
- prize_1: s,
620
+ prize_1: i,
590
621
  prize_2: u,
591
622
  prize_3: d,
592
623
  prize_4: m,
@@ -594,15 +625,15 @@ const De = (e) => {
594
625
  },
595
626
  dimension_5: {
596
627
  prize_1: g,
597
- all: _
628
+ all: h
598
629
  },
599
630
  dimension_6: {
600
631
  prize_1: O,
601
- all: S
632
+ all: M
602
633
  }
603
634
  };
604
635
  })
605
- })), we = (e) => e.data.map((t) => ({
636
+ })), Ie = (e) => e.data.map((t) => ({
606
637
  id: t.id,
607
638
  date: t.matchDate,
608
639
  tag: t.tag,
@@ -616,19 +647,19 @@ const De = (e) => {
616
647
  name: t.home,
617
648
  logo_url: t.homeLogo
618
649
  }
619
- })), Ie = (e) => ({
650
+ })), Le = (e) => ({
620
651
  status: e.status == 1,
621
652
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
622
653
  paymentUrl: e.urlpayment ?? ""
623
- }), Le = (e) => ({
654
+ }), Ge = (e) => ({
624
655
  status: e.status == 1,
625
656
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
626
657
  flag: e.flag
627
- }), h = (e) => ({
658
+ }), T = (e) => ({
628
659
  status: e.status == 1,
629
660
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? ""
630
- }), ze = (e) => h(e), Fe = (e) => {
631
- var t, n, l, s, u;
661
+ }), ze = (e) => T(e), Ne = (e) => {
662
+ var t, n, l, i, u;
632
663
  return {
633
664
  bankCard: ((t = e.bankCard) == null ? void 0 : t.map((d) => {
634
665
  var m, y;
@@ -662,7 +693,7 @@ const De = (e) => {
662
693
  label: d.label,
663
694
  countryIndex: d.countryindex
664
695
  }))) ?? [],
665
- cryptoAccount: ((s = e.mdAccountCrypto) == null ? void 0 : s.map((d) => ({
696
+ cryptoAccount: ((i = e.mdAccountCrypto) == null ? void 0 : i.map((d) => ({
666
697
  id: d.crypto_id,
667
698
  type: d.type,
668
699
  name: d.crypto_name,
@@ -685,15 +716,15 @@ const De = (e) => {
685
716
  },
686
717
  bankCardLimit: e.bankcardlimit
687
718
  };
688
- }, Ne = (e) => ({
719
+ }, Fe = (e) => ({
689
720
  withdrawMin: Number(e.withdrawMin),
690
721
  withdrawMax: Number(e.withdrawMax),
691
722
  dailyWithdrawLimit: Number(e.dailyWithdrawLimit),
692
723
  withdrawFee: e.withdrawFee,
693
724
  withdrawMaxFee: Number(e.withdrawMaxFee),
694
725
  withdrawCount: e.withdrawCount
695
- }), Be = (e) => h(e), Ge = (e) => {
696
- var t, n, l, s, u, d;
726
+ }), Be = (e) => T(e), Ue = (e) => {
727
+ var t, n, l, i, u, d;
697
728
  return {
698
729
  subStatusModes: ((t = e.subStatusModes) == null ? void 0 : t.map((m) => ({
699
730
  key: m.key,
@@ -705,7 +736,7 @@ const De = (e) => {
705
736
  }))) ?? [],
706
737
  mdCashLedgers: {
707
738
  currentPage: ((l = e.mdCashLedgers) == null ? void 0 : l.current_page) ?? 0,
708
- lastPage: ((s = e.mdCashLedgers) == null ? void 0 : s.last_page) ?? 0,
739
+ lastPage: ((i = e.mdCashLedgers) == null ? void 0 : i.last_page) ?? 0,
709
740
  data: ((d = (u = e.mdCashLedgers) == null ? void 0 : u.data) == null ? void 0 : d.map((m) => {
710
741
  var y, g;
711
742
  return {
@@ -719,7 +750,7 @@ const De = (e) => {
719
750
  status: {
720
751
  id: m.status,
721
752
  value: m.status == 1,
722
- desc: ((g = (y = e.subStatusModes) == null ? void 0 : y.find((_) => _.key === m.status)) == null ? void 0 : g.value) ?? ""
753
+ desc: ((g = (y = e.subStatusModes) == null ? void 0 : y.find((h) => h.key === m.status)) == null ? void 0 : g.value) ?? ""
723
754
  },
724
755
  amount: m.amount,
725
756
  ledgerDateTime: m.ledgerdatetime,
@@ -760,9 +791,9 @@ const De = (e) => {
760
791
  return "shareHolderDividend";
761
792
  }
762
793
  return "";
763
- }, Ue = (e) => ({
794
+ }, Ve = (e) => ({
764
795
  status: e.status == 1
765
- }), Ve = (e) => (e == null ? void 0 : e.map((t) => {
796
+ }), We = (e) => (e == null ? void 0 : e.map((t) => {
766
797
  var n;
767
798
  return {
768
799
  activeCom: ((n = t.active_com) == null ? void 0 : n.map((l) => ({
@@ -774,7 +805,7 @@ const De = (e) => {
774
805
  platformWallet: t.platformwallet.toFixed(2),
775
806
  com: t.com ?? ""
776
807
  };
777
- })) ?? [], We = (e) => ({
808
+ })) ?? [], Ee = (e) => ({
778
809
  status: e.status == 1,
779
810
  message: e.message ?? "",
780
811
  data: e.data.map((t) => ({
@@ -784,7 +815,7 @@ const De = (e) => {
784
815
  imageUrl: t.image_url,
785
816
  getToken: t.getToken === 1
786
817
  }))
787
- }), Ee = (e) => {
818
+ }), $e = (e) => {
788
819
  var t;
789
820
  return {
790
821
  status: e.status == 1,
@@ -800,13 +831,13 @@ const De = (e) => {
800
831
  loginId: e.loginId ?? "",
801
832
  password: e.password ?? "",
802
833
  downloadUrl: e.download_link ?? ""
803
- }), $e = (e) => (e == null ? void 0 : e.map((t) => ({
834
+ }), He = (e) => (e == null ? void 0 : e.map((t) => ({
804
835
  messageId: t.msgindex,
805
836
  unread: t.status == "0",
806
837
  date: t.cdate,
807
838
  title: t.account_message_content.subject,
808
839
  content: t.account_message_content.content
809
- }))) ?? [], He = (e) => {
840
+ }))) ?? [], Je = (e) => {
810
841
  var t;
811
842
  return ((t = e.mdGameLists) == null ? void 0 : t.map((n) => ({
812
843
  id: n.id,
@@ -814,7 +845,7 @@ const De = (e) => {
814
845
  platformProductID: n.id_PlatformProduct,
815
846
  imgUrl: `${e.mdDomains[n.mdDomains_id]}${n.img}?${n.filemtime}`
816
847
  }))) ?? [];
817
- }, Je = (e) => e.mdGameLists.map((t) => ({
848
+ }, Ye = (e) => e.mdGameLists.map((t) => ({
818
849
  id: t.id,
819
850
  name: t.name,
820
851
  list: t.gameList.map((n) => {
@@ -825,7 +856,7 @@ const De = (e) => {
825
856
  imageUrl: u
826
857
  };
827
858
  })
828
- })), Ye = (e) => e.status == 0 ? {
859
+ })), Ke = (e) => e.status == 0 ? {
829
860
  claimedReward: "0",
830
861
  currentDirectDownline: "0",
831
862
  currentOtherDownline: "0",
@@ -839,19 +870,19 @@ const De = (e) => {
839
870
  currentReward: e.data.current_reward.toString(),
840
871
  totalReward: e.data.total_reward,
841
872
  unclaimReward: e.data.unclaim_reward.toString()
842
- }, Ke = (e) => {
873
+ }, Qe = (e) => {
843
874
  const t = /* @__PURE__ */ new Set(), n = e.data.map((u) => (t.add(u.downline), {
844
875
  id: u.logindex,
845
876
  name: u.firstname,
846
877
  cashback: u.turnover,
847
878
  commission: u.income
848
- })), l = e.data.reduce((u, d) => u + parseFloat(d.income), 0), s = t.size;
879
+ })), l = e.data.reduce((u, d) => u + parseFloat(d.income), 0), i = t.size;
849
880
  return {
850
881
  totalReward: l,
851
- totalCount: s,
882
+ totalCount: i,
852
883
  list: n
853
884
  };
854
- }, Qe = (e) => e.status == 0 ? {
885
+ }, Xe = (e) => e.status == 0 ? {
855
886
  claimedReward: "0",
856
887
  currentInvite: "0",
857
888
  currentReward: "0",
@@ -865,7 +896,7 @@ const De = (e) => {
865
896
  totalInvite: e.data.total_invite,
866
897
  totalReward: e.data.total_reward,
867
898
  unclaimReward: e.data.unclaim_reward.toString()
868
- }, Xe = (e) => {
899
+ }, Ze = (e) => {
869
900
  const t = /* @__PURE__ */ new Set(), n = e.data.map((u) => (t.add(u.accountid), {
870
901
  id: u.id,
871
902
  name: u.firstname,
@@ -873,13 +904,13 @@ const De = (e) => {
873
904
  deposit: u.deposit,
874
905
  activeBet: u.activebet,
875
906
  commission: u.reward
876
- })), l = e.data.reduce((u, d) => u + parseFloat(d.reward), 0), s = t.size;
907
+ })), l = e.data.reduce((u, d) => u + parseFloat(d.reward), 0), i = t.size;
877
908
  return {
878
909
  totalReward: l,
879
- totalCount: s,
910
+ totalCount: i,
880
911
  list: n
881
912
  };
882
- }, Ze = (e) => e.status == 0 ? {
913
+ }, et = (e) => e.status == 0 ? {
883
914
  claimedReward: "0",
884
915
  currentDirectDownline: "0",
885
916
  currentOtherDownline: "0",
@@ -893,19 +924,19 @@ const De = (e) => {
893
924
  currentReward: e.data.current_reward.toString(),
894
925
  totalReward: e.data.total_reward,
895
926
  unclaimReward: e.data.unclaim_reward.toString()
896
- }, et = (e) => {
927
+ }, tt = (e) => {
897
928
  const t = /* @__PURE__ */ new Set(), n = e.data.map((u) => (t.add(u.accountid), {
898
929
  id: u.logindex,
899
930
  name: u.firstname,
900
931
  total: u.deposit,
901
932
  commission: u.reward
902
- })), l = e.data.reduce((u, d) => u + parseFloat(d.reward), 0), s = t.size;
933
+ })), l = e.data.reduce((u, d) => u + parseFloat(d.reward), 0), i = t.size;
903
934
  return {
904
935
  totalReward: l,
905
- totalCount: s,
936
+ totalCount: i,
906
937
  list: n
907
938
  };
908
- }, tt = (e) => e.status == 0 ? {
939
+ }, nt = (e) => e.status == 0 ? {
909
940
  directDownline: "0",
910
941
  otherDownline: "0",
911
942
  uplineCode: "",
@@ -915,40 +946,40 @@ const De = (e) => {
915
946
  otherDownline: e.data.others_downline_count.toString(),
916
947
  uplineCode: e.data.upline.accountcode,
917
948
  referralCode: e.data.referral_code
918
- }, nt = (e) => {
949
+ }, at = (e) => {
919
950
  var y;
920
951
  let t = null, n = null;
921
952
  if (e.status == 0)
922
953
  return { welcomeBonus: null, dailyBonus: null };
923
954
  const l = e.data.filter((g) => g.dtype == "5" && g.type == "F").map((g) => {
924
- const _ = Math.min(
955
+ const h = Math.min(
925
956
  Number(g.min_deposit) * Number(g.percentage) / 100,
926
957
  Number(g.max_promo_amt)
927
958
  );
928
959
  return {
929
960
  name: g.promodesc,
930
961
  depositAmount: Number(g.min_deposit),
931
- promoAmount: _,
932
- percentage: Math.round(_ / Number(g.min_deposit) * 100),
962
+ promoAmount: h,
963
+ percentage: Math.round(h / Number(g.min_deposit) * 100),
933
964
  expiryTime: g.etime
934
965
  };
935
966
  });
936
967
  l.length > 0 && (t = l[0]);
937
- const s = e.data.filter((g) => g.dtype == "5" && g.type == "D").map((g) => {
938
- const _ = Math.min(
968
+ const i = e.data.filter((g) => g.dtype == "5" && g.type == "D").map((g) => {
969
+ const h = Math.min(
939
970
  Number(g.min_deposit) * Number(g.percentage) / 100,
940
971
  Number(g.max_promo_amt)
941
972
  );
942
973
  return {
943
974
  name: g.promodesc,
944
975
  depositAmount: Number(g.min_deposit),
945
- promoAmount: _,
946
- percentage: Number((_ / Number(g.min_deposit) * 100).toFixed(2)),
976
+ promoAmount: h,
977
+ percentage: Number((h / Number(g.min_deposit) * 100).toFixed(2)),
947
978
  expiryTime: g.etime
948
979
  };
949
980
  });
950
- let u = 0, d = ((y = s[0]) == null ? void 0 : y.expiryTime) || "";
951
- const m = s.map((g) => (u = Math.max(u, g.percentage), new Date(g.expiryTime) < new Date(d) && (d = g.expiryTime), {
981
+ let u = 0, d = ((y = i[0]) == null ? void 0 : y.expiryTime) || "";
982
+ const m = i.map((g) => (u = Math.max(u, g.percentage), new Date(g.expiryTime) < new Date(d) && (d = g.expiryTime), {
952
983
  name: g.name,
953
984
  depositAmount: g.depositAmount,
954
985
  promoAmount: g.promoAmount
@@ -958,16 +989,16 @@ const De = (e) => {
958
989
  expiryTime: d,
959
990
  list: m
960
991
  }, { welcomeBonus: t, dailyBonus: n };
961
- }, at = (e) => ({
992
+ }, ot = (e) => ({
962
993
  status: e.status == 1,
963
994
  message: e.msg ?? ""
964
- }), ot = (e) => ({
995
+ }), rt = (e) => ({
965
996
  status: e.status == 1,
966
997
  message: e.msg ?? ""
967
- }), rt = (e) => ({
998
+ }), st = (e) => ({
968
999
  status: e.status == 1,
969
1000
  message: e.msg ?? ""
970
- }), st = (e) => e.status == 0 ? {
1001
+ }), it = (e) => e.status == 0 ? {
971
1002
  deposit: "0",
972
1003
  reward: "0",
973
1004
  turnover: "0"
@@ -975,7 +1006,7 @@ const De = (e) => {
975
1006
  deposit: e.data.deposit,
976
1007
  reward: e.data.reward,
977
1008
  turnover: e.data.turnover
978
- }, it = (e) => {
1009
+ }, lt = (e) => {
979
1010
  if (e.status == 0 || !e.data)
980
1011
  return {};
981
1012
  const t = {};
@@ -983,10 +1014,10 @@ const De = (e) => {
983
1014
  if (Object.prototype.hasOwnProperty.call(e.data, n)) {
984
1015
  const l = e.data[n];
985
1016
  t[n] = [];
986
- for (let s = 0; s < l.length; s++) {
987
- const u = l[s];
1017
+ for (let i = 0; i < l.length; i++) {
1018
+ const u = l[i];
988
1019
  let d = "";
989
- l.length > s + 1 && (d = (Number(l[s + 1].achievement) - 1).toString()), t[n].push({
1020
+ l.length > i + 1 && (d = (Number(l[i + 1].achievement) - 1).toString()), t[n].push({
990
1021
  rate: u.rate,
991
1022
  minValue: u.achievement.toString(),
992
1023
  maxValue: d
@@ -994,7 +1025,7 @@ const De = (e) => {
994
1025
  }
995
1026
  }
996
1027
  return t;
997
- }, lt = (e) => {
1028
+ }, ut = (e) => {
998
1029
  if (e.status == 0 || !e.data)
999
1030
  return {};
1000
1031
  const t = {};
@@ -1002,10 +1033,10 @@ const De = (e) => {
1002
1033
  if (Object.prototype.hasOwnProperty.call(e.data, n)) {
1003
1034
  const l = e.data[n];
1004
1035
  t[n] = [];
1005
- for (let s = 0; s < l.length; s++) {
1006
- const u = l[s];
1036
+ for (let i = 0; i < l.length; i++) {
1037
+ const u = l[i];
1007
1038
  let d = "";
1008
- l.length > s + 1 && (d = (Number(l[s + 1].achievement) - 1).toString()), t[n].push({
1039
+ l.length > i + 1 && (d = (Number(l[i + 1].achievement) - 1).toString()), t[n].push({
1009
1040
  rate: u.rate,
1010
1041
  minValue: u.achievement,
1011
1042
  maxValue: d
@@ -1013,21 +1044,21 @@ const De = (e) => {
1013
1044
  }
1014
1045
  }
1015
1046
  return t;
1016
- }, ut = (e) => h(e), dt = (e) => h(e), ct = (e) => {
1017
- var t, n, l, s, u;
1047
+ }, dt = (e) => T(e), ct = (e) => T(e), mt = (e) => {
1048
+ var t, n, l, i, u;
1018
1049
  return {
1019
1050
  status: e.status == 1,
1020
1051
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
1021
1052
  default: ((t = e.data) == null ? void 0 : t.default) ?? [],
1022
1053
  online: ((n = e.data) == null ? void 0 : n.online) ?? [],
1023
1054
  mycard: ((l = e.data) == null ? void 0 : l.mycard) ?? [],
1024
- qrcode: ((s = e.data) == null ? void 0 : s.qrcode) ?? [],
1055
+ qrcode: ((i = e.data) == null ? void 0 : i.qrcode) ?? [],
1025
1056
  personal: ((u = e.data) == null ? void 0 : u.personal) ?? []
1026
1057
  };
1027
- }, V = (e) => (console.log(e), {
1058
+ }, q = (e) => (console.log(e), {
1028
1059
  validated: e.withdrawValidate === 1 || e.depositValidate === 1 || e.TransferCreditValidate === 1,
1029
- forms: mt(e)
1030
- }), mt = (e) => e.subDepositForms && e.subDepositForms.length > 0 ? e.subDepositForms.map((t) => ({
1060
+ forms: pt(e)
1061
+ }), pt = (e) => e.subDepositForms && e.subDepositForms.length > 0 ? e.subDepositForms.map((t) => ({
1031
1062
  id: t.id,
1032
1063
  fieldName: t.fieldname,
1033
1064
  regex: t.regex,
@@ -1045,51 +1076,51 @@ const De = (e) => {
1045
1076
  regex: t.regex,
1046
1077
  showName: t.showname,
1047
1078
  inputHelper: t.inputHelper
1048
- })) : [], pt = (e) => h(e), gt = (e) => e, bt = (e) => ({
1079
+ })) : [], gt = (e) => T(e), bt = (e) => e, ft = (e) => ({
1049
1080
  status: e.status == 1,
1050
1081
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? ""
1051
- }), yt = (e) => h(e), ft = (e) => ({
1082
+ }), yt = (e) => T(e), _t = (e) => ({
1052
1083
  status: e.status == 1,
1053
1084
  message: e.message,
1054
1085
  user: e.user ?? ""
1055
- }), _t = (e) => ({
1086
+ }), ht = (e) => ({
1056
1087
  status: e.status == 1,
1057
1088
  message: e.msg ?? "",
1058
1089
  amount: e.amount ?? ""
1059
- }), ht = (e) => h(e), Tt = (e) => {
1090
+ }), Tt = (e) => T(e), vt = (e) => {
1060
1091
  var t;
1061
1092
  return {
1062
1093
  status: e.status == 1,
1063
1094
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
1064
1095
  dayStreak: ((t = e.data) == null ? void 0 : t.continuousDay) ?? 0
1065
1096
  };
1066
- }, vt = (e) => {
1097
+ }, Rt = (e) => {
1067
1098
  var t;
1068
1099
  return {
1069
1100
  status: e.status == 1,
1070
1101
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
1071
1102
  countryList: ((t = e.data) == null ? void 0 : t.map((n) => {
1072
- var l, s;
1103
+ var l, i;
1073
1104
  return {
1074
1105
  countryIndex: n.countryindex,
1075
1106
  currencyName: n.currency_name ?? "",
1076
1107
  label: n.label,
1077
1108
  currencyRate: {
1078
1109
  depositCurrencyRate: ((l = n.currency_rate) == null ? void 0 : l.currency_rate_deposit) ?? "",
1079
- withdrawCurrencyRate: ((s = n.currency_rate) == null ? void 0 : s.currency_rate_withdraw) ?? ""
1110
+ withdrawCurrencyRate: ((i = n.currency_rate) == null ? void 0 : i.currency_rate_withdraw) ?? ""
1080
1111
  }
1081
1112
  };
1082
1113
  })) ?? []
1083
1114
  };
1084
- }, Rt = (e) => ({
1115
+ }, St = (e) => ({
1085
1116
  status: e.status == 1,
1086
1117
  message: e.msg ?? ""
1087
- }), St = (e) => (console.log(e), {
1118
+ }), kt = (e) => (console.log(e), {
1088
1119
  form: e.form ?? ""
1089
- }), kt = (e) => h(e), Pt = (e) => h(e), W = (e) => ({
1120
+ }), Pt = (e) => T(e), Ot = (e) => T(e), V = (e) => ({
1090
1121
  status: e.status == 1,
1091
1122
  message: e.errormessage ?? ""
1092
- }), Ot = (e) => h(e), Mt = (e) => e, jt = (e) => h(e), xt = (e) => {
1123
+ }), Mt = (e) => T(e), jt = (e) => e, xt = (e) => T(e), Dt = (e) => {
1093
1124
  var t;
1094
1125
  return {
1095
1126
  platformProduct: ((t = e.mdPlatformProduct) == null ? void 0 : t.map((n) => ({
@@ -1098,7 +1129,7 @@ const De = (e) => {
1098
1129
  com: n.com
1099
1130
  }))) ?? []
1100
1131
  };
1101
- }, Dt = (e) => {
1132
+ }, Ct = (e) => {
1102
1133
  var t;
1103
1134
  return {
1104
1135
  productMaster: ((t = e.mdProductMaster) == null ? void 0 : t.map((n) => ({
@@ -1106,11 +1137,11 @@ const De = (e) => {
1106
1137
  name: n.name
1107
1138
  }))) ?? []
1108
1139
  };
1109
- }, Ct = (e) => h(e), wt = (e) => h(e), It = (e) => h(e), Lt = (e) => h(e), zt = (e) => h(e), Ft = (e) => h(e), Nt = (e) => h(e), Bt = (e) => ({
1140
+ }, wt = (e) => T(e), It = (e) => T(e), Lt = (e) => T(e), Gt = (e) => T(e), zt = (e) => T(e), Nt = (e) => T(e), Ft = (e) => T(e), Bt = (e) => ({
1110
1141
  status: e.status == 1,
1111
1142
  message: e.msg ?? "",
1112
1143
  data: e.data
1113
- }), Gt = (e) => ({
1144
+ }), Ut = (e) => ({
1114
1145
  status: e.status == 1,
1115
1146
  message: e.msg ?? ""
1116
1147
  }), qt = (e) => {
@@ -1119,20 +1150,20 @@ const De = (e) => {
1119
1150
  status: e.status == 1,
1120
1151
  amount: t
1121
1152
  };
1122
- }, Ut = (e) => ({
1153
+ }, Vt = (e) => ({
1123
1154
  eventDescription: {
1124
1155
  condition: e.bottomDescription.signinCondition,
1125
1156
  prize: e.bottomDescription.signinPrize,
1126
1157
  others: e.bottomDescription.otherDescription
1127
1158
  },
1128
1159
  firstDayOfMonth: e.firstDayOfMonth
1129
- }), Vt = (e) => ({
1160
+ }), Wt = (e) => ({
1130
1161
  status: e.status == 1,
1131
1162
  signedDays: e.days,
1132
1163
  signedToday: e.todayIsSign === 1,
1133
1164
  dayStreak: e.continuousDay,
1134
1165
  canSignToday: e.canSign === 1
1135
- }), Wt = (e) => ({
1166
+ }), Et = (e) => ({
1136
1167
  status: e.status == 1,
1137
1168
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
1138
1169
  fullName: e.fullname,
@@ -1168,7 +1199,7 @@ const De = (e) => {
1168
1199
  commission: n.commission
1169
1200
  }))
1170
1201
  }))
1171
- }), Et = (e) => ({
1202
+ }), $t = (e) => ({
1172
1203
  status: e.status == 1,
1173
1204
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
1174
1205
  id: e.id ?? 0,
@@ -1185,7 +1216,7 @@ const De = (e) => {
1185
1216
  message: e.msg ?? "",
1186
1217
  username: e.accountcode,
1187
1218
  password: e.password
1188
- }), $t = (e) => {
1219
+ }), Ht = (e) => {
1189
1220
  var t;
1190
1221
  return {
1191
1222
  currentPage: e.mdGameCreditLimitTransfers.current_page,
@@ -1198,7 +1229,7 @@ const De = (e) => {
1198
1229
  transferDateTime: n.transferdatetime
1199
1230
  }))) ?? []
1200
1231
  };
1201
- }, Ht = (e) => {
1232
+ }, Jt = (e) => {
1202
1233
  var t;
1203
1234
  return {
1204
1235
  currentPage: e.mdAgTransfeReport.current_page,
@@ -1211,7 +1242,7 @@ const De = (e) => {
1211
1242
  transferDateTime: n.transferdatetime
1212
1243
  }))) ?? []
1213
1244
  };
1214
- }, Jt = (e) => {
1245
+ }, Yt = (e) => {
1215
1246
  var t, n;
1216
1247
  return {
1217
1248
  status: e.status == 1,
@@ -1244,7 +1275,7 @@ const De = (e) => {
1244
1275
  totalPage: e.data.page.last_page
1245
1276
  }
1246
1277
  };
1247
- }, Yt = (e) => {
1278
+ }, Kt = (e) => {
1248
1279
  var t, n, l;
1249
1280
  return {
1250
1281
  status: e.status == 1,
@@ -1255,7 +1286,7 @@ const De = (e) => {
1255
1286
  binded: ((l = e.data) == null ? void 0 : l.binded) ?? !1
1256
1287
  }
1257
1288
  };
1258
- }, Kt = (e) => h(e), Qt = (e) => {
1289
+ }, Qt = (e) => T(e), Xt = (e) => {
1259
1290
  var t;
1260
1291
  return {
1261
1292
  status: e.status == 1,
@@ -1265,48 +1296,48 @@ const De = (e) => {
1265
1296
  createdAt: n.created_at
1266
1297
  }))) ?? []
1267
1298
  };
1268
- }, Xt = (e) => h(e), Zt = (e) => {
1299
+ }, Zt = (e) => T(e), en = (e) => {
1269
1300
  var t, n, l;
1270
1301
  return {
1271
1302
  status: e.status == 1,
1272
1303
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
1273
1304
  data: {
1274
- companyCount: ((t = e.data.companyRCount) == null ? void 0 : t.map((s) => ({
1275
- key: s.key,
1276
- count: s.count
1305
+ companyCount: ((t = e.data.companyRCount) == null ? void 0 : t.map((i) => ({
1306
+ key: i.key,
1307
+ count: i.count
1277
1308
  }))) ?? [],
1278
- prizeCount: ((n = e.data.prizeRCount) == null ? void 0 : n.map((s) => ({
1279
- key: s.key,
1280
- count: s.count
1309
+ prizeCount: ((n = e.data.prizeRCount) == null ? void 0 : n.map((i) => ({
1310
+ key: i.key,
1311
+ count: i.count
1281
1312
  }))) ?? [],
1282
- list: ((l = e.data.list) == null ? void 0 : l.map((s) => ({
1283
- dimension: s.combination_dimension,
1284
- combination: s.combination_combination,
1285
- prizePosition: s.combination_position,
1286
- drawIdentifier: s.draw.draw_identifier,
1287
- drawTimestamp: s.draw.draw_tmactive,
1288
- companyId: s.company.company_id,
1289
- companyName: s.company.company_name
1313
+ list: ((l = e.data.list) == null ? void 0 : l.map((i) => ({
1314
+ dimension: i.combination_dimension,
1315
+ combination: i.combination_combination,
1316
+ prizePosition: i.combination_position,
1317
+ drawIdentifier: i.draw.draw_identifier,
1318
+ drawTimestamp: i.draw.draw_tmactive,
1319
+ companyId: i.company.company_id,
1320
+ companyName: i.company.company_name
1290
1321
  }))) ?? []
1291
1322
  }
1292
1323
  };
1293
- }, en = (e) => h(e), tn = (e) => ({
1324
+ }, tn = (e) => T(e), nn = (e) => ({
1294
1325
  status: e.status == 1,
1295
1326
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
1296
1327
  tokenAmount: e.token_amount
1297
- }), nn = (e) => h(e);
1298
- var A = /* @__PURE__ */ ((e) => (e.vipcalculation = "vipcalculation", e.livechat = "livechat", e.extralivechat = "extralivechat", e.mobilevalidate = "mobilevalidate", e.withdrawtac = "withdrawtac", e.imageDomain = "imagedomain", e.withdrawalCode = "withdrawalcode", e.withdrawAlipay = "withdrawalipay", e.crypto = "crypto", e))(A || {});
1299
- const an = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1328
+ }), an = (e) => T(e);
1329
+ var E = /* @__PURE__ */ ((e) => (e.vipcalculation = "vipcalculation", e.livechat = "livechat", e.extralivechat = "extralivechat", e.mobilevalidate = "mobilevalidate", e.withdrawtac = "withdrawtac", e.imageDomain = "imagedomain", e.withdrawalCode = "withdrawalcode", e.withdrawAlipay = "withdrawalipay", e.crypto = "crypto", e))(E || {});
1330
+ const on = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1300
1331
  __proto__: null,
1301
- SettingType: A
1302
- }, Symbol.toStringTag, { value: "Module" })), on = (e) => {
1332
+ SettingType: E
1333
+ }, Symbol.toStringTag, { value: "Module" })), rn = (e) => {
1303
1334
  let t = 0;
1304
1335
  return e.data != null && typeof e.data == "object" && (t = e.data.amount), {
1305
1336
  status: e.status,
1306
1337
  message: e.msg ?? "",
1307
1338
  amount: t
1308
1339
  };
1309
- }, rn = (e) => e.status == 0 ? {
1340
+ }, sn = (e) => e.status == 0 ? {
1310
1341
  record: {
1311
1342
  today: {
1312
1343
  deposit: "0",
@@ -1336,70 +1367,79 @@ const an = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1336
1367
  loseLimit: t.loselimit,
1337
1368
  maxReward: t.max_reward
1338
1369
  }))
1339
- }, sn = (e) => e.status == 0 ? [] : e.data.map((t) => ({
1370
+ }, ln = (e) => e.status == 0 ? [] : e.data.map((t) => ({
1340
1371
  amount: t.amount,
1341
1372
  date: t.date,
1342
1373
  deposit: t.deposit,
1343
1374
  payout: t.payout
1344
- })), ln = async (e) => {
1345
- var t, n, l, s, u, d, m, y, g, _, O;
1375
+ })), un = async (e) => {
1376
+ var t, n, l, i, u, d, m, y, g, h, O, M;
1346
1377
  try {
1347
- e.findIndex((c) => c.name === i.vipList) !== -1 && e.push(
1378
+ e.findIndex((c) => c.name === s.vipList) !== -1 && e.push(
1348
1379
  {
1349
- name: i.vipBonus,
1380
+ name: s.vipBonus,
1350
1381
  query: ""
1351
1382
  },
1352
- { name: i.vipFieldStatus, query: "" },
1353
- { name: i.vipStatus, query: "" },
1383
+ { name: s.vipFieldStatus, query: "" },
1384
+ { name: s.vipStatus, query: "" },
1354
1385
  {
1355
- name: i.getSetting,
1356
- query: JSON.stringify({ name: [A.vipcalculation] })
1386
+ name: s.getSetting,
1387
+ query: JSON.stringify({ name: [E.vipcalculation] })
1357
1388
  }
1358
- ), e.findIndex((c) => c.name === i.gameList) !== -1 && e.push({
1359
- name: i.getPlatformTurnoverRate,
1389
+ );
1390
+ const R = e.findIndex((c) => c.name === s.gameList);
1391
+ R !== -1 && (JSON.parse(e[R].query).pid || e.push({
1392
+ name: s.fishGameList,
1393
+ query: JSON.stringify({
1394
+ d: "mobile",
1395
+ p: "1",
1396
+ c: "0"
1397
+ })
1398
+ }), e.push({
1399
+ name: s.getPlatformTurnoverRate,
1360
1400
  query: ""
1361
- });
1362
- const v = e.findIndex((c) => c.name === i.searchHot);
1363
- if (v !== -1) {
1401
+ }));
1402
+ const P = e.findIndex((c) => c.name === s.searchHot);
1403
+ if (P !== -1) {
1364
1404
  let c = {};
1365
1405
  e.forEach((f) => {
1366
1406
  c = f.query;
1367
- }), e.splice(v), e.push({
1368
- name: i.getFourDimensionData,
1407
+ }), e.splice(P), e.push({
1408
+ name: s.getFourDimensionData,
1369
1409
  query: String(c)
1370
1410
  });
1371
1411
  }
1372
- const k = e.findIndex((c) => c.name === i.searchNumberHistory);
1373
- if (k !== -1) {
1412
+ const G = e.findIndex((c) => c.name === s.searchNumberHistory);
1413
+ if (G !== -1) {
1374
1414
  let c = {};
1375
1415
  e.forEach((f) => {
1376
1416
  c = f.query;
1377
- }), e.splice(k), e.push({
1378
- name: i.getFourDimensionData,
1417
+ }), e.splice(G), e.push({
1418
+ name: s.getFourDimensionData,
1379
1419
  query: String(c)
1380
1420
  });
1381
1421
  }
1382
- if (e.findIndex((c) => c.name === i.searchByDate) !== -1) {
1422
+ if (e.findIndex((c) => c.name === s.searchByDate) !== -1) {
1383
1423
  let c = {};
1384
1424
  e.forEach((f) => {
1385
1425
  c = f.query;
1386
- }), e.splice(k), e.push({
1387
- name: i.getFourDimensionData,
1426
+ }), e.splice(G), e.push({
1427
+ name: s.getFourDimensionData,
1388
1428
  query: String(c)
1389
1429
  });
1390
1430
  }
1391
- const z = e.findIndex(
1392
- (c) => c.name === i.getFourDimensionData
1431
+ const v = e.findIndex(
1432
+ (c) => c.name === s.getFourDimensionData
1393
1433
  );
1394
- z !== -1 && e[z].query == "" && (e.splice(z), e.push(
1434
+ v !== -1 && e[v].query == "" && (e.splice(v), e.push(
1395
1435
  {
1396
- name: i.getFourDimensionData,
1397
- query: JSON.stringify({ action: i.getCompany, native: "1" })
1436
+ name: s.getFourDimensionData,
1437
+ query: JSON.stringify({ action: s.getCompany, native: "1" })
1398
1438
  },
1399
1439
  {
1400
- name: i.getFourDimensionData,
1440
+ name: s.getFourDimensionData,
1401
1441
  query: JSON.stringify({
1402
- action: i.searchResultDate,
1442
+ action: s.searchResultDate,
1403
1443
  limit: 100,
1404
1444
  company: [],
1405
1445
  native: "1",
@@ -1407,639 +1447,695 @@ const an = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1407
1447
  })
1408
1448
  }
1409
1449
  ));
1410
- const U = {
1450
+ const A = {
1411
1451
  requests: e.map((c) => ({
1412
1452
  name: c.name,
1413
1453
  query: btoa(c.query)
1414
1454
  }))
1415
- }, $ = await I.post(
1455
+ }, te = await L.post(
1416
1456
  "/jwt",
1417
- te(JSON.stringify(U))
1418
- ), a = {
1457
+ ne(JSON.stringify(A))
1458
+ ), o = {
1419
1459
  status: 200,
1420
1460
  message: "",
1421
1461
  result: {}
1422
1462
  };
1423
- for (const c of $.data.responses) {
1424
- c.error != null && c.error.code != 200 && (a.status = c.error.code, a.message = c.error.message);
1425
- const f = c.attributes !== null && c.attributes !== void 0 ? ne(c.attributes) : null, o = c.name, r = f ? JSON.parse(f) : null;
1426
- if (console.log(o), console.log(r), !r)
1427
- console.log("Not data received"), a.result[o] = null;
1463
+ for (const c of te.data.responses) {
1464
+ c.error != null && c.error.code != 200 && (o.status = c.error.code, o.message = c.error.message);
1465
+ const f = c.attributes !== null && c.attributes !== void 0 ? ae(c.attributes) : null, r = c.name, a = f ? JSON.parse(f) : null;
1466
+ if (console.log(r), console.log(a), !a)
1467
+ console.log("Not data received"), o.result[r] = null;
1428
1468
  else
1429
- switch (o) {
1430
- case i.announcement:
1431
- a.result[o] = me(r);
1469
+ switch (r) {
1470
+ case s.announcement:
1471
+ o.result[r] = pe(a);
1432
1472
  break;
1433
- case i.gameList:
1434
- a.result[o] = ge(r);
1473
+ case s.gameList:
1474
+ o.result[r] = be(a);
1435
1475
  break;
1436
- case i.cmsList:
1437
- a.result[o] = ve(r);
1476
+ case s.cmsList:
1477
+ o.result[r] = Re(a);
1438
1478
  break;
1439
- case i.paymentsProvider:
1440
- a.result[o] = le(
1441
- r
1479
+ case s.paymentsProvider:
1480
+ o.result[r] = ue(
1481
+ a
1442
1482
  );
1443
1483
  break;
1444
- case i.getUserProfile:
1445
- a.result[o] = pe(r);
1484
+ case s.getUserProfile:
1485
+ o.result[r] = ge(a);
1446
1486
  break;
1447
- case i.vipList:
1448
- a.result[o] = be(r);
1487
+ case s.vipList:
1488
+ o.result[r] = fe(a);
1449
1489
  break;
1450
- case i.vipBonus:
1451
- a.result[o] = fe(r);
1490
+ case s.vipBonus:
1491
+ o.result[r] = _e(a);
1452
1492
  break;
1453
- case i.vipFieldStatus:
1454
- a.result[o] = _e(r);
1493
+ case s.vipFieldStatus:
1494
+ o.result[r] = he(a);
1455
1495
  break;
1456
- case i.vipStatus:
1457
- a.result[o] = he(r);
1496
+ case s.vipStatus:
1497
+ o.result[r] = Te(a);
1458
1498
  break;
1459
- case i.promotion:
1460
- a.result[o] = ye(r);
1499
+ case s.promotion:
1500
+ o.result[r] = ye(a);
1461
1501
  break;
1462
- case i.getSetting:
1463
- a.result[o] = Te(r);
1502
+ case s.getSetting:
1503
+ o.result[r] = ve(a);
1464
1504
  break;
1465
- case i.getCountryMobile:
1466
- a.result[o] = Re(
1467
- r
1505
+ case s.getCountryMobile:
1506
+ o.result[r] = Se(
1507
+ a
1468
1508
  );
1469
1509
  break;
1470
- case i.getPlatformTurnoverRate:
1471
- a.result[o] = Se(
1472
- r
1510
+ case s.getPlatformTurnoverRate:
1511
+ o.result[r] = ke(
1512
+ a
1473
1513
  );
1474
1514
  break;
1475
- case i.mainWallet:
1476
- a.result[o] = ke(r);
1515
+ case s.mainWallet:
1516
+ o.result[r] = Pe(a);
1477
1517
  break;
1478
- case i.getLanguageSetting:
1479
- a.result[o] = Pe(
1480
- r
1518
+ case s.getLanguageSetting:
1519
+ o.result[r] = Oe(
1520
+ a
1481
1521
  );
1482
1522
  break;
1483
- case i.getFourDimensionData:
1484
- a.result[o] = Oe(
1485
- r
1523
+ case s.getFourDimensionData:
1524
+ o.result[r] = Me(
1525
+ a
1486
1526
  );
1487
1527
  break;
1488
- case i.getCompany:
1489
- a.result[o] = Me(r);
1528
+ case s.getCompany:
1529
+ o.result[r] = je(a);
1490
1530
  break;
1491
- case i.searchResultDate:
1492
- a.result[o] = je(
1493
- r
1531
+ case s.searchResultDate:
1532
+ o.result[r] = xe(
1533
+ a
1494
1534
  );
1495
1535
  break;
1496
- case i.searchHot:
1497
- a.result[o] = De(r);
1536
+ case s.searchHot:
1537
+ o.result[r] = Ce(a);
1498
1538
  break;
1499
- case i.searchByDate:
1500
- a.result[o] = Ce(r);
1539
+ case s.searchByDate:
1540
+ o.result[r] = we(a);
1501
1541
  break;
1502
- case i.upcomingMatches:
1503
- a.result[o] = we(
1504
- r
1542
+ case s.upcomingMatches:
1543
+ o.result[r] = Ie(
1544
+ a
1505
1545
  );
1506
1546
  break;
1507
- case i.deposit:
1508
- a.result[o] = Ie(r);
1547
+ case s.deposit:
1548
+ o.result[r] = Le(a);
1509
1549
  break;
1510
- case i.applyVipBonus:
1511
- a.result[o] = Le(r);
1550
+ case s.applyVipBonus:
1551
+ o.result[r] = Ge(a);
1512
1552
  break;
1513
- case i.withdraw:
1514
- a.result[o] = ze(r);
1553
+ case s.withdraw:
1554
+ o.result[r] = ze(a);
1515
1555
  break;
1516
- case i.getBankCardData:
1517
- a.result[o] = Fe(
1518
- r
1556
+ case s.getBankCardData:
1557
+ o.result[r] = Ne(
1558
+ a
1519
1559
  );
1520
1560
  break;
1521
- case i.withdrawalGet:
1522
- a.result[o] = Ne(r);
1561
+ case s.withdrawalGet:
1562
+ o.result[r] = Fe(a);
1523
1563
  break;
1524
- case i.addBankCard:
1525
- a.result[o] = Be(r);
1564
+ case s.addBankCard:
1565
+ o.result[r] = Be(a);
1526
1566
  break;
1527
- case i.transactionReport:
1528
- a.result[o] = Ge(
1529
- r
1567
+ case s.transactionReport:
1568
+ o.result[r] = Ue(
1569
+ a
1530
1570
  );
1531
1571
  break;
1532
- case i.changePassword:
1533
- a.result[o] = Ue(r);
1572
+ case s.changePassword:
1573
+ o.result[r] = Ve(a);
1534
1574
  break;
1535
- case i.wallet:
1536
- a.result[o] = Ve(r);
1575
+ case s.wallet:
1576
+ o.result[r] = We(a);
1537
1577
  break;
1538
- case i.getEventList:
1539
- a.result[o] = We(r);
1578
+ case s.getEventList:
1579
+ o.result[r] = Ee(a);
1540
1580
  break;
1541
- case i.getEventToken:
1542
- a.result[o] = Ee(r);
1581
+ case s.getEventToken:
1582
+ o.result[r] = $e(a);
1543
1583
  break;
1544
- case i.getExtraGame:
1545
- a.result[o] = Ae(r);
1584
+ case s.getExtraGame:
1585
+ o.result[r] = Ae(a);
1546
1586
  break;
1547
- case i.mailBox:
1548
- a.result[o] = $e(r);
1587
+ case s.mailBox:
1588
+ o.result[r] = He(a);
1549
1589
  break;
1550
- case i.fishGameList:
1551
- a.result[o] = He(r);
1590
+ case s.fishGameList:
1591
+ o.result[r] = Je(a);
1552
1592
  break;
1553
- case i.slotGameList:
1554
- a.result[o] = Je(r);
1593
+ case s.slotGameList:
1594
+ o.result[r] = Ye(a);
1555
1595
  break;
1556
- case i.getTurnOverRewardData:
1557
- a.result[o] = Ye(
1558
- r
1596
+ case s.getTurnOverRewardData:
1597
+ o.result[r] = Ke(
1598
+ a
1559
1599
  );
1560
1600
  break;
1561
- case i.getTurnOverRewardReport:
1562
- a.result[o] = Ke(
1563
- r
1601
+ case s.getTurnOverRewardReport:
1602
+ o.result[r] = Qe(
1603
+ a
1564
1604
  );
1565
1605
  break;
1566
- case i.getInviteRewardData:
1567
- a.result[o] = Qe(
1568
- r
1606
+ case s.getInviteRewardData:
1607
+ o.result[r] = Xe(
1608
+ a
1569
1609
  );
1570
1610
  break;
1571
- case i.getInviteRewardReport:
1572
- a.result[o] = Xe(
1573
- r
1611
+ case s.getInviteRewardReport:
1612
+ o.result[r] = Ze(
1613
+ a
1574
1614
  );
1575
1615
  break;
1576
- case i.getTopupRewardData:
1577
- a.result[o] = Ze(
1578
- r
1616
+ case s.getTopupRewardData:
1617
+ o.result[r] = et(
1618
+ a
1579
1619
  );
1580
1620
  break;
1581
- case i.getTopupRewardReport:
1582
- a.result[o] = et(
1583
- r
1621
+ case s.getTopupRewardReport:
1622
+ o.result[r] = tt(
1623
+ a
1584
1624
  );
1585
1625
  break;
1586
- case i.getRewardReferral:
1587
- a.result[o] = tt(
1588
- r
1626
+ case s.getRewardReferral:
1627
+ o.result[r] = nt(
1628
+ a
1589
1629
  );
1590
1630
  break;
1591
- case i.submitWithdrawValidate:
1592
- a.result[o] = W(r);
1631
+ case s.submitWithdrawValidate:
1632
+ o.result[r] = V(a);
1593
1633
  break;
1594
- case i.getDepositPromotion:
1595
- a.result[o] = nt(
1596
- r
1634
+ case s.getDepositPromotion:
1635
+ o.result[r] = at(
1636
+ a
1597
1637
  );
1598
1638
  break;
1599
- case i.getTopUpRewardClaim:
1600
- a.result[o] = at(
1601
- r
1639
+ case s.getTopUpRewardClaim:
1640
+ o.result[r] = ot(
1641
+ a
1602
1642
  );
1603
1643
  break;
1604
- case i.getInviteRewardClaim:
1605
- a.result[o] = ot(
1606
- r
1644
+ case s.getInviteRewardClaim:
1645
+ o.result[r] = rt(
1646
+ a
1607
1647
  );
1608
1648
  break;
1609
- case i.getTurnOverRewardClaim:
1610
- a.result[o] = rt(
1611
- r
1649
+ case s.getTurnOverRewardClaim:
1650
+ o.result[r] = st(
1651
+ a
1612
1652
  );
1613
1653
  break;
1614
- case i.getInviteRewardSetting:
1615
- a.result[o] = st(
1616
- r
1654
+ case s.getInviteRewardSetting:
1655
+ o.result[r] = it(
1656
+ a
1617
1657
  );
1618
1658
  break;
1619
- case i.getTurnOverRewardSetting:
1620
- a.result[o] = it(
1621
- r
1659
+ case s.getTurnOverRewardSetting:
1660
+ o.result[r] = lt(
1661
+ a
1622
1662
  );
1623
1663
  break;
1624
- case i.getTopUpRewardSetting:
1625
- a.result[o] = lt(
1626
- r
1664
+ case s.getTopUpRewardSetting:
1665
+ o.result[r] = ut(
1666
+ a
1627
1667
  );
1628
1668
  break;
1629
- case i.requestForgetPassword:
1630
- a.result[o] = ut(
1631
- r
1669
+ case s.requestForgetPassword:
1670
+ o.result[r] = dt(
1671
+ a
1632
1672
  );
1633
1673
  break;
1634
- case i.submitForgetPassword:
1635
- a.result[o] = dt(
1636
- r
1674
+ case s.submitForgetPassword:
1675
+ o.result[r] = ct(
1676
+ a
1637
1677
  );
1638
1678
  break;
1639
- case i.getImage:
1640
- a.result[o] = ct(r);
1679
+ case s.getImage:
1680
+ o.result[r] = mt(a);
1641
1681
  break;
1642
- case i.getDepositValidate:
1643
- a.result[o] = V(r);
1682
+ case s.getDepositValidate:
1683
+ o.result[r] = q(a);
1644
1684
  break;
1645
- case i.getWithdrawValidate:
1646
- a.result[o] = V(r);
1685
+ case s.getWithdrawValidate:
1686
+ o.result[r] = q(a);
1647
1687
  break;
1648
- case i.getTransferCreditValidate:
1649
- a.result[o] = V(r);
1688
+ case s.getTransferCreditValidate:
1689
+ o.result[r] = q(a);
1650
1690
  break;
1651
- case i.updateProfilePicture:
1652
- a.result[o] = pt(
1653
- r
1691
+ case s.updateProfilePicture:
1692
+ o.result[r] = gt(
1693
+ a
1654
1694
  );
1655
1695
  break;
1656
- case i.readMail:
1657
- a.result[o] = gt(r);
1696
+ case s.readMail:
1697
+ o.result[r] = bt(a);
1658
1698
  break;
1659
- case i.checkRedPacketValidate:
1660
- a.result[o] = bt(
1661
- r
1699
+ case s.checkRedPacketValidate:
1700
+ o.result[r] = ft(
1701
+ a
1662
1702
  );
1663
1703
  break;
1664
- case i.requestTacCode:
1665
- a.result[o] = yt(r);
1704
+ case s.requestTacCode:
1705
+ o.result[r] = yt(a);
1666
1706
  break;
1667
- case i.getUsernameByRefer:
1668
- a.result[o] = ft(
1669
- r
1707
+ case s.getUsernameByRefer:
1708
+ o.result[r] = _t(
1709
+ a
1670
1710
  );
1671
1711
  break;
1672
- case i.applyPromo:
1673
- a.result[o] = _t(r);
1712
+ case s.applyPromo:
1713
+ o.result[r] = ht(a);
1674
1714
  break;
1675
- case i.applyRedPacket:
1676
- a.result[o] = ht(r);
1715
+ case s.applyRedPacket:
1716
+ o.result[r] = Tt(a);
1677
1717
  break;
1678
- case i.applySignIn:
1679
- a.result[o] = Tt(r);
1718
+ case s.applySignIn:
1719
+ o.result[r] = vt(a);
1680
1720
  break;
1681
- case i.getCountry:
1682
- a.result[o] = vt(r);
1721
+ case s.getCountry:
1722
+ o.result[r] = Rt(a);
1683
1723
  break;
1684
- case i.submitGiftCode:
1685
- a.result[o] = Rt(r);
1724
+ case s.submitGiftCode:
1725
+ o.result[r] = St(a);
1686
1726
  break;
1687
- case i.playGame:
1688
- a.result[o] = St(r);
1727
+ case s.playGame:
1728
+ o.result[r] = kt(a);
1689
1729
  break;
1690
- case i.transferToMain:
1691
- a.result[o] = kt(r);
1730
+ case s.transferToMain:
1731
+ o.result[r] = Pt(a);
1692
1732
  break;
1693
- case i.transferProcess:
1694
- a.result[o] = Pt(
1695
- r
1733
+ case s.transferProcess:
1734
+ o.result[r] = Ot(
1735
+ a
1696
1736
  );
1697
1737
  break;
1698
- case i.submitDepositValidate:
1699
- a.result[o] = W(r);
1738
+ case s.submitDepositValidate:
1739
+ o.result[r] = V(a);
1700
1740
  break;
1701
- case i.submitTransferCreditValidate:
1702
- a.result[o] = W(r);
1741
+ case s.submitTransferCreditValidate:
1742
+ o.result[r] = V(a);
1703
1743
  break;
1704
- case i.checkTransferCredit:
1705
- a.result[o] = Ot(
1706
- r
1744
+ case s.checkTransferCredit:
1745
+ o.result[r] = Mt(
1746
+ a
1707
1747
  );
1708
1748
  break;
1709
- case i.friendList:
1710
- a.result[o] = Mt(r);
1749
+ case s.friendList:
1750
+ o.result[r] = jt(a);
1711
1751
  break;
1712
- case i.friendListEdit:
1713
- a.result[o] = jt(r);
1752
+ case s.friendListEdit:
1753
+ o.result[r] = xt(a);
1714
1754
  break;
1715
- case i.getActivePP:
1716
- a.result[o] = xt(r);
1755
+ case s.getActivePP:
1756
+ o.result[r] = Dt(a);
1717
1757
  break;
1718
- case i.getActiveProduct:
1719
- a.result[o] = Dt(
1720
- r
1758
+ case s.getActiveProduct:
1759
+ o.result[r] = Ct(
1760
+ a
1721
1761
  );
1722
1762
  break;
1723
- case i.requestWithdrawTac:
1724
- a.result[o] = Ct(
1725
- r
1763
+ case s.requestWithdrawTac:
1764
+ o.result[r] = wt(
1765
+ a
1726
1766
  );
1727
1767
  break;
1728
- case i.requestWithdrawalCode:
1729
- a.result[o] = wt(
1730
- r
1768
+ case s.requestWithdrawalCode:
1769
+ o.result[r] = It(
1770
+ a
1731
1771
  );
1732
1772
  break;
1733
- case i.commissionWithdraw:
1734
- a.result[o] = It(
1735
- r
1773
+ case s.commissionWithdraw:
1774
+ o.result[r] = Lt(
1775
+ a
1736
1776
  );
1737
1777
  break;
1738
- case i.submitWithdrawalCode:
1739
- a.result[o] = Lt(
1740
- r
1778
+ case s.submitWithdrawalCode:
1779
+ o.result[r] = Gt(
1780
+ a
1741
1781
  );
1742
1782
  break;
1743
- case i.submitCryptoAccount:
1744
- a.result[o] = zt(
1745
- r
1783
+ case s.submitCryptoAccount:
1784
+ o.result[r] = zt(
1785
+ a
1746
1786
  );
1747
1787
  break;
1748
- case i.requestTransferMoney:
1749
- a.result[o] = Ft(
1750
- r
1788
+ case s.requestTransferMoney:
1789
+ o.result[r] = Nt(
1790
+ a
1751
1791
  );
1752
1792
  break;
1753
- case i.submitTransferMoney:
1754
- a.result[o] = Nt(
1755
- r
1793
+ case s.submitTransferMoney:
1794
+ o.result[r] = Ft(
1795
+ a
1756
1796
  );
1757
1797
  break;
1758
- case i.requestUpdateMobileTacCode:
1759
- a.result[o] = Bt(
1760
- r
1798
+ case s.requestUpdateMobileTacCode:
1799
+ o.result[r] = Bt(
1800
+ a
1761
1801
  );
1762
1802
  break;
1763
- case i.submitUpdateMobileTacCode:
1764
- a.result[o] = Gt(
1765
- r
1803
+ case s.submitUpdateMobileTacCode:
1804
+ o.result[r] = Ut(
1805
+ a
1766
1806
  );
1767
1807
  break;
1768
- case i.getVerifyPromo:
1769
- a.result[o] = qt(r);
1808
+ case s.getVerifyPromo:
1809
+ o.result[r] = qt(a);
1770
1810
  break;
1771
- case i.signInViewInfo:
1772
- a.result[o] = Ut(r);
1811
+ case s.signInViewInfo:
1812
+ o.result[r] = Vt(a);
1773
1813
  break;
1774
- case i.signInRecord:
1775
- a.result[o] = Vt(r);
1814
+ case s.signInRecord:
1815
+ o.result[r] = Wt(a);
1776
1816
  break;
1777
- case i.referralProfile:
1778
- a.result[o] = Wt(
1779
- r
1817
+ case s.referralProfile:
1818
+ o.result[r] = Et(
1819
+ a
1780
1820
  );
1781
1821
  break;
1782
- case i.referralMemberProfile:
1783
- a.result[o] = Et(
1784
- r
1822
+ case s.referralMemberProfile:
1823
+ o.result[r] = $t(
1824
+ a
1785
1825
  );
1786
1826
  break;
1787
- case i.registerAction:
1788
- a.result[o] = At(r);
1827
+ case s.registerAction:
1828
+ o.result[r] = At(a);
1789
1829
  break;
1790
- case i.transferReport:
1791
- a.result[o] = $t(r);
1830
+ case s.transferReport:
1831
+ o.result[r] = Ht(a);
1792
1832
  break;
1793
- case i.agTransferCreditReport:
1794
- a.result[o] = Ht(
1795
- r
1833
+ case s.agTransferCreditReport:
1834
+ o.result[r] = Jt(
1835
+ a
1796
1836
  );
1797
1837
  break;
1798
- case i.betReport:
1799
- a.result[o] = Jt(r);
1838
+ case s.betReport:
1839
+ o.result[r] = Yt(a);
1800
1840
  break;
1801
- case i.getTwoFactorAuthenticate:
1802
- a.result[o] = Yt(
1803
- r
1841
+ case s.getTwoFactorAuthenticate:
1842
+ o.result[r] = Kt(
1843
+ a
1804
1844
  );
1805
1845
  break;
1806
- case i.submitTwoFactorAuthenticate:
1807
- a.result[o] = Kt(
1808
- r
1846
+ case s.submitTwoFactorAuthenticate:
1847
+ o.result[r] = Qt(
1848
+ a
1809
1849
  );
1810
1850
  break;
1811
- case i.getUserDeviceList:
1812
- a.result[o] = Qt(
1813
- r
1851
+ case s.getUserDeviceList:
1852
+ o.result[r] = Xt(
1853
+ a
1814
1854
  );
1815
1855
  break;
1816
- case i.unbindUserDevice:
1817
- a.result[o] = Xt(
1818
- r
1856
+ case s.unbindUserDevice:
1857
+ o.result[r] = Zt(
1858
+ a
1819
1859
  );
1820
1860
  break;
1821
- case i.searchNumberHistory:
1822
- a.result[o] = Zt(
1823
- r
1861
+ case s.searchNumberHistory:
1862
+ o.result[r] = en(
1863
+ a
1824
1864
  );
1825
1865
  break;
1826
- case i.changeWithdrawalCode:
1827
- a.result[o] = en(
1828
- r
1866
+ case s.changeWithdrawalCode:
1867
+ o.result[r] = tn(
1868
+ a
1829
1869
  );
1830
1870
  break;
1831
- case i.checkRedPacketToken:
1832
- a.result[o] = tn(
1833
- r
1871
+ case s.checkRedPacketToken:
1872
+ o.result[r] = nn(
1873
+ a
1834
1874
  );
1835
1875
  break;
1836
- case i.submitWithdrawalAlipay:
1837
- a.result[o] = nn(
1838
- r
1876
+ case s.submitWithdrawalAlipay:
1877
+ o.result[r] = an(
1878
+ a
1839
1879
  );
1840
1880
  break;
1841
- case i.applyReliefFund:
1842
- a.result[o] = on(
1843
- r
1881
+ case s.applyReliefFund:
1882
+ o.result[r] = rn(
1883
+ a
1844
1884
  );
1845
1885
  break;
1846
- case i.getReliefFundData:
1847
- a.result[o] = rn(
1848
- r
1886
+ case s.getReliefFundData:
1887
+ o.result[r] = sn(
1888
+ a
1849
1889
  );
1850
1890
  break;
1851
- case i.getReliefFundReport:
1852
- a.result[o] = sn(
1853
- r
1891
+ case s.getReliefFundReport:
1892
+ o.result[r] = ln(
1893
+ a
1854
1894
  );
1855
1895
  break;
1856
1896
  }
1857
1897
  }
1858
- if (i.vipList in a.result && ((t = a.result) != null && t.vipList)) {
1859
- const c = a.result.vipList;
1898
+ if (s.vipList in o.result && ((t = o.result) != null && t.vipList)) {
1899
+ const c = o.result.vipList;
1860
1900
  let f = 4;
1861
- if (i.getSetting in a.result && ((n = a.result) != null && n.getSetting && (f = a.result.getSetting.vipCalculation), delete a.result.getSetting), i.vipStatus in a.result) {
1862
- if ((l = a.result) != null && l.vipStatus) {
1863
- const o = a.result.vipStatus, {
1864
- current_grade_id: r,
1865
- current_deposit: P,
1866
- current_turnover: x,
1867
- percentage: L
1868
- } = o, D = c.list.findIndex((R) => R.id === r);
1869
- c.list = c.list.map((R, C) => {
1870
- const w = C === D;
1871
- let M = "0", b = "0", F = 0;
1872
- return w ? (M = `${Math.min(Number(P), Number(R.deposit.total))}`, b = `${Math.min(Number(x), Number(R.turnover.total))}`, F = L) : C < D ? (M = R.deposit.total, b = R.turnover.total, F = 1) : C > D && (M = "0.00", b = "0.00", F = 0), {
1873
- ...R,
1874
- is_current_level: w,
1901
+ if (s.getSetting in o.result && ((n = o.result) != null && n.getSetting && (f = o.result.getSetting.vipCalculation), delete o.result.getSetting), s.vipStatus in o.result) {
1902
+ if ((l = o.result) != null && l.vipStatus) {
1903
+ const r = o.result.vipStatus, {
1904
+ current_grade_id: a,
1905
+ current_deposit: _,
1906
+ current_turnover: S,
1907
+ percentage: j
1908
+ } = r, C = c.list.findIndex((k) => k.id === a);
1909
+ c.list = c.list.map((k, w) => {
1910
+ const I = w === C;
1911
+ let x = "0", b = "0", z = 0;
1912
+ return I ? (x = `${Math.min(Number(_), Number(k.deposit.total))}`, b = `${Math.min(Number(S), Number(k.turnover.total))}`, z = j) : w < C ? (x = k.deposit.total, b = k.turnover.total, z = 1) : w > C && (x = "0.00", b = "0.00", z = 0), {
1913
+ ...k,
1914
+ is_current_level: I,
1875
1915
  deposit: {
1876
- ...R.deposit,
1916
+ ...k.deposit,
1877
1917
  isShow: f === 1 || f === 3 || f === 4,
1878
- current: M
1918
+ current: x
1879
1919
  },
1880
1920
  turnover: {
1881
- ...R.turnover,
1921
+ ...k.turnover,
1882
1922
  isShow: f === 2 || f === 3 || f === 4,
1883
1923
  current: b
1884
1924
  },
1885
- percentage: F
1925
+ percentage: z
1886
1926
  };
1887
1927
  });
1888
1928
  }
1889
- delete a.result.vipStatus;
1929
+ delete o.result.vipStatus;
1890
1930
  }
1891
- if (i.vipBonus in a.result) {
1892
- if ((s = a.result) != null && s.vipBonus) {
1893
- const o = a.result.vipBonus, r = c.list.find((F) => F.is_current_level == !0), P = Number(r == null ? void 0 : r.benefit_list.daily.bonus) ?? 0, x = Number(r == null ? void 0 : r.benefit_list.weekly.bonus) ?? 0, L = Number(r == null ? void 0 : r.benefit_list.monthly.bonus) ?? 0;
1894
- c.bonus.day.isClaimable = o.day.isClaimable;
1895
- const { dayRemainingTime: D, dayProgressPercentage: R } = re();
1931
+ if (s.vipBonus in o.result) {
1932
+ if ((i = o.result) != null && i.vipBonus) {
1933
+ const r = o.result.vipBonus, a = c.list.find((z) => z.is_current_level == !0), _ = Number(a == null ? void 0 : a.benefit_list.daily.bonus) ?? 0, S = Number(a == null ? void 0 : a.benefit_list.weekly.bonus) ?? 0, j = Number(a == null ? void 0 : a.benefit_list.monthly.bonus) ?? 0;
1934
+ c.bonus.day.isClaimable = r.day.isClaimable;
1935
+ const { dayRemainingTime: C, dayProgressPercentage: k } = se();
1896
1936
  c.bonus.day.timestamp = {
1897
- current: !o.day.isClaimable && P > 0 ? D : 0,
1898
- percentage: R
1899
- }, c.bonus.week.isClaimable = o.week.isClaimable;
1900
- const { weekRemainingTime: C, weekProgressPercentage: w } = oe();
1937
+ current: !r.day.isClaimable && _ > 0 ? C : 0,
1938
+ percentage: k
1939
+ }, c.bonus.week.isClaimable = r.week.isClaimable;
1940
+ const { weekRemainingTime: w, weekProgressPercentage: I } = re();
1901
1941
  c.bonus.week.timestamp = {
1902
- current: !o.week.isClaimable && x > 0 ? C : 0,
1903
- percentage: w
1904
- }, c.bonus.month.isClaimable = o.month.isClaimable;
1905
- const { monthRemainingTime: M, monthProgressPercentage: b } = ae();
1942
+ current: !r.week.isClaimable && S > 0 ? w : 0,
1943
+ percentage: I
1944
+ }, c.bonus.month.isClaimable = r.month.isClaimable;
1945
+ const { monthRemainingTime: x, monthProgressPercentage: b } = oe();
1906
1946
  c.bonus.month.timestamp = {
1907
- current: !o.month.isClaimable && L > 0 ? M : 0,
1947
+ current: !r.month.isClaimable && j > 0 ? x : 0,
1908
1948
  percentage: b
1909
1949
  };
1910
1950
  }
1911
- delete a.result.vipBonus;
1951
+ delete o.result.vipBonus;
1912
1952
  }
1913
- if (i.vipFieldStatus in a.result) {
1914
- if ((u = a.result) != null && u.vipFieldStatus) {
1915
- const o = a.result.vipFieldStatus, r = [];
1916
- r.push({
1953
+ if (s.vipFieldStatus in o.result) {
1954
+ if ((u = o.result) != null && u.vipFieldStatus) {
1955
+ const r = o.result.vipFieldStatus, a = [];
1956
+ a.push({
1917
1957
  name: "",
1918
1958
  code: "vipLevel",
1919
1959
  value: c.list.map((b) => b.name)
1920
1960
  });
1921
- const P = o.findIndex(
1961
+ const _ = r.findIndex(
1922
1962
  (b) => b.fieldName == "upgrade_bonus"
1923
1963
  );
1924
- P > -1 && r.push({
1925
- name: o[P].showName,
1964
+ _ > -1 && a.push({
1965
+ name: r[_].showName,
1926
1966
  code: "",
1927
1967
  value: c.list.map((b) => b.benefit_list.upgrade.bonus)
1928
1968
  });
1929
- const x = o.findIndex(
1969
+ const S = r.findIndex(
1930
1970
  (b) => b.fieldName == "upgrade_bonus_multiply"
1931
1971
  );
1932
- x > -1 && r.push({
1933
- name: o[x].showName,
1972
+ S > -1 && a.push({
1973
+ name: r[S].showName,
1934
1974
  code: "",
1935
1975
  value: c.list.map((b) => b.benefit_list.upgrade.turnover)
1936
1976
  });
1937
- const L = o.findIndex(
1977
+ const j = r.findIndex(
1938
1978
  (b) => b.fieldName == "monthly_bonus"
1939
1979
  );
1940
- c.bonus.month.isShow = L > -1, L > -1 && r.push({
1941
- name: o[L].showName,
1980
+ c.bonus.month.isShow = j > -1, j > -1 && a.push({
1981
+ name: r[j].showName,
1942
1982
  code: "",
1943
1983
  value: c.list.map((b) => b.benefit_list.monthly.bonus)
1944
1984
  });
1945
- const D = o.findIndex(
1985
+ const C = r.findIndex(
1946
1986
  (b) => b.fieldName == "monthly_bonus_multiply"
1947
1987
  );
1948
- D > -1 && r.push({
1949
- name: o[D].showName,
1988
+ C > -1 && a.push({
1989
+ name: r[C].showName,
1950
1990
  code: "",
1951
1991
  value: c.list.map((b) => b.benefit_list.monthly.turnover)
1952
1992
  });
1953
- const R = o.findIndex(
1993
+ const k = r.findIndex(
1954
1994
  (b) => b.fieldName == "weekly_bonus"
1955
1995
  );
1956
- c.bonus.week.isShow = R > -1, R > -1 && r.push({
1957
- name: o[R].showName,
1996
+ c.bonus.week.isShow = k > -1, k > -1 && a.push({
1997
+ name: r[k].showName,
1958
1998
  code: "",
1959
1999
  value: c.list.map((b) => b.benefit_list.weekly.bonus)
1960
2000
  });
1961
- const C = o.findIndex(
2001
+ const w = r.findIndex(
1962
2002
  (b) => b.fieldName == "weekly_bonus_multiply"
1963
2003
  );
1964
- C > -1 && r.push({
1965
- name: o[C].showName,
2004
+ w > -1 && a.push({
2005
+ name: r[w].showName,
1966
2006
  code: "",
1967
2007
  value: c.list.map((b) => b.benefit_list.weekly.turnover)
1968
2008
  });
1969
- const w = o.findIndex(
2009
+ const I = r.findIndex(
1970
2010
  (b) => b.fieldName == "daily_bonus"
1971
2011
  );
1972
- c.bonus.day.isShow = w > -1, w > -1 && r.push({
1973
- name: o[w].showName,
2012
+ c.bonus.day.isShow = I > -1, I > -1 && a.push({
2013
+ name: r[I].showName,
1974
2014
  code: "",
1975
2015
  value: c.list.map((b) => b.benefit_list.daily.bonus)
1976
2016
  });
1977
- const M = o.findIndex(
2017
+ const x = r.findIndex(
1978
2018
  (b) => b.fieldName == "daily_bonus_multiply"
1979
2019
  );
1980
- M > -1 && r.push({
1981
- name: o[M].showName,
2020
+ x > -1 && a.push({
2021
+ name: r[x].showName,
1982
2022
  code: "",
1983
2023
  value: c.list.map((b) => b.benefit_list.daily.turnover)
1984
- }), (f === 1 || f === 3 || f === 4) && r.push({
2024
+ }), (f === 1 || f === 3 || f === 4) && a.push({
1985
2025
  name: "",
1986
2026
  code: "detail_deposit",
1987
2027
  value: c.list.map((b) => b.deposit.total)
1988
- }), (f === 2 || f === 3 || f === 4) && r.push({
2028
+ }), (f === 2 || f === 3 || f === 4) && a.push({
1989
2029
  name: "",
1990
2030
  code: "detail_turnover",
1991
2031
  value: c.list.map((b) => b.turnover.total)
1992
- }), c.detail = r;
2032
+ }), c.detail = a;
1993
2033
  }
1994
- delete a.result.vipFieldStatus;
2034
+ delete o.result.vipFieldStatus;
1995
2035
  }
1996
- a.result.vipList = c;
2036
+ o.result.vipList = c;
1997
2037
  }
1998
- if (i.gameList in a.result && ((d = a.result) != null && d.gameList)) {
1999
- const c = a.result.gameList;
2000
- if (i.getPlatformTurnoverRate in a.result && ((m = a.result) != null && m.getPlatformTurnoverRate)) {
2001
- const f = a.result.getPlatformTurnoverRate;
2002
- c.forEach((o) => {
2003
- o.list = o.list.map((r) => {
2004
- const P = f.find(
2005
- (x) => x.id === r.id
2038
+ if (s.gameList in o.result && ((d = o.result) != null && d.gameList)) {
2039
+ const c = o.result.gameList;
2040
+ if (JSON.parse(e[R].query).pid) {
2041
+ if (s.getPlatformTurnoverRate in o.result && ((m = o.result) != null && m.getPlatformTurnoverRate)) {
2042
+ const f = o.result.getPlatformTurnoverRate;
2043
+ c.platformGameList = c.platformGameList.map((r) => {
2044
+ const a = f.find(
2045
+ (_) => _.id === r.platformId
2006
2046
  );
2007
2047
  return {
2008
2048
  ...r,
2009
- rate: (P == null ? void 0 : P.percentage) ?? "0.00"
2049
+ rate: (a == null ? void 0 : a.percentage) ?? "0.00"
2010
2050
  };
2011
2051
  });
2012
- }), delete a.result.getPlatformTurnoverRate;
2052
+ }
2053
+ } else {
2054
+ const f = c.platformGame.map((r) => r.list.filter((a) => a.flag.trial && !r.nextPage).map((a) => a));
2055
+ if (c.trialGameList = f.flat(), s.fishGameList in o.result && o.result.fishGameList) {
2056
+ const r = o.result.fishGameList;
2057
+ c.fishGameList = r.map((a) => ({
2058
+ gameId: Number(a.id),
2059
+ platformId: Number(a.platformProductID),
2060
+ name: a.gameName,
2061
+ flag: {
2062
+ value: 0,
2063
+ hot: !1,
2064
+ trial: !1,
2065
+ new: !1
2066
+ },
2067
+ imageUrl: a.imgUrl,
2068
+ rate: "0.00"
2069
+ })), delete o.result.fishGameList;
2070
+ }
2071
+ if (s.getPlatformTurnoverRate in o.result && ((y = o.result) != null && y.getPlatformTurnoverRate)) {
2072
+ const r = o.result.getPlatformTurnoverRate;
2073
+ c.platformGame.forEach((a) => {
2074
+ a.list = a.list.map((_) => {
2075
+ const S = r.find(
2076
+ (j) => j.id === _.platformId
2077
+ );
2078
+ return {
2079
+ ..._,
2080
+ rate: (S == null ? void 0 : S.percentage) ?? "0.00"
2081
+ };
2082
+ });
2083
+ }), c.hotGameList = c.hotGameList.map((a) => {
2084
+ const _ = r.find(
2085
+ (S) => S.id === a.platformId
2086
+ );
2087
+ return {
2088
+ ...a,
2089
+ rate: (_ == null ? void 0 : _.percentage) ?? "0.00"
2090
+ };
2091
+ }), c.trialGameList = c.trialGameList.map((a) => {
2092
+ const _ = r.find(
2093
+ (S) => S.id === a.platformId
2094
+ );
2095
+ return {
2096
+ ...a,
2097
+ rate: (_ == null ? void 0 : _.percentage) ?? "0.00"
2098
+ };
2099
+ }), c.fishGameList = c.fishGameList.map((a) => {
2100
+ const _ = r.find(
2101
+ (S) => S.id === a.platformId
2102
+ );
2103
+ return {
2104
+ ...a,
2105
+ rate: (_ == null ? void 0 : _.percentage) ?? "0.00"
2106
+ };
2107
+ }), delete o.result.getPlatformTurnoverRate;
2108
+ }
2013
2109
  }
2014
- a.result.gameList = c;
2110
+ o.result.gameList = c;
2015
2111
  }
2016
- if (i.getCompany in a.result && ((y = a.result) != null && y.getCompany)) {
2017
- const c = a.result.getCompany;
2018
- if (i.searchResultDate in a.result && (g = a.result) != null && g.searchResultDate) {
2019
- const f = a.result.searchResultDate;
2020
- c.forEach((o) => {
2021
- const r = f.find((P) => P.id == o.id);
2022
- r && (o.date = r == null ? void 0 : r.date);
2023
- }), delete a.result.searchResultDate;
2112
+ if (s.getCompany in o.result && ((g = o.result) != null && g.getCompany)) {
2113
+ const c = o.result.getCompany;
2114
+ if (s.searchResultDate in o.result && (h = o.result) != null && h.searchResultDate) {
2115
+ const f = o.result.searchResultDate;
2116
+ c.forEach((r) => {
2117
+ const a = f.find((_) => _.id == r.id);
2118
+ a && (r.date = a == null ? void 0 : a.date);
2119
+ }), delete o.result.searchResultDate;
2024
2120
  }
2025
- a.result.getCompany = c;
2121
+ o.result.getCompany = c;
2026
2122
  }
2027
- return a;
2028
- } catch (S) {
2029
- return X.isAxiosError(S) ? {
2030
- status: ((_ = S.response) == null ? void 0 : _.status) || 600,
2031
- message: JSON.stringify((O = S.response) == null ? void 0 : O.data),
2123
+ return o;
2124
+ } catch (p) {
2125
+ return X.isAxiosError(p) ? {
2126
+ status: ((O = p.response) == null ? void 0 : O.status) || 600,
2127
+ message: JSON.stringify((M = p.response) == null ? void 0 : M.data),
2032
2128
  result: {}
2033
- } : (console.error(S), {
2034
- status: S.status || 500,
2035
- message: S.message,
2129
+ } : (console.error(p), {
2130
+ status: p.status || 500,
2131
+ message: p.message,
2036
2132
  result: {}
2037
2133
  });
2038
2134
  }
2039
- }, un = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2135
+ }, dn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2040
2136
  __proto__: null,
2041
- post: ln
2042
- }, Symbol.toStringTag, { value: "Module" })), dn = async (e, t) => {
2137
+ post: un
2138
+ }, Symbol.toStringTag, { value: "Module" })), cn = async (e, t) => {
2043
2139
  let n = {
2044
2140
  status: 200,
2045
2141
  message: "",
@@ -2049,7 +2145,7 @@ const an = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2049
2145
  n = {
2050
2146
  status: 200,
2051
2147
  message: "",
2052
- accessToken: (await I.post("/auth/sesh", {
2148
+ accessToken: (await L.post("/auth/sesh", {
2053
2149
  usr: e,
2054
2150
  pwd: t
2055
2151
  })).data.access_token
@@ -2062,19 +2158,19 @@ const an = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2062
2158
  };
2063
2159
  }
2064
2160
  return n;
2065
- }, cn = async (e, t, n, l, s) => {
2161
+ }, mn = async (e, t, n, l, i) => {
2066
2162
  let u = {
2067
2163
  status: 200,
2068
2164
  message: "",
2069
2165
  accessToken: ""
2070
2166
  };
2071
2167
  try {
2072
- const m = (await I.post("/auth/jwt", {
2168
+ const m = (await L.post("/auth/jwt", {
2073
2169
  os: e,
2074
2170
  usr: t,
2075
2171
  pwd: n,
2076
2172
  mobileno: l,
2077
- type: s
2173
+ type: i
2078
2174
  })).data;
2079
2175
  u.status === 200 && (u = {
2080
2176
  status: 200,
@@ -2089,17 +2185,17 @@ const an = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2089
2185
  };
2090
2186
  }
2091
2187
  return u;
2092
- }, mn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2188
+ }, pn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2093
2189
  __proto__: null,
2094
- call: cn,
2095
- debug: dn
2096
- }, Symbol.toStringTag, { value: "Module" })), pn = async () => {
2190
+ call: mn,
2191
+ debug: cn
2192
+ }, Symbol.toStringTag, { value: "Module" })), gn = async () => {
2097
2193
  let e = {
2098
2194
  status: 200,
2099
2195
  message: ""
2100
2196
  };
2101
2197
  try {
2102
- await I.post("/auth/sesh/logout");
2198
+ await L.post("/auth/sesh/logout");
2103
2199
  } catch (t) {
2104
2200
  e = {
2105
2201
  status: t.status || 500,
@@ -2107,9 +2203,9 @@ const an = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2107
2203
  };
2108
2204
  }
2109
2205
  return e;
2110
- }, gn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2206
+ }, bn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2111
2207
  __proto__: null,
2112
- call: pn
2208
+ call: gn
2113
2209
  }, Symbol.toStringTag, { value: "Module" })), J = {
2114
2210
  data: {
2115
2211
  status: !1,
@@ -2120,14 +2216,14 @@ const an = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2120
2216
  accountId: 0
2121
2217
  }
2122
2218
  }
2123
- }, bn = async () => {
2219
+ }, fn = async () => {
2124
2220
  let e = {
2125
2221
  status: 200,
2126
2222
  message: "",
2127
2223
  ...J
2128
2224
  };
2129
2225
  try {
2130
- const n = (await I.get("/autoregister")).data;
2226
+ const n = (await L.get("/autoregister")).data;
2131
2227
  e.data = {
2132
2228
  status: n.status == 1,
2133
2229
  message: n.message ?? "",
@@ -2147,28 +2243,28 @@ const an = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2147
2243
  return e;
2148
2244
  }, yn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2149
2245
  __proto__: null,
2150
- call: bn
2246
+ call: fn
2151
2247
  }, Symbol.toStringTag, { value: "Module" })), Y = {
2152
2248
  data: {
2153
2249
  status: !1,
2154
2250
  message: ""
2155
2251
  }
2156
- }, fn = async (e, t) => {
2252
+ }, _n = async (e, t) => {
2157
2253
  let n = {
2158
2254
  status: 200,
2159
2255
  message: "",
2160
2256
  ...Y
2161
2257
  };
2162
2258
  try {
2163
- const l = await I.post("/setlocale", {
2259
+ const l = await L.post("/setlocale", {
2164
2260
  language: e,
2165
2261
  udid: t ?? ""
2166
- }), s = JSON.parse(
2262
+ }), i = JSON.parse(
2167
2263
  atob(l.data.responses[0].attributes)
2168
2264
  );
2169
2265
  n.data = {
2170
- status: s.status == 1,
2171
- message: s.message ?? ""
2266
+ status: i.status == 1,
2267
+ message: i.message ?? ""
2172
2268
  };
2173
2269
  } catch (l) {
2174
2270
  n = {
@@ -2178,11 +2274,9 @@ const an = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2178
2274
  };
2179
2275
  }
2180
2276
  return n;
2181
- }, _n = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2277
+ }, hn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2182
2278
  __proto__: null,
2183
- call: fn
2184
- }, Symbol.toStringTag, { value: "Module" })), hn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2185
- __proto__: null
2279
+ call: _n
2186
2280
  }, Symbol.toStringTag, { value: "Module" })), Tn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2187
2281
  __proto__: null
2188
2282
  }, Symbol.toStringTag, { value: "Module" })), vn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
@@ -2193,13 +2287,13 @@ const an = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2193
2287
  __proto__: null
2194
2288
  }, Symbol.toStringTag, { value: "Module" })), kn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2195
2289
  __proto__: null
2290
+ }, Symbol.toStringTag, { value: "Module" })), Pn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2291
+ __proto__: null
2196
2292
  }, Symbol.toStringTag, { value: "Module" }));
2197
2293
  var Z = /* @__PURE__ */ ((e) => (e.mobileBanner = "mobileBanner", e.mobileAbout = "mobileAbout", e.mobileAd = "mobileAd", e))(Z || {});
2198
- const Pn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2294
+ const On = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2199
2295
  __proto__: null,
2200
2296
  CmsType: Z
2201
- }, Symbol.toStringTag, { value: "Module" })), On = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2202
- __proto__: null
2203
2297
  }, Symbol.toStringTag, { value: "Module" })), Mn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2204
2298
  __proto__: null
2205
2299
  }, Symbol.toStringTag, { value: "Module" })), jn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
@@ -2216,30 +2310,30 @@ const Pn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2216
2310
  __proto__: null
2217
2311
  }, Symbol.toStringTag, { value: "Module" })), Ln = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2218
2312
  __proto__: null
2219
- }, Symbol.toStringTag, { value: "Module" })), zn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2313
+ }, Symbol.toStringTag, { value: "Module" })), Gn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2220
2314
  __proto__: null
2221
- }, Symbol.toStringTag, { value: "Module" })), Fn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2315
+ }, Symbol.toStringTag, { value: "Module" })), zn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2222
2316
  __proto__: null
2223
2317
  }, Symbol.toStringTag, { value: "Module" })), Nn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2224
2318
  __proto__: null
2319
+ }, Symbol.toStringTag, { value: "Module" })), Fn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2320
+ __proto__: null
2225
2321
  }, Symbol.toStringTag, { value: "Module" })), Bn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2226
2322
  __proto__: null
2227
- }, Symbol.toStringTag, { value: "Module" })), Gn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2323
+ }, Symbol.toStringTag, { value: "Module" })), Un = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2228
2324
  __proto__: null
2229
2325
  }, Symbol.toStringTag, { value: "Module" })), qn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2230
2326
  __proto__: null
2231
- }, Symbol.toStringTag, { value: "Module" })), Un = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2232
- __proto__: null
2233
2327
  }, Symbol.toStringTag, { value: "Module" })), Vn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2234
2328
  __proto__: null
2235
2329
  }, Symbol.toStringTag, { value: "Module" })), Wn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2236
2330
  __proto__: null
2237
2331
  }, Symbol.toStringTag, { value: "Module" })), En = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2238
2332
  __proto__: null
2239
- }, Symbol.toStringTag, { value: "Module" })), An = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2240
- __proto__: null
2241
2333
  }, Symbol.toStringTag, { value: "Module" })), $n = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2242
2334
  __proto__: null
2335
+ }, Symbol.toStringTag, { value: "Module" })), An = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2336
+ __proto__: null
2243
2337
  }, Symbol.toStringTag, { value: "Module" })), Hn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2244
2338
  __proto__: null
2245
2339
  }, Symbol.toStringTag, { value: "Module" })), Jn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
@@ -2262,23 +2356,23 @@ const Pn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2262
2356
  __proto__: null
2263
2357
  }, Symbol.toStringTag, { value: "Module" })), aa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2264
2358
  __proto__: null
2359
+ }, Symbol.toStringTag, { value: "Module" })), oa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2360
+ __proto__: null
2265
2361
  }, Symbol.toStringTag, { value: "Module" })), K = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2266
2362
  __proto__: null
2267
2363
  }, Symbol.toStringTag, { value: "Module" })), Q = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2268
2364
  __proto__: null
2269
- }, Symbol.toStringTag, { value: "Module" })), oa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2270
- __proto__: null
2271
2365
  }, Symbol.toStringTag, { value: "Module" })), ra = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2272
2366
  __proto__: null
2273
2367
  }, Symbol.toStringTag, { value: "Module" })), sa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2274
2368
  __proto__: null
2369
+ }, Symbol.toStringTag, { value: "Module" })), ia = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2370
+ __proto__: null
2275
2371
  }, Symbol.toStringTag, { value: "Module" }));
2276
2372
  var ee = /* @__PURE__ */ ((e) => (e.default = "default", e.online = "online", e.mycard = "mycard", e.qrcode = "qrcode", e.personal = "personal", e))(ee || {});
2277
- const ia = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2373
+ const la = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2278
2374
  __proto__: null,
2279
2375
  ImageType: ee
2280
- }, Symbol.toStringTag, { value: "Module" })), la = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2281
- __proto__: null
2282
2376
  }, Symbol.toStringTag, { value: "Module" })), ua = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2283
2377
  __proto__: null
2284
2378
  }, Symbol.toStringTag, { value: "Module" })), da = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
@@ -2293,10 +2387,10 @@ const ia = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2293
2387
  __proto__: null
2294
2388
  }, Symbol.toStringTag, { value: "Module" })), ba = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2295
2389
  __proto__: null
2296
- }, Symbol.toStringTag, { value: "Module" })), ya = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2297
- __proto__: null
2298
2390
  }, Symbol.toStringTag, { value: "Module" })), fa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2299
2391
  __proto__: null
2392
+ }, Symbol.toStringTag, { value: "Module" })), ya = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2393
+ __proto__: null
2300
2394
  }, Symbol.toStringTag, { value: "Module" })), _a = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2301
2395
  __proto__: null
2302
2396
  }, Symbol.toStringTag, { value: "Module" })), ha = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
@@ -2331,30 +2425,30 @@ const ia = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2331
2425
  __proto__: null
2332
2426
  }, Symbol.toStringTag, { value: "Module" })), La = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2333
2427
  __proto__: null
2334
- }, Symbol.toStringTag, { value: "Module" })), za = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2428
+ }, Symbol.toStringTag, { value: "Module" })), Ga = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2335
2429
  __proto__: null
2336
- }, Symbol.toStringTag, { value: "Module" })), Fa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2430
+ }, Symbol.toStringTag, { value: "Module" })), za = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2337
2431
  __proto__: null
2338
2432
  }, Symbol.toStringTag, { value: "Module" })), Na = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2339
2433
  __proto__: null
2434
+ }, Symbol.toStringTag, { value: "Module" })), Fa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2435
+ __proto__: null
2340
2436
  }, Symbol.toStringTag, { value: "Module" })), Ba = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2341
2437
  __proto__: null
2342
- }, Symbol.toStringTag, { value: "Module" })), Ga = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2438
+ }, Symbol.toStringTag, { value: "Module" })), Ua = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2343
2439
  __proto__: null
2344
2440
  }, Symbol.toStringTag, { value: "Module" })), qa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2345
2441
  __proto__: null
2346
- }, Symbol.toStringTag, { value: "Module" })), Ua = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2347
- __proto__: null
2348
2442
  }, Symbol.toStringTag, { value: "Module" })), Va = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2349
2443
  __proto__: null
2350
2444
  }, Symbol.toStringTag, { value: "Module" })), Wa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2351
2445
  __proto__: null
2352
2446
  }, Symbol.toStringTag, { value: "Module" })), Ea = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2353
2447
  __proto__: null
2354
- }, Symbol.toStringTag, { value: "Module" })), Aa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2355
- __proto__: null
2356
2448
  }, Symbol.toStringTag, { value: "Module" })), $a = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2357
2449
  __proto__: null
2450
+ }, Symbol.toStringTag, { value: "Module" })), Aa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2451
+ __proto__: null
2358
2452
  }, Symbol.toStringTag, { value: "Module" })), Ha = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2359
2453
  __proto__: null
2360
2454
  }, Symbol.toStringTag, { value: "Module" })), Ja = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
@@ -2367,212 +2461,214 @@ const ia = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2367
2461
  __proto__: null
2368
2462
  }, Symbol.toStringTag, { value: "Module" })), Xa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2369
2463
  __proto__: null
2370
- }, Symbol.toStringTag, { value: "Module" })), Za = {
2371
- api: un,
2372
- loginApi: mn,
2373
- logoutApi: gn,
2464
+ }, Symbol.toStringTag, { value: "Module" })), Za = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2465
+ __proto__: null
2466
+ }, Symbol.toStringTag, { value: "Module" })), eo = {
2467
+ api: dn,
2468
+ loginApi: pn,
2469
+ logoutApi: bn,
2374
2470
  autoRegisterApi: yn,
2375
- setLocaleApi: _n,
2376
- apiType: se,
2377
- loginType: hn,
2378
- logoutType: Tn,
2379
- announcementType: vn,
2380
- paymentsProviderType: ie,
2381
- gameListType: Rn,
2382
- vipListType: Sn,
2383
- promotionType: kn,
2384
- cmsListType: Pn,
2385
- mainWalletType: On,
2386
- upcomingMatchType: Mn,
2387
- depositType: jn,
2388
- applyVipBonusType: xn,
2389
- withdrawalGetType: Dn,
2390
- addBankCardType: Cn,
2391
- withdrawType: wn,
2392
- getSettingType: an,
2393
- transactionReportType: In,
2394
- changePasswordType: Ln,
2471
+ setLocaleApi: hn,
2472
+ apiType: ie,
2473
+ loginType: Tn,
2474
+ logoutType: vn,
2475
+ announcementType: Rn,
2476
+ paymentsProviderType: le,
2477
+ gameListType: Sn,
2478
+ vipListType: kn,
2479
+ promotionType: Pn,
2480
+ cmsListType: On,
2481
+ mainWalletType: Mn,
2482
+ upcomingMatchType: jn,
2483
+ depositType: xn,
2484
+ applyVipBonusType: Dn,
2485
+ withdrawalGetType: Cn,
2486
+ addBankCardType: wn,
2487
+ withdrawType: In,
2488
+ getSettingType: on,
2489
+ transactionReportType: Ln,
2490
+ changePasswordType: Gn,
2395
2491
  walletType: zn,
2396
- getEventListType: Fn,
2397
- getEventTokenType: Nn,
2492
+ getEventListType: Nn,
2493
+ getEventTokenType: Fn,
2398
2494
  getExtraGameType: Bn,
2399
- mailBoxType: Gn,
2495
+ mailBoxType: Un,
2400
2496
  fishGameListType: qn,
2401
- slotGameListType: Un,
2402
- getTurnOverRewardDataType: Vn,
2403
- getTurnOverRewardReportType: Wn,
2404
- getInviteRewardDataType: En,
2497
+ slotGameListType: Vn,
2498
+ getTurnOverRewardDataType: Wn,
2499
+ getTurnOverRewardReportType: En,
2500
+ getInviteRewardDataType: $n,
2405
2501
  getInviteRewardReportType: An,
2406
- getTopupRewardDataType: $n,
2407
- getTopupRewardReportType: Hn,
2408
- getRewardReferralType: Jn,
2409
- getDepositPromotionType: Yn,
2410
- getInviteRewardClaimType: Kn,
2411
- getTopUpRewardClaimType: Qn,
2412
- getTurnOverRewardClaimType: Xn,
2413
- getInviteRewardSettingType: Zn,
2414
- getTopUpRewardSettingType: ea,
2415
- getTurnOverRewardSettingType: ta,
2416
- requestForgetPasswordType: na,
2417
- submitForgetPasswordType: aa,
2502
+ getTopupRewardDataType: Hn,
2503
+ getTopupRewardReportType: Jn,
2504
+ getRewardReferralType: Yn,
2505
+ getDepositPromotionType: Kn,
2506
+ getInviteRewardClaimType: Qn,
2507
+ getTopUpRewardClaimType: Xn,
2508
+ getTurnOverRewardClaimType: Zn,
2509
+ getInviteRewardSettingType: ea,
2510
+ getTopUpRewardSettingType: ta,
2511
+ getTurnOverRewardSettingType: na,
2512
+ requestForgetPasswordType: aa,
2513
+ submitForgetPasswordType: oa,
2418
2514
  submitGiftCode: K,
2419
2515
  playGame: Q,
2420
- requestUpdateMobileTacCode: oa,
2421
- submitUpdateMobileTacCode: ra,
2422
- getVerifyPromo: sa,
2423
- getImageType: ia,
2424
- getValidateType: la,
2425
- updateProfilePictureType: ua,
2426
- readMailType: da,
2427
- checkRedPacketValidateType: ca,
2428
- getUserProfileType: ma,
2429
- requestTacCodeType: pa,
2430
- getUsernameByReferType: ga,
2431
- applyPromoType: ba,
2516
+ requestUpdateMobileTacCode: ra,
2517
+ submitUpdateMobileTacCode: sa,
2518
+ getVerifyPromo: ia,
2519
+ getImageType: la,
2520
+ getValidateType: ua,
2521
+ updateProfilePictureType: da,
2522
+ readMailType: ca,
2523
+ checkRedPacketValidateType: ma,
2524
+ getUserProfileType: pa,
2525
+ requestTacCodeType: ga,
2526
+ getUsernameByReferType: ba,
2527
+ applyPromoType: fa,
2432
2528
  applySignInType: ya,
2433
- applyRedPacketType: fa,
2434
- getCountryType: _a,
2529
+ applyRedPacketType: _a,
2530
+ getCountryType: ha,
2435
2531
  submitGiftCodeType: K,
2436
2532
  playGameType: Q,
2437
- transferToMainType: ha,
2438
- transferProcessType: Ta,
2439
- submitValidateType: va,
2440
- checkTransferCreditType: Ra,
2441
- friendListType: Sa,
2442
- friendListEditType: ka,
2443
- getActivePPType: Pa,
2444
- getActiveProductType: Oa,
2445
- requestWithdrawTacType: Ma,
2446
- requestWithdrawalCodeType: ja,
2447
- commissionWithdrawType: xa,
2448
- submitWithdrawalCodeType: Da,
2449
- submitCryptoAccountType: Ca,
2450
- requestTransferMoneyType: wa,
2451
- submitTransferMoneyType: Ia,
2452
- signInViewInfoType: La,
2533
+ transferToMainType: Ta,
2534
+ transferProcessType: va,
2535
+ submitValidateType: Ra,
2536
+ checkTransferCreditType: Sa,
2537
+ friendListType: ka,
2538
+ friendListEditType: Pa,
2539
+ getActivePPType: Oa,
2540
+ getActiveProductType: Ma,
2541
+ requestWithdrawTacType: ja,
2542
+ requestWithdrawalCodeType: xa,
2543
+ commissionWithdrawType: Da,
2544
+ submitWithdrawalCodeType: Ca,
2545
+ submitCryptoAccountType: wa,
2546
+ requestTransferMoneyType: Ia,
2547
+ submitTransferMoneyType: La,
2548
+ signInViewInfoType: Ga,
2453
2549
  signInRecordType: za,
2454
- referralProfileType: Fa,
2455
- referralMemberProfileType: Na,
2550
+ referralProfileType: Na,
2551
+ referralMemberProfileType: Fa,
2456
2552
  registerActionType: Ba,
2457
- transferReportType: Ga,
2553
+ transferReportType: Ua,
2458
2554
  agTransferCreditReportType: qa,
2459
- betReportType: Ua,
2460
- getTwoFactorAuthenticateType: Va,
2461
- submitTwoFactorAuthenticateType: Wa,
2462
- getUserDeviceListType: Ea,
2555
+ betReportType: Va,
2556
+ getTwoFactorAuthenticateType: Wa,
2557
+ submitTwoFactorAuthenticateType: Ea,
2558
+ getUserDeviceListType: $a,
2463
2559
  unbindUserDeviceType: Aa,
2464
- searchNumberHistoryType: $a,
2465
- changeWithdrawalCodeType: Ha,
2466
- checkRedPacketTokenType: Ja,
2467
- submitWithdrawalAlipayType: Ya,
2468
- applyReliefFund: Ka,
2469
- getReliefFundData: Qa,
2470
- getReliefFundReport: Xa
2471
- }, to = {
2560
+ searchNumberHistoryType: Ha,
2561
+ changeWithdrawalCodeType: Ja,
2562
+ checkRedPacketTokenType: Ya,
2563
+ submitWithdrawalAlipayType: Ka,
2564
+ applyReliefFund: Qa,
2565
+ getReliefFundData: Xa,
2566
+ getReliefFundReport: Za
2567
+ }, no = {
2472
2568
  install(e) {
2473
- e.config.globalProperties.$library = Za;
2569
+ e.config.globalProperties.$library = eo;
2474
2570
  }
2475
2571
  };
2476
2572
  export {
2477
- to as Repository,
2478
- Cn as addBankCardType,
2573
+ no as Repository,
2574
+ wn as addBankCardType,
2479
2575
  qa as agTransferCreditReportType,
2480
- vn as announcementType,
2481
- un as api,
2482
- se as apiType,
2483
- ba as applyPromoType,
2484
- fa as applyRedPacketType,
2485
- Ka as applyReliefFund,
2576
+ Rn as announcementType,
2577
+ dn as api,
2578
+ ie as apiType,
2579
+ fa as applyPromoType,
2580
+ _a as applyRedPacketType,
2581
+ Qa as applyReliefFund,
2486
2582
  ya as applySignInType,
2487
- xn as applyVipBonusType,
2583
+ Dn as applyVipBonusType,
2488
2584
  yn as autoRegisterApi,
2489
- Ua as betReportType,
2490
- Ln as changePasswordType,
2491
- Ha as changeWithdrawalCodeType,
2492
- Ja as checkRedPacketTokenType,
2493
- ca as checkRedPacketValidateType,
2494
- Ra as checkTransferCreditType,
2495
- Pn as cmsListType,
2496
- xa as commissionWithdrawType,
2497
- jn as depositType,
2585
+ Va as betReportType,
2586
+ Gn as changePasswordType,
2587
+ Ja as changeWithdrawalCodeType,
2588
+ Ya as checkRedPacketTokenType,
2589
+ ma as checkRedPacketValidateType,
2590
+ Sa as checkTransferCreditType,
2591
+ On as cmsListType,
2592
+ Da as commissionWithdrawType,
2593
+ xn as depositType,
2498
2594
  qn as fishGameListType,
2499
- ka as friendListEditType,
2500
- Sa as friendListType,
2501
- Rn as gameListType,
2502
- Pa as getActivePPType,
2503
- Oa as getActiveProductType,
2504
- _a as getCountryType,
2505
- Yn as getDepositPromotionType,
2506
- Fn as getEventListType,
2507
- Nn as getEventTokenType,
2595
+ Pa as friendListEditType,
2596
+ ka as friendListType,
2597
+ Sn as gameListType,
2598
+ Oa as getActivePPType,
2599
+ Ma as getActiveProductType,
2600
+ ha as getCountryType,
2601
+ Kn as getDepositPromotionType,
2602
+ Nn as getEventListType,
2603
+ Fn as getEventTokenType,
2508
2604
  Bn as getExtraGameType,
2509
- ia as getImageType,
2510
- Kn as getInviteRewardClaimType,
2511
- En as getInviteRewardDataType,
2605
+ la as getImageType,
2606
+ Qn as getInviteRewardClaimType,
2607
+ $n as getInviteRewardDataType,
2512
2608
  An as getInviteRewardReportType,
2513
- Zn as getInviteRewardSettingType,
2514
- Qa as getReliefFundData,
2515
- Xa as getReliefFundReport,
2516
- Jn as getRewardReferralType,
2517
- an as getSettingType,
2518
- Qn as getTopUpRewardClaimType,
2519
- ea as getTopUpRewardSettingType,
2520
- $n as getTopupRewardDataType,
2521
- Hn as getTopupRewardReportType,
2522
- Xn as getTurnOverRewardClaimType,
2523
- Vn as getTurnOverRewardDataType,
2524
- Wn as getTurnOverRewardReportType,
2525
- ta as getTurnOverRewardSettingType,
2526
- Va as getTwoFactorAuthenticateType,
2527
- Ea as getUserDeviceListType,
2528
- ma as getUserProfileType,
2529
- ga as getUsernameByReferType,
2530
- la as getValidateType,
2531
- sa as getVerifyPromo,
2532
- mn as loginApi,
2533
- hn as loginType,
2534
- gn as logoutApi,
2535
- Tn as logoutType,
2536
- Gn as mailBoxType,
2537
- On as mainWalletType,
2538
- ie as paymentsProviderType,
2609
+ ea as getInviteRewardSettingType,
2610
+ Xa as getReliefFundData,
2611
+ Za as getReliefFundReport,
2612
+ Yn as getRewardReferralType,
2613
+ on as getSettingType,
2614
+ Xn as getTopUpRewardClaimType,
2615
+ ta as getTopUpRewardSettingType,
2616
+ Hn as getTopupRewardDataType,
2617
+ Jn as getTopupRewardReportType,
2618
+ Zn as getTurnOverRewardClaimType,
2619
+ Wn as getTurnOverRewardDataType,
2620
+ En as getTurnOverRewardReportType,
2621
+ na as getTurnOverRewardSettingType,
2622
+ Wa as getTwoFactorAuthenticateType,
2623
+ $a as getUserDeviceListType,
2624
+ pa as getUserProfileType,
2625
+ ba as getUsernameByReferType,
2626
+ ua as getValidateType,
2627
+ ia as getVerifyPromo,
2628
+ pn as loginApi,
2629
+ Tn as loginType,
2630
+ bn as logoutApi,
2631
+ vn as logoutType,
2632
+ Un as mailBoxType,
2633
+ Mn as mainWalletType,
2634
+ le as paymentsProviderType,
2539
2635
  Q as playGame,
2540
2636
  Q as playGameType,
2541
- kn as promotionType,
2542
- da as readMailType,
2543
- Na as referralMemberProfileType,
2544
- Fa as referralProfileType,
2637
+ Pn as promotionType,
2638
+ ca as readMailType,
2639
+ Fa as referralMemberProfileType,
2640
+ Na as referralProfileType,
2545
2641
  Ba as registerActionType,
2546
- na as requestForgetPasswordType,
2547
- pa as requestTacCodeType,
2548
- wa as requestTransferMoneyType,
2549
- oa as requestUpdateMobileTacCode,
2550
- Ma as requestWithdrawTacType,
2551
- ja as requestWithdrawalCodeType,
2552
- $a as searchNumberHistoryType,
2553
- _n as setLocaleApi,
2642
+ aa as requestForgetPasswordType,
2643
+ ga as requestTacCodeType,
2644
+ Ia as requestTransferMoneyType,
2645
+ ra as requestUpdateMobileTacCode,
2646
+ ja as requestWithdrawTacType,
2647
+ xa as requestWithdrawalCodeType,
2648
+ Ha as searchNumberHistoryType,
2649
+ hn as setLocaleApi,
2554
2650
  za as signInRecordType,
2555
- La as signInViewInfoType,
2556
- Un as slotGameListType,
2557
- Ca as submitCryptoAccountType,
2558
- aa as submitForgetPasswordType,
2651
+ Ga as signInViewInfoType,
2652
+ Vn as slotGameListType,
2653
+ wa as submitCryptoAccountType,
2654
+ oa as submitForgetPasswordType,
2559
2655
  K as submitGiftCode,
2560
2656
  K as submitGiftCodeType,
2561
- Ia as submitTransferMoneyType,
2562
- Wa as submitTwoFactorAuthenticateType,
2563
- ra as submitUpdateMobileTacCode,
2564
- va as submitValidateType,
2565
- Ya as submitWithdrawalAlipayType,
2566
- Da as submitWithdrawalCodeType,
2567
- In as transactionReportType,
2568
- Ta as transferProcessType,
2569
- Ga as transferReportType,
2570
- ha as transferToMainType,
2657
+ La as submitTransferMoneyType,
2658
+ Ea as submitTwoFactorAuthenticateType,
2659
+ sa as submitUpdateMobileTacCode,
2660
+ Ra as submitValidateType,
2661
+ Ka as submitWithdrawalAlipayType,
2662
+ Ca as submitWithdrawalCodeType,
2663
+ Ln as transactionReportType,
2664
+ va as transferProcessType,
2665
+ Ua as transferReportType,
2666
+ Ta as transferToMainType,
2571
2667
  Aa as unbindUserDeviceType,
2572
- Mn as upcomingMatchType,
2573
- ua as updateProfilePictureType,
2574
- Sn as vipListType,
2668
+ jn as upcomingMatchType,
2669
+ da as updateProfilePictureType,
2670
+ kn as vipListType,
2575
2671
  zn as walletType,
2576
- wn as withdrawType,
2577
- Dn as withdrawalGetType
2672
+ In as withdrawType,
2673
+ Cn as withdrawalGetType
2578
2674
  };