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