forked from feverrun/my_scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jd_nhj.js
2623 lines (2583 loc) · 167 KB
/
jd_nhj.js
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
/*
年货节
开始时间:2022.12.29 20:00-2023.1.15 23.59
变量:CODE1212
export CODE1212="xxxxxxx"
cron "0 0,10,20 29-31,1-15 12,1 *" jd_nhj.js
*/
const $ = new Env('年货节');
const jdCookieNode = $.isNode() ? require('./jdCookie.js') : '';
const notify = $.isNode() ? require('./sendNotify') : '';
var _0xodJ='jsjiami.com.v6',_0xodJ_=['_0xodJ'],_0x134e=[_0xodJ,'\x43\x72\x79\x70\x74\x6f\x4a\x53','\x63\x72\x79\x70\x74\x6f\x2d\x6a\x73','\x6a\x73\x64\x6f\x6d','\x69\x73\x4e\x6f\x64\x65','\x6b\x65\x79\x73','\x66\x6f\x72\x45\x61\x63\x68','\x70\x75\x73\x68','\x65\x6e\x76','\x4a\x44\x5f\x44\x45\x42\x55\x47','\x66\x61\x6c\x73\x65','\x6c\x6f\x67','\x67\x65\x74\x64\x61\x74\x61','\x43\x6f\x6f\x6b\x69\x65\x4a\x44','\x43\x6f\x6f\x6b\x69\x65\x4a\x44\x32','\x43\x6f\x6f\x6b\x69\x65\x73\x4a\x44','\x6d\x61\x70','\x63\x6f\x6f\x6b\x69\x65','\x66\x69\x6c\x74\x65\x72','\x43\x4f\x44\x45\x31\x32\x31\x32','\x43\x4f\x44\x45\x31\x32\x31\x32\x5f\x50\x49\x4e','\x43\x4f\x44\x45\x31\x32\x31\x32\x5f\x52\x45\x44\x54\x49\x4d\x45\x53','\x73\x70\x6c\x69\x74','\x74\x69\x6d\x65','\x79\x79\x79\x79\x2d\x4d\x4d\x2d\x64\x64\x20\x48\x48\x3a\x6d\x6d\x3a\x73\x73','\x75\x69\x55\x70\x64\x61\x74\x65\x54\x69\x6d\x65','\x65\x6e\x64\x46\x6c\x61\x67','\x72\x75\x6e\x45\x6e\x64','\x67\x65\x74\x48\x35\x73\x74\x5f\x57\x51\x5f\x41\x72\x72','\x72\x75\x6e\x41\x72\x72','\x32\x30\x32\x33\x2f\x31\x2f\x31\x36\x20\x30\x30\x3a\x30\x30\x3a\x30\x30\x2b\x30\x38\x3a\x30\x30','\x67\x65\x74\x54\x69\x6d\x65','\x67\x65\x74\x54\x69\x6d\x65\x7a\x6f\x6e\x65\x4f\x66\x66\x73\x65\x74','\x55\x56\x43\x6f\x6f\x6b\x69\x65\x41\x72\x72','\x55\x56\x43\x6f\x6f\x6b\x69\x65','\x79\x79\x79\x79\x2d\x4d\x4d\x2d\x64\x64','\x74\x65\x73\x74','\x70\x6f\x70','\x73\x68\x69\x66\x74','\x6c\x65\x6e\x67\x74\x68','\x6d\x73\x67','\x6e\x61\x6d\x65','\u3010\u63d0\u793a\u3011\u8bf7\u5148\u83b7\u53d6\x63\x6f\x6f\x6b\x69\x65\x0a\u76f4\u63a5\u4f7f\u7528\x4e\x6f\x62\x79\x44\x61\u7684\u4eac\u4e1c\u7b7e\u5230\u83b7\u53d6','\x68\x74\x74\x70\x73\x3a\x2f\x2f\x62\x65\x61\x6e\x2e\x6d\x2e\x6a\x64\x2e\x63\x6f\x6d\x2f','\x6a\x64\x5f\x32\x32\x31\x32\x31\x32\x5f\x52\x65\x64\x5f\x63\x6f\x64\x65','\x3d\x3d\x3d\x65\x6e\x63\x72\x79\x70\x74\x69\x6f\x6e\x3d\x3d\x3d','\x73\x65\x74\x64\x61\x74\x61','\u6d3b\u52a8\u5df2\u7ed3\u675f','\u8bf7\u5220\u9664\u6b64\u811a\u672c','\x4a\x44\x5f\x32\x32\x31\x32\x31\x32\x5f\x52\x65\x64\x73','\x4a\x44\x5f\x32\x32\x31\x32\x31\x32\x5f\x52\x65\x64','\x4a\x44\x5f\x32\x32\x31\x32\x31\x32\x5f\x52\x65\x64\x5f\x70\x69\x6e','\x74\x73\x71\x36\x58\x75\x39','\x74\x62\x71\x71\x42\x78\x54','\x74\x62\x71\x71\x4d\x38\x54','\x74\x75\x71\x61\x78\x31\x4c','\x74\x7a\x71\x51\x48\x58\x48','\x74\x73\x71\x4f\x6c\x6b\x44','\x74\x69\x71\x4f\x72\x52\x76','\x74\x71\x51\x68\x39\x30\x45','\x74\x75\x71\x4f\x6f\x32\x63','\x74\x62\x71\x38\x6c\x79\x72','\x74\x38\x71\x4d\x6f\x4b\x6d','\x74\x38\x71\x4d\x6d\x37\x69','\x73\x68\x61\x72\x65\x43\x6f\x64\x65\x41\x72\x72','\x73\x68\x61\x72\x65\x43\x6f\x64\x65\x50\x69\x6e\x41\x72\x72','\x73\x68\x61\x72\x65\x43\x6f\x64\x65','\x61\x67\x61\x69\x6e','\x55\x73\x65\x72\x4e\x61\x6d\x65','\x6d\x61\x74\x63\x68','\x69\x6e\x64\x65\x78','\x0a\x0a\x2a\x2a\x2a\x2a\x2a\x2a\u5f00\u59cb\u3010\u4eac\u4e1c\u8d26\u53f7','\x6e\x69\x63\x6b\x4e\x61\x6d\x65','\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x2a\x0a','\x69\x6e\x63\x6c\x75\x64\x65\x73','\x61\x70\x70\x5f\x6f\x70\x65\x6e','\x67\x65\x74\x48\x6f\x75\x72\x73','\x77\x61\x69\x74','\x72\x61\x6e\x64\x6f\x6d','\u4f11\u606f\u4e00\u4f1a\x2e\x2e\x2e','\x63\x61\x74\x63\x68','\x6c\x6f\x67\x45\x72\x72','\x66\x69\x6e\x61\x6c\x6c\x79','\x63\x6c\x6f\x73\x65','\x64\x6f\x6e\x65','\x73\x68\x61\x72\x65\x46\x6c\x61\x67','\x66\x6c\x61\x67','\x75\x72\x6c\x31','\u83b7\u53d6\x75\x72\x6c\x31\u5931\u8d25','\x75\x72\x6c\x32','\x67\x65\x74\x55\x56\x43\x6f\x6f\x6b\x69\x65','\x68\x74\x74\x70\x73\x3a\x2f\x2f\x70\x72\x6f\x64\x65\x76\x2e\x6d\x2e\x6a\x64\x2e\x63\x6f\x6d\x2f\x6d\x61\x6c\x6c\x2f\x61\x63\x74\x69\x76\x65\x2f\x32\x51\x50\x67\x63\x62\x6e\x72\x52\x7a\x53\x61\x73\x32\x41\x46\x76\x4e\x78\x46\x72\x63\x58\x62\x37\x33\x7a\x69\x2f\x69\x6e\x64\x65\x78\x2e\x68\x74\x6d\x6c\x3f\x75\x6e\x69\x6f\x6e\x41\x63\x74\x49\x64\x3d\x33\x31\x31\x35\x35\x26\x64\x3d','\x26\x63\x75\x3d\x74\x72\x75\x65\x26\x75\x74\x6d\x5f\x73\x6f\x75\x72\x63\x65\x3d\x6b\x6f\x6e\x67\x26\x75\x74\x6d\x5f\x6d\x65\x64\x69\x75\x6d\x3d\x6a\x69\x6e\x67\x66\x65\x6e','\x61\x63\x74\x49\x64','\x32\x51\x50\x67\x63\x62\x6e\x72\x52\x7a\x53\x61\x73\x32\x41\x46\x76\x4e\x78\x46\x72\x63\x58\x62\x37\x33\x7a\x69','\x65\x69\x64','\x67\x65\x74\x4f\x77\x6e\x50\x72\x6f\x70\x65\x72\x74\x79\x4e\x61\x6d\x65\x73','\x63\x6f\x75\x6e\x74','\x73\x68\x61\x72\x65\x43\x6f\x75\x6e\x74','\x67\x65\x74\x6c\x6a','\x63\x6f\x64\x65','\u3010\u4eac\u4e1c\u8d26\u53f7','\x0a\u83b7\u53d6\u65b0\u7684\u52a9\u529b\u4fe1\u606f','\x75\x70\x64\x61\x74\x65\x54\x69\x6d\x65','\x69\x6e\x64\x65\x78\x4f\x66','\x66\x6c\x6f\x6f\x72','\x33\x31\x31\x35\x35','\x61\x70\x70\x6c\x65','\x38\x2e\x33\x2e\x36','\x67\x65\x74\x43\x6f\x75\x70\x6f\x6e\x73','\x36\x61\x39\x38\x64','\x68\x74\x74\x70\x73\x3a\x2f\x2f\x61\x70\x69\x2e\x6d\x2e\x6a\x64\x2e\x63\x6f\x6d\x2f\x61\x70\x69\x3f\x66\x75\x6e\x63\x74\x69\x6f\x6e\x49\x64\x3d\x67\x65\x74\x43\x6f\x75\x70\x6f\x6e\x73\x26\x61\x70\x70\x69\x64\x3d\x75\x26\x5f\x3d','\x26\x6c\x6f\x67\x69\x6e\x54\x79\x70\x65\x3d\x32\x26\x62\x6f\x64\x79\x3d','\x74\x6f\x53\x74\x72','\x26\x63\x6c\x69\x65\x6e\x74\x3d\x61\x70\x70\x6c\x65\x26\x63\x6c\x69\x65\x6e\x74\x56\x65\x72\x73\x69\x6f\x6e\x3d\x38\x2e\x33\x2e\x36\x26\x68\x35\x73\x74\x3d','\x2a\x2f\x2a','\x7a\x68\x2d\x63\x6e','\x67\x7a\x69\x70\x2c\x20\x64\x65\x66\x6c\x61\x74\x65\x2c\x20\x62\x72','\x68\x74\x74\x70\x73\x3a\x2f\x2f\x70\x72\x6f\x64\x65\x76\x2e\x6d\x2e\x6a\x64\x2e\x63\x6f\x6d','\x68\x74\x74\x70\x73\x3a\x2f\x2f\x70\x72\x6f\x64\x65\x76\x2e\x6d\x2e\x6a\x64\x2e\x63\x6f\x6d\x2f\x6d\x61\x6c\x6c\x2f\x61\x63\x74\x69\x76\x65\x2f\x32\x51\x50\x67\x63\x62\x6e\x72\x52\x7a\x53\x61\x73\x32\x41\x46\x76\x4e\x78\x46\x72\x63\x58\x62\x37\x33\x7a\x69\x2f\x69\x6e\x64\x65\x78\x2e\x68\x74\x6d\x6c','\x68\x65\x61\x64\x65\x72\x73','\x52\x65\x66\x65\x72\x65\x72','\x67\x65\x74','\x20\x41\x50\x49\u8bf7\u6c42\u5931\u8d25\uff0c\u8bf7\u68c0\u67e5\u7f51\u8def\u91cd\u8bd5','\x74\x6f\x4f\x62\x6a','\x6f\x62\x6a\x65\x63\x74','\u4e0d\u5c55\u793a\u5f39\u5c42','\u9886\u53d6\u4e0a\u9650','\u6d3b\u52a8\u672a\u5f00\u59cb','\x64\x61\x74\x61','\x75\x6e\x64\x65\x66\x69\x6e\x65\x64','\x6a\x6f\x69\x6e\x4e\x75\x6d','\x6a\x6f\x69\x6e\x53\x75\x66\x66\x69\x78','\x63\x6f\x75\x70\x6f\x6e\x4c\x69\x73\x74','\x74\x79\x70\x65','\u83b7\u5f97\x5b\u7ea2\u5305\x5d\ud83e\udde7','\x64\x69\x73\x63\x6f\x75\x6e\x74','\u5143\x20\u4f7f\u7528\u65f6\u95f4\x3a','\x62\x65\x67\x69\x6e\x54\x69\x6d\x65','\x65\x6e\x64\x54\x69\x6d\x65','\u83b7\u5f97\x5b\u4f18\u60e0\u5238\x5d\ud83c\udf9f\ufe0f\u6ee1','\x71\x75\x6f\x74\x61','\x20\u4f7f\u7528\u65f6\u95f4\x3a','\u83b7\u5f97\x5b\u6253\u6298\u5238\x5d\x5d\ud83c\udfab\u6ee1','\u6298\x20\u4f7f\u7528\u65f6\u95f4\x3a','\u83b7\u5f97\x5b\u672a\u77e5\x5d\ud83c\udf89','\x67\x72\x6f\x75\x70\x44\x61\x74\x61','\x67\x72\x6f\x75\x70\x49\x6e\x66\x6f','\x73\x74\x61\x74\x75\x73','\u52a9\u529b\u6ee1\u53ef\u4ee5\u9886\u53d6','\x69\x6e\x66\x6f','\u5143\u7ea2\u5305\ud83e\udde7','\x68\x74\x74\x70\x73\x3a\x2f\x2f\x61\x70\x69\x2e\x6d\x2e\x6a\x64\x2e\x63\x6f\x6d\x2f\x61\x70\x69\x3f\x66\x75\x6e\x63\x74\x69\x6f\x6e\x49\x64\x3d\x73\x68\x6f\x77\x43\x6f\x75\x70\x6f\x6e\x26\x61\x70\x70\x69\x64\x3d\x75\x26\x5f\x3d','\x6e\x6f\x77','\x26\x6c\x6f\x67\x69\x6e\x54\x79\x70\x65\x3d\x32\x26\x62\x6f\x64\x79\x3d\x7b\x25\x32\x32\x61\x63\x74\x49\x64\x25\x32\x32\x3a\x25\x32\x32','\x25\x32\x32\x2c\x25\x32\x32\x75\x6e\x69\x6f\x6e\x41\x63\x74\x49\x64\x25\x32\x32\x3a\x25\x32\x32\x33\x31\x31\x35\x35\x25\x32\x32\x2c\x25\x32\x32\x75\x6e\x70\x6c\x25\x32\x32\x3a\x25\x32\x32','\x75\x6e\x70\x6c','\x25\x32\x32\x2c\x25\x32\x32\x70\x6c\x61\x74\x66\x6f\x72\x6d\x25\x32\x32\x3a\x34\x2c\x25\x32\x32\x75\x6e\x69\x6f\x6e\x53\x68\x61\x72\x65\x49\x64\x25\x32\x32\x3a\x25\x32\x32\x25\x32\x32\x2c','\x25\x32\x32\x75\x69\x55\x70\x64\x61\x74\x65\x54\x69\x6d\x65\x25\x32\x32\x3a','\x25\x32\x32\x64\x25\x32\x32\x3a\x25\x32\x32','\x25\x32\x32\x2c\x25\x32\x32\x65\x69\x64\x25\x32\x32\x3a\x25\x32\x32','\x25\x32\x32\x7d\x26\x63\x6c\x69\x65\x6e\x74\x3d\x69\x50\x68\x6f\x6e\x65\x26\x63\x6c\x69\x65\x6e\x74\x56\x65\x72\x73\x69\x6f\x6e\x3d\x26\x6f\x73\x56\x65\x72\x73\x69\x6f\x6e\x3d\x69\x4f\x53\x26\x73\x63\x72\x65\x65\x6e\x3d\x34\x31\x34\x2a\x38\x39\x36\x26\x64\x5f\x62\x72\x61\x6e\x64\x3d\x69\x50\x68\x6f\x6e\x65\x26\x64\x5f\x6d\x6f\x64\x65\x6c\x3d\x69\x50\x68\x6f\x6e\x65\x26\x6c\x61\x6e\x67\x3d\x7a\x68\x2d\x63\x6e\x26\x73\x64\x6b\x56\x65\x72\x73\x69\x6f\x6e\x3d\x26\x6f\x70\x65\x6e\x75\x64\x69\x64\x3d','\x6e\x75\x6d','\u3010\u8d26\u53f7','\u3011\u7f13\u5b58\u5206\u4eab\u7801\x3a','\x72\x65\x70\x6c\x61\x63\x65','\x2a\x2a\x2a\x24\x31','\x68\x74\x74\x70\x73\x3a\x2f\x2f\x61\x70\x69\x2e\x6d\x2e\x6a\x64\x2e\x63\x6f\x6d\x2f\x61\x70\x69\x3f\x66\x75\x6e\x63\x74\x69\x6f\x6e\x49\x64\x3d\x73\x68\x61\x72\x65\x55\x6e\x69\x6f\x6e\x43\x6f\x75\x70\x6f\x6e\x26\x61\x70\x70\x69\x64\x3d\x75\x26\x5f\x3d','\x26\x6c\x6f\x67\x69\x6e\x54\x79\x70\x65\x3d\x32\x26\x62\x6f\x64\x79\x3d\x7b\x25\x32\x32\x75\x6e\x69\x6f\x6e\x41\x63\x74\x49\x64\x25\x32\x32\x3a\x25\x32\x32\x33\x31\x31\x35\x35\x25\x32\x32\x2c\x25\x32\x32\x61\x63\x74\x49\x64\x25\x32\x32\x3a\x25\x32\x32','\x25\x32\x32\x2c\x25\x32\x32\x70\x6c\x61\x74\x66\x6f\x72\x6d\x25\x32\x32\x3a\x34\x2c\x25\x32\x32\x75\x6e\x69\x6f\x6e\x53\x68\x61\x72\x65\x49\x64\x25\x32\x32\x3a\x25\x32\x32\x25\x32\x32\x2c\x25\x32\x32\x64\x25\x32\x32\x3a\x25\x32\x32','\x25\x32\x32\x2c\x25\x32\x32\x73\x75\x70\x70\x6f\x72\x74\x50\x69\x63\x25\x32\x32\x3a\x32\x2c\x25\x32\x32\x73\x75\x70\x70\x6f\x72\x74\x4c\x75\x63\x6b\x79\x43\x6f\x64\x65\x25\x32\x32\x3a\x30\x2c\x25\x32\x32\x65\x69\x64\x25\x32\x32\x3a\x25\x32\x32','\x73\x68\x61\x72\x65\x55\x72\x6c','\u3011\u5206\u4eab\u7801\uff1a','\x6c\x6f\x63\x61\x74\x69\x6f\x6e','\x4c\x6f\x63\x61\x74\x69\x6f\x6e','\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x2e\x6a\x64\x2e\x63\x6f\x6d\x2f','\x3f\x73\x3d','\x68\x74\x74\x70\x73\x3a\x2f\x2f\x67\x69\x61\x2e\x6a\x64\x2e\x63\x6f\x6d\x2f\x66\x63\x66\x2e\x68\x74\x6d\x6c\x3f\x61\x3d','\x61\x70\x70\x6c\x69\x63\x61\x74\x69\x6f\x6e\x2f\x78\x2d\x77\x77\x77\x2d\x66\x6f\x72\x6d\x2d\x75\x72\x6c\x65\x6e\x63\x6f\x64\x65\x64\x3b\x63\x68\x61\x72\x73\x65\x74\x3d\x55\x54\x46\x2d\x38','\x70\x6f\x73\x74','\x2a\x5f\x2a','\x70\x61\x72\x73\x65','\u4eac\u4e1c\x61\x70\x69\u8fd4\u56de\u6570\u636e\u4e3a\u7a7a\uff0c\u8bf7\u68c0\u67e5\u81ea\u8eab\u539f\u56e0','\x73\x65\x74\x2d\x63\x6f\x6f\x6b\x69\x65','\x53\x65\x74\x2d\x43\x6f\x6f\x6b\x69\x65','\x74\x72\x69\x6d','\x4d\x6f\x7a\x69\x6c\x6c\x61\x2f\x35\x2e\x30\x20\x28\x69\x50\x68\x6f\x6e\x65\x3b\x20\x43\x50\x55\x20\x69\x50\x68\x6f\x6e\x65\x20\x4f\x53\x20\x31\x33\x5f\x32\x5f\x33\x20\x6c\x69\x6b\x65\x20\x4d\x61\x63\x20\x4f\x53\x20\x58\x29\x20\x41\x70\x70\x6c\x65\x57\x65\x62\x4b\x69\x74\x2f\x36\x30\x35\x2e\x31\x2e\x31\x35\x20\x28\x4b\x48\x54\x4d\x4c\x2c\x20\x6c\x69\x6b\x65\x20\x47\x65\x63\x6b\x6f\x29\x20\x56\x65\x72\x73\x69\x6f\x6e\x2f\x31\x33\x2e\x30\x2e\x33\x20\x4d\x6f\x62\x69\x6c\x65\x2f\x31\x35\x45\x31\x34\x38\x20\x53\x61\x66\x61\x72\x69\x2f\x36\x30\x34\x2e\x31','\x53\x48\x41\x31','\x72\x65\x64\x73','\x74\x6f\x53\x74\x72\x69\x6e\x67','\x6a\x64\x61\x70\x70\x3b\x69\x50\x68\x6f\x6e\x65\x3b\x31\x30\x2e\x34\x2e\x36\x3b\x31\x34\x2e\x33\x3b','\x3b\x4d\x2f\x35\x2e\x30\x3b\x6e\x65\x74\x77\x6f\x72\x6b\x2f\x77\x69\x66\x69\x3b\x41\x44\x49\x44\x2f\x3b\x6d\x6f\x64\x65\x6c\x2f\x69\x50\x68\x6f\x6e\x65\x31\x32\x2c\x31\x3b\x61\x64\x64\x72\x65\x73\x73\x69\x64\x2f\x3b\x61\x70\x70\x42\x75\x69\x6c\x64\x2f\x31\x36\x37\x38\x31\x34\x3b\x6a\x64\x53\x75\x70\x70\x6f\x72\x74\x44\x61\x72\x6b\x4d\x6f\x64\x65\x2f\x30\x3b\x4d\x6f\x7a\x69\x6c\x6c\x61\x2f\x35\x2e\x30\x20\x28\x69\x50\x68\x6f\x6e\x65\x3b\x20\x43\x50\x55\x20\x69\x50\x68\x6f\x6e\x65\x20\x4f\x53\x20\x31\x34\x5f\x33\x20\x6c\x69\x6b\x65\x20\x4d\x61\x63\x20\x4f\x53\x20\x58\x29\x20\x41\x70\x70\x6c\x65\x57\x65\x62\x4b\x69\x74\x2f\x36\x30\x35\x2e\x31\x2e\x31\x35\x20\x28\x4b\x48\x54\x4d\x4c\x2c\x20\x6c\x69\x6b\x65\x20\x47\x65\x63\x6b\x6f\x29\x20\x4d\x6f\x62\x69\x6c\x65\x2f\x31\x35\x45\x31\x34\x38\x3b\x73\x75\x70\x70\x6f\x72\x74\x4a\x44\x53\x48\x57\x4b\x2f\x31','\x73\x74\x72\x69\x6e\x67','\u8bf7\u52ff\u968f\u610f\u5728\x42\x6f\x78\x4a\x73\u8f93\u5165\u6846\u4fee\u6539\u5185\u5bb9\x0a\u5efa\u8bae\u901a\u8fc7\u811a\u672c\u53bb\u83b7\u53d6\x63\x6f\x6f\x6b\x69\x65','\x6a\x64\x61\x70\x70\x3b\x69\x50\x68\x6f\x6e\x65\x3b\x31\x30\x2e\x31\x2e\x34\x3b\x31\x34\x2e\x33\x3b\x3b\x4d\x2f\x35\x2e\x30\x3b\x6e\x65\x74\x77\x6f\x72\x6b\x2f\x77\x69\x66\x69\x3b\x41\x44\x49\x44\x2f\x3b\x6d\x6f\x64\x65\x6c\x2f\x69\x50\x68\x6f\x6e\x65\x31\x32\x2c\x31\x3b\x61\x64\x64\x72\x65\x73\x73\x69\x64\x2f\x3b\x61\x70\x70\x42\x75\x69\x6c\x64\x2f\x31\x36\x37\x38\x31\x34\x3b\x6a\x64\x53\x75\x70\x70\x6f\x72\x74\x44\x61\x72\x6b\x4d\x6f\x64\x65\x2f\x30\x3b\x4d\x6f\x7a\x69\x6c\x6c\x61\x2f\x35\x2e\x30\x20\x28\x69\x50\x68\x6f\x6e\x65\x3b\x20\x43\x50\x55\x20\x69\x50\x68\x6f\x6e\x65\x20\x4f\x53\x20\x31\x34\x5f\x33\x20\x6c\x69\x6b\x65\x20\x4d\x61\x63\x20\x4f\x53\x20\x58\x29\x20\x41\x70\x70\x6c\x65\x57\x65\x62\x4b\x69\x74\x2f\x36\x30\x35\x2e\x31\x2e\x31\x35\x20\x28\x4b\x48\x54\x4d\x4c\x2c\x20\x6c\x69\x6b\x65\x20\x47\x65\x63\x6b\x6f\x29\x20\x4d\x6f\x62\x69\x6c\x65\x2f\x31\x35\x45\x31\x34\x38\x3b\x73\x75\x70\x70\x6f\x72\x74\x4a\x44\x53\x48\x57\x4b\x2f\x31','\x64\x61\x6e\x67\x65\x72\x6f\x75\x73\x6c\x79','\x52\x65\x73\x6f\x75\x72\x63\x65\x4c\x6f\x61\x64\x65\x72','\x56\x69\x72\x74\x75\x61\x6c\x43\x6f\x6e\x73\x6f\x6c\x65','\x3c\x62\x6f\x64\x79\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x63\x72\x69\x70\x74\x20\x73\x72\x63\x3d\x22\x68\x74\x74\x70\x73\x3a\x2f\x2f\x73\x74\x61\x74\x69\x63\x2e\x33\x36\x30\x62\x75\x79\x69\x6d\x67\x2e\x63\x6f\x6d\x2f\x73\x69\x74\x65\x70\x70\x53\x74\x61\x74\x69\x63\x2f\x73\x63\x72\x69\x70\x74\x2f\x6d\x65\x73\x63\x72\x6f\x6c\x6c\x2f\x6d\x61\x70\x2e\x6a\x73\x22\x3e\x3c\x2f\x73\x63\x72\x69\x70\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x63\x72\x69\x70\x74\x20\x73\x72\x63\x3d\x22\x68\x74\x74\x70\x73\x3a\x2f\x2f\x73\x74\x6f\x72\x61\x67\x65\x2e\x33\x36\x30\x62\x75\x79\x69\x6d\x67\x2e\x63\x6f\x6d\x2f\x77\x65\x62\x63\x6f\x6e\x74\x61\x69\x6e\x65\x72\x2f\x6a\x73\x5f\x73\x65\x63\x75\x72\x69\x74\x79\x5f\x76\x33\x2e\x6a\x73\x22\x3e\x3c\x2f\x73\x63\x72\x69\x70\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x63\x72\x69\x70\x74\x20\x73\x72\x63\x3d\x22\x68\x74\x74\x70\x73\x3a\x2f\x2f\x73\x74\x61\x74\x69\x63\x2e\x33\x36\x30\x62\x75\x79\x69\x6d\x67\x2e\x63\x6f\x6d\x2f\x73\x69\x74\x65\x70\x70\x53\x74\x61\x74\x69\x63\x2f\x73\x63\x72\x69\x70\x74\x2f\x75\x74\x69\x6c\x73\x2e\x6a\x73\x22\x3e\x3c\x2f\x73\x63\x72\x69\x70\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x62\x6f\x64\x79\x3e','\x77\x69\x6e\x64\x6f\x77','\x6c\x6f\x63\x61\x6c\x53\x74\x6f\x72\x61\x67\x65','\x73\x65\x74\x49\x74\x65\x6d','\x57\x51\x5f\x5f\x64\x79\x5f\x74\x6b\x5f\x73\x5f','\x57\x51\x5f\x5f\x64\x79\x5f\x61\x6c\x67\x6f\x5f\x73\x5f','\x57\x51\x5f\x71\x65\x5f','\x73\x69\x67\x6e\x57\x61\x61\x70','\x66\x75\x6e\x63\x74\x69\x6f\x6e','\x67\x65\x74\x49\x74\x65\x6d','\x6c\x74\x72','\x64\x6f\x63\x75\x6d\x65\x6e\x74','\x5f\x5f\x6a\x64\x63\x3d\x31\x32\x33\x3b','\x70\x72\x6f\x64\x65\x76\x2e\x6d\x2e\x6a\x64\x2e\x63\x6f\x6d','\x6e\x61\x76\x69\x67\x61\x74\x6f\x72','\x68\x72\x65\x66','\x68\x72\x65\x66\x73','\x63\x6f\x6f\x6b\x69\x65\x73','\x75\x73\x65\x72\x41\x67\x65\x6e\x74','\x75\x73\x65\x72\x41\x67\x65\x6e\x74\x73','\x72\x6f\x75\x6e\x64','\x32\x30\x32\x32\x2d\x30\x39\x2d\x30\x32','\x5f\x5f\x6a\x64\x61','\x5f\x5f\x6a\x64\x62','\x5f\x5f\x6a\x64\x76','\x5f\x5f\x6a\x64\x63','\x67\x65\x74\x43\x6f\x6f\x6b\x69\x65','\x63\x6b\x4a\x64\x61','\x63\x6b\x4a\x64\x62','\x63\x6b\x4a\x64\x76','\x63\x6b\x4a\x64\x63','\x64\x69\x72\x65\x63\x74','\x6e\x6f\x6e\x65','\x73\x75\x62\x73\x74\x72','\x67\x65\x6e\x55\x75\x69\x64','\x75\x75\x69\x64','\x67\x65\x74\x50\x61\x72\x61\x6d\x65\x74\x65\x72','\x75\x74\x6d\x5f\x73\x6f\x75\x72\x63\x65','\x75\x74\x6d\x5f\x63\x61\x6d\x70\x61\x69\x67\x6e','\x75\x74\x6d\x5f\x6d\x65\x64\x69\x75\x6d','\x75\x74\x6d\x5f\x74\x65\x72\x6d','\x72\x65\x66\x55\x72\x6c','\x63\x6b\x44\x6f\x6d\x61\x69\x6e','\x73\x65\x6f','\x74\x6f\x4c\x6f\x77\x65\x72\x43\x61\x73\x65','\x6f\x72\x67\x61\x6e\x69\x63','\x6e\x6f\x74\x20\x73\x65\x74','\x7a\x6f\x6c\x2e\x63\x6f\x6d\x2e\x63\x6e','\x63\x70\x63','\x72\x65\x66\x65\x72\x72\x61\x6c','\x67\x65\x74\x50\x61\x67\x65\x50\x61\x72\x61\x6d\x46\x72\x6f\x6d\x53\x64\x6b','\x76\x74\x73','\x73\x65\x71','\x67\x65\x6e\x48\x61\x73\x68','\x73\x65\x74\x43\x6f\x6f\x6b\x69\x65','\x6a\x6f\x69\x6e','\x63\x6b\x4a\x64\x61\x45\x78\x70','\x63\x6b\x4a\x64\x62\x45\x78\x70','\x73\x65\x74\x4a\x64\x76','\x6d\x62\x61\x5f\x73\x69\x64','\x6d\x62\x61\x5f\x6d\x75\x69\x64','\x72\x70\x44\x6f\x6d\x61\x69\x6e','\x75\x72\x61\x6e\x75\x73\x2e\x6a\x64\x2e\x63\x6f\x6d','\x6c\x6f\x67\x55\x72\x6c','\x2f\x6c\x6f\x67\x2f\x6d','\x6c\x6f\x67\x54\x79\x70\x65','\x30\x30\x30\x30\x30\x31','\x75\x73\x65\x54\x6d\x70\x43\x6f\x6f\x6b\x69\x65','\x5f\x5f\x74\x72\x61','\x5f\x5f\x74\x72\x62','\x5f\x5f\x74\x72\x63','\x63\x6b\x4a\x64\x75','\x5f\x5f\x74\x72\x75','\x5f\x5f\x6a\x64\x75','\x63\x6b\x57\x78\x41\x70\x70\x43\x6b','\x5f\x5f\x6a\x64\x77\x78\x61\x70\x70','\x63\x6b\x52\x65\x66\x43\x6c\x73','\x5f\x5f\x6a\x64\x5f\x72\x65\x66\x5f\x63\x6c\x73','\x63\x6b\x4a\x64\x75\x45\x78\x70','\x63\x6b\x4a\x64\x76\x45\x78\x70','\x63\x6b\x4a\x64\x76\x45\x6d\x62\x65\x64\x64\x65\x64\x45\x78\x70','\x63\x6b\x57\x78\x41\x70\x70\x43\x6b\x45\x78\x70','\x6d\x74\x53\x75\x62\x73\x69\x74\x65\x45\x78\x70','\x64\x6f\x6d\x61\x69\x6e','\x74\x69\x74\x6c\x65','\x72\x65\x66\x65\x72\x72\x65\x72','\x69\x2e\x65\x61\x73\x6f\x75\x2e\x63\x6f\x6d\x3a\x71','\x6d\x2e\x62\x61\x69\x64\x75\x2e\x63\x6f\x6d\x3a\x77\x6f\x72\x64','\x6d\x2e\x73\x6d\x2e\x63\x6e\x3a\x71','\x6d\x2e\x73\x6f\x2e\x63\x6f\x6d\x3a\x71','\x77\x61\x70\x2e\x73\x6f\x67\x6f\x75\x2e\x63\x6f\x6d\x3a\x6b\x65\x79\x77\x6f\x72\x64','\x6d\x2e\x73\x6f\x67\x6f\x75\x2e\x63\x6f\x6d\x3a\x6b\x65\x79\x77\x6f\x72\x64','\x77\x61\x70\x2e\x73\x6f\x67\x6f\x2e\x63\x6f\x6d\x3a\x6b\x65\x79\x77\x6f\x72\x64','\x6d\x2e\x73\x6f\x67\x6f\x2e\x63\x6f\x6d\x3a\x6b\x65\x79\x77\x6f\x72\x64','\x70\x61\x67\x65\x2e\x72\x6f\x62\x6f\x6f\x2e\x63\x6f\x6d\x3a\x71','\x61\x73\x6b\x2e\x63\x6f\x6d\x3a\x71','\x62\x61\x69\x64\x75\x3a\x77\x6f\x72\x64','\x62\x61\x69\x64\x75\x3a\x77\x64','\x62\x69\x6e\x67\x3a\x71','\x65\x61\x73\x6f\x75\x3a\x71','\x67\x6f\x6f\x67\x6c\x65\x3a\x71','\x72\x6f\x62\x6f\x6f\x3a\x77\x6f\x72\x64','\x72\x6f\x62\x6f\x6f\x3a\x71','\x73\x6d\x2e\x63\x6e\x3a\x71','\x73\x6f\x2e\x63\x6f\x6d\x3a\x71','\x73\x6f\x67\x6f\x75\x3a\x6b\x65\x79\x77\x6f\x72\x64','\x73\x6f\x67\x6f\x75\x3a\x71\x75\x65\x72\x79','\x73\x6f\x67\x6f\x2e\x63\x6f\x6d\x3a\x6b\x65\x79\x77\x6f\x72\x64','\x73\x6f\x67\x6f\x2e\x63\x6f\x6d\x3a\x71\x75\x65\x72\x79','\x79\x61\x68\x6f\x6f\x3a\x70','\x79\x61\x6e\x64\x65\x78\x3a\x74\x65\x78\x74','\x79\x69\x63\x68\x61\x3a\x6b\x65\x79','\x73\x65\x74\x54\x69\x6d\x65','\x3b\x65\x78\x70\x69\x72\x65\x73\x3d','\x74\x6f\x47\x4d\x54\x53\x74\x72\x69\x6e\x67','\x69\x73\x50\x72\x65\x79','\x7c\x64\x69\x72\x65\x63\x74\x7c\x2d\x7c\x6e\x6f\x6e\x65\x7c\x2d\x7c','\x69\x73\x45\x6d\x62\x65\x64\x64\x65\x64','\x28\x5e\x7c\x20\x29','\x3d\x28\x5b\x5e\x3b\x5d\x2a\x29\x28\x3b\x7c\x24\x29','\x75\x72\x6c\x44\x65\x63\x6f\x64\x65','\x28\x3f\x3a\x5e\x7c\x26\x7c\x5b\x3f\x5d\x7c\x5b\x2f\x5d\x29','\x3d\x28\x5b\x5e\x26\x5d\x2a\x29','\x65\x78\x65\x63','\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74','\x69\x73\x4a\x64\x4c\x6f\x67','\x3b\x6a\x64\x6c\x6f\x67\x3b','\x4a\x44\x4d\x41\x55\x6e\x69\x66\x79\x42\x72\x69\x64\x67\x65','\x4a\x44\x4d\x41\x47\x65\x74\x4d\x50\x61\x67\x65\x50\x61\x72\x61\x6d','\x77\x65\x62\x6b\x69\x74','\x6d\x65\x73\x73\x61\x67\x65\x48\x61\x6e\x64\x6c\x65\x72\x73','\x4a\x44\x4d\x41\x53\x65\x74\x4d\x50\x61\x67\x65\x50\x61\x72\x61\x6d','\x70\x72\x6f\x6d\x70\x74','\x67\x65\x74\x4d\x6f\x6e\x74\x68','\x67\x65\x74\x44\x61\x74\x65','\x67\x65\x74\x4d\x69\x6e\x75\x74\x65\x73','\x67\x65\x74\x53\x65\x63\x6f\x6e\x64\x73','\x67\x65\x74\x4d\x69\x6c\x6c\x69\x73\x65\x63\x6f\x6e\x64\x73','\x67\x65\x74\x46\x75\x6c\x6c\x59\x65\x61\x72','\x71\x6a\x4f\x73\x65\x57\x6a\x69\x57\x62\x61\x6d\x75\x69\x53\x2e\x78\x63\x6f\x67\x65\x6d\x6b\x2e\x45\x76\x36\x3d\x3d'];function _0x1822(_0x26f2be,_0x55b4ec){_0x26f2be=~~'0x'['concat'](_0x26f2be['slice'](0x0));var _0x166378=_0x134e[_0x26f2be];return _0x166378;};(function(_0x52f036,_0x34a657){var _0x232a29=0x0;for(_0x34a657=_0x52f036['shift'](_0x232a29>>0x2);_0x34a657&&_0x34a657!==(_0x52f036['pop'](_0x232a29>>0x3)+'')['replace'](/[qOeWWbuSxgekE=]/g,'');_0x232a29++){_0x232a29=_0x232a29^0x11ea77;}}(_0x134e,_0x1822));let rebateCodes='';let rebatePin='';let redTimes=0x0;$[_0x1822('0')]=require(_0x1822('1'));const jsdom=require(_0x1822('2'));let cookiesArr=[],cookie='';if($[_0x1822('3')]()){Object[_0x1822('4')](jdCookieNode)[_0x1822('5')](_0x5a20d9=>{cookiesArr[_0x1822('6')](jdCookieNode[_0x5a20d9]);});if(process[_0x1822('7')][_0x1822('8')]&&process[_0x1822('7')][_0x1822('8')]===_0x1822('9'))console[_0x1822('a')]=()=>{};}else{cookiesArr=[$[_0x1822('b')](_0x1822('c')),$[_0x1822('b')](_0x1822('d')),...jsonParse($[_0x1822('b')](_0x1822('e'))||'\x5b\x5d')[_0x1822('f')](_0x504f15=>_0x504f15[_0x1822('10')])][_0x1822('11')](_0xf8d012=>!!_0xf8d012);}if(!rebatePin)rebatePin='';rebateCodes=$[_0x1822('3')]()?process[_0x1822('7')][_0x1822('12')]?process[_0x1822('7')][_0x1822('12')]:''+rebateCodes:$[_0x1822('b')](_0x1822('12'))?$[_0x1822('b')](_0x1822('12')):''+rebateCodes;rebatePin=$[_0x1822('3')]()?process[_0x1822('7')][_0x1822('13')]?process[_0x1822('7')][_0x1822('13')]:''+rebatePin:$[_0x1822('b')](_0x1822('13'))?$[_0x1822('b')](_0x1822('13')):''+rebatePin;redTimes=$[_0x1822('3')]()?process[_0x1822('7')][_0x1822('14')]?process[_0x1822('7')][_0x1822('14')]:''+redTimes:$[_0x1822('b')](_0x1822('14'))?$[_0x1822('b')](_0x1822('14')):''+redTimes;let iIl1lliI=rebatePin&&rebatePin[_0x1822('15')]('\x2c')||[];rebateCode=rebateCodes+'';$[_0x1822('16')](_0x1822('17'));message='';newCookie='';resMsg='';$[_0x1822('18')]='';$[_0x1822('19')]=![];$[_0x1822('1a')]=![];let liiiII={};$[_0x1822('1b')]={};$[_0x1822('1c')]={};let l1iIi11I=null;const i11lIiIi=_0x1822('1d');let IliliIil=new Date()[_0x1822('1e')]()+new Date()[_0x1822('1f')]()*0x3c*0x3e8+0x8*0x3c*0x3c*0x3e8;let I1l1I1ii=$[_0x1822('16')]('\x48',IliliIil);$[_0x1822('20')]={};lr={};$[_0x1822('21')]='';let I1i111i='';let liil1l11='';$[_0x1822('16')](_0x1822('22'));li1IlIl1();!(async()=>{if(/https:\/\/u\.jd\.com\/.+/[_0x1822('23')](rebateCode)){if(rebateCode[_0x1822('15')]('\x2f')[_0x1822('24')]()){rebateCode=rebateCode[_0x1822('15')]('\x2f')[_0x1822('24')]()[_0x1822('15')]('\x3f')[_0x1822('25')]();}else{rebateCode='';rebateCodes='';}}if(rebateCode[_0x1822('26')]!=0x7){rebateCode='';rebateCodes='';}if(!cookiesArr[0x0]){$[_0x1822('27')]($[_0x1822('28')],_0x1822('29'),_0x1822('2a'),{'open-url':_0x1822('2a')});if(process&&process[_0x1822('7')]&&process[_0x1822('7')][_0x1822('2b')]=='\x74\x67'){console[_0x1822('a')](_0x1822('2c')),$[_0x1822('2d')](_0x1822('2c'),_0x1822('2b'));}return;}if(IliliIil>new Date(i11lIiIi)[_0x1822('1e')]()){$[_0x1822('27')]($[_0x1822('28')],_0x1822('2e'),_0x1822('2f'));$[_0x1822('2d')]('',_0x1822('30'));$[_0x1822('2d')]('',_0x1822('31'));$[_0x1822('2d')]('',_0x1822('32'));return;}const _0x443a85=[_0x1822('33'),_0x1822('34'),_0x1822('35'),_0x1822('36'),_0x1822('37'),_0x1822('38'),_0x1822('39'),_0x1822('3a'),_0x1822('3b'),_0x1822('3c'),_0x1822('3d'),_0x1822('3e')];if(!rebateCodes)rebateCode=_0x443a85[random(0x0,_0x443a85[_0x1822('26')])];$[_0x1822('3f')]={};$[_0x1822('40')]=$[_0x1822('b')](_0x1822('32'))||{};$[_0x1822('41')]='';$[_0x1822('42')]=![];let _0x2e65e2=![];await i1lIIII1();for(let _0x29dc67=0x0;_0x29dc67<cookiesArr[_0x1822('26')]&&!$[_0x1822('1a')];_0x29dc67++){if($[_0x1822('19')])break;cookie=cookiesArr[_0x29dc67];if(cookie){$[_0x1822('43')]=decodeURIComponent(cookie[_0x1822('44')](/pt_pin=([^; ]+)(?=;?)/)&&cookie[_0x1822('44')](/pt_pin=([^; ]+)(?=;?)/)[0x1]);$[_0x1822('45')]=_0x29dc67+0x1;if($[_0x1822('1c')][$[_0x1822('43')]])continue;console[_0x1822('a')](_0x1822('46')+$[_0x1822('45')]+'\u3011'+($[_0x1822('47')]||$[_0x1822('43')])+_0x1822('48'));if((_0x29dc67==0x5||_0x29dc67==0xb)&&rebateCodes){rebateCode=_0x443a85[random(0x0,_0x443a85[_0x1822('26')])];}else{if(rebateCodes){rebateCode=rebateCodes;}else{rebateCode=_0x443a85[random(0x0,_0x443a85[_0x1822('26')])];}}let _0xa31994=0x1;if(!cookie[_0x1822('49')](_0x1822('4a'))){_0xa31994=0x2;}await getUA(_0xa31994);await main();let _0x55af5c=new Date()[_0x1822('4b')]();if(_0x55af5c==0x0||_0x55af5c==0x1||_0x55af5c==0x2||_0x55af5c==0x3||_0x55af5c==0x4||_0x55af5c==0x5||_0x55af5c==0x6){await $[_0x1822('4c')](Math[_0x1822('4d')]()*0x9c4+0x9c4,0xa);if($[_0x1822('45')]%0x8==0x0)console[_0x1822('a')](_0x1822('4e'));if($[_0x1822('45')]%0x8==0x0)await $[_0x1822('4c')](parseInt(Math[_0x1822('4d')]()*0xdac+0xea60,0xa));}else{await $[_0x1822('4c')](Math[_0x1822('4d')]()*0x1f4+0x1f4,0xa);}if($[_0x1822('19')])break;}$[_0x1822('2d')]($[_0x1822('40')],_0x1822('32'));}$[_0x1822('2d')]($[_0x1822('40')],_0x1822('32'));})()[_0x1822('4f')](_0x304cde=>$[_0x1822('50')](_0x304cde))[_0x1822('51')](()=>{if(l1iIi11I)l1iIi11I[_0x1822('52')]();$[_0x1822('53')]();});async function main(_0x50bb52=0x0){try{$[_0x1822('21')]=$[_0x1822('20')][$[_0x1822('43')]]||'';if(!$[_0x1822('21')]){li1IlIl1();}resMsg='';let _0x409b5a=![];let _0x53a5a3=0x0;let _0x33af9a=0x0;let _0x5557e6=0x0;$[_0x1822('54')]=!![];do{if(_0x33af9a>0x2)_0x53a5a3=0x0;$[_0x1822('55')]=0x0;newCookie='';$[_0x1822('56')]='';await getUrl1();if(!$[_0x1822('56')]){console[_0x1822('a')](_0x1822('57'));break;}$[_0x1822('58')]='';$[_0x1822('21')]=I1i111i[_0x1822('59')]('','',$[_0x1822('56')],$[_0x1822('21')]);$[_0x1822('20')][$[_0x1822('43')]]=$[_0x1822('21')]+'';await IIiiilIi();if(!$[_0x1822('58')])$[_0x1822('58')]=_0x1822('5a')+rebateCode+_0x1822('5b');$[_0x1822('5c')]=$[_0x1822('58')][_0x1822('44')](/mall\/active\/([^\/]+)\/index\.html/)&&$[_0x1822('58')][_0x1822('44')](/mall\/active\/([^\/]+)\/index\.html/)[0x1]||_0x1822('5d');$[_0x1822('21')]=I1i111i[_0x1822('59')]('','',$[_0x1822('58')],$[_0x1822('21')]);$[_0x1822('20')][$[_0x1822('43')]]=$[_0x1822('21')]+'';$[_0x1822('5e')]='';let _0x45e8be=getBody($['\x55\x41'],$[_0x1822('58')]);await lIIlIlll(_0x45e8be);if(!$[_0x1822('5e')]){$[_0x1822('5e')]=-0x1;}if(_0x50bb52==0x0){let _0x5c1334=0x0;let _0xa8f369=!![];let _0x3f98ac=0x0;if(Object[_0x1822('5f')](liiiII)[_0x1822('26')]>_0x53a5a3&&$[_0x1822('54')]){for(let _0x1c63e5 in liiiII||{}){if(_0x1c63e5==$[_0x1822('43')]){$[_0x1822('55')]=0x1;continue;}if(_0x5c1334==_0x53a5a3){$[_0x1822('55')]=0x0;$[_0x1822('41')]=liiiII[_0x1c63e5]||'';if($[_0x1822('40')][_0x1c63e5]&&$[_0x1822('40')][_0x1c63e5][_0x1822('49')]($[_0x1822('43')])){_0x3f98ac++;continue;}if($[_0x1822('41')][_0x1822('60')]>=$[_0x1822('3f')][_0x1822('61')]){_0x3f98ac++;continue;}$[_0x1822('62')]=![];let _0xe2e335=await getCoupons($[_0x1822('41')][_0x1822('63')],0x1);if(/重复助力/[_0x1822('23')](_0xe2e335)){if(!$[_0x1822('40')][_0x1c63e5])$[_0x1822('40')][_0x1c63e5]=[];$[_0x1822('40')][_0x1c63e5][_0x1822('6')]($[_0x1822('43')]);_0x53a5a3--;_0x5557e6--;}else if(/助力/[_0x1822('23')](_0xe2e335)&&/上限/[_0x1822('23')](_0xe2e335)){$[_0x1822('54')]=![];}else if(!/领取上限/[_0x1822('23')](_0xe2e335)&&$[_0x1822('62')]==!![]){if(!$[_0x1822('40')][_0x1c63e5])$[_0x1822('40')][_0x1c63e5]=[];if(!$[_0x1822('40')][_0x1c63e5][_0x1822('49')]($[_0x1822('43')])){$[_0x1822('40')][_0x1c63e5][_0x1822('6')]($[_0x1822('43')]);}_0x53a5a3--;}else{_0xa8f369=![];}}_0x5c1334++;}}if(_0xa8f369&&_0x3f98ac==Object[_0x1822('5f')](liiiII)[_0x1822('26')]){_0x409b5a=!![];}if(_0x5c1334==0x0){$[_0x1822('62')]=![];let _0x359de5=await getCoupons('',0x1);if(!/领取上限/[_0x1822('23')](_0x359de5)&&$[_0x1822('62')]==!![]){_0x53a5a3--;}}if($[_0x1822('19')])break;}else{let _0x5010e5=await showCoupon();if(!$[_0x1822('19')]&&_0x5010e5&&$[_0x1822('42')]==![])await shareUnionCoupon();if($[_0x1822('42')]==![])break;}if($[_0x1822('42')]==!![]&&_0x33af9a<0x1){_0x33af9a++;$[_0x1822('42')]=![];}_0x53a5a3++;_0x5557e6++;if($[_0x1822('55')]==0x1){await $[_0x1822('4c')](parseInt(Math[_0x1822('4d')]()*0x258+0xc8,0xa));}if(redTimes>0x0&&redTimes<=_0x5557e6)break;}while($[_0x1822('55')]==0x1&&_0x53a5a3<0x5);if($[_0x1822('19')])return;if(resMsg){message+=_0x1822('64')+$[_0x1822('45')]+'\u3011\x0a'+resMsg;}if(_0x409b5a){console[_0x1822('a')](_0x1822('65'));await i1lIIII1(0x1);}await $[_0x1822('4c')](parseInt(Math[_0x1822('4d')]()*0x258+0xc8,0xa));}catch(_0x205dc3){console[_0x1822('a')](_0x205dc3);}}async function i1lIIII1(_0xdbd8e2=0x0){try{let _0x2c4087=0x2;if(_0xdbd8e2==0x1)_0x2c4087=0x1;let _0xd8176e=0x0;for(let _0x5f3af0 in $[_0x1822('3f')]||{}){if(_0x5f3af0===_0x1822('55')||_0x5f3af0===_0x1822('66')||_0x5f3af0===_0x1822('61'))continue;if($[_0x1822('3f')][_0x5f3af0]&&$[_0x1822('3f')][_0x1822('61')]&&$[_0x1822('3f')][_0x5f3af0][_0x1822('60')]<$[_0x1822('3f')][_0x1822('61')])_0xd8176e++;}for(let _0x1cec6f=0x0;_0x1cec6f<cookiesArr[_0x1822('26')]&&!$[_0x1822('1a')];_0x1cec6f++){cookie=cookiesArr[_0x1cec6f];if(cookie){$[_0x1822('43')]=decodeURIComponent(cookie[_0x1822('44')](/pt_pin=([^; ]+)(?=;?)/)&&cookie[_0x1822('44')](/pt_pin=([^; ]+)(?=;?)/)[0x1]);if(iIl1lliI[_0x1822('26')]>0x0&&iIl1lliI[_0x1822('67')]($[_0x1822('43')])==-0x1||$[_0x1822('3f')][$[_0x1822('43')]])continue;$[_0x1822('45')]=_0x1cec6f+0x1;await getUA();await main(0x1);let _0x3d5c20=0x0;for(let _0x5f3af0 in $[_0x1822('3f')]||{}){if(_0x5f3af0===_0x1822('55')||_0x5f3af0===_0x1822('66')||_0x5f3af0===_0x1822('61'))continue;if($[_0x1822('3f')][_0x5f3af0]&&$[_0x1822('3f')][_0x1822('61')]&&$[_0x1822('3f')][_0x5f3af0][_0x1822('60')]<$[_0x1822('3f')][_0x1822('61')])_0x3d5c20++;}if($[_0x1822('19')]||_0x3d5c20-_0xd8176e>=_0x2c4087)break;}}}catch(_0x35b1ea){console[_0x1822('a')](_0x35b1ea);}if(Object[_0x1822('5f')]($[_0x1822('3f')])[_0x1822('26')]>0x0){for(let _0x52f1fc in $[_0x1822('3f')]||{}){if(_0x52f1fc===_0x1822('55')||_0x52f1fc===_0x1822('66')||_0x52f1fc===_0x1822('61'))continue;if($[_0x1822('3f')][_0x52f1fc])liiiII[_0x52f1fc]=$[_0x1822('3f')][_0x52f1fc];}}}function random(_0x6e124b,_0x5cfea9){return Math[_0x1822('68')](Math[_0x1822('4d')]()*(_0x5cfea9-_0x6e124b))+_0x6e124b;}function getCoupons(_0x18e2c3='',_0x25d56e=0x1){return new Promise(async _0x1016f0=>{$[_0x1822('21')]=I1i111i[_0x1822('59')]('','',$[_0x1822('58')],$[_0x1822('21')]);$[_0x1822('20')][$[_0x1822('43')]]=$[_0x1822('21')]+'';let _0x41047a='';let _0x4d3468=new Date()[_0x1822('1e')]()+new Date()[_0x1822('1f')]()*0x3c*0x3e8+0x8*0x3c*0x3c*0x3e8;let _0x4f70ea=0x4;if($[_0x1822('16')]('\x48',_0x4d3468)=='\x32\x31'){_0x4f70ea=0x2;}const _0x343275={'platform':_0x4f70ea,'unionActId':_0x1822('69'),'actId':$[_0x1822('5c')],'d':rebateCode,'unionShareId':_0x18e2c3,'type':_0x25d56e,'eid':$[_0x1822('5e')]};const _0x5c3f31={'appid':'\x75','body':_0x343275,'client':_0x1822('6a'),'clientVersion':_0x1822('6b'),'functionId':_0x1822('6c')};_0x41047a=await hhhh(_0x1822('6d'),_0x5c3f31);_0x41047a=encodeURIComponent(_0x41047a);let _0x24329f='';let _0x43a94e={'url':_0x1822('6e')+_0x4d3468+_0x1822('6f')+encodeURIComponent($[_0x1822('70')](_0x343275))+_0x1822('71')+_0x41047a,'headers':{'accept':_0x1822('72'),'Accept-Language':_0x1822('73'),'Accept-Encoding':_0x1822('74'),'Cookie':''+$[_0x1822('21')]+newCookie+'\x20'+cookie,'origin':_0x1822('75'),'Referer':_0x1822('76'),'User-Agent':$['\x55\x41']}};if($[_0x1822('58')])_0x43a94e[_0x1822('77')][_0x1822('78')]=$[_0x1822('58')];$[_0x1822('79')](_0x43a94e,async(_0x190404,_0x19f75d,_0x328a12)=>{try{if(_0x190404){console[_0x1822('a')](''+$[_0x1822('70')](_0x190404));console[_0x1822('a')]($[_0x1822('28')]+_0x1822('7a'));}else{let _0x3e4aa0=$[_0x1822('7b')](_0x328a12,_0x328a12);if(typeof _0x3e4aa0==_0x1822('7c')){if(_0x3e4aa0[_0x1822('27')]){_0x24329f=_0x3e4aa0[_0x1822('27')];console[_0x1822('a')](_0x3e4aa0[_0x1822('27')]);}if(_0x3e4aa0[_0x1822('27')][_0x1822('67')](_0x1822('7d'))>-0x1&&_0x25d56e==0x1)$[_0x1822('42')]=!![];if(_0x3e4aa0[_0x1822('27')][_0x1822('67')](_0x1822('7e'))===-0x1&&_0x3e4aa0[_0x1822('27')][_0x1822('67')]('\u767b\u5f55')===-0x1){if(_0x25d56e==0x1)$[_0x1822('55')]=0x1;}if(_0x3e4aa0[_0x1822('27')][_0x1822('67')](_0x1822('2e'))>-0x1||_0x3e4aa0[_0x1822('27')][_0x1822('67')](_0x1822('7f'))>-0x1){$[_0x1822('19')]=!![];return;}if(_0x18e2c3&&typeof _0x3e4aa0[_0x1822('80')]!==_0x1822('81')&&typeof _0x3e4aa0[_0x1822('80')][_0x1822('82')]!==_0x1822('81')){console[_0x1822('a')]('\u5f53\u524d'+_0x3e4aa0[_0x1822('80')][_0x1822('83')]+'\x3a'+_0x3e4aa0[_0x1822('80')][_0x1822('82')]);}if(_0x3e4aa0[_0x1822('63')]==0x0&&_0x3e4aa0[_0x1822('80')]){if(_0x25d56e==0x1)$[_0x1822('41')][_0x1822('60')]++;let _0x1ea4c4='';if(_0x3e4aa0[_0x1822('80')][_0x1822('84')][0x0][_0x1822('85')]==0x1){$[_0x1822('62')]=!![];_0x1ea4c4=_0x1822('86')+_0x3e4aa0[_0x1822('80')][_0x1822('84')][0x0][_0x1822('87')]+_0x1822('88')+$[_0x1822('16')](_0x1822('22'),_0x3e4aa0[_0x1822('80')][_0x1822('89')])+'\x20'+$[_0x1822('16')](_0x1822('22'),_0x3e4aa0[_0x1822('80')][_0x1822('8a')]);}else if(_0x3e4aa0[_0x1822('80')][_0x1822('84')][0x0][_0x1822('85')]==0x3){$[_0x1822('62')]=!![];_0x1ea4c4=_0x1822('8b')+_0x3e4aa0[_0x1822('80')][_0x1822('84')][0x0][_0x1822('8c')]+'\u51cf'+_0x3e4aa0[_0x1822('80')][_0x1822('84')][0x0][_0x1822('87')]+_0x1822('8d')+$[_0x1822('16')](_0x1822('22'),_0x3e4aa0[_0x1822('80')][_0x1822('89')])+'\x20'+$[_0x1822('16')](_0x1822('22'),_0x3e4aa0[_0x1822('80')][_0x1822('8a')]);}else if(_0x3e4aa0[_0x1822('80')][_0x1822('84')][0x0][_0x1822('85')]==0x6){$[_0x1822('62')]=!![];_0x1ea4c4=_0x1822('8e')+_0x3e4aa0[_0x1822('80')][_0x1822('84')][0x0][_0x1822('8c')]+'\u6253'+_0x3e4aa0[_0x1822('80')][_0x1822('84')][0x0][_0x1822('87')]*0xa+_0x1822('8f')+$[_0x1822('16')](_0x1822('22'),_0x3e4aa0[_0x1822('80')][_0x1822('89')])+'\x20'+$[_0x1822('16')](_0x1822('22'),_0x3e4aa0[_0x1822('80')][_0x1822('8a')]);}else{$[_0x1822('62')]=!![];_0x1ea4c4=_0x1822('90')+(_0x3e4aa0[_0x1822('80')][_0x1822('84')][0x0][_0x1822('8c')]||'')+'\x20'+_0x3e4aa0[_0x1822('80')][_0x1822('84')][0x0][_0x1822('87')]+_0x1822('8d')+$[_0x1822('16')](_0x1822('22'),_0x3e4aa0[_0x1822('80')][_0x1822('89')])+'\x20'+$[_0x1822('16')](_0x1822('22'),_0x3e4aa0[_0x1822('80')][_0x1822('8a')]);console[_0x1822('a')](_0x328a12);}if(_0x1ea4c4){resMsg+=_0x1ea4c4+'\x0a';console[_0x1822('a')](_0x1ea4c4);}}if(_0x25d56e==0x1&&typeof _0x3e4aa0[_0x1822('80')]!==_0x1822('81')&&typeof _0x3e4aa0[_0x1822('80')][_0x1822('91')]!==_0x1822('81')&&typeof _0x3e4aa0[_0x1822('80')][_0x1822('91')][_0x1822('92')]!==_0x1822('81')){for(let _0x35bff8 of _0x3e4aa0[_0x1822('80')][_0x1822('91')][_0x1822('92')]||[]){if(_0x35bff8[_0x1822('93')]==0x2){console[_0x1822('a')](_0x1822('94')+_0x35bff8[_0x1822('95')]+_0x1822('96'));await $[_0x1822('4c')](parseInt(Math[_0x1822('4d')]()*0x7d0+0x7d0,0xa));await getCoupons('',0x2);}}}}else{console[_0x1822('a')](_0x328a12);}}}catch(_0x963e27){$[_0x1822('50')](_0x963e27,_0x19f75d);}finally{_0x1016f0(_0x24329f);}});});}function showCoupon(_0x4f0674=''){let _0x42e5ef=!![];return new Promise(_0x4ee463=>{$[_0x1822('21')]=I1i111i[_0x1822('59')]('','',$[_0x1822('58')],$[_0x1822('21')]);$[_0x1822('20')][$[_0x1822('43')]]=$[_0x1822('21')]+'';let _0x50a871={'url':_0x1822('97')+Date[_0x1822('98')]()+_0x1822('99')+$[_0x1822('5c')]+_0x1822('9a')+$[_0x1822('9b')]+_0x1822('9c')+($[_0x1822('18')]?_0x1822('9d')+$[_0x1822('18')]+'\x2c':'')+_0x1822('9e')+rebateCode+_0x1822('9f')+$[_0x1822('5e')]+_0x1822('a0'),'headers':{'accept':_0x1822('72'),'Accept-Language':_0x1822('73'),'Accept-Encoding':_0x1822('74'),'Cookie':''+$[_0x1822('21')]+newCookie+'\x20'+cookie,'origin':_0x1822('75'),'Referer':_0x1822('76'),'User-Agent':$['\x55\x41']}};if($[_0x1822('58')])_0x50a871[_0x1822('77')][_0x1822('78')]=$[_0x1822('58')];$[_0x1822('79')](_0x50a871,async(_0x5301b2,_0x42615a,_0x288026)=>{try{if(_0x5301b2){console[_0x1822('a')](''+$[_0x1822('70')](_0x5301b2));console[_0x1822('a')]($[_0x1822('28')]+_0x1822('7a'));}else{let _0xa78041=$[_0x1822('7b')](_0x288026,_0x288026);if(typeof _0xa78041==_0x1822('7c')){if(_0xa78041[_0x1822('27')]){console[_0x1822('a')](_0xa78041[_0x1822('27')]);}if(_0xa78041[_0x1822('27')][_0x1822('67')](_0x1822('7d'))>-0x1)$[_0x1822('42')]=!![];if(_0xa78041[_0x1822('27')][_0x1822('67')](_0x1822('7e'))>-0x1)$[_0x1822('1c')][$[_0x1822('43')]]=!![];if(_0xa78041[_0x1822('27')][_0x1822('67')]('\u4e0a\u9650')===-0x1&&_0xa78041[_0x1822('27')][_0x1822('67')]('\u767b\u5f55')===-0x1){$[_0x1822('55')]=0x1;}if(_0xa78041[_0x1822('27')][_0x1822('67')](_0x1822('2e'))>-0x1||_0xa78041[_0x1822('27')][_0x1822('67')](_0x1822('7f'))>-0x1){$[_0x1822('19')]=!![];return;}if(_0xa78041[_0x1822('80')][_0x1822('18')])$[_0x1822('18')]=_0xa78041[_0x1822('80')][_0x1822('18')];if(typeof _0xa78041[_0x1822('80')]!==_0x1822('81')&&typeof _0xa78041[_0x1822('80')][_0x1822('91')]!==_0x1822('81')&&typeof _0xa78041[_0x1822('80')][_0x1822('91')][_0x1822('82')]!==_0x1822('81')){$[_0x1822('82')]=_0xa78041[_0x1822('80')][_0x1822('91')][_0x1822('82')];$[_0x1822('61')]=0x0;for(let _0x16e8cc of _0xa78041[_0x1822('80')][_0x1822('91')][_0x1822('92')]){if($[_0x1822('61')]<_0x16e8cc[_0x1822('a1')])$[_0x1822('61')]=_0x16e8cc[_0x1822('a1')];}if($[_0x1822('3f')][$[_0x1822('43')]]){$[_0x1822('3f')][$[_0x1822('43')]][_0x1822('60')]=$[_0x1822('61')];}$[_0x1822('3f')][_0x1822('61')]=$[_0x1822('61')];if($[_0x1822('61')]<=$[_0x1822('82')]){if(!$[_0x1822('3f')][$[_0x1822('43')]])$[_0x1822('3f')][$[_0x1822('43')]]={};$[_0x1822('3f')][$[_0x1822('43')]][_0x1822('60')]=$[_0x1822('82')];_0x42e5ef=![];}console[_0x1822('a')](_0x1822('a2')+$[_0x1822('45')]+'\u3011'+($[_0x1822('47')]||$[_0x1822('43')])+'\x20'+$[_0x1822('82')]+'\x2f'+$[_0x1822('61')]+'\u4eba');}if(_0xa78041[_0x1822('27')][_0x1822('67')](_0x1822('2e'))>-0x1){_0x42e5ef=![];}if(typeof _0xa78041[_0x1822('80')]!==_0x1822('81')&&typeof _0xa78041[_0x1822('80')][_0x1822('91')]!==_0x1822('81')&&typeof _0xa78041[_0x1822('80')][_0x1822('91')][_0x1822('92')]!==_0x1822('81')){for(let _0x4e547d of _0xa78041[_0x1822('80')][_0x1822('91')][_0x1822('92')]||[]){if(_0x4e547d[_0x1822('93')]==0x2){console[_0x1822('a')](_0x1822('94')+_0x4e547d[_0x1822('95')]+_0x1822('96'));await $[_0x1822('4c')](parseInt(Math[_0x1822('4d')]()*0x7d0+0x7d0,0xa));await getCoupons('',0x2);}}}}else{console[_0x1822('a')](_0x288026);}}}catch(_0x5a02de){$[_0x1822('50')](_0x5a02de,_0x42615a);}finally{_0x4ee463(_0x42e5ef);}});});}function shareUnionCoupon(){if($[_0x1822('3f')][$[_0x1822('43')]]){console[_0x1822('a')](_0x1822('a2')+$[_0x1822('45')]+_0x1822('a3')+$[_0x1822('3f')][$[_0x1822('43')]][_0x1822('63')][_0x1822('a4')](/.+(.{3})/,_0x1822('a5')));return;}return new Promise(_0x37fafa=>{let _0x4dc04b={'url':_0x1822('a6')+Date[_0x1822('98')]()+_0x1822('a7')+$[_0x1822('5c')]+_0x1822('a8')+rebateCode+_0x1822('a9')+$[_0x1822('5e')]+_0x1822('a0'),'headers':{'accept':_0x1822('72'),'Accept-Language':_0x1822('73'),'Accept-Encoding':_0x1822('74'),'Cookie':''+$[_0x1822('21')]+newCookie+'\x20'+cookie,'origin':_0x1822('75'),'Referer':_0x1822('76'),'User-Agent':$['\x55\x41']}};$[_0x1822('79')](_0x4dc04b,async(_0x5187e4,_0x12a974,_0x735bfc)=>{try{if(_0x5187e4){console[_0x1822('a')](''+$[_0x1822('70')](_0x5187e4));console[_0x1822('a')]($[_0x1822('28')]+_0x1822('7a'));}else{let _0x17bba2=$[_0x1822('7b')](_0x735bfc,_0x735bfc);if(typeof _0x17bba2==_0x1822('7c')){if(_0x17bba2[_0x1822('63')]==0x0&&_0x17bba2[_0x1822('80')]&&_0x17bba2[_0x1822('80')][_0x1822('aa')]){let _0x36d96e=_0x17bba2[_0x1822('80')][_0x1822('aa')][_0x1822('44')](/\?s=([^&]+)/)&&_0x17bba2[_0x1822('80')][_0x1822('aa')][_0x1822('44')](/\?s=([^&]+)/)[0x1]||'';if(_0x36d96e){console[_0x1822('a')](_0x1822('a2')+$[_0x1822('45')]+_0x1822('ab')+_0x36d96e[_0x1822('a4')](/.+(.{3})/,_0x1822('a5')));$[_0x1822('3f')][$[_0x1822('43')]]={'code':_0x36d96e,'count':$[_0x1822('82')]};}}}else{console[_0x1822('a')](_0x735bfc);}}}catch(_0x519cc1){$[_0x1822('50')](_0x519cc1,_0x12a974);}finally{_0x37fafa();}});});}function IIiiilIi(){return new Promise(_0x5bd4d7=>{const _0x2024b3={'url':$[_0x1822('56')],'followRedirect':![],'headers':{'Cookie':''+$[_0x1822('21')]+newCookie+'\x20'+cookie,'User-Agent':$['\x55\x41']}};$[_0x1822('79')](_0x2024b3,async(_0xe64e34,_0x102894,_0x2db188)=>{try{IIiI1il(_0x102894);$[_0x1822('58')]=_0x102894&&_0x102894[_0x1822('77')]&&(_0x102894[_0x1822('77')][_0x1822('ac')]||_0x102894[_0x1822('77')][_0x1822('ad')]||'')||'';$[_0x1822('58')]=decodeURIComponent($[_0x1822('58')]);$[_0x1822('58')]=$[_0x1822('58')][_0x1822('44')](/(https:\/\/prodev[\.m]{0,}\.jd\.com\/mall[^'"]+)/)&&$[_0x1822('58')][_0x1822('44')](/(https:\/\/prodev[\.m]{0,}\.jd\.com\/mall[^'"]+)/)[0x1]||'';}catch(_0x7ca82d){$[_0x1822('50')](_0x7ca82d,_0x102894);}finally{_0x5bd4d7(_0x2db188);}});});}function getUrl1(){return new Promise(_0x3c9afa=>{const _0x2717b8={'url':_0x1822('ae')+rebateCode+($[_0x1822('41')]&&_0x1822('af')+$[_0x1822('41')]||''),'followRedirect':![],'headers':{'Cookie':''+$[_0x1822('21')]+newCookie+'\x20'+cookie,'User-Agent':$['\x55\x41']}};$[_0x1822('79')](_0x2717b8,async(_0x24cfe4,_0x12f60f,_0x33f11c)=>{try{IIiI1il(_0x12f60f);$[_0x1822('56')]=_0x33f11c&&_0x33f11c[_0x1822('44')](/(https:\/\/u\.jd\.com\/jda[^']+)/)&&_0x33f11c[_0x1822('44')](/(https:\/\/u\.jd\.com\/jda[^']+)/)[0x1]||'';}catch(_0x46a89a){$[_0x1822('50')](_0x46a89a,_0x12f60f);}finally{_0x3c9afa(_0x33f11c);}});});}function lIIlIlll(_0x330911){return new Promise(_0x35e866=>{const _0x4d8d1d={'url':_0x1822('b0')+_0x330911['\x61'],'body':'\x64\x3d'+_0x330911['\x64'],'headers':{'Content-Type':_0x1822('b1'),'User-Agent':$['\x55\x41']}};$[_0x1822('b2')](_0x4d8d1d,async(_0x583f5b,_0x3b0b67,_0xc48f85)=>{try{if(_0x583f5b){throw new Error(_0x583f5b);}else{if(_0xc48f85[_0x1822('67')](_0x1822('b3'))>0x0){_0xc48f85=_0xc48f85[_0x1822('15')](_0x1822('b3'),0x2);_0xc48f85=JSON[_0x1822('b4')](_0xc48f85[0x1]);$[_0x1822('5e')]=_0xc48f85[_0x1822('5e')];}else{console[_0x1822('a')](_0x1822('b5'));}}}catch(_0x2ad2ca){$[_0x1822('50')](_0x2ad2ca,_0x3b0b67);}finally{_0x35e866(_0xc48f85);}});});}function IIiI1il(_0x48fe3b){let _0x309b7b=_0x48fe3b&&_0x48fe3b[_0x1822('77')]&&(_0x48fe3b[_0x1822('77')][_0x1822('b6')]||_0x48fe3b[_0x1822('77')][_0x1822('b7')]||'')||'';let _0x44a92e='';if(_0x309b7b){if(typeof _0x309b7b!=_0x1822('7c')){_0x44a92e=_0x309b7b[_0x1822('15')]('\x2c');}else _0x44a92e=_0x309b7b;for(let _0x2a7fef of _0x44a92e){let _0x42eea2=_0x2a7fef[_0x1822('15')]('\x3b')[0x0][_0x1822('b8')]();if(_0x42eea2[_0x1822('15')]('\x3d')[0x1]){if(_0x42eea2[_0x1822('15')]('\x3d')[0x0]==_0x1822('9b')&&_0x42eea2[_0x1822('15')]('\x3d')[0x1]){$[_0x1822('9b')]=_0x42eea2[_0x1822('15')]('\x3d')[0x1];}if(newCookie[_0x1822('67')](_0x42eea2[_0x1822('15')]('\x3d')[0x1])==-0x1)newCookie+=_0x42eea2[_0x1822('a4')](/ /g,'')+'\x3b\x20';}}}}function getUA(_0xf2de5b=0x1){_0xf2de5b=0x1;if(_0xf2de5b==0x2){$['\x55\x41']=_0x1822('b9');}else{let _0x3273c4=$[_0x1822('0')][_0x1822('ba')]($[_0x1822('43')]+_0x1822('bb'))[_0x1822('bc')]();$['\x55\x41']=_0x1822('bd')+_0x3273c4+_0x1822('be');}}function IIilli1i(_0x45e9bb){if(typeof _0x45e9bb==_0x1822('bf')){try{return JSON[_0x1822('b4')](_0x45e9bb);}catch(_0x9e8234){console[_0x1822('a')](_0x9e8234);$[_0x1822('27')]($[_0x1822('28')],'',_0x1822('c0'));return[];}}}async function iI1iill1(_0x3223f5){return new Promise(_0x46ccc6=>setTimeout(_0x46ccc6,_0x3223f5));}async function ii1iIi1i(){try{const {JSDOM}=jsdom;let _0xe75e32={'url':_0x1822('5a')+rebateCode+_0x1822('5b'),'referrer':_0x1822('ae'),'userAgent':_0x1822('c1'),'runScripts':_0x1822('c2'),'resources':new jsdom[(_0x1822('c3'))]({'userAgent':_0x1822('c1'),'referrer':_0x1822('ae')}),'includeNodeLocations':!![],'storageQuota':0x989680,'pretendToBeVisual':!![],'virtualConsole':new jsdom[(_0x1822('c4'))]()};const _0x593b06=new JSDOM(_0x1822('c5'),_0xe75e32);await iI1iill1(0x3e8);l1iIi11I=_0x593b06[_0x1822('c6')];}catch(_0x339de){console[_0x1822('a')](_0x339de);}}async function hhhh(_0x3f3c92,_0x4599af){if(!$[_0x1822('1b')][$[_0x1822('43')]])$[_0x1822('1b')][$[_0x1822('43')]]={};let _0xd4a156=$[_0x1822('1b')][$[_0x1822('43')]];if(!l1iIi11I){await ii1iIi1i();}l1iIi11I[_0x1822('c7')][_0x1822('c8')](_0x1822('c9')+_0x3f3c92,_0xd4a156[_0x1822('c9')+_0x3f3c92]||'');l1iIi11I[_0x1822('c7')][_0x1822('c8')](_0x1822('ca')+_0x3f3c92,_0xd4a156[_0x1822('ca')+_0x3f3c92]||'');l1iIi11I[_0x1822('c7')][_0x1822('c8')](_0x1822('cb')+_0x3f3c92,_0xd4a156[_0x1822('cb')+_0x3f3c92]||'');return new Promise(async _0x174392=>{let _0x50e6c8='';try{if(typeof l1iIi11I[_0x1822('cc')]===_0x1822('cd')){_0x50e6c8=await l1iIi11I[_0x1822('cc')](_0x3f3c92,_0x4599af);}else{let _0x377631=0x0;timer=setInterval(async()=>{_0x377631++;if(typeof l1iIi11I[_0x1822('cc')]===_0x1822('cd')){clearInterval(timer);timer=null;_0x50e6c8=await l1iIi11I[_0x1822('cc')](_0x3f3c92,_0x4599af);}if(_0x377631>=0x64){clearInterval(timer);}},0x64);}}catch(_0x1bc501){console[_0x1822('a')](_0x1bc501);}finally{if(_0x50e6c8){_0xd4a156[_0x1822('c9')+_0x3f3c92]=l1iIi11I[_0x1822('c7')][_0x1822('ce')](_0x1822('c9')+_0x3f3c92);_0xd4a156[_0x1822('ca')+_0x3f3c92]=l1iIi11I[_0x1822('c7')][_0x1822('ce')](_0x1822('ca')+_0x3f3c92);_0xd4a156[_0x1822('cb')+_0x3f3c92]=l1iIi11I[_0x1822('c7')][_0x1822('ce')](_0x1822('cb')+_0x3f3c92);}_0x174392(_0x50e6c8);}});}function li1IlIl1(){class _0x5ef802{constructor(){this[_0x1822('21')]='';this[_0x1822('cf')]=0x0;this['\x6d\x72']=[0x1,0x0];this[_0x1822('d0')]={'cookie':'','cookies':_0x1822('d1'),'domain':_0x1822('d2'),'referrer':_0x1822('ae'),'location':{'href':_0x1822('76'),'hrefs':_0x1822('76')}};this[_0x1822('d3')]={'userAgent':_0x1822('b9'),'userAgents':_0x1822('b9')};this[_0x1822('c6')]={};}[_0x1822('59')](_0x7b7218='',_0x21c4d5='',_0x5c8a6a='',_0xb31138=''){try{this[_0x1822('d0')][_0x1822('ac')][_0x1822('d4')]=this[_0x1822('d0')][_0x1822('ac')][_0x1822('d5')]+'';this[_0x1822('d0')][_0x1822('10')]=this[_0x1822('d0')][_0x1822('d6')]+'';if(_0x5c8a6a)this[_0x1822('d0')][_0x1822('ac')][_0x1822('d4')]=_0x5c8a6a;if(_0xb31138)this[_0x1822('d0')][_0x1822('10')]=_0xb31138;this[_0x1822('21')]='';this[_0x1822('d3')][_0x1822('d7')]=this[_0x1822('d3')][_0x1822('d8')]+'';this[_0x1822('cf')]=0x3f3+Math[_0x1822('d9')](0x1f*Math[_0x1822('4d')]());if(![]){this['\x6d\x72'][0x1]++;if(this['\x6d\x72'][0x1]>=0x13a){this['\x6d\x72'][0x1]=Math[_0x1822('d9')](0x1f*Math[_0x1822('4d')]());}if(!_0x21c4d5){_0x21c4d5=$[_0x1822('0')][_0x1822('ba')]('')[_0x1822('bc')]();}let _0x3bd87b=0x0;while(!![]){this['\x6d\x72'][0x0]=parseInt(_0x21c4d5[_0x1822('44')](/\d/g)[_0x3bd87b]);_0x3bd87b++;if(this['\x6d\x72'][0x0]>0x0||_0x3bd87b>=_0x21c4d5[_0x1822('44')](/\d/g)[_0x1822('26')]){break;}}this['\x6d\x72'][0x0]+=Math[_0x1822('d9')]((new Date()[_0x1822('1e')]()-new Date(_0x1822('da'))[_0x1822('1e')]())/0x5265c00);}if(_0x7b7218)this[_0x1822('d3')][_0x1822('d7')]=_0x7b7218;this['\x6c\x72']={'ckJda':_0x1822('db'),'ckJdb':_0x1822('dc'),'ckJdv':_0x1822('dd'),'ckJdc':_0x1822('de'),'refUrl':_0x1822('ae')};this['\x71']();this['\x73'](_0x21c4d5);return this[_0x1822('21')];}catch(_0x16f73c){console[_0x1822('a')](_0x16f73c);}}['\x73'](_0x3ff50d=''){var _0x55d98a,_0x3f114d,_0x522859,_0x5218b2,_0x320a39=(this[_0x1822('df')](this['\x6c\x72'][_0x1822('e0')])||'')[_0x1822('15')]('\x2e'),_0x1a92ec=(this[_0x1822('df')](this['\x6c\x72'][_0x1822('e1')])||'')[_0x1822('15')]('\x2e'),_0x499fa1=(this[_0x1822('df')](this['\x6c\x72'][_0x1822('e2')])||'')[_0x1822('15')]('\x7c'),_0x34ed4e=this[_0x1822('df')](this['\x6c\x72'][_0x1822('e3')])||'',_0x50f9d8=parseInt((new Date()[_0x1822('1e')]()-this[_0x1822('cf')])/0x3e8),_0x157369=0x0,_0x2bf33e=0x1,_0x6f4fa3=_0x1822('e4'),_0x4e2a59='\x2d',_0x29442b=_0x1822('e5'),_0x1009b8='\x2d';if(_0x320a39[_0x1822('26')]>0x3)for(var _0xafc30d=0x2;_0xafc30d<0x5&&_0xafc30d<_0x320a39[_0x1822('26')];_0xafc30d++){var _0x32b886=_0x320a39[_0xafc30d];_0x32b886[_0x1822('26')]>0xa&&(_0x320a39[_0xafc30d]=_0x32b886[_0x1822('e6')](0x0,0xa));}_0x320a39[_0x1822('26')]>0x5?(_0x522859=_0x320a39[0x0],_0x5218b2=_0x320a39[0x1],_0x55d98a=parseInt(_0x320a39[0x2],0xa),_0x3f114d=parseInt(_0x320a39[0x3],0xa),_0x50f9d8=parseInt(_0x320a39[0x4],0xa),_0x2bf33e=parseInt(_0x320a39[0x5],0xa)||_0x2bf33e):(_0x5218b2=this[_0x1822('e7')](),_0x55d98a=_0x50f9d8,_0x3f114d=_0x50f9d8),this['\x6c\x72'][_0x1822('e8')]=_0x5218b2,_0x1a92ec[_0x1822('26')]>0x3&&(_0x522859||(_0x522859=_0x1a92ec[0x0]),_0x157369=parseInt(_0x1a92ec[0x1],0xa)||0x0),_0x499fa1[_0x1822('26')]>0x4&&(_0x522859||(_0x522859=_0x499fa1[0x0]),_0x6f4fa3=_0x499fa1[0x1],_0x4e2a59=_0x499fa1[0x2],_0x29442b=_0x499fa1[0x3],_0x1009b8=_0x499fa1[0x4]),_0x34ed4e&&''!==_0x34ed4e&&(_0x522859||(_0x522859=_0x34ed4e));var _0x463db2,_0x172566=[],_0x2c9e17=_0x1a92ec[_0x1822('26')]<0x4,_0x5d3a71=this[_0x1822('e9')](_0x1822('ea')),_0x210728=!0x1;if(_0x5d3a71){var _0x2b2e2a=this[_0x1822('e9')](_0x1822('eb')),_0x31f541=this[_0x1822('e9')](_0x1822('ec')),_0x52746f=this[_0x1822('e9')](_0x1822('ed'));_0x172566[_0x1822('6')](_0x5d3a71||_0x6f4fa3),_0x172566[_0x1822('6')](_0x2b2e2a||_0x4e2a59),_0x172566[_0x1822('6')](_0x31f541||_0x29442b),_0x172566[_0x1822('6')](_0x52746f||_0x1009b8),_0x1009b8=_0x172566[0x3],_0x210728=!0x0;}else{var _0x154051,_0x3aaa44=this['\x6c\x72'][_0x1822('ee')]&&this['\x6c\x72'][_0x1822('ee')][_0x1822('15')]('\x2f')[0x2],_0x225742=!0x1;if(_0x3aaa44&&_0x3aaa44[_0x1822('67')](this['\x6c\x72'][_0x1822('ef')])<0x0){for(_0x154051=this['\x6c\x72'][_0x1822('f0')],_0xafc30d=0x0;_0xafc30d<_0x154051[_0x1822('26')];_0xafc30d++){var _0x2bd40e=_0x154051[_0xafc30d][_0x1822('15')]('\x3a');if(_0x3aaa44[_0x1822('67')](_0x2bd40e[0x0][_0x1822('f1')]())>-0x1&&this['\x6c\x72'][_0x1822('ee')][_0x1822('67')]((_0x2bd40e[0x1]+'\x3d')[_0x1822('f1')]())>-0x1){var _0x579fa8=this[_0x1822('e9')](_0x2bd40e[0x1],this['\x6c\x72'][_0x1822('ee')]);/[^\x00-\xff]/[_0x1822('23')](_0x579fa8)&&(_0x579fa8=encodeURIComponent(_0x579fa8)),_0x172566[_0x1822('6')](_0x2bd40e[0x0]),_0x172566[_0x1822('6')]('\x2d'),_0x172566[_0x1822('6')](_0x1822('f2')),_0x172566[_0x1822('6')](_0x579fa8||_0x1822('f3')),_0x1009b8=_0x172566[0x3],_0x225742=!0x0;break;}}_0x225742||(_0x3aaa44[_0x1822('67')](_0x1822('f4'))>-0x1?(_0x172566[_0x1822('6')](_0x1822('f4')),_0x172566[_0x1822('6')]('\x2d'),_0x172566[_0x1822('6')](_0x1822('f5')),_0x172566[_0x1822('6')](_0x1822('f3'))):(_0x172566[_0x1822('6')](_0x3aaa44),_0x172566[_0x1822('6')]('\x2d'),_0x172566[_0x1822('6')](_0x1822('f6')),_0x172566[_0x1822('6')]('\x2d')));}}_0x463db2=_0x172566[_0x1822('26')]>0x0&&(_0x172566[0x0]!==_0x6f4fa3||_0x172566[0x1]!==_0x4e2a59||_0x172566[0x2]!==_0x29442b)&&_0x1822('f6')!==_0x172566[0x2],_0x2c9e17||!_0x2c9e17&&_0x463db2?(_0x6f4fa3=_0x172566[0x0]||_0x6f4fa3,_0x4e2a59=_0x172566[0x1]||_0x4e2a59,_0x29442b=_0x172566[0x2]||_0x29442b,_0x1009b8=_0x172566[0x3]||_0x1009b8,_0x320a39[_0x1822('26')]>0x5?(_0x55d98a=parseInt(_0x320a39[0x2],0xa),_0x3f114d=parseInt(_0x320a39[0x4],0xa),_0x50f9d8=parseInt((new Date()[_0x1822('1e')]()-this[_0x1822('cf')])/0x3e8),_0x2bf33e++,_0x157369=0x1):(_0x2bf33e=0x1,_0x157369=0x1)):_0x157369++;var _0x42d031=this[_0x1822('f7')]();if(_0x42d031&&_0x42d031[_0x1822('f8')]){var _0x18c5c6=0x1*_0x42d031[_0x1822('f8')],_0x569786=0x1*_0x42d031[_0x1822('f9')];(_0x18c5c6>_0x2bf33e||_0x18c5c6===_0x2bf33e&&_0x569786>=_0x157369)&&(_0x2bf33e=_0x18c5c6,_0x157369=_0x569786+0x1);}if(_0x522859||(_0x522859=this[_0x1822('fa')](this['\x6c\x72'][_0x1822('ef')])),this[_0x1822('fb')](this['\x6c\x72'][_0x1822('e0')],[_0x522859,_0x5218b2,_0x55d98a,_0x3f114d,_0x50f9d8,_0x2bf33e||0x1][_0x1822('fc')]('\x2e'),this['\x6c\x72'][_0x1822('ef')],this['\x6c\x72'][_0x1822('fd')]),this[_0x1822('fb')](this['\x6c\x72'][_0x1822('e1')],[_0x522859,_0x157369,_0x5218b2+'\x7c'+_0x2bf33e,_0x50f9d8][_0x1822('fc')]('\x2e'),this['\x6c\x72'][_0x1822('ef')],this['\x6c\x72'][_0x1822('fe')]),_0x210728||_0x463db2||_0x499fa1[_0x1822('26')]<0x5){var _0x20522b=[_0x522859,_0x6f4fa3||_0x1822('e4'),_0x4e2a59||'\x2d',_0x29442b||_0x1822('e5'),_0x1009b8||'\x2d',new Date()[_0x1822('1e')]()-this[_0x1822('cf')]][_0x1822('fc')]('\x7c');this[_0x1822('ff')](_0x20522b=encodeURIComponent(_0x20522b),_0x522859);}this[_0x1822('fb')](this['\x6c\x72'][_0x1822('e3')],_0x522859,this['\x6c\x72'][_0x1822('ef')]);if(![]){this[_0x1822('fb')](_0x1822('100'),this['\x6d\x72'][_0x1822('fc')]('\x2e'),this['\x6c\x72'][_0x1822('ef')]);this[_0x1822('fb')](_0x1822('101'),[_0x5218b2,this['\x6d\x72'][0x0],new Date()[_0x1822('1e')]()][_0x1822('fc')]('\x2e'),this['\x6c\x72'][_0x1822('ef')]);var _0x157369=0x0;var _0x5a3160='';if(_0x3ff50d){while(!![]){_0x5a3160+=_0x3ff50d[_0x1822('44')](/\d/g)[_0x157369];_0x157369++;if(_0x5a3160[_0x1822('15')]('')[_0x1822('26')]>=0x2||_0x157369>=_0x3ff50d[_0x1822('44')](/\d/g)[_0x1822('26')]){break;}}}}}['\x71'](){this['\x6c\x72'][_0x1822('102')]=this['\x6c\x72'][_0x1822('102')]||_0x1822('103'),this['\x6c\x72'][_0x1822('104')]='\x2f\x2f'+this['\x6c\x72'][_0x1822('102')]+_0x1822('105'),this['\x6c\x72'][_0x1822('106')]={'pv':'\x31','pf':'\x32','cl':'\x33','od':'\x34','pd':'\x35','hm':'\x36','magic':_0x1822('107')},this['\x6c\x72'][_0x1822('108')]?(this['\x6c\x72'][_0x1822('e0')]=_0x1822('109'),this['\x6c\x72'][_0x1822('e1')]=_0x1822('10a'),this['\x6c\x72'][_0x1822('e3')]=_0x1822('10b'),this['\x6c\x72'][_0x1822('10c')]=_0x1822('10d')):(this['\x6c\x72'][_0x1822('e0')]=_0x1822('db'),this['\x6c\x72'][_0x1822('e1')]=_0x1822('dc'),this['\x6c\x72'][_0x1822('e3')]=_0x1822('de'),this['\x6c\x72'][_0x1822('10c')]=_0x1822('10e')),this['\x6c\x72'][_0x1822('e2')]=_0x1822('dd'),this['\x6c\x72'][_0x1822('10f')]=_0x1822('110'),this['\x6c\x72'][_0x1822('111')]=_0x1822('112'),this['\x6c\x72'][_0x1822('fd')]=0x39ef8b000,this['\x6c\x72'][_0x1822('fe')]=0x1b7740,this['\x6c\x72'][_0x1822('113')]=0x39ef8b000,this['\x6c\x72'][_0x1822('114')]=0x4d3f6400,this['\x6c\x72'][_0x1822('115')]=0x5265c00,this['\x6c\x72'][_0x1822('116')]=0x39ef8b000,this['\x6c\x72'][_0x1822('117')]=0x757b12c00,this['\x6c\x72'][_0x1822('ef')]=(this[_0x1822('d0')][_0x1822('118')][_0x1822('44')](/[^.]+\.(com.cn|net.cn|org.cn|gov.cn|edu.cn)$/)||[''])[0x0]||this[_0x1822('d0')][_0x1822('118')][_0x1822('a4')](/.*?([^.]+\.[^.]+)$/,'\x24\x31'),this['\x6c\x72'][_0x1822('119')]=this[_0x1822('d0')][_0x1822('119')],this['\x6c\x72'][_0x1822('ee')]=this[_0x1822('d0')][_0x1822('11a')],this['\x6c\x72'][_0x1822('f0')]=[_0x1822('11b'),_0x1822('11c'),_0x1822('11d'),_0x1822('11e'),_0x1822('11f'),_0x1822('120'),_0x1822('121'),_0x1822('122'),_0x1822('123'),_0x1822('124'),_0x1822('125'),_0x1822('126'),_0x1822('127'),_0x1822('128'),_0x1822('129'),_0x1822('12a'),_0x1822('12b'),_0x1822('12c'),_0x1822('12d'),_0x1822('12e'),_0x1822('12f'),_0x1822('130'),_0x1822('131'),_0x1822('132'),_0x1822('133'),_0x1822('134')];}[_0x1822('fb')](_0x4f6fef,_0x563e29,_0x47fc48,_0x4d0bcd){if(_0x4f6fef){var _0x5e407a='';if(_0x4d0bcd){var _0x47785c=new Date();_0x47785c[_0x1822('135')](_0x47785c[_0x1822('1e')]()-this[_0x1822('cf')]+_0x4d0bcd),_0x5e407a=_0x1822('136')+_0x47785c[_0x1822('137')]();}this[_0x1822('21')]+=_0x4f6fef+'\x3d'+_0x563e29+'\x3b\x20';}}[_0x1822('ff')](_0x488d59,_0x573ac5,_0x10d025){var _0x5a08b9='';_0x5a08b9=this[_0x1822('138')](0xa)&&(!_0x488d59||_0x488d59[_0x1822('26')]>0x190)?_0x573ac5+_0x1822('139')+(new Date()[_0x1822('1e')]()-this[_0x1822('cf')]):_0x488d59;var _0x378953=_0x10d025||this[_0x1822('13a')]()?this['\x6c\x72'][_0x1822('115')]:this['\x6c\x72'][_0x1822('114')];this[_0x1822('fb')](this['\x6c\x72'][_0x1822('e2')]||_0x1822('dd'),_0x5a08b9,this['\x6c\x72'][_0x1822('ef')],_0x378953);}[_0x1822('df')](_0x18b905,_0xaa4889){var _0x59f000=this[_0x1822('d0')][_0x1822('10')][_0x1822('44')](new RegExp(_0x1822('13b')+_0x18b905+_0x1822('13c')));return null!==_0x59f000?_0xaa4889?_0x59f000[0x2]:this[_0x1822('13d')](_0x59f000[0x2]):'';}[_0x1822('e7')](){return new Date()[_0x1822('1e')]()-this[_0x1822('cf')]+''+parseInt(0x7fffffff*Math[_0x1822('4d')]());}[_0x1822('e9')](_0x214d11,_0x1283b1){var _0x4dda68=_0x1283b1||this[_0x1822('d0')][_0x1822('ac')][_0x1822('d4')],_0x573398=new RegExp(_0x1822('13e')+_0x214d11+_0x1822('13f'))[_0x1822('140')](_0x4dda68);return _0x573398?this[_0x1822('13d')](_0x573398[0x1]):null;}[_0x1822('13d')](_0x4c9525){try{return decodeURIComponent(_0x4c9525);}catch(_0x40733b){return _0x4c9525;}}[_0x1822('fa')](_0x4aeb40){var _0x5417ea,_0x40657e=0x1,_0x5a6b91=0x0;if(_0x4aeb40)for(_0x40657e=0x0,_0x5417ea=_0x4aeb40[_0x1822('26')]-0x1;_0x5417ea>=0x0;_0x5417ea--){_0x40657e=0x0!==(_0x5a6b91=0xfe00000&(_0x40657e=(_0x40657e<<0x6&0xfffffff)+(_0x5a6b91=_0x4aeb40[_0x1822('141')](_0x5417ea))+(_0x5a6b91<<0xe)))?_0x40657e^_0x5a6b91>>0x15:_0x40657e;}return _0x40657e;}[_0x1822('138')](_0x522dee){if(_0x522dee>=0x64)return!0x0;var _0xf6ec79=this['\x6c\x72'][_0x1822('e8')],_0x55b39f=_0xf6ec79[_0x1822('e6')](_0xf6ec79[_0x1822('26')]-0x2);return!!_0x55b39f&&0x1*_0x55b39f<_0x522dee;}[_0x1822('13a')](){var _0x2d43b3=this[_0x1822('d3')][_0x1822('d7')]||'';return/^(jdapp|jdltapp|jdpingou);/[_0x1822('23')](_0x2d43b3)||this[_0x1822('142')]();}[_0x1822('142')](){return(this[_0x1822('d3')][_0x1822('d7')]||'')[_0x1822('67')](_0x1822('143'))>-0x1;}[_0x1822('f7')](){var _0x49a90b,_0x3e887e;try{this[_0x1822('c6')][_0x1822('144')]&&this[_0x1822('c6')][_0x1822('144')][_0x1822('145')]?_0x3e887e=JDMAUnifyBridge[_0x1822('145')]():this[_0x1822('c6')][_0x1822('145')]?_0x3e887e=JDMAGetMPageParam():this[_0x1822('c6')][_0x1822('146')]&&this[_0x1822('c6')][_0x1822('146')][_0x1822('147')]&&this[_0x1822('c6')][_0x1822('146')][_0x1822('147')][_0x1822('148')]&&(_0x3e887e=this[_0x1822('c6')][_0x1822('149')](_0x1822('145'),'')),_0x3e887e&&(_0x49a90b=JSON[_0x1822('b4')](_0x3e887e));}catch(_0x1e1897){}return _0x49a90b;}[_0x1822('16')](_0xe6b6a3,_0x44d627=null){const _0x35999e=_0x44d627?new Date(_0x44d627):new Date();let _0xe475c5={'M+':_0x35999e[_0x1822('14a')]()+0x1,'d+':_0x35999e[_0x1822('14b')](),'H+':_0x35999e[_0x1822('4b')](),'m+':_0x35999e[_0x1822('14c')](),'s+':_0x35999e[_0x1822('14d')](),'q+':Math[_0x1822('68')]((_0x35999e[_0x1822('14a')]()+0x3)/0x3),'S':_0x35999e[_0x1822('14e')]()};/(y+)/[_0x1822('23')](_0xe6b6a3)&&(_0xe6b6a3=_0xe6b6a3[_0x1822('a4')](RegExp['\x24\x31'],(_0x35999e[_0x1822('14f')]()+'')[_0x1822('e6')](0x4-RegExp['\x24\x31'][_0x1822('26')])));for(let _0x44d627 in _0xe475c5)new RegExp('\x28'+_0x44d627+'\x29')[_0x1822('23')](_0xe6b6a3)&&(_0xe6b6a3=_0xe6b6a3[_0x1822('a4')](RegExp['\x24\x31'],0x1==RegExp['\x24\x31'][_0x1822('26')]?_0xe475c5[_0x44d627]:('\x30\x30'+_0xe475c5[_0x44d627])[_0x1822('e6')]((''+_0xe475c5[_0x44d627])[_0x1822('26')])));return _0xe6b6a3;}}I1i111i=new _0x5ef802();};;_0xodJ='jsjiami.com.v6';
function randomString(e) {
e = e || 32;
let t = "abcdef0123456789", a = t.length, n = "";
for (i = 0; i < e; i++)
n += t.charAt(Math.floor(Math.random() * a));
return n
}
const navigator = {
userAgent: `jdapp;iPhone;10.1.4;14.3;${$.CryptoJS.SHA1(randomString(40)).toString()};M/5.0;network/wifi;ADID/;model/iPhone12,1;addressid/;appBuild/167814;jdSupportDarkMode/0;Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148;supportJDSHWK/1`,
plugins: { length: 0 },
language: "zh-CN",
};
const screen = {
availHeight: 812,
availWidth: 375,
colorDepth: 24,
height: 812,
width: 375,
pixelDepth: 24,
};
const window = {};
const document = {
location: {
ancestorOrigins: {},
href: "https://prodev.m.jd.com/mall/active/3re5ajBZWA71ygjVnAz9kbaU1tfw/index.html",
origin: "https://prodev.m.jd.com",
protocol: "https:",
host: "prodev.m.jd.com",
hostname: "prodev.m.jd.com",
port: "",
pathname: "/mall/active/3re5ajBZWA71ygjVnAz9kbaU1tfw/index.html",
search: "",
hash: "",
},
};
var start_time = new Date().getTime(),
_jdfp_canvas_md5 = "",
_jdfp_webgl_md5 = "",
_fingerprint_step = 1,
_JdEid = "",
_eidFlag = !1,
risk_jd_local_fingerprint = "",
_jd_e_joint_;
function t(a) {
if (null == a || void 0 == a || "" == a) return "NA";
if (null == a || void 0 == a || "" == a) var b = "";
else {
b = [];
for (var c = 0; c < 8 * a.length; c += 8)
b[c >> 5] |= (a.charCodeAt(c / 8) & 255) << c % 32;
}
a = 8 * a.length;
b[a >> 5] |= 128 << a % 32;
b[(((a + 64) >>> 9) << 4) + 14] = a;
a = 1732584193;
c = -271733879;
for (var l = -1732584194, h = 271733878, q = 0; q < b.length; q += 16) {
var z = a,
C = c,
D = l,
B = h;
a = v(a, c, l, h, b[q + 0], 7, -680876936);
h = v(h, a, c, l, b[q + 1], 12, -389564586);
l = v(l, h, a, c, b[q + 2], 17, 606105819);
c = v(c, l, h, a, b[q + 3], 22, -1044525330);
a = v(a, c, l, h, b[q + 4], 7, -176418897);
h = v(h, a, c, l, b[q + 5], 12, 1200080426);
l = v(l, h, a, c, b[q + 6], 17, -1473231341);
c = v(c, l, h, a, b[q + 7], 22, -45705983);
a = v(a, c, l, h, b[q + 8], 7, 1770035416);
h = v(h, a, c, l, b[q + 9], 12, -1958414417);
l = v(l, h, a, c, b[q + 10], 17, -42063);
c = v(c, l, h, a, b[q + 11], 22, -1990404162);
a = v(a, c, l, h, b[q + 12], 7, 1804603682);
h = v(h, a, c, l, b[q + 13], 12, -40341101);
l = v(l, h, a, c, b[q + 14], 17, -1502002290);
c = v(c, l, h, a, b[q + 15], 22, 1236535329);
a = x(a, c, l, h, b[q + 1], 5, -165796510);
h = x(h, a, c, l, b[q + 6], 9, -1069501632);
l = x(l, h, a, c, b[q + 11], 14, 643717713);
c = x(c, l, h, a, b[q + 0], 20, -373897302);
a = x(a, c, l, h, b[q + 5], 5, -701558691);
h = x(h, a, c, l, b[q + 10], 9, 38016083);
l = x(l, h, a, c, b[q + 15], 14, -660478335);
c = x(c, l, h, a, b[q + 4], 20, -405537848);
a = x(a, c, l, h, b[q + 9], 5, 568446438);
h = x(h, a, c, l, b[q + 14], 9, -1019803690);
l = x(l, h, a, c, b[q + 3], 14, -187363961);
c = x(c, l, h, a, b[q + 8], 20, 1163531501);
a = x(a, c, l, h, b[q + 13], 5, -1444681467);
h = x(h, a, c, l, b[q + 2], 9, -51403784);
l = x(l, h, a, c, b[q + 7], 14, 1735328473);
c = x(c, l, h, a, b[q + 12], 20, -1926607734);
a = u(c ^ l ^ h, a, c, b[q + 5], 4, -378558);
h = u(a ^ c ^ l, h, a, b[q + 8], 11, -2022574463);
l = u(h ^ a ^ c, l, h, b[q + 11], 16, 1839030562);
c = u(l ^ h ^ a, c, l, b[q + 14], 23, -35309556);
a = u(c ^ l ^ h, a, c, b[q + 1], 4, -1530992060);
h = u(a ^ c ^ l, h, a, b[q + 4], 11, 1272893353);
l = u(h ^ a ^ c, l, h, b[q + 7], 16, -155497632);
c = u(l ^ h ^ a, c, l, b[q + 10], 23, -1094730640);
a = u(c ^ l ^ h, a, c, b[q + 13], 4, 681279174);
h = u(a ^ c ^ l, h, a, b[q + 0], 11, -358537222);
l = u(h ^ a ^ c, l, h, b[q + 3], 16, -722521979);
c = u(l ^ h ^ a, c, l, b[q + 6], 23, 76029189);
a = u(c ^ l ^ h, a, c, b[q + 9], 4, -640364487);
h = u(a ^ c ^ l, h, a, b[q + 12], 11, -421815835);
l = u(h ^ a ^ c, l, h, b[q + 15], 16, 530742520);
c = u(l ^ h ^ a, c, l, b[q + 2], 23, -995338651);
a = w(a, c, l, h, b[q + 0], 6, -198630844);
h = w(h, a, c, l, b[q + 7], 10, 1126891415);
l = w(l, h, a, c, b[q + 14], 15, -1416354905);
c = w(c, l, h, a, b[q + 5], 21, -57434055);
a = w(a, c, l, h, b[q + 12], 6, 1700485571);
h = w(h, a, c, l, b[q + 3], 10, -1894986606);
l = w(l, h, a, c, b[q + 10], 15, -1051523);
c = w(c, l, h, a, b[q + 1], 21, -2054922799);
a = w(a, c, l, h, b[q + 8], 6, 1873313359);
h = w(h, a, c, l, b[q + 15], 10, -30611744);
l = w(l, h, a, c, b[q + 6], 15, -1560198380);
c = w(c, l, h, a, b[q + 13], 21, 1309151649);
a = w(a, c, l, h, b[q + 4], 6, -145523070);
h = w(h, a, c, l, b[q + 11], 10, -1120210379);
l = w(l, h, a, c, b[q + 2], 15, 718787259);
c = w(c, l, h, a, b[q + 9], 21, -343485551);
a = A(a, z);
c = A(c, C);
l = A(l, D);
h = A(h, B);
}
b = [a, c, l, h];
a = "";
for (c = 0; c < 4 * b.length; c++)
a +=
"0123456789abcdef".charAt((b[c >> 2] >> ((c % 4) * 8 + 4)) & 15) +
"0123456789abcdef".charAt((b[c >> 2] >> ((c % 4) * 8)) & 15);
return a;
}
function u(a, b, c, l, h, q) {
a = A(A(b, a), A(l, q));
return A((a << h) | (a >>> (32 - h)), c);
}
function v(a, b, c, l, h, q, z) {
return u((b & c) | (~b & l), a, b, h, q, z);
}
function x(a, b, c, l, h, q, z) {
return u((b & l) | (c & ~l), a, b, h, q, z);
}
function w(a, b, c, l, h, q, z) {
return u(c ^ (b | ~l), a, b, h, q, z);
}
function A(a, b) {
var c = (a & 65535) + (b & 65535);
return (((a >> 16) + (b >> 16) + (c >> 16)) << 16) | (c & 65535);
}
_fingerprint_step = 2;
var y = "",
n = navigator.userAgent.toLowerCase();
n.indexOf("jdapp") && (n = n.substring(0, 90));
var e = navigator.language,
f = n;
-1 != f.indexOf("ipad") ||
-1 != f.indexOf("iphone os") ||
-1 != f.indexOf("midp") ||
-1 != f.indexOf("rv:1.2.3.4") ||
-1 != f.indexOf("ucweb") ||
-1 != f.indexOf("android") ||
-1 != f.indexOf("windows ce") ||
f.indexOf("windows mobile");
var r = "NA",
k = "NA";
try {
-1 != f.indexOf("win") &&
-1 != f.indexOf("95") &&
((r = "windows"), (k = "95")),
-1 != f.indexOf("win") &&
-1 != f.indexOf("98") &&
((r = "windows"), (k = "98")),
-1 != f.indexOf("win 9x") &&
-1 != f.indexOf("4.90") &&
((r = "windows"), (k = "me")),
-1 != f.indexOf("win") &&
-1 != f.indexOf("nt 5.0") &&
((r = "windows"), (k = "2000")),
-1 != f.indexOf("win") &&
-1 != f.indexOf("nt") &&
((r = "windows"), (k = "NT")),
-1 != f.indexOf("win") &&
-1 != f.indexOf("nt 5.1") &&
((r = "windows"), (k = "xp")),
-1 != f.indexOf("win") &&
-1 != f.indexOf("32") &&
((r = "windows"), (k = "32")),
-1 != f.indexOf("win") &&
-1 != f.indexOf("nt 5.1") &&
((r = "windows"), (k = "7")),
-1 != f.indexOf("win") &&
-1 != f.indexOf("6.0") &&
((r = "windows"), (k = "8")),
-1 == f.indexOf("win") ||
(-1 == f.indexOf("nt 6.0") && -1 == f.indexOf("nt 6.1")) ||
((r = "windows"), (k = "9")),
-1 != f.indexOf("win") &&
-1 != f.indexOf("nt 6.2") &&
((r = "windows"), (k = "10")),
-1 != f.indexOf("linux") && (r = "linux"),
-1 != f.indexOf("unix") && (r = "unix"),
-1 != f.indexOf("sun") && -1 != f.indexOf("os") && (r = "sun os"),
-1 != f.indexOf("ibm") && -1 != f.indexOf("os") && (r = "ibm os/2"),
-1 != f.indexOf("mac") && -1 != f.indexOf("pc") && (r = "mac"),
-1 != f.indexOf("aix") && (r = "aix"),
-1 != f.indexOf("powerpc") && (r = "powerPC"),
-1 != f.indexOf("hpux") && (r = "hpux"),
-1 != f.indexOf("netbsd") && (r = "NetBSD"),
-1 != f.indexOf("bsd") && (r = "BSD"),
-1 != f.indexOf("osf1") && (r = "OSF1"),
-1 != f.indexOf("irix") && ((r = "IRIX"), (k = "")),
-1 != f.indexOf("freebsd") && (r = "FreeBSD"),
-1 != f.indexOf("symbianos") &&
((r = "SymbianOS"), (k = f.substring(f.indexOf("SymbianOS/") + 10, 3)));
} catch (a) {}
_fingerprint_step = 3;
var g = "NA",
m = "NA";
try {
-1 != f.indexOf("msie") &&
((g = "ie"),
(m = f.substring(f.indexOf("msie ") + 5)),
m.indexOf(";") && (m = m.substring(0, m.indexOf(";"))));
-1 != f.indexOf("firefox") &&
((g = "Firefox"), (m = f.substring(f.indexOf("firefox/") + 8)));
-1 != f.indexOf("opera") &&
((g = "Opera"), (m = f.substring(f.indexOf("opera/") + 6, 4)));
-1 != f.indexOf("safari") &&
((g = "safari"), (m = f.substring(f.indexOf("safari/") + 7)));
-1 != f.indexOf("chrome") &&
((g = "chrome"),
(m = f.substring(f.indexOf("chrome/") + 7)),
m.indexOf(" ") && (m = m.substring(0, m.indexOf(" "))));
-1 != f.indexOf("navigator") &&
((g = "navigator"), (m = f.substring(f.indexOf("navigator/") + 10)));
-1 != f.indexOf("applewebkit") &&
((g = "applewebkit_chrome"),
(m = f.substring(f.indexOf("applewebkit/") + 12)),
m.indexOf(" ") && (m = m.substring(0, m.indexOf(" "))));
-1 != f.indexOf("sogoumobilebrowser") &&
(g = "\u641c\u72d7\u624b\u673a\u6d4f\u89c8\u5668");
if (-1 != f.indexOf("ucbrowser") || -1 != f.indexOf("ucweb"))
g = "UC\u6d4f\u89c8\u5668";
if (-1 != f.indexOf("qqbrowser") || -1 != f.indexOf("tencenttraveler"))
g = "QQ\u6d4f\u89c8\u5668";
-1 != f.indexOf("metasr") && (g = "\u641c\u72d7\u6d4f\u89c8\u5668");
-1 != f.indexOf("360se") && (g = "360\u6d4f\u89c8\u5668");
-1 != f.indexOf("the world") &&
(g = "\u4e16\u754c\u4e4b\u7a97\u6d4f\u89c8\u5668");
-1 != f.indexOf("maxthon") && (g = "\u9068\u6e38\u6d4f\u89c8\u5668");
} catch (a) {}
class JdJrTdRiskFinger {
f = {
options: function () {
return {};
},
nativeForEach: Array.prototype.forEach,
nativeMap: Array.prototype.map,
extend: function (a, b) {
if (null == a) return b;
for (var c in a) null != a[c] && b[c] !== a[c] && (b[c] = a[c]);
return b;
},
getData: function () {
return y;
},
get: function (a) {
var b = 1 * m,
c = [];
"ie" == g && 7 <= b
? (c.push(n),
c.push(e),
(y = y + ",'userAgent':'" + t(n) + "','language':'" + e + "'"),
this.browserRedirect(n))
: ((c = this.userAgentKey(c)), (c = this.languageKey(c)));
c.push(g);
c.push(m);
c.push(r);
c.push(k);
y =
y +
",'os':'" +
r +
"','osVersion':'" +
k +
"','browser':'" +
g +
"','browserVersion':'" +
m +
"'";
c = this.colorDepthKey(c);
c = this.screenResolutionKey(c);
c = this.timezoneOffsetKey(c);
c = this.sessionStorageKey(c);
c = this.localStorageKey(c);
c = this.indexedDbKey(c);
c = this.addBehaviorKey(c);
c = this.openDatabaseKey(c);
c = this.cpuClassKey(c);
c = this.platformKey(c);
c = this.hardwareConcurrencyKey(c);
c = this.doNotTrackKey(c);
c = this.pluginsKey(c);
c = this.canvasKey(c);
c = this.webglKey(c);
b = this.x64hash128(c.join("~~~"), 31);
return a(b);
},
userAgentKey: function (a) {
a.push(navigator.userAgent),
(y = y + ",'userAgent':'" + t(navigator.userAgent) + "'"),
this.browserRedirect(navigator.userAgent);
return a;
},
replaceAll: function (a, b, c) {
for (; 0 <= a.indexOf(b); ) a = a.replace(b, c);
return a;
},
browserRedirect: function (a) {
var b = a.toLowerCase();
a = "ipad" == b.match(/ipad/i);
var c = "iphone os" == b.match(/iphone os/i),
l = "midp" == b.match(/midp/i),
h = "rv:1.2.3.4" == b.match(/rv:1.2.3.4/i),
q = "ucweb" == b.match(/ucweb/i),
z = "android" == b.match(/android/i),
C = "windows ce" == b.match(/windows ce/i);
b = "windows mobile" == b.match(/windows mobile/i);
y =
a || c || l || h || q || z || C || b
? y + ",'origin':'mobile'"
: y + ",'origin':'pc'";
},
languageKey: function (a) {
"" ||
(a.push(navigator.language),
(y =
y +
",'language':'" +
this.replaceAll(navigator.language, " ", "_") +
"'"));
return a;
},
colorDepthKey: function (a) {
"" ||
(a.push(screen.colorDepth),
(y = y + ",'colorDepth':'" + screen.colorDepth + "'"));
return a;
},
screenResolutionKey: function (a) {
if (!this.options.excludeScreenResolution) {
var b = this.getScreenResolution();
"undefined" !== typeof b &&
(a.push(b.join("x")),
(y = y + ",'screenResolution':'" + b.join("x") + "'"));
}
return a;
},
getScreenResolution: function () {
return this.options.detectScreenOrientation
? screen.height > screen.width
? [screen.height, screen.width]
: [screen.width, screen.height]
: [screen.height, screen.width];
},
timezoneOffsetKey: function (a) {
this.options.excludeTimezoneOffset ||
(a.push(new Date().getTimezoneOffset()),
(y =
y +
",'timezoneOffset':'" +
new Date().getTimezoneOffset() / 60 +
"'"));
return a;
},
sessionStorageKey: function (a) {
!this.options.excludeSessionStorage &&
this.hasSessionStorage() &&
(a.push("sessionStorageKey"), (y += ",'sessionStorage':true"));
return a;
},
localStorageKey: function (a) {
!this.options.excludeSessionStorage &&
this.hasLocalStorage() &&
(a.push("localStorageKey"), (y += ",'localStorage':true"));
return a;
},
indexedDbKey: function (a) {
!this.options.excludeIndexedDB &&
this.hasIndexedDB() &&
(a.push("indexedDbKey"), (y += ",'indexedDb':true"));
return a;
},
addBehaviorKey: function (a) {
document.body &&
!this.options.excludeAddBehavior &&
document.body.addBehavior
? (a.push("addBehaviorKey"), (y += ",'addBehavior':true"))
: (y += ",'addBehavior':false");
return a;
},
openDatabaseKey: function (a) {
!this.options.excludeOpenDatabase && window.openDatabase
? (a.push("openDatabase"), (y += ",'openDatabase':true"))
: (y += ",'openDatabase':false");
return a;
},
cpuClassKey: function (a) {
this.options.excludeCpuClass ||
(a.push(this.getNavigatorCpuClass()),
(y = y + ",'cpu':'" + this.getNavigatorCpuClass() + "'"));
return a;
},
platformKey: function (a) {
this.options.excludePlatform ||
(a.push(this.getNavigatorPlatform()),
(y = y + ",'platform':'" + this.getNavigatorPlatform() + "'"));
return a;
},
hardwareConcurrencyKey: function (a) {
var b = this.getHardwareConcurrency();
a.push(b);
y = y + ",'ccn':'" + b + "'";
return a;
},
doNotTrackKey: function (a) {
this.options.excludeDoNotTrack ||
(a.push(this.getDoNotTrack()),
(y = y + ",'track':'" + this.getDoNotTrack() + "'"));
return a;
},
canvasKey: function (a) {
if (!this.options.excludeCanvas && this.isCanvasSupported()) {
var b = this.getCanvasFp();
a.push(b);
_jdfp_canvas_md5 = t(b);
y = y + ",'canvas':'" + _jdfp_canvas_md5 + "'";
}
return a;
},
webglKey: function (a) {
if (!this.options.excludeWebGL && this.isCanvasSupported()) {
var b = this.getWebglFp();
_jdfp_webgl_md5 = t(b);
a.push(b);
y = y + ",'webglFp':'" + _jdfp_webgl_md5 + "'";
}
return a;
},
pluginsKey: function (a) {
this.isIE()
? (a.push(this.getIEPluginsString()),
(y = y + ",'plugins':'" + t(this.getIEPluginsString()) + "'"))
: (a.push(this.getRegularPluginsString()),
(y = y + ",'plugins':'" + t(this.getRegularPluginsString()) + "'"));
return a;
},
getRegularPluginsString: function () {
return this.map(
navigator.plugins,
function (a) {
var b = this.map(a, function (c) {
return [c.type, c.suffixes].join("~");
}).join(",");
return [a.name, a.description, b].join("::");
},
this
).join(";");
},
getIEPluginsString: function () {
return window.ActiveXObject
? this.map(
"AcroPDF.PDF;Adodb.Stream;AgControl.AgControl;DevalVRXCtrl.DevalVRXCtrl.1;MacromediaFlashPaper.MacromediaFlashPaper;Msxml2.DOMDocument;Msxml2.XMLHTTP;PDF.PdfCtrl;QuickTime.QuickTime;QuickTimeCheckObject.QuickTimeCheck.1;RealPlayer;RealPlayer.RealPlayer(tm) ActiveX Control (32-bit);RealVideo.RealVideo(tm) ActiveX Control (32-bit);Scripting.Dictionary;SWCtl.SWCtl;Shell.UIHelper;ShockwaveFlash.ShockwaveFlash;Skype.Detection;TDCCtl.TDCCtl;WMPlayer.OCX;rmocx.RealPlayer G2 Control;rmocx.RealPlayer G2 Control.1".split(
";"
),
function (a) {
try {
return new ActiveXObject(a), a;
} catch (b) {
return null;
}
}
).join(";")
: "";
},
hasSessionStorage: function () {
try {
return !!window.sessionStorage;
} catch (a) {
return !0;
}
},
hasLocalStorage: function () {
try {
return !!window.localStorage;
} catch (a) {
return !0;
}
},
hasIndexedDB: function () {
return true;
return !!window.indexedDB;
},
getNavigatorCpuClass: function () {
return navigator.cpuClass ? navigator.cpuClass : "NA";
},
getNavigatorPlatform: function () {
return navigator.platform ? navigator.platform : "NA";
},
getHardwareConcurrency: function () {
return navigator.hardwareConcurrency
? navigator.hardwareConcurrency
: "NA";
},
getDoNotTrack: function () {
return navigator.doNotTrack ? navigator.doNotTrack : "NA";
},
getCanvasFp: function () {
return "";
var a = navigator.userAgent.toLowerCase();
if (
(0 < a.indexOf("jdjr-app") || 0 <= a.indexOf("jdapp")) &&
(0 < a.indexOf("iphone") || 0 < a.indexOf("ipad"))
)
return null;
a = document.createElement("canvas");
var b = a.getContext("2d");
b.fillStyle = "red";
b.fillRect(30, 10, 200, 100);
b.strokeStyle = "#1a3bc1";
b.lineWidth = 6;
b.lineCap = "round";
b.arc(50, 50, 20, 0, Math.PI, !1);
b.stroke();
b.fillStyle = "#42e1a2";
b.font = "15.4px 'Arial'";
b.textBaseline = "alphabetic";
b.fillText("PR flacks quiz gym: TV DJ box when? \u2620", 15, 60);
b.shadowOffsetX = 1;
b.shadowOffsetY = 2;
b.shadowColor = "white";
b.fillStyle = "rgba(0, 0, 200, 0.5)";
b.font = "60px 'Not a real font'";
b.fillText("No\u9a97", 40, 80);
return a.toDataURL();
},
getWebglFp: function () {
var a = navigator.userAgent;
a = a.toLowerCase();
if (
(0 < a.indexOf("jdjr-app") || 0 <= a.indexOf("jdapp")) &&
(0 < a.indexOf("iphone") || 0 < a.indexOf("ipad"))
)
return null;
a = function (D) {
b.clearColor(0, 0, 0, 1);
b.enable(b.DEPTH_TEST);
b.depthFunc(b.LEQUAL);
b.clear(b.COLOR_BUFFER_BIT | b.DEPTH_BUFFER_BIT);
return "[" + D[0] + ", " + D[1] + "]";
};
var b = this.getWebglCanvas();
if (!b) return null;
var c = [],
l = b.createBuffer();
b.bindBuffer(b.ARRAY_BUFFER, l);
var h = new Float32Array([
-0.2, -0.9, 0, 0.4, -0.26, 0, 0, 0.732134444, 0,
]);
b.bufferData(b.ARRAY_BUFFER, h, b.STATIC_DRAW);
l.itemSize = 3;
l.numItems = 3;
h = b.createProgram();
var q = b.createShader(b.VERTEX_SHADER);
b.shaderSource(
q,
"attribute vec2 attrVertex;varying vec2 varyinTexCoordinate;uniform vec2 uniformOffset;void main(){varyinTexCoordinate=attrVertex+uniformOffset;gl_Position=vec4(attrVertex,0,1);}"
);
b.compileShader(q);
var z = b.createShader(b.FRAGMENT_SHADER);
b.shaderSource(
z,
"precision mediump float;varying vec2 varyinTexCoordinate;void main() {gl_FragColor=vec4(varyinTexCoordinate,0,1);}"
);
b.compileShader(z);
b.attachShader(h, q);
b.attachShader(h, z);
b.linkProgram(h);
b.useProgram(h);
h.vertexPosAttrib = b.getAttribLocation(h, "attrVertex");
h.offsetUniform = b.getUniformLocation(h, "uniformOffset");
b.enableVertexAttribArray(h.vertexPosArray);
b.vertexAttribPointer(h.vertexPosAttrib, l.itemSize, b.FLOAT, !1, 0, 0);
b.uniform2f(h.offsetUniform, 1, 1);
b.drawArrays(b.TRIANGLE_STRIP, 0, l.numItems);
null != b.canvas && c.push(b.canvas.toDataURL());
c.push("extensions:" + b.getSupportedExtensions().join(";"));
c.push("extensions:" + b.getSupportedExtensions().join(";"));
c.push("w1" + a(b.getParameter(b.ALIASED_LINE_WIDTH_RANGE)));
c.push("w2" + a(b.getParameter(b.ALIASED_POINT_SIZE_RANGE)));
c.push("w3" + b.getParameter(b.ALPHA_BITS));
c.push("w4" + (b.getContextAttributes().antialias ? "yes" : "no"));
c.push("w5" + b.getParameter(b.BLUE_BITS));
c.push("w6" + b.getParameter(b.DEPTH_BITS));
c.push("w7" + b.getParameter(b.GREEN_BITS));
c.push(
"w8" +
(function (D) {
var B,
F =
D.getExtension("EXT_texture_filter_anisotropic") ||
D.getExtension("WEBKIT_EXT_texture_filter_anisotropic") ||
D.getExtension("MOZ_EXT_texture_filter_anisotropic");
return F
? ((B = D.getParameter(F.MAX_TEXTURE_MAX_ANISOTROPY_EXT)),
0 === B && (B = 2),
B)
: null;
})(b)
);
c.push("w9" + b.getParameter(b.MAX_COMBINED_TEXTURE_IMAGE_UNITS));
c.push("w10" + b.getParameter(b.MAX_CUBE_MAP_TEXTURE_SIZE));
c.push("w11" + b.getParameter(b.MAX_FRAGMENT_UNIFORM_VECTORS));
c.push("w12" + b.getParameter(b.MAX_RENDERBUFFER_SIZE));
c.push("w13" + b.getParameter(b.MAX_TEXTURE_IMAGE_UNITS));
c.push("w14" + b.getParameter(b.MAX_TEXTURE_SIZE));
c.push("w15" + b.getParameter(b.MAX_VARYING_VECTORS));
c.push("w16" + b.getParameter(b.MAX_VERTEX_ATTRIBS));
c.push("w17" + b.getParameter(b.MAX_VERTEX_TEXTURE_IMAGE_UNITS));
c.push("w18" + b.getParameter(b.MAX_VERTEX_UNIFORM_VECTORS));
c.push("w19" + a(b.getParameter(b.MAX_VIEWPORT_DIMS)));
c.push("w20" + b.getParameter(b.RED_BITS));
c.push("w21" + b.getParameter(b.RENDERER));
c.push("w22" + b.getParameter(b.SHADING_LANGUAGE_VERSION));
c.push("w23" + b.getParameter(b.STENCIL_BITS));
c.push("w24" + b.getParameter(b.VENDOR));
c.push("w25" + b.getParameter(b.VERSION));
try {
var C = b.getExtension("WEBGL_debug_renderer_info");
C &&
(c.push("wuv:" + b.getParameter(C.UNMASKED_VENDOR_WEBGL)),
c.push("wur:" + b.getParameter(C.UNMASKED_RENDERER_WEBGL)));
} catch (D) {}
return c.join("\u00a7");
},
isCanvasSupported: function () {
return true;
var a = document.createElement("canvas");
return !(!a.getContext || !a.getContext("2d"));
},
isIE: function () {
return "Microsoft Internet Explorer" === navigator.appName ||
("Netscape" === navigator.appName &&
/Trident/.test(navigator.userAgent))
? !0
: !1;
},
getWebglCanvas: function () {
return null;
var a = document.createElement("canvas"),
b = null;
try {
var c = navigator.userAgent;
c = c.toLowerCase();
((0 < c.indexOf("jdjr-app") || 0 <= c.indexOf("jdapp")) &&
(0 < c.indexOf("iphone") || 0 < c.indexOf("ipad"))) ||
(b = a.getContext("webgl") || a.getContext("experimental-webgl"));
} catch (l) {}
b || (b = null);
return b;
},
each: function (a, b, c) {
if (null !== a)
if (this.nativeForEach && a.forEach === this.nativeForEach)
a.forEach(b, c);
else if (a.length === +a.length)
for (
var l = 0, h = a.length;
l < h && b.call(c, a[l], l, a) !== {};
l++
);
else
for (l in a)
if (a.hasOwnProperty(l) && b.call(c, a[l], l, a) === {}) break;
},
map: function (a, b, c) {
var l = [];
if (null == a) return l;
if (this.nativeMap && a.map === this.nativeMap) return a.map(b, c);
this.each(a, function (h, q, z) {
l[l.length] = b.call(c, h, q, z);
});
return l;
},
x64Add: function (a, b) {
a = [a[0] >>> 16, a[0] & 65535, a[1] >>> 16, a[1] & 65535];
b = [b[0] >>> 16, b[0] & 65535, b[1] >>> 16, b[1] & 65535];
var c = [0, 0, 0, 0];
c[3] += a[3] + b[3];
c[2] += c[3] >>> 16;
c[3] &= 65535;
c[2] += a[2] + b[2];
c[1] += c[2] >>> 16;
c[2] &= 65535;
c[1] += a[1] + b[1];
c[0] += c[1] >>> 16;
c[1] &= 65535;
c[0] += a[0] + b[0];
c[0] &= 65535;
return [(c[0] << 16) | c[1], (c[2] << 16) | c[3]];
},
x64Multiply: function (a, b) {
a = [a[0] >>> 16, a[0] & 65535, a[1] >>> 16, a[1] & 65535];
b = [b[0] >>> 16, b[0] & 65535, b[1] >>> 16, b[1] & 65535];
var c = [0, 0, 0, 0];
c[3] += a[3] * b[3];
c[2] += c[3] >>> 16;
c[3] &= 65535;
c[2] += a[2] * b[3];
c[1] += c[2] >>> 16;
c[2] &= 65535;
c[2] += a[3] * b[2];
c[1] += c[2] >>> 16;
c[2] &= 65535;
c[1] += a[1] * b[3];
c[0] += c[1] >>> 16;
c[1] &= 65535;
c[1] += a[2] * b[2];
c[0] += c[1] >>> 16;
c[1] &= 65535;
c[1] += a[3] * b[1];
c[0] += c[1] >>> 16;
c[1] &= 65535;
c[0] += a[0] * b[3] + a[1] * b[2] + a[2] * b[1] + a[3] * b[0];
c[0] &= 65535;
return [(c[0] << 16) | c[1], (c[2] << 16) | c[3]];
},
x64Rotl: function (a, b) {
b %= 64;
if (32 === b) return [a[1], a[0]];
if (32 > b)
return [
(a[0] << b) | (a[1] >>> (32 - b)),
(a[1] << b) | (a[0] >>> (32 - b)),
];
b -= 32;
return [
(a[1] << b) | (a[0] >>> (32 - b)),
(a[0] << b) | (a[1] >>> (32 - b)),
];
},
x64LeftShift: function (a, b) {
b %= 64;
return 0 === b
? a
: 32 > b
? [(a[0] << b) | (a[1] >>> (32 - b)), a[1] << b]
: [a[1] << (b - 32), 0];
},
x64Xor: function (a, b) {
return [a[0] ^ b[0], a[1] ^ b[1]];
},
x64Fmix: function (a) {
a = this.x64Xor(a, [0, a[0] >>> 1]);
a = this.x64Multiply(a, [4283543511, 3981806797]);
a = this.x64Xor(a, [0, a[0] >>> 1]);
a = this.x64Multiply(a, [3301882366, 444984403]);
return (a = this.x64Xor(a, [0, a[0] >>> 1]));
},
x64hash128: function (a, b) {
a = a || "";
b = b || 0;
var c = a.length % 16,
l = a.length - c,
h = [0, b];
b = [0, b];
for (
var q,
z,
C = [2277735313, 289559509],
D = [1291169091, 658871167],
B = 0;
B < l;
B += 16
)
(q = [
(a.charCodeAt(B + 4) & 255) |
((a.charCodeAt(B + 5) & 255) << 8) |
((a.charCodeAt(B + 6) & 255) << 16) |
((a.charCodeAt(B + 7) & 255) << 24),
(a.charCodeAt(B) & 255) |
((a.charCodeAt(B + 1) & 255) << 8) |
((a.charCodeAt(B + 2) & 255) << 16) |
((a.charCodeAt(B + 3) & 255) << 24),
]),
(z = [
(a.charCodeAt(B + 12) & 255) |
((a.charCodeAt(B + 13) & 255) << 8) |
((a.charCodeAt(B + 14) & 255) << 16) |
((a.charCodeAt(B + 15) & 255) << 24),
(a.charCodeAt(B + 8) & 255) |
((a.charCodeAt(B + 9) & 255) << 8) |
((a.charCodeAt(B + 10) & 255) << 16) |
((a.charCodeAt(B + 11) & 255) << 24),
]),
(q = this.x64Multiply(q, C)),
(q = this.x64Rotl(q, 31)),
(q = this.x64Multiply(q, D)),
(h = this.x64Xor(h, q)),
(h = this.x64Rotl(h, 27)),
(h = this.x64Add(h, b)),
(h = this.x64Add(this.x64Multiply(h, [0, 5]), [0, 1390208809])),
(z = this.x64Multiply(z, D)),
(z = this.x64Rotl(z, 33)),
(z = this.x64Multiply(z, C)),
(b = this.x64Xor(b, z)),
(b = this.x64Rotl(b, 31)),
(b = this.x64Add(b, h)),
(b = this.x64Add(this.x64Multiply(b, [0, 5]), [0, 944331445]));
q = [0, 0];
z = [0, 0];
switch (c) {
case 15:
z = this.x64Xor(z, this.x64LeftShift([0, a.charCodeAt(B + 14)], 48));
case 14:
z = this.x64Xor(z, this.x64LeftShift([0, a.charCodeAt(B + 13)], 40));
case 13:
z = this.x64Xor(z, this.x64LeftShift([0, a.charCodeAt(B + 12)], 32));
case 12:
z = this.x64Xor(z, this.x64LeftShift([0, a.charCodeAt(B + 11)], 24));
case 11:
z = this.x64Xor(z, this.x64LeftShift([0, a.charCodeAt(B + 10)], 16));
case 10:
z = this.x64Xor(z, this.x64LeftShift([0, a.charCodeAt(B + 9)], 8));
case 9:
(z = this.x64Xor(z, [0, a.charCodeAt(B + 8)])),
(z = this.x64Multiply(z, D)),
(z = this.x64Rotl(z, 33)),
(z = this.x64Multiply(z, C)),
(b = this.x64Xor(b, z));
case 8:
q = this.x64Xor(q, this.x64LeftShift([0, a.charCodeAt(B + 7)], 56));
case 7:
q = this.x64Xor(q, this.x64LeftShift([0, a.charCodeAt(B + 6)], 48));
case 6:
q = this.x64Xor(q, this.x64LeftShift([0, a.charCodeAt(B + 5)], 40));
case 5:
q = this.x64Xor(q, this.x64LeftShift([0, a.charCodeAt(B + 4)], 32));
case 4:
q = this.x64Xor(q, this.x64LeftShift([0, a.charCodeAt(B + 3)], 24));
case 3:
q = this.x64Xor(q, this.x64LeftShift([0, a.charCodeAt(B + 2)], 16));
case 2:
q = this.x64Xor(q, this.x64LeftShift([0, a.charCodeAt(B + 1)], 8));
case 1:
(q = this.x64Xor(q, [0, a.charCodeAt(B)])),
(q = this.x64Multiply(q, C)),
(q = this.x64Rotl(q, 31)),
(q = this.x64Multiply(q, D)),
(h = this.x64Xor(h, q));
}
h = this.x64Xor(h, [0, a.length]);
b = this.x64Xor(b, [0, a.length]);
h = this.x64Add(h, b);
b = this.x64Add(b, h);
h = this.x64Fmix(h);
b = this.x64Fmix(b);
h = this.x64Add(h, b);
b = this.x64Add(b, h);
return (
("00000000" + (h[0] >>> 0).toString(16)).slice(-8) +
("00000000" + (h[1] >>> 0).toString(16)).slice(-8) +
("00000000" + (b[0] >>> 0).toString(16)).slice(-8) +
("00000000" + (b[1] >>> 0).toString(16)).slice(-8)
);
},
};
}
var JDDSecCryptoJS =
JDDSecCryptoJS ||
(function (t, u) {
var v = {},
x = (v.lib = {}),
w = (x.Base = (function () {
function g() {}
return {
extend: function (m) {
g.prototype = this;
var a = new g();
m && a.mixIn(m);
a.hasOwnProperty("init") ||
(a.init = function () {
a.$super.init.apply(this, arguments);
});
a.init.prototype = a;
a.$super = this;
return a;
},
create: function () {
var m = this.extend();
m.init.apply(m, arguments);
return m;
},
init: function () {},
mixIn: function (m) {
for (var a in m) m.hasOwnProperty(a) && (this[a] = m[a]);
m.hasOwnProperty("toString") && (this.toString = m.toString);
},
clone: function () {
return this.init.prototype.extend(this);
},
};
})()),
A = (x.WordArray = w.extend({
init: function (g, m) {
g = this.words = g || [];
this.sigBytes = m != u ? m : 4 * g.length;
},
toString: function (g) {
return (g || n).stringify(this);
},
concat: function (g) {
var m = this.words,
a = g.words,
b = this.sigBytes;
g = g.sigBytes;
this.clamp();
if (b % 4)
for (var c = 0; c < g; c++)
m[(b + c) >>> 2] |=
((a[c >>> 2] >>> (24 - (c % 4) * 8)) & 255) <<
(24 - ((b + c) % 4) * 8);
else if (65535 < a.length)
for (c = 0; c < g; c += 4) m[(b + c) >>> 2] = a[c >>> 2];
else m.push.apply(m, a);
this.sigBytes += g;
return this;
},
clamp: function () {
var g = this.words,
m = this.sigBytes;
g[m >>> 2] &= 4294967295 << (32 - (m % 4) * 8);
g.length = t.ceil(m / 4);
},
clone: function () {
var g = w.clone.call(this);
g.words = this.words.slice(0);
return g;
},
random: function (g) {
for (var m = [], a = 0; a < g; a += 4)
m.push((4294967296 * t.random()) | 0);
return new A.init(m, g);
},
}));
x.UUID = w.extend({
generateUuid: function () {
for (
var g = "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".split(""),
m = 0,
a = g.length;