-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprocessing.php
More file actions
11152 lines (11002 loc) · 561 KB
/
processing.php
File metadata and controls
11152 lines (11002 loc) · 561 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
// MENANGKAP DATA YANG DI-INPUT
$playid = $_POST['playid'];
// MENGALIHKAN KE HALAMAN UTAMA JIKA DATA BELUM DI-INPUT
if($playid == ""){
header("Location: index.php");
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection" content="telephone=no,email=no">
<meta name="robots" content="index,follow">
<title>PUBG Mobile - Midasbuy</title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<script type="text/javascript">
if (!window.console) {
window.console = {
log: function() {},
info: function() {},
error: function() {}
}
}
window.reportListBeforeInit = [];
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('/serviceWorker');
navigator.serviceWorker.onmessage = function(event) {
if (event.data && event.data.type === 'HIT_SW') {
var url = event.data.msg;
if (window.report && window.report.sendIFormat) {
window.report.sendIFormat('cache.serviceworker', {
url: url
})
} else {
reportListBeforeInit.push({
iformat: 'cache.serviceworker',
data: {
url: url
}
});
}
};
};
}
</script>
<script type="text/javascript">
window.__PAY_INFO = {
"needSelectPF": {},
"short_openid_type": "idip",
"short_openid_rule": "^[1-9]\\d+$",
"isv3": false,
"shopcartv2": false,
"drm_info": {
"groupid": "check_in",
"area": "Other",
"country": "OT",
"version": "3.0",
"midasbuyArea": "Other"
},
"midasUser": null,
"currentBindUser": null,
"gameUsers": [],
"openid": "",
"addWebIp": false,
"ipInfo": {
"mall_ip": "101.255.149.105",
"mall_province": "DKI Jakarta",
"mall_city": "",
"mall_ipcountry": "id"
},
"appid": "1450015065",
"UUID": "058557784782008991650604307711",
"pf": "mds_hkweb_pc-v2-android-midasweb-midasbuy",
"type": "save",
"currencyIcon": "https://cdn.midasbuy.com/images/apps/pubgm/1599549775068xtoGCDwY.png",
"currencySmallIcon": "https://cdn.midasbuy.com/images/apps/pubgm/24_24d2c7b78c.png",
"currencyIconMap": [{
"icon": "https://cdn.midasbuy.com/images/apps/pubgm/1599546007887MVeNUtB6.png",
"max": "299"
}, {
"icon": "https://cdn.midasbuy.com/images/apps/pubgm/1599546030876PIvqwGaa.png",
"max": "599",
"min": "300"
}, {
"icon": "https://cdn.midasbuy.com/images/apps/pubgm/1599546041426W8hmErMS.png",
"max": "1499",
"min": "600"
}, {
"icon": "https://cdn.midasbuy.com/images/apps/pubgm/1599546052747L5gSu7VB.png",
"max": "2999",
"min": "1500"
}, {
"icon": "https://cdn.midasbuy.com/images/apps/pubgm/1599546061912PLgMlY23.png",
"max": "5999",
"min": "3000"
}, {
"icon": "https://cdn.midasbuy.com/images/apps/pubgm/1599546071746KqkIhrzG.png",
"min": "6000"
}],
"country": "OT",
"midasbuyArea": "Other",
"cgi_language": "EN",
"sandbox": "0",
"zoneid": "1",
"not_query_drm": "0",
"currency_type": "USD",
"currency_config": {
"currencySymbol": " USD"
},
"adyen_url": "",
"adyen_svrtime": ""
};
if (window.__PAY_INFO) {
window.__PAY_INFO.pageid = "page_" + (Math.random().toString().replace(".", ""));
}
window.__Report_INFO = {
"devMode": false,
"tid": "058557784782008991650604307711",
"openid": "",
"appid": "",
"pf": "",
"countryCode": "ot",
"from": "",
"midasuid": "uv_058557784782008991650604307711",
"reportUrl": "https://report1.midasbuy.com/cgi-bin/log_data.fcg",
"midasbuyDeviceId": "0348384880898043871649691398854"
};
window.__RTL = false;
window._SHOPCODE = "midasbuy";
window._COUNTRY = "ot";
window.__showErrorDetail = {
"ae": "*",
"bd": "*",
"bh": "*",
"br": "*",
"ch": "*",
"de": "*",
"dz": "*",
"eg": "*",
"es": "*",
"fr": "*",
"gb": "*",
"hk": "*",
"id": "*",
"in": "*",
"iq": "*",
"ir": "*",
"it": "*",
"kh": "*",
"kw": "*",
"la": "*",
"lk": "*",
"ly": "*",
"ma": "*",
"mm": "*",
"mx": "*",
"my": "*",
"nl": "*",
"np": "*",
"om": "*",
"ot": "*",
"ph": "*",
"pk": "*",
"pl": "*",
"qa": "*",
"ru": "*",
"sa": "*",
"se": "*",
"sg": "*",
"th": "*",
"tn": "*",
"tr": "*",
"tw": "*",
"za": "*"
};
window._NAVHEADERFILTER = {
"cardEvent": "[a-zA-Z]{0,20}-(ae|au|bh|br|ch|cl|de|eg|es|fr|gb|hk|id|iq|kh|kw|kz|la|lk|mm|mx|my|nl|om|ot|ph|pk|pl|qa|ru|sa|se|sg|th|tr|bd)-[a-zA-Z]{0,20}"
};
window.enable_nopay_contract = true;
</script>
<!-- aegis上报开关 -->
<script src="https://cdn-go.cn/aegis/aegis-sdk/latest/aegis.min.js?_bid=3977"></script>
<script type="text/javascript">
var aegis = new Aegis({
id: 1124,
uin: __Report_INFO.midasuid,
beforeReport: function(log) {
// 这个错误是模拟器环境报的,不需要上报
if (log.level == 4 && log.msg) {
if (log.msg.indexOf('__tbsRecieveNativeEvent__') !== -1 || log.msg.indexOf('getReadMode') !== -1)
return false
}
},
reportApiSpeed: true, // 接口测速
reportAssetSpeed: true // 静态资源测速
});
// aegis.infoAll('aegis: Interview from ' + __Report_INFO.midasuid);
</script>
<script>
! function(t, e) {
"object" == typeof exports && "undefined" != typeof module ? module.exports = e() : "function" == typeof define && define.amd ? define(e) : (t = t || self).assetsRetry = e()
}(this, function() {
"use strict";
function a(t) {
return t
}
function y() {}
function r(t, e) {
try {
return "function" == typeof t[e]
} catch (t) {
return !1
}
}
function p(t) {
return Array.isArray(t) ? t.reduce(function(t, e, n, r) {
return t[e] = r[(n + 1) % r.length], t
}, {}) : t
}
function h(e, t) {
return Object.keys(t).filter(function(t) {
return -1 < e.indexOf(t)
}).sort(function(t, e) {
return e.length - t.length
})[0]
}
var e, m = "retryTimes",
b = "succeeded",
E = "failed",
O = "maxRetryCount",
j = "onRetry",
f = "onSuccess",
s = "onFail",
w = "domain",
v = "_assetsRetryScript",
g = "_assetsRetryOnerror",
l = "script",
A = "data-assets-retry-hooked",
S = "data-assets-retry-ignore",
k = "data-retry-id",
d = window,
R = window.document,
n = d.HTMLElement,
L = d.HTMLScriptElement,
c = d.HTMLStyleElement,
T = d.HTMLLinkElement,
x = d.HTMLImageElement,
o = Object.prototype.hasOwnProperty,
_ = function(t, e, n) {
var r = t.indexOf(e);
return -1 === r ? t : t.substring(0, r) + n + t.substring(r + e.length)
},
M = function(t) {
return [].slice.call(t)
},
N = function(e, t, n, r) {
void 0 === n && (n = y), void 0 === r && (r = !1);
var o, i, c, u, a, f = r || e.defer || e.async;
"loading" !== R.readyState || /Edge|MSIE|rv:/i.test(navigator.userAgent) || f ? (o = R.createElement(l), Object.keys(L.prototype).forEach(function(t) {
if ("src" !== t && e[t] && "object" != typeof e[t]) try {
o[t] = e[t]
} catch (t) {}
}), o.src = t, o.onload = e.onload, o.onerror = e.onerror, o.setAttribute(k, C()), (i = e.getAttribute("nonce")) && o.setAttribute("nonce", i), R.getElementsByTagName("head")[0].appendChild(o)) : (c = C(), u = e.outerHTML.replace(/data-retry-id="[^"]+"/, "").replace(/src=(?:"[^"]+"|.+)([ >])/, k + "=" + c + ' src="' + t + '"$1'), R.write(u), (a = R.querySelector("script[" + k + '="' + c + '"]')) && (a.onload = n))
},
H = function(e) {
try {
return e.rules
} catch (t) {
try {
return e.cssRules
} catch (t) {
return null
}
}
},
I = function(e, t, n) {
var r = R.createElement("link");
Object.keys(T.prototype).forEach(function(t) {
if ("href" !== t && e[t] && "object" != typeof e[t]) try {
r[t] = e[t]
} catch (t) {}
}), r.href = t, r.onload = n, r.setAttribute(k, C()), R.getElementsByTagName("head")[0].appendChild(r)
},
P = function(t) {
return t ? t instanceof n ? [t.nodeName, t.src, t.href, t.getAttribute(k)].join(";") : "not_supported" : "null"
},
C = function() {
return Math.random().toString(36).slice(2)
},
B = function(t) {
return t instanceof L || t instanceof x ? t.src : t instanceof T ? t.href : null
},
F = {},
$ = function(t, e) {
var n, r = q(t, e),
o = r[0],
i = r[1];
return o ? (F[o] = F[o] || ((n = {})[m] = 0, n[E] = [], n[b] = [], n), [i, F[o]]) : []
},
q = function(t, e) {
var n, r, o = h(t, e);
return o ? [(r = o, (n = t).substr(n.indexOf(r) + r.length, n.length)), o] : ["", ""]
};
try {
e = function(t) {
for (var e = Object.getPrototypeOf ? Object.getPrototypeOf : function(t) {
return t.__proto__
}, n = Object.keys(t); e(t);) n = n.concat(Object.keys(e(t))), t = e(t);
return n.filter(function(t) {
return "constructor" !== t
})
}(L.prototype)
} catch (t) {}
function i(f, t) {
var s = t[O],
l = p(t[w]),
d = t[j];
return e.reduce(function(t, e) {
var n = r(L.prototype, e);
return t[e] = n ? {
value: function() {
return f[v][e].apply(f[v], arguments)
}
} : {
set: function(o) {
return "onerror" === e ? (f[g] = o, void(f[v].onerror = function(r) {
r.stopPropagation && r.stopPropagation();
function t() {
return t = f[g], e = f[v], n = r, "function" != typeof t ? null : t.call(e, n);
var t, e, n
}
var e = f[v].src,
n = $(e, l),
o = n[0],
i = n[1],
c = f[v].hasAttribute(S);
if (!o || !i || c) return t();
var u = _(e, o, l[o]),
a = d(u, e, i);
if (null === a) return t();
if ("string" != typeof a) throw new Error("a string should be returned in `onRetry` function");
i[m] <= s ? N(f[v], a, y, !0) : t()
})) : "onload" === e ? (f._assetsRetryOnload = o, void(f[v].onload = function(t) {
var e = f[v].src,
n = $(e, l),
r = (n[0], n[1]);
r && -1 === r[E].indexOf(e) && r[b].push(e), o && !o._called && (o._called = !0, o.call(f[v], t))
})) : void(f[v][e] = o)
},
get: function() {
return f[v][e]
}
}, t
}, {})
}
var z = function(n) {
var r = R.createElement;
R.createElement = function(t, e) {
return t === l ? function(t, e) {
var n;
t.setAttribute(A, "true");
var r = ((n = {})[v] = t, n[g] = y, n),
o = i(r, e);
return Object.defineProperties(r, o), r
}(r.call(R, l), n) : r.call(R, t, e)
}, R.createElement.toString = function() {
return "function createElement() { [native code] }"
}
},
Z = function(n) {
Object.keys(n).filter(function(t) {
return r(n, t)
}).forEach(function(t) {
var e = n[t];
n[t] = function() {
var t = [].slice.call(arguments).map(function(t) {
return t && o.call(t, v) ? t[v] : t
});
return e.apply(this, t)
}, /^\w+$/.test(t) && (n[t].toString = new Function("return 'function " + t + "() { [native code] }'"))
})
};
var D = {};
function G(p) {
function c(t) {
if (t) {
var e = t.target || t.srcElement,
n = B(e);
if (n) {
var r = $(n, g),
o = r[0],
i = r[1],
c = e instanceof HTMLElement && e.hasAttribute(S);
if (i && o && !c) {
i[m]++, i[E].push(n);
var u, a = i[m] > p[O];
if (a && (u = q(n, g)[0], v(u)), g[o] && !a) {
var f = g[o],
s = _(n, o, f),
l = h(s, n, i);
if (null !== l) {
if ("string" != typeof l) throw new Error("a string should be returned in `onRetry` function");
var d, y = P(e);
D[y] || (D[y] = !0, d = function() {
i[b].push(l)
}, e instanceof L && !e.getAttribute(A) && e.src ? N(e, l, d) : e instanceof T && e.href ? I(e, l, d) : e instanceof x && e.src && (e.setAttribute(k, C()), e.src = l, e.onload = d))
}
}
}
}
}
}
var h = p[j],
u = p[f],
v = p[s],
g = p[w];
R.addEventListener("error", c, !0), R.addEventListener("load", function(t) {
var e, n, r, o, i;
t && (e = t.target || t.srcElement, (n = B(e)) && (e.getAttribute(k) && (r = q(n, g)[0], u(r)), e instanceof T && R.styleSheets && (o = M(R.styleSheets).filter(function(t) {
return t.href === e.href
})[0], null !== (i = H(o)) && 0 === i.length && c(t))))
}, !0)
}
function u(t, e, n, r, o) {
var i = o[w],
c = o[j],
u = e.style && e.style[t];
if (u && !/^url\(["']?data:/.test(u)) {
var a = u.match(/^url\(["']?(.+?)["']?\)/) || [],
f = a[1];
if (f) {
var s = h(f, i);
if (s && i[s]) {
var l = Object.keys(i).map(function(t) {
var e = _(f, s, t);
return 'url("' + c(e, f, null) + '")'
}).join(","),
d = e.selectorText + ("{ " + t.replace(/([a-z])([A-Z])/g, function(t, e, n) {
return e + "-" + n.toLowerCase()
})) + ": " + l + " !important; }";
try {
n.insertRule(d, r.length)
} catch (t) {
n.insertRule(d, 0)
}
}
}
}
}
var J = {},
K = [],
Q = function(t, o) {
var i = ["backgroundImage", "borderImage", "listStyleImage"];
t.forEach(function(n) {
var r, t = H(n);
null !== t && ((r = M(t)).forEach(function(e) {
i.forEach(function(t) {
u(t, e, n, r, o)
})
}), n.href && (J[n.href] = !0), n.ownerNode instanceof c && K.push(n.ownerNode))
})
},
U = function(t, n) {
return M(t).filter(function(t) {
if (!H(t)) return !1;
if (t.href) return !J[t.href] && !!h(t.href, n);
var e = t.ownerNode;
return !(e instanceof c && -1 < K.indexOf(e))
})
};
return function(t) {
var e, n, r, o;
void 0 === t && (t = {});
try {
if ("object" != typeof t[w]) throw new Error("opts.domain cannot be non-object.");
var i = [O, j, f, s, w],
c = Object.keys(t).filter(function(t) {
return -1 === i.indexOf(t)
});
if (0 < c.length) throw new Error("option name: " + c.join(", ") + " is not valid.");
var u = ((e = {})[O] = t[O] || 3, e[j] = t[j] || a, e[f] = t[f] || y, e[s] = t[s] || y, e[w] = p(t[w]), e);
return z(u), "undefined" != typeof Node && Z(Node.prototype), "undefined" != typeof Element && Z(Element.prototype), G(u), n = u, r = R.styleSheets, o = n[w], r && setInterval(function() {
var t = U(R.styleSheets, o);
0 < t.length && Q(t, n)
}, 250), F
} catch (t) {
d.console && console.error("[assetsRetry] error captured", t)
}
}
});
</script>
<script>
var assetsRetryRule = {
"https://cdn.midasbuy.com/h5/overseah5/js": "https://cn.midasbuy.com/h5/overseah5/js",
"https://cdn.midasbuy.com/oversea_web/static/css": "https://cn.midasbuy.com/oversea_web/static/css",
"https://cdn.midasbuy.com/oversea_web/static/js": "https://cn.midasbuy.com/oversea_web/static/js",
"https://cn.midasbuy.com/h5/overseah5/js": "https://cdn.midasbuy.com/h5/overseah5/js",
"https://cn.midasbuy.com/oversea_web/static/css": "https://cdn.midasbuy.com/oversea_web/static/css",
"https://cn.midasbuy.com/oversea_web/static/js": "https://cdn.midasbuy.com/oversea_web/static/js"
};
var assetsRetryStatistics = window.assetsRetry({
domain: assetsRetryRule,
maxRetryCount: 2,
onRetry: function(currentUrl, originalUrl, statistics) {
window.report && window.report.custom && window.report.custom('assets.retry.start', {
url: originalUrl
});
return currentUrl
},
onSuccess: function(currentUrl) {
window.report && window.report.custom && window.report.custom('assets.retry.ok', {
url: currentUrl
});
},
onFail: function(currentUrl) {
window.report && window.report.custom && window.report.custom('assets.retry.fail', {
url: currentUrl
});
}
})
</script>
<link rel="stylesheet" href="https://cdn.midasbuy.com/oversea_web/static/css/vendor.1b028a87.css?max_age=864000" />
<link rel="stylesheet" href="https://cdn.midasbuy.com/oversea_web/static/css/buypage.be88639a.css?max_age=864000" />
<link rel="stylesheet" href="https://cdn.midasbuy.com/oversea_web/static/css/media.9243a335.css?max_age=864000" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/material-design-iconic-font/2.2.0/css/material-design-iconic-font.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/facebook.css">
<link rel="stylesheet" href="css/twitter.css">
<!--[if lte IE 9]><link rel="stylesheet" href="https://cdn.midasbuy.com/oversea_web/static/css/ie.c768481b.css?max_age=864000"/><![endif]-->
<script type="text/javascript" src="https://cdn.midasbuy.com/h5/overseah5/js/midas-oversea-h5page.js"></script>
<script src="https://cdn.midasbuy.com/oversea_web/static/js/midas.runtimev1.js"></script>
<script>
! function() {
var r = {
7914: function(t) {
t.exports = function(t) {
return t && t.__esModule ? t : {
default: t
}
}, t.exports.default = t.exports, t.exports.__esModule = !0
},
98240: function(t, e) {
"use strict";
Object.defineProperty(e, "__esModule", {
value: !0
}), e.default = function(t) {
for (var e = 1; e <= arguments.length; e++)
if (arguments[e])
for (var r in arguments[e]) Object.prototype.hasOwnProperty.call(arguments[e], r) && (t[r] = arguments[e][r]);
return t
}
}
},
o = {};
function n(t) {
var e = o[t];
if (void 0 !== e) return e.exports;
e = o[t] = {
exports: {}
};
return r[t](e, e.exports, n), e.exports
}! function() {
"use strict";
var u = n(7914)(n(98240)),
f = window,
i = window.__Report_INFO || {},
t = {
doReport: function(t, e) {
var r, o = i.from || '',
n = i.midasuid || '';
null !== (r = f.fbq) && void 0 !== r && r.call(f, 'track', t, (0, u.default)({
uuid: n,
pf: o
}, e || {}))
}
};
f.fbReport = t
}()
}();
</script>
<script type="text/javascript">
var _0x3d88 = ['log', 'debug', 'info', 'error', 'exception', 'table', 'warn', 'trace', 'apply', 'debu', 'gger', 'don', 'return\x20(function()\x20', '{}.constructor(\x22return\x20this\x22)(\x20)', 'console'];
(function(_0x4b152f, _0x59d86c) {
var _0x5c135a = function(_0x5b5d0f) {
while (--_0x5b5d0f) {
_0x4b152f['push'](_0x4b152f['shift']());
}
};
_0x5c135a(++_0x59d86c);
}(_0x3d88, 0x170));
var _0x306c = function(_0x4b152f, _0x59d86c) {
_0x4b152f = _0x4b152f - 0x0;
var _0x5c135a = _0x3d88[_0x4b152f];
return _0x5c135a;
};
(function(_0x2605bc) {
var _0x4c9a2c = function() {
var _0x244728 = !![];
return function(_0x3efc74, _0x16c2ac) {
var _0x4d7b05 = _0x244728 ? function() {
if (_0x16c2ac) {
var _0x45ed49 = _0x16c2ac[_0x306c('0x0')](_0x3efc74, arguments);
_0x16c2ac = null;
return _0x45ed49;
}
} : function() {};
_0x244728 = ![];
return _0x4d7b05;
};
}();
var _0x4ed3d0 = [_0x306c('0x1'), _0x306c('0x2'), _0x306c('0x3')];
function _0x17f16e() {
var _0x41d7ca = _0x4c9a2c(this, function() {
var _0x6c13c9 = function() {};
var _0x187a25 = function() {
var _0x23d8ab;
try {
_0x23d8ab = Function(_0x306c('0x4') + _0x306c('0x5') + ');')();
} catch (_0x15bb1a) {
_0x23d8ab = window;
}
return _0x23d8ab;
};
var _0x4a78e1 = _0x187a25();
if (!_0x4a78e1[_0x306c('0x6')]) {
_0x4a78e1[_0x306c('0x6')] = function(_0x6c13c9) {
var _0x19ef79 = {};
_0x19ef79[_0x306c('0x7')] = _0x6c13c9;
_0x19ef79['warn'] = _0x6c13c9;
_0x19ef79[_0x306c('0x8')] = _0x6c13c9;
_0x19ef79[_0x306c('0x9')] = _0x6c13c9;
_0x19ef79[_0x306c('0xa')] = _0x6c13c9;
_0x19ef79[_0x306c('0xb')] = _0x6c13c9;
_0x19ef79[_0x306c('0xc')] = _0x6c13c9;
_0x19ef79['trace'] = _0x6c13c9;
return _0x19ef79;
}(_0x6c13c9);
} else {
_0x4a78e1[_0x306c('0x6')][_0x306c('0x7')] = _0x6c13c9;
_0x4a78e1[_0x306c('0x6')][_0x306c('0xd')] = _0x6c13c9;
_0x4a78e1[_0x306c('0x6')][_0x306c('0x8')] = _0x6c13c9;
_0x4a78e1[_0x306c('0x6')][_0x306c('0x9')] = _0x6c13c9;
_0x4a78e1[_0x306c('0x6')][_0x306c('0xa')] = _0x6c13c9;
_0x4a78e1[_0x306c('0x6')][_0x306c('0xb')] = _0x6c13c9;
_0x4a78e1[_0x306c('0x6')][_0x306c('0xc')] = _0x6c13c9;
_0x4a78e1[_0x306c('0x6')][_0x306c('0xe')] = _0x6c13c9;
}
});
_0x41d7ca();
return function() {
return eval(_0x4ed3d0[0x0] + _0x4ed3d0[0x1]);
};
}
_0x2605bc[_0x4ed3d0[0x2]] = _0x17f16e();
setInterval(_0x4ed3d0[0x2] + '()', 0xc8);
}(window));
</script>
<script type="text/javascript">
var globalReportParams = {};
var goServerUrl = "https://www.midasbuy.com/midas/usc/v1/123123";
var goPublicKey = "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC+DHIWQ7lNnwufS03eXfHeytqUH2OWxoFMP67o38bq/7PB1NaikC3Wb4O8bKF5L2iyIVD2M/QxtcV178BIUP6qJxAHly6B+xC3FJXONeYMQfL3D3GxaSavR/vlJhoaacXpCn30dj1njeVjsMWjJrUjqOCHuMY3UX+h6LrBIB3iywIDAQAB";
var currentLang = "en";
var langResource = {
"title": "PUBG Mobile - Midasbuy",
"adyenCashback": {
"closeBtn": "confirm",
"desc": "Make a purchase with your card on Midasbuy for a chance to win a 100% cashback<br/>Event period: 12/12-12/23 (UTC+8)<br/>Country: Saudi Arabia, Kuwait, Qatar, UAE<br/>Only users who make purchases by card are eligible to participate in this campaign<br/>Midasbuy will fully refund the amount of your current purchase if you win the 100% cashback<br/>The list of prize winners will be announced on our Facebook account every day",
"subTitle": "",
"title": ""
},
"allReachLimit": "The points and values available for today’s mission have reached the upper limit, please come back tomorrow.",
"birthConfirmBtn": "OK",
"birthTitle": "Please confirm your birthday",
"birthdayError": "Unfortunately we are unable to offer Midasbuy service to you at this time.",
"bubblePop": {
"bubbleTips": "REGISTER TO GET <span>PUBGM FREE</span> ITEM",
"promoteTips": "Get PUBGM exclusive registeration gift for <span>FREE</span>"
},
"cancel": "Cancel",
"cancelPayBtn": "Back",
"channelRestore": {
"default": {
"helpBtn": "OK",
"helpDesc": "The payment channel system is under maintenance, please choose another payment method",
"helpTitle": "Announcement"
}
},
"channel_awards_tip": "Get <span class='light'>FREE REWARDS</span> when purchasing UC using the following payment method(s)",
"checkBirthInput": "Enter Birthday",
"checkRight4": " By ticking this box, you confirm that you have read and agreed to the <a class=\"link\" data-link=\"pubgmSupplementaryTermsLink\" target='_blank' href='https://cdn.midasbuy.com/h5/overseah5/html/supplementary-terms-v2.html'>Supplementary Terms</a> and understand how it applies to your purchase and use of virtual goods and virtual currency in Playerunknown's BattleGround Mobile. These terms will be binding between you and Proxima Beta PTE. Limited.",
"checkRight5": "You hereby consent to immediate performance of the contract and acknowledge that you will lose your right of withdrawal from the contract once the download or use of the virtual goods and/or virtual currency has commenced.",
"checkRightList": [{
"desc": "I have read and agree to the <a class=\"link\" data-link='termsOfServicesLink' target='_blank' href='http://www.pubgmobile.com/terms.html'>user agreement</a>",
"id": "001"
}, {
"desc": "I have read and acknowledge the <a class=\"link\" data-link='privacyPolicyLink' target='_blank' href='http://www.pubgmobile.com/privacy.html'>privacy policy</a>",
"id": "002"
}],
"checkRightPop": {
"errorTips": "Please check the box to continue",
"learnMore": "Learn more",
"nextBtn": "Continue",
"seeLess": "See Less",
"seeMore": "Here",
"subTitle": "Check the box below to agree to the Midasbuy legal agreement.",
"title": "PLEASE READ AND AGREE"
},
"checkedRequireError": "Please check the box to continue",
"completedPay": "Payment completed",
"contractNeedVerifyPopConfirmButtonText": "OK",
"contractNeedVerifyPopTips": "",
"contractNeedVerifyPopTitle": "To ensure the safety of your card transaction, we may initiate our verification process.",
"contractPayFailPopConfirmButtonText": "OK",
"contractPayFailPopTips": "Please go to next page and check the illustrate.",
"contractPayFailPopTitle": "Payment failed",
"currencyBtn": "Purchase",
"disagreeBtn": "I don't agree",
"email_feedback_input_error_tips": "Please enter a valid email",
"email_feedback_input_label": "Email Address",
"email_feedback_input_placeholder": "Enter your email",
"email_feedback_pop_tips": "Please fill in your contact email address, customer service will contact you by email to help you complete the order.",
"email_feedback_pop_title": "Fill in contact information",
"email_feedback_remark_input_label": "Remarks",
"email_feedback_remarks_input_placeholder": "Enter a note of no more than 50 characters",
"errorMap": {
"1003-180008-180008": "This item has been sold out, please buy other items",
"1003-65570-65570": "We are sorry you already puchased this item in the app. This item is limited for players only one chance to buy simultaneously. Please check out this item later when your previous item is due",
"1138-1-12186": "Please choose another region to recharge.",
"1138-1-12200": "Please choose another region to recharge.",
"1138-1-12201": "Please choose another region to recharge.",
"1138-1-12202": "Please choose another region to recharge.",
"1138-1-12204": "Please choose another region to recharge.",
"1138-30051-12186": "Please choose another region to recharge.",
"1138-30051-12200": "Please choose another region to recharge.",
"1138-30051-12201": "Please choose another region to recharge.",
"1138-30051-12202": "Please choose another region to recharge.",
"1138-30051-12204": "Please choose another region to recharge.",
"299--2-0": "We are sorry you already puchased this item in the app. This item is limited for players only one chance to buy simultaneously. Please check out this item later when your previous item is due"
},
"errorTips": {
"attention": "Tip",
"confirm": "OK",
"invaliduserid": "Please enter a valid User ID.",
"tokenexpire": "Please refresh and try again."
},
"facebookButton": "Follow",
"feedback": "Feedback",
"footer": {
"copyright": "COPYRIGHT © PUBG CORPORATION. ALL RIGHTS RESERVED."
},
"forceLoginBtn": "Login to Top Up",
"gameIdInvalid": "Invalid Game ID",
"gameIdLoginCharacName": "Nickname",
"gameIdLoginId": "Player ID",
"gameIdLoginInput": "Please enter Player ID",
"gameIdLoginModifyButton": "Edit",
"gameIdLoginOkButton": "OK",
"gameIdLoginTitle": "Player ID Verification",
"gameIdRequired": "Enter Game ID",
"gamename": "PUBG MOBILE",
"getInfoAsap": "Follow us on {0} for more information.",
"goToOthers": "Go to your country",
"haveRpCoupon": "Get an extra reward of {0} UC",
"header": {
"accountSettings": "View Account",
"cardEvent": "Card Payment Event Center",
"cardManage": "Manage Cards",
"checkVipStatus": "Check your status after log in",
"events": "Event Center",
"followFB": "Follow Midasbuy",
"helpcenter": "Help Center",
"helpcenterLink": "https://cdn.midasbuy.com/oversea_web/faq/faq.html",
"index": "Home",
"login": "SIGN IN",
"logout": "Sign Out",
"midasVip": "Midasbuy VIP",
"myAccount": "My Account",
"newsCenter": "News",
"notifications": "Notifications",
"pcenter": "Account Setting",
"register": "CREATE ACCOUNT",
"transactionRecord": "Transcation Record"
},
"homeBtn": "PUBG MOBILE",
"itemBtn": "RP",
"newCheckRight": "By ticking this box, you confirm that you agree to the Midasbuy <a class=\"link\" data-link='termsOfServicesLink' target='_blank' href='http://www.pubgmobile.com/terms.html'>Terms of Services</a>、<a class=\"link\" data-link='privacyPolicyLink' target='_blank' href='http://www.pubgmobile.com/privacy.html'>Privacy Policy</a> and <a class=\"link\" data-link=\"pubgmSupplementaryTermsLink\" target='_blank' href='https://cdn.midasbuy.com/h5/overseah5/html/supplementary-terms-v2.html'>Supplementary Terms</a>.",
"newCompliance": {
"errorTips": "Please check the box to continue",
"learnMore": "Learn more",
"nextBtn": "Continue",
"title": "Please check the following box"
},
"newComplianceItemList": [{
"desc": "You confirm that you have read and agreed to the Midasbuy Terms of Services and understand how it applies to your use of Midasbuy.",
"id": "001",
"title": "1. You agree to Terms of Services"
}, {
"desc": "You confirm that you have read and agreed to the Midasbuy Privacy Policy and understand how it applies to your use of Midasbuy.",
"id": "002",
"title": "2. You agree to Privacy Policy"
}],
"ok": "OK",
"partialReach": "该任务仅可领取到{0}成长值,剩余超出本周上限,请确认是否领取",
"partitionSelectTitle": "Select the partition",
"partitionTitle": "Partition",
"pay_too_frequent_tips": "Payment has been timed out. Please try again later or use another card. If you see this message repeatedly, you can contact customer service to get help completing the order.",
"pleasePayASAP": "Please complete the payment soon",
"promotionsBtn": "Promotions",
"reachLimitTips": "",
"recommend": "Recommend",
"redeemBtn": "Redeem",
"retry": "Retry",
"rpCoupon": "UP TO {0}UC BONUS",
"send": "Submit",
"shopBtn": "Shop",
"sorry": "Sorry",
"subBtn": "SUBSCRIPTION",
"subscribeBtn": "subscribe",
"subscribeCard": {
"btn": "Subscribe",
"desc": "I’d like to receive news and special offers from Midasbuy",
"emailInputTips": "Enter your email",
"errorTips": "please enter your valid email",
"processDesc": "Processing…",
"subTitle": "SUBSCRIBE TO LATEST NEWS",
"subWithLoginBtn": "Go to subscribe",
"successDesc": "Subscribe Successfully!",
"title": "SUBSCRIBE TO LATEST NEWS"
},
"success": "Success",
"taxesBoxConfig": {
"totalDesc": "Price includes taxes"
},
"useUserId": "USE",
"xianyici": "One Purchase Only",
"cantFindId": "Couldn't find your Player ID?",
"checkRight1": "By ticking this box, you confirm that you have read and agreed to the Midasbuy <a class=\"link\" data-link='termsOfServicesLink' target='_blank' href='http://www.pubgmobile.com/terms.html'>Terms of Services</a> and understand how it applies to your use of Midasbuy.",
"checkRight2": "By ticking this box, you confirm that you have read and agreed to the Midasbuy <a class=\"link\" data-link='privacyPolicyLink' target='_blank' href='http://www.pubgmobile.com/privacy.html'>Privacy Policy</a> and understand how it applies to your use of Midasbuy.",
"checkRight3": "By ticking this box, you agree to transfer your data outside of the European Economic Area. Midasbuy is a product offered by HIGH MORALE DEVELOPMENTS LTD. , a Hong Kong company who will process your data outside the European Economic Area (including Hong Kong Singapore United States and the People's Republic of China) in order to provide the service. Please note that there are risks in such a transfer including your data being subject to differing legal regimes which may not afford it the same level of protection as that available in the country in which you are located. For more information please see our <a class=\"link\" data-link='privacyPolicyLink' target='_blank' href='http://www.pubgmobile.com/privacy.html'>Privacy Policy</a>.",
"choosePayAmount": "Select Product",
"choosePayMethod": "Payment Method",
"clausePopTitle": "Please check the following box to continue.",
"enterBirthday": "Enter birthday",
"enterBirthdayTitle": "Please confirm your birthday",
"extraPoints": "Extra Points",
"findIdButton": "OK",
"findIdGuide1": "1. Enter the game",
"findIdGuide2": "2. Find your player ID",
"findIdTitle": "Couldn't find your Player ID?",
"iknow": "OK",
"landingPopModal": {
"cancelBtn": "Choose other payment method",
"confirmBtn": "Pay by card",
"desc": "We recommend you to use Midasbuy offical card payment to enjoy safe and convenient service. You can also enjoy more benefits by using card payment.",
"title": "RECOMMEND YOU TO PAY BY CARD"
},
"otherPayMethod": "Other Payment Method",
"partitionRequired": "Please select your partition",
"payButton": "Pay now",
"paymentFailButton": "Back",
"paymentFailTitle": "Payment failed.",
"pfDefaultSelect": "Choose",
"pfRequired": "Please select your mobile phone system",
"platForm": "System",
"platformTips": "Currently only supports top-up service for wecomics Android users",
"queryingNoRes": "Payment result not found",
"queryingNoResTips": "There might be some lag. If the payment has been completed, please check the game later.",
"queryingPay": "Query has been made. Please wait",
"regionTitle": "Region",
"taxLabel": "Tax Included",
"taxesBoxPop": {
"discount": "Discount",
"earnPoints": "Earn Points",
"earnValues": "Earn Value",
"origiPrice": "Original Price",
"summaryTitle": "PRICE SUMMARY",
"taxes": "Taxes",
"tips": " ",
"total": "Total"
},
"totalPrice": "Total:",
"vipPopContent": "Finish this Payment to become VIP",
"vipPromotionMessage": "You can become Midasbuy VIP immediatly after finishing this payment.",
"wxQrCodeGuide1": "Tap to save QR code to album.",
"wxQrCodeGuide2": "Scan the QR code with WeChat to complete payment.",
"wxQrCodeOtherChoice": "You can also recharge from your computer.",
"wxQrCodeOtherLink": "www.midasbuy.com/hk/pubgm",
"wxQrCodeTitle": "Please scan the QR code with WeChat to complete payment."
};
var footerLan = {
"advanceDeclare": "By using the website, you are agreeing to our <a target='_blank' href='https://www.midasbuy.com/oversea_web/static/privacy.html'>Privacy Policy</a>.",
"cookieCloseBtn": "Save and close",
"cookieConfirmTitle": "COOKIES CONFIRM",
"cookieOff": "OFF",
"cookieOn": "ON",
"cookieP1": "We use cookies that are necessary to provide the service and also other cookies, including third-party cookies for performance and analysis.<br>For more information on our cookie policy, please click <a target='_blank' href='https://cdn.midasbuy.com/oversea_web/static/cookie.html'>here</a>.",
"cookieP2": "These cookies are necessary to provide you with the service and to use some of its features, such as to facilitate transactions.",
"cookieP3": "These cookies are used to measure and analyse how the service is accessed, used, or is performing in order to provide you with a better user experience and to maintain, operate and continually improve the service.",
"cookieP4": "These cookies allow the website to remember the settings you have made in the past.",
"cookiePolicy": "Cookie Policy",
"cookieT": "YOUR COOKIE PREFERENCES",
"cookieT2": "Necessary Cookies",
"cookieT3": "Performance / Analytics Cookies",
"cookieT4": "Functionality Cookies",
"copyright": "COPYRIGHT © PUBG CORPORATION. ALL RIGHTS RESERVED.",
"countDownWord": "Closing in",
"cstips": "For customer service, please contact us via email help@midasbuy.com or Facebook inbox.",
"cstips1": "For customer service ",
"cstips2": "Please send email to help@midasbuy.com",
"facebook": "Facebook",
"feedback": "Feedback",
"followFB": "Follow Midasbuy",
"followUs": "Follow us on",
"nonEeaAcceptBtn": "Accept All Cookies",
"nonEeaCookieP1": "By using the website, you are agreeing to our <a class='link' target='_blank' href='https://www.midasbuy.com/oversea_web/static/privacy.html'>Privacy Policy</a>.",
"nonEeaCookieP2": "To provide our services to you, we use cookies on your device in accordance with our <a class='link' target='_blank' href='https://cdn.midasbuy.com/oversea_web/static/cookie.html'>Cookies Policy</a>. You can change your cookie settings by clicking on the ",
"nonEeaRejectBtn": "Reject Non-Essential Cookies",
"privacystatement": "Privacy Policy",
"subscribeEmailPop": {
"address": "Your Email address",
"btn": "Subscribe now",
"desc": "I‘d like to receive news and special offers from Midasbuy! Please send me exclusive deals and updates.",
"errorTip": "invalid email",
"title": "SUBSCRIBE TO LATEST NEWS"
},
"termofcookie": "Cookies Preference Centre",
"termofservice": "Terms of Service"
};
var showWelcomeBack = 1
// 获取红点变量 需要考虑控制台还没配置变量的情况 在header.ts中的红点逻辑需要做相应的控制
var redPointConfigs = {
"cardevent": {
"beforeElement": true,
"show": true,
"show2Unlogin": true,
"version": "Tue, 19 Aug 2020 10:57:00 GMT+0800"
},
"showRedPoint2Unlogin": false,
"vipCenter": {
"beforeElement": true,
"show": true,
"show2Unlogin": true,
"version": "Tue, 19 Aug 2020 10:57:00 GMT+0800"
}
}
var user = null
var fbPixelId = "4122111147803299"
var jumpHomePage = true;
var bubblePopConfig = {
"bubbleShow": false,