forked from gxcuit/yyds-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjd_11red.js
2080 lines (2064 loc) · 142 KB
/
jd_11red.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
/*
京东领红包
添加环境变量 export FLCODETest='xxx'
领红包测试版,附带助力,加密
0 0,10,20 * * * jd_11red.js
*/
const $ = new Env('领红包1111');
var _0xodi='jsjiami.com.v6',_0xodi_=['_0xodi'],_0xbeed=[_0xodi,'bmV3Q29va2ll','dXJsMQ==','dXJsMg==','ZWlk','Smh6Q2o=','dXRnalE=','LOWIneWni+WMljHlpLHotKUs5Y+v6IO96buR5Y+3','ZE5YWWQ=','anphQmY=','LOWIneWni+WMljLlpLHotKUs5Y+v6IO96buR5Y+3','V2JEZEI=','YWN0SWQ=','ZW5oZnI=','WWRqUEI=','JC5hY3RJZDo=','ZUZIWk8=','VXNyUXA=','Q0FReFE=','aUdLQWY=','c3BsaXQ=','dHJpbQ==','R3dTSlM=','aW5kZXhPZg==','cVlVTHc=','cmVwbGFjZQ==','UEVvTGo=','a29EUGE=','Kl8q','bktjVlQ=','U2xrRVQ=','YXBwbGljYXRpb24veC13d3ctZm9ybS11cmxlbmNvZGVkO2NoYXJzZXQ9VVRGLTg=','TkVESFU=','ekd1R1U=','b2JqZWN0','cE9xZE8=','bUpuQVk=','bUpHclc=','T0p2Rnk=','Zmxvb3I=','cmFuZG9t','REZxbEs=','aHR0cHM6Ly9naWEuamQuY29tL2ZjZi5odG1sP2E9','cGVIZmU=','cG9zdA==','R09GSGE=','TEppRlQ=','WFl1a0I=','eEhlTEU=','TWFrZko=','dG9TdHI=','IEFQSeivt+axguWksei0pe+8jOivt+ajgOafpee9kei3r+mHjeivlQ==','dld5ZFI=','SGZZUGU=','cGFyc2U=','aW13U0s=','WURrckE=','5Lqs6LGGYXBp6L+U5Zue5pWw5o2u5Li656m677yM6K+35qOA5p+l6Ieq6Lqr5Y6f5Zug','bmxKd3I=','RmxtWXI=','YWJjZGVmMDEyMzQ1Njc4OQ==','Y1ZXUkw=','S2ZwU04=','Y2hhckF0','Z3l5UXQ=','RG9RU0E=','bFNrRWE=','UlNXb08=','ckhjRVo=','T0dNVlU=','UWtWb1c=','S1BmdGc=','Y0lEaWQ=','a2JEY3g=','dmhJZEE=','MzExNDk=','Z2V0Q291cG9ucw==','YXBwbGU=','NmE5OGQ=','emgtY24=','TVBrSEk=','UVRqdEo=','ZFdoR08=','UkFvUGM=','cGRwZXI=','WkNSaXk=','dW5kZWZpbmVk','dEhvU2k=','elFhaUU=','dUxWZno=','UW5UakE=','ckVBdE0=','dEdMc0I=','VFN4Zm8=','eWF1T3Q=','VEVyWks=','QURSWGM=','c3FDbFY=','a3hjZEo=','bGpOaE4=','SGJ5TUM=','aUdGb28=','OC4zLjY=','R01ZWVM=','aHR0cHM6Ly9hcGkubS5qZC5jb20vYXBpP2Z1bmN0aW9uSWQ9','ZnVuY3Rpb25JZA==','JmFwcGlkPQ==','YXBwaWQ=','Jl89','JmxvZ2luVHlwZT0yJmJvZHk9','aUVwWEk=','c3RyaW5naWZ5','JmNsaWVudD0=','Y2xpZW50','JmNsaWVudFZlcnNpb249','Y2xpZW50VmVyc2lvbg==','Jmg1c3Q9','SFRNZXQ=','Z3ppcCwgZGVmbGF0ZSwgYnI=','Z2V0','VFljQXA=','R3p6dXM=','QVR2ZGI=','Zk1md08=','R3VmVkg=','TEVJbmU=','SmtjbEU=','ZU9sWlI=','WGZrUnI=','Y3FHY0o=','dVpCWU0=','c3VyRXI=','UUpqdG4=','57uT5p6c77ya','c2hhcmVJZA==','eHZpaWs=','ZGF0YQ==','am9pbk51bQ==','cGlHVmc=','am9pblN1ZmZpeA==','c3FpZ0g=','ZHBkeFY=','dHlwZQ==','6I635b6X57qi5YyF77ya','ZGlzY291bnQ=','V0FIeE8=','VXRKWmo=','6I635b6X5LyY5oOg5Yi477ya77iP5ruh','cXVvdGE=','6I635b6X5omT5oqY5Yi477ya5ruh','d3RHYXk=','clpub0k=','bWRreWM=','6I635b6X5pyq55+l','ZENRbnQ=','eEVmT1A=','bFBGUG8=','UmpKc1Q=','TWdJWE4=','UFN1Y2s=','YVlBZGg=','aGVhZGVycw==','c2V0LWNvb2tpZQ==','U2V0LUNvb2tpZQ==','cVVTQlo=','cFB0YnU=','dFJoeVM=','bG9jYXRpb24=','a0JqQ3c=','TVBRdHg=','QkNBa04=','YmV6anM=','eHpXTWY=','UXJvblA=','ekR4Y2o=','dFZISkY=','V09KZUs=','ek9VQ0c=','Vm1GeG4=','Rk1pSlk=','V0xRcE4=','UVJFcnk=','V3ZRVmE=','Y0FBalo=','ZlJqc2s=','Vm50TG4=','TFd2dk0=','dVZEWmc=','ZXpYTXE=','bHdGZEY=','UXFvaXo=','Und1RGc=','RmpsSU0=','TG9jYXRpb24=','Vlh6SHY=','b0lYRFM=','dk5zeE4=','dEdabEY=','cldPeHc=','dmxSYlo=','TkRvUG4=','bENCeG8=','WWtESkY=','WWZxSWs=','RkpFWlQ=','aHR0cHM6Ly91LmpkLmNvbS8=','P3M9','YUp3Sk4=','bXFhS3M=','bEJIY1U=','TlpybUU=','WGV3Ukg=','ZVJTTHU=','SkxsaVA=','UlhZWE4=','THp1c28=','V3BRZ1c=','VXBJZ3M=','bnhNTUQ=','d09WR0c=','V2ZURUQ=','aXNOb2Rl','Li9qZENvb2tpZS5qcw==','ZmxDb2Rl','ZW52','RkxDT0RFVGVzdA==','a2V5cw==','Zm9yRWFjaA==','cHVzaA==','SkRfREVCVUc=','ZmFsc2U=','bG9n','Z2V0ZGF0YQ==','Q29va2llSkQ=','Q29va2llSkQy','dG9PYmo=','Q29va2llc0pE','bWFw','Y29va2ll','ZmlsdGVy','c2hhcmVDb2Rl','44CQ5o+Q56S644CR6K+35YWI6I635Y+W5Lqs5Lic6LSm5Y+35LiAY29va2llCuebtOaOpeS9v+eUqE5vYnlEYeeahOS6rOS4nOetvuWIsOiOt+WPlg==','SWN2U2M=','57uT5p2f5pe26Ze0IA==','5b2T5YmN5pe26Ze0IA==','aHR0cHM6Ly9iZWFuLm0uamQuY29tL2JlYW4vc2lnbkluZGV4LmFjdGlvbg==','bXNn','bmFtZQ==','UG9Ic24=','bm93VGltZQ==','bm93','Q2VyQVA=','QWV6Y0k=','TWdMVE0=','bG9nRXJy','blduZUE=','a2x2aWY=','WkxUZlY=','a0Nld2ZtWA==','bGVuZ3Ro','UmZISHc=','cWNSTXk=','VXNlck5hbWU=','dmVta0s=','bWF0Y2g=','aW5kZXg=','aXNMb2dpbg==','bmlja05hbWU=','eGRHaFM=','CioqKioqKuW8gOWni+OAkOS6rOS4nOi0puWPtw==','KioqKioqKioqCg==','44CQ5o+Q56S644CRY29va2ll5bey5aSx5pWI','5Lqs5Lic6LSm5Y+3','Cuivt+mHjeaWsOeZu+W9leiOt+WPlgpodHRwczovL2JlYW4ubS5qZC5jb20vYmVhbi9zaWduSW5kZXguYWN0aW9u','bXpaYkQ=','bG9naW5tc2c=','Y2F0Y2g=','LCDlpLHotKUhIOWOn+WboDog','ZmluYWxseQ==','ZG9uZQ==','aHh6S0Y=','VWFqUXk=','55So5oi35pyq55m75b2V','MzFlNmtlRHIyRmRhVUVWU3ZOWk0ya2pEN1FWeA==','QWRIa1k=','b0tzcVM=','Y29kZQ==','dm5PeG4=','amRhcHA7aVBob25lOzEwLjIuMDsxMy4xLjI7','O00vNS4wO25ldHdvcmsvd2lmaTtBRElELzttb2RlbC9pUGhvbmU4LDE7YWRkcmVzc2lkLzIzMDg0NjA2MjI7YXBwQnVpbGQvMTY3ODUzO2pkU3VwcG9ydERhcmtNb2RlLzA7TW96aWxsYS81LjAgKGlQaG9uZTsgQ1BVIGlQaG9uZSBPUyAxM18xXzIgbGlrZSBNYWMgT1MgWCkgQXBwbGVXZWJLaXQvNjA1LjEuMTUgKEtIVE1MLCBsaWtlIEdlY2tvKSBNb2JpbGUvMTVFMTQ4O3N1cHBvcnRKRFNIV0svMTs=','bWF4','aG90RmxhZw==','WUVVQUo=','cnZjUGU=','bmdQZks=','tjstjABikawCxmGli.comnJ.eLtSHv6=='];if(function(_0x21068e,_0x57a26a,_0x3974c7){function _0x334dd1(_0x3995a5,_0x6c864d,_0xba21d6,_0x5419b8,_0x492423,_0x25153e){_0x6c864d=_0x6c864d>>0x8,_0x492423='po';var _0x19360b='shift',_0x701f49='push',_0x25153e='';if(_0x6c864d<_0x3995a5){while(--_0x3995a5){_0x5419b8=_0x21068e[_0x19360b]();if(_0x6c864d===_0x3995a5&&_0x25153e===''&&_0x25153e['length']===0x1){_0x6c864d=_0x5419b8,_0xba21d6=_0x21068e[_0x492423+'p']();}else if(_0x6c864d&&_0xba21d6['replace'](/[ttABkwCxGlnJeLtSH=]/g,'')===_0x6c864d){_0x21068e[_0x701f49](_0x5419b8);}}_0x21068e[_0x701f49](_0x21068e[_0x19360b]());}return 0x10f0f5;};return _0x334dd1(++_0x57a26a,_0x3974c7)>>_0x57a26a^_0x3974c7;}(_0xbeed,0xdc,0xdc00),_0xbeed){_0xodi_=_0xbeed['length']^0xdc;};function _0x10f5(_0x5a0f99,_0x9aa016){_0x5a0f99=~~'0x'['concat'](_0x5a0f99['slice'](0x1));var _0x4786f8=_0xbeed[_0x5a0f99];if(_0x10f5['AwUvQJ']===undefined&&''['length']===0x1){(function(){var _0x2a7247;try{var _0x4c1a2c=Function('return\x20(function()\x20'+'{}.constructor(\x22return\x20this\x22)(\x20)'+');');_0x2a7247=_0x4c1a2c();}catch(_0x1aa99c){_0x2a7247=window;}var _0x5f5dfc='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';_0x2a7247['atob']||(_0x2a7247['atob']=function(_0xe5ba59){var _0x5d3a98=String(_0xe5ba59)['replace'](/=+$/,'');for(var _0x33e739=0x0,_0x2cd5b1,_0xb16f52,_0x69c386=0x0,_0x4ed867='';_0xb16f52=_0x5d3a98['charAt'](_0x69c386++);~_0xb16f52&&(_0x2cd5b1=_0x33e739%0x4?_0x2cd5b1*0x40+_0xb16f52:_0xb16f52,_0x33e739++%0x4)?_0x4ed867+=String['fromCharCode'](0xff&_0x2cd5b1>>(-0x2*_0x33e739&0x6)):0x0){_0xb16f52=_0x5f5dfc['indexOf'](_0xb16f52);}return _0x4ed867;});}());_0x10f5['xXWADU']=function(_0x1d9542){var _0xb7fc5b=atob(_0x1d9542);var _0x20c29f=[];for(var _0x2f0fc4=0x0,_0x36674d=_0xb7fc5b['length'];_0x2f0fc4<_0x36674d;_0x2f0fc4++){_0x20c29f+='%'+('00'+_0xb7fc5b['charCodeAt'](_0x2f0fc4)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x20c29f);};_0x10f5['kPABVZ']={};_0x10f5['AwUvQJ']=!![];}var _0x4d1b89=_0x10f5['kPABVZ'][_0x5a0f99];if(_0x4d1b89===undefined){_0x4786f8=_0x10f5['xXWADU'](_0x4786f8);_0x10f5['kPABVZ'][_0x5a0f99]=_0x4786f8;}else{_0x4786f8=_0x4d1b89;}return _0x4786f8;};const jdCookieNode=$[_0x10f5('0')]()?require(_0x10f5('1')):'';const endTime=0x184676b5c00;$[_0x10f5('2')]=$[_0x10f5('0')]()?process[_0x10f5('3')][_0x10f5('4')]?process[_0x10f5('3')][_0x10f5('4')]:'':'';let cookiesArr=[];if($[_0x10f5('0')]()){Object[_0x10f5('5')](jdCookieNode)[_0x10f5('6')](_0x256572=>{cookiesArr[_0x10f5('7')](jdCookieNode[_0x256572]);});if(process[_0x10f5('3')][_0x10f5('8')]&&process[_0x10f5('3')][_0x10f5('8')]===_0x10f5('9'))console[_0x10f5('a')]=()=>{};}else{cookiesArr=[$[_0x10f5('b')](_0x10f5('c')),$[_0x10f5('b')](_0x10f5('d')),...$[_0x10f5('e')]($[_0x10f5('b')](_0x10f5('f'))||'[]')[_0x10f5('10')](_0x35258a=>_0x35258a[_0x10f5('11')])][_0x10f5('12')](_0x393994=>!!_0x393994);}let cookie='';$[_0x10f5('13')]='';!(async()=>{var _0xbfdc50={'PoHsn':_0x10f5('14'),'CerAP':function(_0x3e4338,_0x1687a5){return _0x3e4338===_0x1687a5;},'MgLTM':_0x10f5('15'),'nWneA':function(_0x38e813,_0x576383){return _0x38e813+_0x576383;},'klvif':_0x10f5('16'),'ZLTfV':_0x10f5('17'),'vemkK':function(_0x408900,_0x3be17a){return _0x408900(_0x3be17a);},'xdGhS':function(_0x2dfbfe,_0x2bbf96,_0x37b852){return _0x2dfbfe(_0x2bbf96,_0x37b852);},'mzZbD':_0x10f5('18')};if(!cookiesArr[0x0]){$[_0x10f5('19')]($[_0x10f5('1a')],_0xbfdc50[_0x10f5('1b')],_0x10f5('18'),{'open-url':_0x10f5('18')});return;}$[_0x10f5('1c')]=Date[_0x10f5('1d')]();if($[_0x10f5('1c')]>endTime){if(_0xbfdc50[_0x10f5('1e')](_0x10f5('1f'),_0xbfdc50[_0x10f5('20')])){$[_0x10f5('21')](e,resp);}else{console[_0x10f5('a')](_0xbfdc50[_0x10f5('22')](_0xbfdc50[_0x10f5('23')],endTime));console[_0x10f5('a')](_0xbfdc50[_0x10f5('24')]+$[_0x10f5('1c')]);return;}}const _0x262811=[_0x10f5('25')];for(let _0x189c01=0x0;_0x189c01<cookiesArr[_0x10f5('26')];_0x189c01++){if(_0xbfdc50[_0x10f5('1e')](_0x10f5('27'),_0x10f5('28'))){$[_0x10f5('21')](e,resp);}else{if(cookiesArr[_0x189c01]){cookie=cookiesArr[_0x189c01];$[_0x10f5('29')]=_0xbfdc50[_0x10f5('2a')](decodeURIComponent,cookie[_0x10f5('2b')](/pt_pin=([^; ]+)(?=;?)/)&&cookie[_0x10f5('2b')](/pt_pin=([^; ]+)(?=;?)/)[0x1]);$[_0x10f5('2c')]=_0xbfdc50[_0x10f5('22')](_0x189c01,0x1);$[_0x10f5('2d')]=!![];$[_0x10f5('2e')]='';flCode=$[_0x10f5('2')]?$[_0x10f5('2')]:_0x262811[_0xbfdc50[_0x10f5('2f')](random,0x0,_0x262811[_0x10f5('26')])];console[_0x10f5('a')](_0x10f5('30')+$[_0x10f5('2c')]+'】'+($[_0x10f5('2e')]||$[_0x10f5('29')])+_0x10f5('31'));if(!$[_0x10f5('2d')]){$[_0x10f5('19')]($[_0x10f5('1a')],_0x10f5('32'),_0x10f5('33')+$[_0x10f5('2c')]+'\x20'+($[_0x10f5('2e')]||$[_0x10f5('29')])+_0x10f5('34'),{'open-url':_0xbfdc50[_0x10f5('35')]});if($[_0x10f5('0')]()){}continue;}$[_0x10f5('36')]='';await main();}}}})()[_0x10f5('37')](_0x312292=>{$[_0x10f5('a')]('','❌\x20'+$[_0x10f5('1a')]+_0x10f5('38')+_0x312292+'!','');})[_0x10f5('39')](()=>{$[_0x10f5('3a')]();});async function main(){var _0x47cbdd={'WbDdB':function(_0x398a08,_0x549e4d){return _0x398a08(_0x549e4d);},'vnOxn':function(_0x5bae86,_0x2556f6){return _0x5bae86(_0x2556f6);},'GwSJS':function(_0x13b4ca,_0x23c5c9){return _0x13b4ca==_0x23c5c9;},'qYULw':function(_0x1b4fdd,_0x2f9cc2){return _0x1b4fdd+_0x2f9cc2;},'YEUAJ':function(_0x468fb3,_0xa0dd22){return _0x468fb3<_0xa0dd22;},'rvcPe':_0x10f5('3b'),'ngPfK':_0x10f5('3c'),'JhzCj':_0x10f5('3d'),'utgjQ':function(_0x361f8c){return _0x361f8c();},'enhfr':_0x10f5('3e'),'YdjPB':function(_0x443d6f,_0x32ae1d){return _0x443d6f+_0x32ae1d;},'eFHZO':function(_0x42698c,_0x1c0a42,_0x43b4ef){return _0x42698c(_0x1c0a42,_0x43b4ef);},'UsrQp':function(_0x591565,_0x1db8e4){return _0x591565===_0x1db8e4;},'CAQxQ':_0x10f5('3f'),'iGKAf':_0x10f5('40')};$[_0x10f5('41')]=flCode;let _0x7396c=_0x47cbdd[_0x10f5('42')](decodeURIComponent,cookie[_0x10f5('2b')](/pt_pin=(.+?);/)&&cookie[_0x10f5('2b')](/pt_pin=(.+?);/)[0x1]);$['UA']=_0x10f5('43')+_0x47cbdd[_0x10f5('42')](randomString,0x28)+_0x10f5('44');$[_0x10f5('45')]=![];$[_0x10f5('46')]=![];for(let _0x434a02=0x0;_0x47cbdd[_0x10f5('47')](_0x434a02,0x2)&&!$[_0x10f5('45')];_0x434a02++){if(_0x47cbdd[_0x10f5('48')]!==_0x47cbdd[_0x10f5('49')]){$[_0x10f5('4a')]='';$[_0x10f5('4b')]='';$[_0x10f5('4c')]='';$[_0x10f5('4d')]='';if($[_0x10f5('36')]===_0x47cbdd[_0x10f5('4e')]){continue;}await _0x47cbdd[_0x10f5('4f')](getInfo1);if(!$[_0x10f5('4b')]){console[_0x10f5('a')](_0x7396c+_0x10f5('50'));$[_0x10f5('46')]=!![];break;}await _0x47cbdd[_0x10f5('4f')](getInfo2);if(!$[_0x10f5('4c')]){if(_0x10f5('51')!==_0x10f5('52')){console[_0x10f5('a')](_0x7396c+_0x10f5('53'));$[_0x10f5('46')]=!![];break;}else{_0x47cbdd[_0x10f5('54')](resolve,data);}}$[_0x10f5('55')]=$[_0x10f5('4c')][_0x10f5('2b')](/mall\/active\/([^\/]+)\/index\.html/)&&$[_0x10f5('4c')][_0x10f5('2b')](/mall\/active\/([^\/]+)\/index\.html/)[0x1]||_0x47cbdd[_0x10f5('56')];console[_0x10f5('a')](_0x47cbdd[_0x10f5('57')](_0x10f5('58'),$[_0x10f5('55')]));let _0x4d9e00=await _0x47cbdd[_0x10f5('59')](getBody,$['UA'],$[_0x10f5('4c')]);await getEid(_0x4d9e00);if($[_0x10f5('4d')]){if(_0x47cbdd[_0x10f5('5a')](_0x434a02,0x0)&&$[_0x10f5('13')]){if(_0x47cbdd[_0x10f5('5a')](_0x47cbdd[_0x10f5('5b')],_0x47cbdd[_0x10f5('5c')])){_0x47cbdd[_0x10f5('42')](resolve,data);}else{await getCoupons($[_0x10f5('13')]);}}else{await _0x47cbdd[_0x10f5('42')](getCoupons,'');}}}else{let _0x462a4d=ck[_0x10f5('5d')](';')[0x0][_0x10f5('5e')]();if(_0x462a4d[_0x10f5('5d')]('=')[0x1]){if(_0x47cbdd[_0x10f5('5f')]($[_0x10f5('4a')][_0x10f5('60')](_0x462a4d[_0x10f5('5d')]('=')[0x1]),-0x1))$[_0x10f5('4a')]+=_0x47cbdd[_0x10f5('61')](_0x462a4d[_0x10f5('62')](/ /g,''),';\x20');}}}}function getEid(_0x1979e1){var _0x3de12e={'GOFHa':function(_0xab22f9,_0x52dd69){return _0xab22f9!==_0x52dd69;},'LJiFT':_0x10f5('63'),'xHeLE':function(_0x1b5c98,_0xce6a20){return _0x1b5c98!==_0xce6a20;},'MakfJ':_0x10f5('64'),'vWydR':function(_0x53c890,_0x1e66ba){return _0x53c890>_0x1e66ba;},'HfYPe':_0x10f5('65'),'imwSK':_0x10f5('66'),'nlJwr':_0x10f5('67'),'FlmYr':function(_0x43fea6,_0x1ef31c){return _0x43fea6(_0x1ef31c);},'NEDHU':function(_0x39308a,_0x392c82){return _0x39308a-_0x392c82;},'zGuGU':function(_0x5f0b28,_0x24d095){return _0x5f0b28(_0x24d095);},'pOqdO':function(_0x405340,_0x4d99d7){return _0x405340===_0x4d99d7;},'peHfe':_0x10f5('68')};return new Promise(_0x2b086e=>{var _0x2c3ebb={'OJvFy':function(_0x56365c,_0xfafa5){return _0x56365c+_0xfafa5;},'DFqlK':function(_0x4fcf08,_0x367e29){return _0x3de12e[_0x10f5('69')](_0x4fcf08,_0x367e29);},'XYukB':function(_0x30bdfb,_0x5b2da1){return _0x3de12e[_0x10f5('6a')](_0x30bdfb,_0x5b2da1);},'YDkrA':_0x10f5('6b')};if(_0x3de12e[_0x10f5('6c')](_0x10f5('6d'),_0x10f5('6e'))){return _0x2c3ebb[_0x10f5('6f')](Math[_0x10f5('70')](Math[_0x10f5('71')]()*_0x2c3ebb[_0x10f5('72')](max,min)),min);}else{const _0x4c663c={'url':_0x10f5('73')+_0x1979e1['a'],'body':'d='+_0x1979e1['d'],'headers':{'Content-Type':_0x3de12e[_0x10f5('74')],'User-Agent':$['UA']}};$[_0x10f5('75')](_0x4c663c,async(_0x59c9a2,_0x49069f,_0x3054d8)=>{if(_0x3de12e[_0x10f5('76')](_0x3de12e[_0x10f5('77')],_0x3de12e[_0x10f5('77')])){_0x2c3ebb[_0x10f5('78')](_0x2b086e,_0x3054d8);}else{try{if(_0x3de12e[_0x10f5('79')](_0x3de12e[_0x10f5('7a')],_0x3de12e[_0x10f5('7a')])){console[_0x10f5('a')](''+$[_0x10f5('7b')](_0x59c9a2));console[_0x10f5('a')]($[_0x10f5('1a')]+_0x10f5('7c'));}else{if(_0x59c9a2){throw new Error(_0x59c9a2);}else{if(_0x3de12e[_0x10f5('7d')](_0x3054d8[_0x10f5('60')](_0x3de12e[_0x10f5('7e')]),0x0)){_0x3054d8=_0x3054d8[_0x10f5('5d')](_0x10f5('65'),0x2);_0x3054d8=JSON[_0x10f5('7f')](_0x3054d8[0x1]);$[_0x10f5('4d')]=_0x3054d8[_0x10f5('4d')];}else{if(_0x3de12e[_0x10f5('79')](_0x3de12e[_0x10f5('80')],_0x10f5('66'))){if(typeof setcookies!=_0x2c3ebb[_0x10f5('81')]){setcookie=setcookies[_0x10f5('5d')](',');}else setcookie=setcookies;for(let _0x4eadab of setcookie){let _0x20194b=_0x4eadab[_0x10f5('5d')](';')[0x0][_0x10f5('5e')]();if(_0x20194b[_0x10f5('5d')]('=')[0x1]){if($[_0x10f5('4a')][_0x10f5('60')](_0x20194b[_0x10f5('5d')]('=')[0x1])==-0x1)$[_0x10f5('4a')]+=_0x20194b[_0x10f5('62')](/ /g,'')+';\x20';}}}else{console[_0x10f5('a')](_0x10f5('82'));}}}}}catch(_0x299669){if(_0x10f5('67')!==_0x3de12e[_0x10f5('83')]){_0x3054d8=_0x3054d8[_0x10f5('5d')](_0x10f5('65'),0x2);_0x3054d8=JSON[_0x10f5('7f')](_0x3054d8[0x1]);$[_0x10f5('4d')]=_0x3054d8[_0x10f5('4d')];}else{$[_0x10f5('21')](_0x299669,_0x49069f);}}finally{_0x3de12e[_0x10f5('84')](_0x2b086e,_0x3054d8);}}});}});}function randomString(_0x1b1e34){var _0x22102e={'cVWRL':_0x10f5('85'),'KfpSN':function(_0x59c955,_0x4080ce){return _0x59c955<_0x4080ce;},'gyyQt':function(_0x2e1017,_0x5eb074){return _0x2e1017*_0x5eb074;}};_0x1b1e34=_0x1b1e34||0x20;let _0xaabe52=_0x22102e[_0x10f5('86')],_0x553e68=_0xaabe52[_0x10f5('26')],_0x28a44e='';for(i=0x0;_0x22102e[_0x10f5('87')](i,_0x1b1e34);i++)_0x28a44e+=_0xaabe52[_0x10f5('88')](Math[_0x10f5('70')](_0x22102e[_0x10f5('89')](Math[_0x10f5('71')](),_0x553e68)));return _0x28a44e;}function random(_0x5031fe,_0x81e38){var _0x5f4c1f={'DoQSA':function(_0x342e2f,_0x2190ef){return _0x342e2f+_0x2190ef;},'lSkEa':function(_0x36b65f,_0x344572){return _0x36b65f-_0x344572;}};return _0x5f4c1f[_0x10f5('8a')](Math[_0x10f5('70')](Math[_0x10f5('71')]()*_0x5f4c1f[_0x10f5('8b')](_0x81e38,_0x5031fe)),_0x5031fe);}async function getCoupons(_0x10b6b3){var _0x2c0dc6={'ADRXc':function(_0x1467ce,_0x5b3514){return _0x1467ce+_0x5b3514;},'sqClV':_0x10f5('16'),'kxcdJ':_0x10f5('17'),'MPkHI':function(_0xdf554f,_0x55aa08){return _0xdf554f==_0x55aa08;},'QTjtJ':function(_0x29dd6e,_0x30028a){return _0x29dd6e+_0x30028a;},'dWhGO':_0x10f5('8c'),'RAoPc':_0x10f5('6b'),'pdper':function(_0xe7912a,_0x1f23d8){return _0xe7912a!==_0x1f23d8;},'ZCRiy':_0x10f5('8d'),'tHoSi':_0x10f5('8e'),'zQaiE':_0x10f5('8f'),'uLVfz':function(_0x3a0a0e,_0x2341ff){return _0x3a0a0e*_0x2341ff;},'QnTjA':_0x10f5('90'),'rEAtM':_0x10f5('91'),'tGLsB':function(_0x8d233a,_0x11819e){return _0x8d233a!==_0x11819e;},'TSxfo':_0x10f5('92'),'yauOt':function(_0x3d4459,_0x29bb3e){return _0x3d4459!==_0x29bb3e;},'TErZK':_0x10f5('93'),'ljNhN':_0x10f5('94'),'HbyMC':_0x10f5('95'),'iGFoo':_0x10f5('96'),'GMYYS':_0x10f5('97'),'iEpXI':function(_0x357b6e,_0x47177c){return _0x357b6e(_0x47177c);},'HTMet':_0x10f5('98')};return new Promise(async _0x401c8b=>{var _0x38a23b={'TYcAp':function(_0x1c098e,_0x3c7f52){return _0x1c098e<_0x3c7f52;},'Gzzus':function(_0x3e0735,_0x544f4e){return _0x3e0735!=_0x544f4e;},'ATvdb':function(_0x45f12f,_0x44561b){return _0x2c0dc6[_0x10f5('99')](_0x45f12f,_0x44561b);},'fMfwO':function(_0x334bfe,_0x43e13b){return _0x2c0dc6[_0x10f5('9a')](_0x334bfe,_0x43e13b);},'GufVH':function(_0x1d1426,_0x4132ce){return _0x1d1426!==_0x4132ce;},'LEIne':_0x2c0dc6[_0x10f5('9b')],'uZBYM':_0x2c0dc6[_0x10f5('9c')],'surEr':function(_0x44cc9d,_0x3ea254){return _0x2c0dc6[_0x10f5('9d')](_0x44cc9d,_0x3ea254);},'QJjtn':_0x2c0dc6[_0x10f5('9e')],'xviik':function(_0xa56727,_0x2270f8){return _0x2c0dc6[_0x10f5('9d')](_0xa56727,_0x2270f8);},'piGVg':_0x10f5('9f'),'sqigH':function(_0x8507ef,_0x215374){return _0x8507ef===_0x215374;},'dpdxV':_0x2c0dc6[_0x10f5('a0')],'WAHxO':function(_0x2a7599,_0x3ca8e7){return _0x2c0dc6[_0x10f5('99')](_0x2a7599,_0x3ca8e7);},'UtJZj':_0x2c0dc6[_0x10f5('a1')],'wtGay':function(_0x181c90,_0x550f78){return _0x2c0dc6[_0x10f5('a2')](_0x181c90,_0x550f78);},'rZnoI':_0x2c0dc6[_0x10f5('a3')],'MgIXN':_0x2c0dc6[_0x10f5('a4')],'PSuck':function(_0x50c8be,_0x5e96fc){return _0x2c0dc6[_0x10f5('a5')](_0x50c8be,_0x5e96fc);},'aYAdh':_0x2c0dc6[_0x10f5('a6')]};if(_0x2c0dc6[_0x10f5('a7')](_0x10f5('93'),_0x2c0dc6[_0x10f5('a8')])){console[_0x10f5('a')](_0x2c0dc6[_0x10f5('a9')](_0x2c0dc6[_0x10f5('aa')],endTime));console[_0x10f5('a')](_0x2c0dc6[_0x10f5('ab')]+$[_0x10f5('1c')]);return;}else{const _0x418185={'platform':0x1,'unionActId':_0x2c0dc6[_0x10f5('ac')],'actId':$[_0x10f5('55')],'d':$[_0x10f5('41')],'unionShareId':_0x10b6b3,'type':0x1,'eid':$[_0x10f5('4d')]};const _0x10e390={'appid':'u','functionId':_0x2c0dc6[_0x10f5('ad')],'client':_0x2c0dc6[_0x10f5('ae')],'clientVersion':_0x10f5('af'),'body':_0x418185};const _0x42d96d=await getH5st(_0x2c0dc6[_0x10f5('b0')],_0x10e390);let _0x203baa={'url':_0x10f5('b1')+_0x10e390[_0x10f5('b2')]+_0x10f5('b3')+_0x10e390[_0x10f5('b4')]+_0x10f5('b5')+Date[_0x10f5('1d')]()+_0x10f5('b6')+_0x2c0dc6[_0x10f5('b7')](encodeURIComponent,JSON[_0x10f5('b8')](_0x418185))+_0x10f5('b9')+_0x10e390[_0x10f5('ba')]+_0x10f5('bb')+_0x10e390[_0x10f5('bc')]+_0x10f5('bd')+encodeURIComponent(_0x42d96d),'headers':{'Accept-Language':_0x2c0dc6[_0x10f5('be')],'Accept-Encoding':_0x10f5('bf'),'Cookie':cookie+'\x20'+$[_0x10f5('4a')],'user-agent':$['UA']}};$[_0x10f5('c0')](_0x203baa,async(_0x33778d,_0x52aa01,_0x194210)=>{var _0x3b89de={'JkclE':function(_0x291673,_0xcc39d7){return _0x291673||_0xcc39d7;},'eOlZR':_0x10f5('85'),'XfkRr':function(_0x315c23,_0x1c990a){return _0x38a23b[_0x10f5('c1')](_0x315c23,_0x1c990a);},'cqGcJ':function(_0x44f41a,_0x4b4987){return _0x44f41a*_0x4b4987;},'dCQnt':function(_0x1339f9,_0x3c6374){return _0x38a23b[_0x10f5('c2')](_0x1339f9,_0x3c6374);},'xEfOP':_0x10f5('6b'),'lPFPo':function(_0x143a7e,_0x513d3d){return _0x38a23b[_0x10f5('c3')](_0x143a7e,_0x513d3d);},'RjJsT':function(_0x2a8a0f,_0x5708cc){return _0x38a23b[_0x10f5('c4')](_0x2a8a0f,_0x5708cc);}};if(_0x38a23b[_0x10f5('c5')](_0x38a23b[_0x10f5('c6')],_0x38a23b[_0x10f5('c6')])){e=_0x3b89de[_0x10f5('c7')](e,0x20);let _0xd112a8=_0x3b89de[_0x10f5('c8')],_0x5c1ebe=_0xd112a8[_0x10f5('26')],_0x1c6bdf='';for(i=0x0;_0x3b89de[_0x10f5('c9')](i,e);i++)_0x1c6bdf+=_0xd112a8[_0x10f5('88')](Math[_0x10f5('70')](_0x3b89de[_0x10f5('ca')](Math[_0x10f5('71')](),_0x5c1ebe)));return _0x1c6bdf;}else{try{if(_0x33778d){console[_0x10f5('a')](''+$[_0x10f5('7b')](_0x33778d));console[_0x10f5('a')]($[_0x10f5('1a')]+_0x10f5('7c'));}else{let _0x1ff0f1=$[_0x10f5('e')](_0x194210,_0x194210);if(_0x38a23b[_0x10f5('c3')](typeof _0x1ff0f1,_0x38a23b[_0x10f5('cb')])){if(_0x38a23b[_0x10f5('cc')](_0x38a23b[_0x10f5('cd')],_0x38a23b[_0x10f5('cd')])){$[_0x10f5('3a')]();}else{if(_0x1ff0f1[_0x10f5('19')]){console[_0x10f5('a')](_0x10f5('ce')+_0x1ff0f1[_0x10f5('19')]);$[_0x10f5('36')]=_0x1ff0f1[_0x10f5('19')];}if(_0x38a23b[_0x10f5('cc')](_0x1ff0f1[_0x10f5('19')][_0x10f5('60')]('上限'),-0x1)){$[_0x10f5('45')]=!![];}if($[_0x10f5('cf')]&&_0x38a23b[_0x10f5('d0')](typeof _0x1ff0f1[_0x10f5('d1')],_0x10f5('9f'))&&_0x38a23b[_0x10f5('d0')](typeof _0x1ff0f1[_0x10f5('d1')][_0x10f5('d2')],_0x38a23b[_0x10f5('d3')])){console[_0x10f5('a')]('当前'+_0x1ff0f1[_0x10f5('d1')][_0x10f5('d4')]+':'+_0x1ff0f1[_0x10f5('d1')][_0x10f5('d2')]);}if(_0x1ff0f1[_0x10f5('41')]==0x0&&_0x1ff0f1[_0x10f5('d1')]){if(_0x38a23b[_0x10f5('d5')](_0x38a23b[_0x10f5('d6')],_0x38a23b[_0x10f5('d6')])){if(_0x1ff0f1[_0x10f5('d1')][_0x10f5('d7')]==0x1){console[_0x10f5('a')](_0x10f5('d8')+_0x1ff0f1[_0x10f5('d1')][_0x10f5('d9')]+'元');}else if(_0x38a23b[_0x10f5('da')](_0x1ff0f1[_0x10f5('d1')][_0x10f5('d7')],0x3)){if(_0x38a23b[_0x10f5('d5')](_0x10f5('8f'),_0x38a23b[_0x10f5('db')])){console[_0x10f5('a')](_0x10f5('dc')+_0x1ff0f1[_0x10f5('d1')][_0x10f5('dd')]+'减'+_0x1ff0f1[_0x10f5('d1')][_0x10f5('d9')]);}else{console[_0x10f5('a')](_0x10f5('dc')+_0x1ff0f1[_0x10f5('d1')][_0x10f5('dd')]+'减'+_0x1ff0f1[_0x10f5('d1')][_0x10f5('d9')]);}}else if(_0x38a23b[_0x10f5('da')](_0x1ff0f1[_0x10f5('d1')][_0x10f5('d7')],0x6)){console[_0x10f5('a')](_0x10f5('de')+_0x1ff0f1[_0x10f5('d1')][_0x10f5('dd')]+'打'+_0x38a23b[_0x10f5('df')](_0x1ff0f1[_0x10f5('d1')][_0x10f5('d9')],0xa)+'折');}else{if(_0x38a23b[_0x10f5('d0')](_0x38a23b[_0x10f5('e0')],_0x10f5('e1'))){console[_0x10f5('a')](_0x10f5('e2')+(_0x1ff0f1[_0x10f5('d1')][_0x10f5('dd')]||'')+'\x20'+_0x1ff0f1[_0x10f5('d1')][_0x10f5('d9')]);console[_0x10f5('a')](_0x194210);}else{if(_0x3b89de[_0x10f5('e3')](typeof setcookies,_0x3b89de[_0x10f5('e4')])){setcookie=setcookies[_0x10f5('5d')](',');}else setcookie=setcookies;for(let _0x1c76a1 of setcookie){let _0xf06e7a=_0x1c76a1[_0x10f5('5d')](';')[0x0][_0x10f5('5e')]();if(_0xf06e7a[_0x10f5('5d')]('=')[0x1]){if(_0x3b89de[_0x10f5('e5')]($[_0x10f5('4a')][_0x10f5('60')](_0xf06e7a[_0x10f5('5d')]('=')[0x1]),-0x1))$[_0x10f5('4a')]+=_0x3b89de[_0x10f5('e6')](_0xf06e7a[_0x10f5('62')](/ /g,''),';\x20');}}}}}else{console[_0x10f5('a')](_0x10f5('ce')+_0x1ff0f1[_0x10f5('19')]);$[_0x10f5('36')]=_0x1ff0f1[_0x10f5('19')];}}}}else{if(_0x38a23b[_0x10f5('e7')]===_0x38a23b[_0x10f5('e7')]){console[_0x10f5('a')](_0x194210);}else{console[_0x10f5('a')]('当前'+_0x1ff0f1[_0x10f5('d1')][_0x10f5('d4')]+':'+_0x1ff0f1[_0x10f5('d1')][_0x10f5('d2')]);}}}}catch(_0x5464d8){$[_0x10f5('21')](_0x5464d8,_0x52aa01);}finally{if(_0x38a23b[_0x10f5('e8')](_0x10f5('92'),_0x38a23b[_0x10f5('e9')])){console[_0x10f5('a')](_0x10f5('de')+res[_0x10f5('d1')][_0x10f5('dd')]+'打'+res[_0x10f5('d1')][_0x10f5('d9')]*0xa+'折');}else{_0x401c8b();}}}});}});}async function getInfo2(){var _0x12a373={'kBjCw':function(_0x5055da,_0x5b84df){return _0x5055da==_0x5b84df;},'MPQtx':function(_0x105d49,_0x24eccf){return _0x105d49+_0x24eccf;},'BCAkN':_0x10f5('ea'),'bezjs':_0x10f5('eb'),'xzWMf':_0x10f5('ec'),'QronP':_0x10f5('ed'),'zDxcj':_0x10f5('ee'),'tVHJF':_0x10f5('ef'),'WOJeK':_0x10f5('f0'),'zOUCG':function(_0x2200fa,_0x2b66aa){return _0x2200fa(_0x2b66aa);},'VmFxn':function(_0x5da1e3,_0x525021){return _0x5da1e3!==_0x525021;}};return new Promise(_0x3550ed=>{var _0x43dbbf={'ezXMq':function(_0x219ffa,_0x252e1e){return _0x219ffa>_0x252e1e;},'lwFdF':_0x10f5('65'),'Qqoiz':function(_0x26522a,_0x5cf48c){return _0x12a373[_0x10f5('f1')](_0x26522a,_0x5cf48c);},'RwuDg':function(_0x24674c,_0x5b9622){return _0x12a373[_0x10f5('f2')](_0x24674c,_0x5b9622);},'WLQpN':function(_0x200626){return _0x200626();},'QREry':_0x12a373[_0x10f5('f3')],'WvQVa':_0x12a373[_0x10f5('f4')],'cAAjZ':_0x12a373[_0x10f5('f5')],'fRjsk':function(_0x5eac70,_0x26f6e4){return _0x5eac70!==_0x26f6e4;},'VntLn':_0x12a373[_0x10f5('f6')],'LWvvM':_0x12a373[_0x10f5('f7')],'uVDZg':_0x12a373[_0x10f5('f8')],'FjlIM':_0x12a373[_0x10f5('f9')],'VXzHv':function(_0x33f892,_0x48ed01){return _0x12a373[_0x10f5('fa')](_0x33f892,_0x48ed01);},'oIXDS':function(_0x21836f,_0x13dcdc){return _0x12a373[_0x10f5('fb')](_0x21836f,_0x13dcdc);},'vNsxN':_0x10f5('fc')};const _0xed91d7={'url':$[_0x10f5('4b')],'followRedirect':![],'headers':{'Cookie':cookie+'\x20'+$[_0x10f5('4a')],'user-agent':$['UA']}};$[_0x10f5('c0')](_0xed91d7,async(_0x5b625d,_0x33af8f,_0x1df896)=>{var _0x1e435c={'tGZlF':function(_0x123d21){return _0x43dbbf[_0x10f5('fd')](_0x123d21);}};try{let _0xe2f09=_0x33af8f&&_0x33af8f[_0x43dbbf[_0x10f5('fe')]]&&(_0x33af8f[_0x43dbbf[_0x10f5('fe')]][_0x43dbbf[_0x10f5('ff')]]||_0x33af8f[_0x43dbbf[_0x10f5('fe')]][_0x43dbbf[_0x10f5('100')]]||'')||'';let _0x3fdc6a='';if(_0xe2f09){if(_0x43dbbf[_0x10f5('101')](_0x43dbbf[_0x10f5('102')],_0x43dbbf[_0x10f5('103')])){if(typeof _0xe2f09!=_0x10f5('6b')){_0x3fdc6a=_0xe2f09[_0x10f5('5d')](',');}else _0x3fdc6a=_0xe2f09;for(let _0xd8fa77 of _0x3fdc6a){if(_0x10f5('ef')!==_0x43dbbf[_0x10f5('104')]){if(_0x43dbbf[_0x10f5('105')](_0x1df896[_0x10f5('60')](_0x43dbbf[_0x10f5('106')]),0x0)){_0x1df896=_0x1df896[_0x10f5('5d')](_0x43dbbf[_0x10f5('106')],0x2);_0x1df896=JSON[_0x10f5('7f')](_0x1df896[0x1]);$[_0x10f5('4d')]=_0x1df896[_0x10f5('4d')];}else{console[_0x10f5('a')](_0x10f5('82'));}}else{let _0x199fec=_0xd8fa77[_0x10f5('5d')](';')[0x0][_0x10f5('5e')]();if(_0x199fec[_0x10f5('5d')]('=')[0x1]){if($[_0x10f5('4a')][_0x10f5('60')](_0x199fec[_0x10f5('5d')]('=')[0x1])==-0x1)$[_0x10f5('4a')]+=_0x199fec[_0x10f5('62')](/ /g,'')+';\x20';}}}}else{let _0x5c7afd=ck[_0x10f5('5d')](';')[0x0][_0x10f5('5e')]();if(_0x5c7afd[_0x10f5('5d')]('=')[0x1]){if(_0x43dbbf[_0x10f5('107')]($[_0x10f5('4a')][_0x10f5('60')](_0x5c7afd[_0x10f5('5d')]('=')[0x1]),-0x1))$[_0x10f5('4a')]+=_0x43dbbf[_0x10f5('108')](_0x5c7afd[_0x10f5('62')](/ /g,''),';\x20');}}}$[_0x10f5('4c')]=_0x33af8f&&_0x33af8f[_0x43dbbf[_0x10f5('fe')]]&&(_0x33af8f[_0x43dbbf[_0x10f5('fe')]][_0x43dbbf[_0x10f5('109')]]||_0x33af8f[_0x43dbbf[_0x10f5('fe')]][_0x10f5('10a')]||'')||'';$[_0x10f5('4c')]=_0x43dbbf[_0x10f5('10b')](decodeURIComponent,$[_0x10f5('4c')]);$[_0x10f5('4c')]=$[_0x10f5('4c')][_0x10f5('2b')](/(https:\/\/prodev\.m\.jd\.com\/mall[^'"]+)/)&&$[_0x10f5('4c')][_0x10f5('2b')](/(https:\/\/prodev\.m\.jd\.com\/mall[^'"]+)/)[0x1]||'';}catch(_0x3aca54){if(_0x43dbbf[_0x10f5('10c')](_0x43dbbf[_0x10f5('10d')],_0x43dbbf[_0x10f5('10d')])){_0x1e435c[_0x10f5('10e')](_0x3550ed);}else{$[_0x10f5('21')](_0x3aca54,_0x33af8f);}}finally{_0x43dbbf[_0x10f5('10b')](_0x3550ed,_0x1df896);}});});}async function getInfo1(){var _0x3ec2b5={'aJwJN':function(_0x4c819f,_0x5ca893){return _0x4c819f===_0x5ca893;},'mqaKs':_0x10f5('10f'),'lBHcU':_0x10f5('110'),'XewRH':_0x10f5('ea'),'eRSLu':_0x10f5('eb'),'JLliP':function(_0x4cf7c7,_0x37cdb2){return _0x4cf7c7!==_0x37cdb2;},'RXYXN':_0x10f5('111'),'Lzuso':_0x10f5('112'),'WpQgW':function(_0x563ebb,_0x41ae92){return _0x563ebb!=_0x41ae92;},'UpIgs':_0x10f5('6b'),'FJEZT':function(_0x381826,_0x32d8ef){return _0x381826==_0x32d8ef;},'nxMMD':function(_0x4ca0d0,_0x16d8f0){return _0x4ca0d0!==_0x16d8f0;},'wOVGG':_0x10f5('113'),'WfTED':_0x10f5('114')};return new Promise(_0x5975b4=>{var _0x16364b={'NZrmE':function(_0x27a08b,_0xc01fb4){return _0x3ec2b5[_0x10f5('115')](_0x27a08b,_0xc01fb4);}};const _0x4b1cc3={'url':_0x10f5('116')+$[_0x10f5('41')]+_0x10f5('117')+$[_0x10f5('13')],'followRedirect':![],'headers':{'Cookie':cookie,'user-agent':$['UA']}};$[_0x10f5('c0')](_0x4b1cc3,async(_0x572d51,_0x16c447,_0x191bb)=>{if(_0x3ec2b5[_0x10f5('118')](_0x3ec2b5[_0x10f5('119')],_0x3ec2b5[_0x10f5('11a')])){if(_0x16364b[_0x10f5('11b')]($[_0x10f5('4a')][_0x10f5('60')](name[_0x10f5('5d')]('=')[0x1]),-0x1))$[_0x10f5('4a')]+=name[_0x10f5('62')](/ /g,'')+';\x20';}else{try{let _0x1e0b1a=_0x16c447&&_0x16c447[_0x3ec2b5[_0x10f5('11c')]]&&(_0x16c447[_0x3ec2b5[_0x10f5('11c')]][_0x3ec2b5[_0x10f5('11d')]]||_0x16c447[_0x10f5('ea')][_0x10f5('ec')]||'')||'';let _0x22df65='';if(_0x1e0b1a){if(_0x3ec2b5[_0x10f5('11e')](_0x3ec2b5[_0x10f5('11f')],_0x3ec2b5[_0x10f5('120')])){if(_0x3ec2b5[_0x10f5('121')](typeof _0x1e0b1a,_0x3ec2b5[_0x10f5('122')])){_0x22df65=_0x1e0b1a[_0x10f5('5d')](',');}else _0x22df65=_0x1e0b1a;for(let _0x2538ae of _0x22df65){let _0x26fef7=_0x2538ae[_0x10f5('5d')](';')[0x0][_0x10f5('5e')]();if(_0x26fef7[_0x10f5('5d')]('=')[0x1]){if(_0x3ec2b5[_0x10f5('115')]($[_0x10f5('4a')][_0x10f5('60')](_0x26fef7[_0x10f5('5d')]('=')[0x1]),-0x1))$[_0x10f5('4a')]+=_0x26fef7[_0x10f5('62')](/ /g,'')+';\x20';}}}else{$[_0x10f5('45')]=!![];}}$[_0x10f5('4b')]=_0x191bb[_0x10f5('2b')](/(https:\/\/u\.jd\.com\/jda[^']+)/)&&_0x191bb[_0x10f5('2b')](/(https:\/\/u\.jd\.com\/jda[^']+)/)[0x1]||'';}catch(_0x544f55){$[_0x10f5('21')](_0x544f55,_0x16c447);}finally{if(_0x3ec2b5[_0x10f5('123')](_0x3ec2b5[_0x10f5('124')],_0x3ec2b5[_0x10f5('125')])){_0x5975b4(_0x191bb);}else{console[_0x10f5('a')](_0x10f5('82'));}}}});});};_0xodi='jsjiami.com.v6';
const navigator = {
userAgent: require('./USER_AGENTS').USER_AGENT,
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/3BbAVGQPDd6vTyHYjmAutXrKAos6/index.html",
"origin": "https://prodev.m.jd.com",
"protocol": "https:",
"host": "prodev.m.jd.com",
"hostname": "prodev.m.jd.com",
"port": "",
"pathname": "/mall/active/3BbAVGQPDd6vTyHYjmAutXrKAos6/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([-.2, -.9, 0, .4, -.26, 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; m < a; m++)
switch (g[m]) {
case "x":
g[m] = t.floor(16 * t.random()).toString(16);
break;
case "y":
g[m] = (t.floor(4 * t.random()) + 8).toString(16)
}
return g.join("")
}
});
var y = v.enc = {},
n = y.Hex = {
stringify: function (g) {
var m = g.words;
g = g.sigBytes;
var a = [];
for (var b = 0; b < g; b++) {
var c = m[b >>> 2] >>> 24 - b % 4 * 8 & 255;
a.push((c >>> 4).toString(16));
a.push((c & 15).toString(16))
}
return a.join("")
},
parse: function (g) {
for (var m = g.length, a = [], b = 0; b < m; b += 2) a[b >>> 3] |= parseInt(g.substr(b, 2), 16) <<
24 - b % 8 * 4;
return new A.init(a, m / 2)
}
},
e = y.Latin1 = {
stringify: function (g) {
var m = g.words;
g = g.sigBytes;
for (var a = [], b = 0; b < g; b++) a.push(String.fromCharCode(m[b >>> 2] >>> 24 - b % 4 * 8 &
255));
return a.join("")
},
parse: function (g) {
for (var m = g.length, a = [], b = 0; b < m; b++) a[b >>> 2] |= (g.charCodeAt(b) & 255) << 24 -
b % 4 * 8;
return new A.init(a, m)
}
},
f = y.Utf8 = {
stringify: function (g) {
try {
return decodeURIComponent(escape(e.stringify(g)))
} catch (m) {
throw Error("Malformed UTF-8 data");
}
},
parse: function (g) {
return e.parse(unescape(encodeURIComponent(g)))
}
},
r = x.BufferedBlockAlgorithm = w.extend({
reset: function () {
this._data = new A.init;
this._nDataBytes = 0
},
_append: function (g) {
"string" == typeof g && (g = f.parse(g));
this._data.concat(g);
this._nDataBytes += g.sigBytes
},
_process: function (g) {
var m = this._data,
a = m.words,
b = m.sigBytes,
c = this.blockSize,
l = b / (4 * c);
l = g ? t.ceil(l) : t.max((l | 0) - this._minBufferSize, 0);
g = l * c;
b = t.min(4 * g, b);
if (g) {
for (var h = 0; h < g; h += c) this._doProcessBlock(a, h);
h = a.splice(0, g);
m.sigBytes -= b
}
return new A.init(h, b)
},
clone: function () {
var g = w.clone.call(this);
g._data = this._data.clone();
return g
},
_minBufferSize: 0
});
x.Hasher = r.extend({
cfg: w.extend(),
init: function (g) {
this.cfg = this.cfg.extend(g);
this.reset()
},
reset: function () {
r.reset.call(this);
this._doReset()
},
update: function (g) {
this._append(g);
this._process();
return this
},
finalize: function (g) {
g && this._append(g);
return this._doFinalize()
},
blockSize: 16,
_createHelper: function (g) {
return function (m, a) {
return (new g.init(a)).finalize(m)
}
},
_createHmacHelper: function (g) {
return function (m, a) {
return (new k.HMAC.init(g, a)).finalize(m)
}
}
});
var k = v.algo = {};
v.channel = {};
return v
}(Math);
JDDSecCryptoJS.lib.Cipher || function (t) {
var u = JDDSecCryptoJS,
v = u.lib,
x = v.Base,
w = v.WordArray,
A = v.BufferedBlockAlgorithm,
y = v.Cipher = A.extend({
cfg: x.extend(),
createEncryptor: function (g, m) {
return this.create(this._ENC_XFORM_MODE, g, m)
},
createDecryptor: function (g, m) {
return this.create(this._DEC_XFORM_MODE, g, m)
},
init: function (g, m, a) {
this.cfg = this.cfg.extend(a);
this._xformMode = g;
this._key = m;
this.reset()
},
reset: function () {
A.reset.call(this);
this._doReset()
},
process: function (g) {
this._append(g);
return this._process()
},
finalize: function (g) {
g && this._append(g);
return this._doFinalize()
},
keySize: 4,
ivSize: 4,
_ENC_XFORM_MODE: 1,
_DEC_XFORM_MODE: 2,
_createHelper: function () {
function g(m) {
if ("string" != typeof m) return k
}
return function (m) {
return {
encrypt: function (a, b, c) {
return g(b).encrypt(m, a, b, c)
},
decrypt: function (a, b, c) {
return g(b).decrypt(m, a, b, c)
}
}
}
}()
});
v.StreamCipher = y.extend({
_doFinalize: function () {
return this._process(!0)
},
blockSize: 1
});
var n = u.mode = {},
e = v.BlockCipherMode = x.extend({
createEncryptor: function (g, m) {
return this.Encryptor.create(g, m)
},
createDecryptor: function (g, m) {
return this.Decryptor.create(g, m)
},
init: function (g, m) {
this._cipher = g;
this._iv = m
}
});
n = n.CBC = function () {
function g(a, b, c) {
var l = this._iv;
l ? this._iv = t : l = this._prevBlock;
for (var h = 0; h < c; h++) a[b + h] ^= l[h]
}
var m = e.extend();
m.Encryptor = m.extend({
processBlock: function (a, b) {
var c = this._cipher,
l = c.blockSize;
g.call(this, a, b, l);
c.encryptBlock(a, b);
this._prevBlock = a.slice(b, b + l)
}
});
m.Decryptor = m.extend({
processBlock: function (a, b) {
var c = this._cipher,
l = c.blockSize,
h = a.slice(b, b + l);
c.decryptBlock(a, b);
g.call(this, a, b, l);
this._prevBlock = h
}
});
return m
}();
var f = (u.pad = {}).Pkcs7 = {
pad: function (g, m) {