-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBMpostInstall-v2.1.sh.x.c
1488 lines (1422 loc) · 70.4 KB
/
BMpostInstall-v2.1.sh.x.c
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
#if 0
shc Version 4.0.3, Generic Shell Script Compiler
GNU GPL Version 3 Md Jahidul Hamid <[email protected]>
shc -f BMpostInstall-v2.1.sh -o install_v2.1
#endif
static char data [] =
#define text_z 11833
#define text ((&data[574]))
"\073\231\214\022\165\105\135\121\233\034\105\134\320\300\354\307"
"\076\006\013\033\372\056\025\272\307\072\174\002\204\322\345\116"
"\126\344\351\013\016\145\325\314\136\056\266\162\032\150\171\135"
"\254\315\145\212\235\103\025\350\310\343\326\226\277\036\302\102"
"\166\222\171\126\304\073\370\133\026\323\015\045\122\040\324\267"
"\361\025\375\027\273\235\307\014\142\327\126\220\316\300\313\112"
"\156\334\365\001\063\332\127\005\123\137\175\114\071\142\163\325"
"\303\252\301\340\257\025\355\370\063\224\334\220\213\135\372\041"
"\377\034\053\024\303\163\076\250\252\337\147\335\205\327\237\030"
"\347\122\131\101\021\002\126\257\176\262\072\056\060\254\337\270"
"\367\076\363\134\231\325\117\263\110\146\164\112\305\141\057\157"
"\301\230\250\233\077\111\233\317\170\140\125\146\065\012\123\254"
"\262\021\050\301\073\160\116\172\116\263\277\150\004\372\060\034"
"\277\154\232\003\373\006\131\344\347\143\003\301\274\170\370\326"
"\340\151\162\202\064\102\145\366\323\370\021\365\356\006\060\377"
"\167\000\007\163\265\003\134\017\060\367\143\011\320\321\061\000"
"\060\074\067\077\271\075\323\205\066\047\345\033\323\337\117\002"
"\171\160\276\163\102\343\052\163\017\107\143\200\011\337\156\160"
"\274\270\121\272\076\275\046\363\047\250\364\351\073\256\174\304"
"\214\050\106\353\137\331\266\221\326\101\033\042\367\300\252\217"
"\121\355\171\352\073\170\031\113\320\203\060\057\334\124\143\313"
"\311\371\232\356\010\100\005\253\201\354\177\114\127\137\130\334"
"\276\203\107\003\025\164\144\116\270\110\341\322\304\067\063\160"
"\224\151\361\002\373\234\041\077\027\132\163\153\312\365\305\167"
"\034\117\101\154\242\042\317\215\027\076\306\027\152\204\120\137"
"\205\157\333\062\123\277\375\317\073\100\212\204\352\356\253\153"
"\124\032\123\316\341\216\211\173\002\276\027\377\047\352\320\001"
"\375\272\063\220\160\370\350\323\241\217\100\215\334\346\165\317"
"\203\045\167\107\211\173\125\006\352\174\352\105\216\211\234\011"
"\244\040\214\341\037\157\273\002\151\065\246\117\075\333\110\235"
"\060\370\144\030\162\030\073\010\050\161\321\107\267\324\121\076"
"\134\172\307\271\167\015\224\045\007\246\214\302\277\112\222\157"
"\324\314\347\331\050\121\226\030\141\223\031\241\032\236\026\341"
"\150\255\013\345\162\215\042\361\071\000\006\371\372\212\174\354"
"\117\020\220\034\134\234\005\102\357\226\040\352\367\262\240\251"
"\241\071\375\277\201\176\046\264\076\334\251\232\127\056\206\353"
"\104\200\347\176\331\113\025\041\216\021\354\233\342\074\076\136"
"\210\073\316\224\150\246\242\326\242\073\357\242\144\317\306\267"
"\034\057\367\135\325\265\227\141\043\237\145\276\070\355\273\237"
"\374\002\067\234\376\044\042\024\206\111\211\331\225\307\177\264"
"\161\362\071\125\227\105\107\267\100\333\122\230\112\100\150\056"
"\317\342\376\026\135\353\253\335\322\071\242\201\171\236\310\021"
"\146\043\170\207\044\221\212\351\357\343\020\223\076\012\332\107"
"\361\036\060\114\024\041\343\230\066\204\141\044\266\121\124\271"
"\052\336\342\326\052\101\252\125\246\140\147\022\350\372\230\262"
"\045\167\050\132\036\310\243\376\313\134\117\121\145\325\124\165"
"\103\066\214\002\274\067\301\025\124\374\102\060\256\213\053\260"
"\243\321\143\022\276\007\200\247\300\243\157\277\360\356\371\044"
"\161\133\172\014\255\353\307\056\123\161\364\076\272\070\243\243"
"\270\333\067\353\262\221\125\123\046\061\110\146\305\254\123\032"
"\365\034\364\252\367\212\371\126\053\036\011\373\027\320\014\071"
"\343\225\226\324\203\142\334\254\111\242\053\344\070\142\263\362"
"\330\253\110\235\254\106\114\061\055\321\175\234\355\316\222\354"
"\330\237\020\316\151\313\206\057\311\121\241\233\000\357\306\337"
"\375\336\345\234\350\164\316\310\122\073\010\213\073\275\027\275"
"\367\324\327\032\251\021\243\267\026\134\115\033\223\033\011\362"
"\326\020\233\250\007\213\227\166\056\357\061\122\335\346\076\333"
"\135\001\354\257\370\220\266\011\114\006\041\352\150\314\273\125"
"\011\133\201\160\075\044\212\342\072\352\172\056\143\376\315\125"
"\214\345\177\264\044\040\306\002\240\040\175\075\145\231\063\154"
"\056\047\245\131\045\311\340\150\101\211\232\154\117\112\326\213"
"\010\125\311\161\215\024\161\076\027\215\005\301\203\103\230\122"
"\076\026\316\063\112\267\025\363\322\033\273\065\122\133\022\220"
"\277\170\116\354\362\074\362\337\240\330\301\370\247\042\016\340"
"\306\022\354\222\022\053\123\210\364\224\341\223\314\030\205\241"
"\306\014\100\264\230\073\121\157\023\310\215\161\063\202\142\264"
"\225\232\062\130\020\271\273\367\274\047\152\071\240\047\016\315"
"\117\073\225\014\203\047\154\317\375\177\115\261\202\046\244\162"
"\015\006\243\065\231\013\076\043\225\005\007\171\343\161\160\374"
"\074\157\333\040\301\207\275\231\214\361\234\021\110\314\350\327"
"\130\343\065\211\166\035\007\334\173\201\340\332\170\236\172\162"
"\101\173\220\171\373\311\074\263\375\355\067\023\007\243\316\201"
"\372\032\143\042\275\133\021\064\246\360\344\030\333\316\366\022"
"\254\116\106\325\043\011\022\356\027\244\132\232\042\327\131\130"
"\013\070\274\006\364\012\344\213\305\033\062\340\237\323\240\156"
"\134\061\342\322\301\347\252\065\336\105\353\241\152\231\155\377"
"\306\171\311\072\171\265\236\026\350\355\225\344\144\275\011\144"
"\253\003\161\064\332\103\052\311\214\170\364\207\304\127\176\045"
"\346\075\326\315\132\102\074\051\305\370\345\211\007\053\253\366"
"\367\055\241\063\203\132\115\305\347\132\017\334\066\164\200\157"
"\014\165\362\036\053\304\352\361\201\025\237\270\350\345\167\123"
"\146\022\150\352\373\020\324\141\212\306\056\344\256\325\365\264"
"\141\150\225\272\153\131\112\153\013\170\333\355\367\223\104\122"
"\112\212\137\336\340\302\316\271\356\204\026\317\315\121\232\077"
"\142\175\330\035\316\163\313\126\105\052\225\340\074\277\070\205"
"\114\145\075\120\276\010\166\252\222\260\162\102\105\262\155\230"
"\110\220\141\224\152\064\125\015\016\162\336\077\045\340\067\137"
"\344\215\375\121\165\007\137\121\063\246\262\300\025\006\260\064"
"\150\055\010\342\304\250\247\230\210\145\076\100\052\006\252\040"
"\212\053\141\223\352\354\211\266\230\201\353\040\103\237\005\350"
"\267\355\065\001\142\147\214\146\273\223\260\333\146\256\321\376"
"\154\201\007\257\226\264\210\235\075\317\323\000\326\225\174\051"
"\257\336\214\241\042\015\142\271\361\361\304\337\264\077\363\276"
"\315\166\275\160\153\212\236\356\257\322\364\147\165\336\267\230"
"\362\123\051\122\244\211\307\160\241\377\225\223\327\145\256\001"
"\277\124\133\232\152\055\363\240\151\351\223\236\046\106\255\216"
"\317\055\004\067\016\364\312\354\044\336\251\010\326\004\273\115"
"\207\101\170\361\157\144\333\025\131\154\317\066\104\075\120\252"
"\273\264\107\145\241\237\032\366\263\026\352\221\321\137\313\300"
"\337\045\101\000\157\265\376\356\341\064\077\050\162\167\302\256"
"\121\236\126\031\047\343\271\366\005\272\222\303\023\031\005\204"
"\204\317\321\026\046\026\253\330\350\017\246\000\313\235\013\306"
"\357\320\075\033\343\047\252\362\131\175\107\200\226\177\265\227"
"\000\062\104\156\037\126\152\261\215\051\003\352\170\325\110\217"
"\373\245\222\064\011\155\235\054\105\330\177\240\343\043\152\365"
"\006\166\071\365\064\224\022\035\107\225\257\371\330\022\115\243"
"\142\053\030\040\303\056\022\030\272\306\027\201\175\271\131\314"
"\303\242\160\242\336\140\347\224\243\363\113\062\265\213\071\012"
"\346\306\046\315\110\263\240\061\036\311\266\231\051\156\222\360"
"\120\234\156\003\333\062\044\252\142\031\052\126\242\152\354\051"
"\212\173\176\002\045\121\044\070\054\254\051\023\163\236\127\344"
"\240\207\266\055\326\267\313\165\051\032\224\313\050\171\132\161"
"\223\310\045\245\037\204\053\002\151\260\141\264\013\335\333\165"
"\335\141\152\270\130\142\266\321\372\013\111\300\302\250\313\022"
"\342\063\013\206\106\203\127\301\202\013\060\053\233\012\376\340"
"\054\300\362\151\354\214\007\010\236\045\133\102\315\324\336\244"
"\255\340\221\061\045\061\171\040\173\042\076\272\224\145\045\374"
"\233\010\266\035\043\141\156\302\077\220\222\013\242\110\165\133"
"\025\102\301\365\016\174\266\025\050\267\054\353\017\351\365\336"
"\106\365\123\225\331\352\216\200\160\256\343\272\302\013\176\330"
"\210\273\326\135\371\057\052\255\343\144\230\006\300\106\030\243"
"\363\300\302\077\371\246\374\050\000\365\320\225\375\202\271\023"
"\146\353\103\024\150\333\247\205\111\315\013\164\054\313\301\270"
"\047\120\143\345\012\156\040\041\057\052\106\233\223\212\105\045"
"\353\375\260\274\306\026\214\161\116\346\336\207\301\311\126\022"
"\004\123\241\075\133\227\055\075\122\207\241\223\101\012\307\271"
"\307\270\064\345\335\213\147\152\051\123\126\333\304\104\365\213"
"\134\341\170\217\053\056\110\162\026\053\105\064\242\331\274\140"
"\163\134\002\344\277\363\107\265\306\034\276\271\237\142\111\361"
"\001\133\376\130\014\253\362\140\275\327\236\316\350\264\253\304"
"\002\232\277\321\353\225\372\236\303\273\310\341\140\177\326\115"
"\226\171\024\241\305\325\215\373\232\115\152\003\070\041\236\345"
"\224\075\246\176\103\273\116\344\327\212\171\154\211\261\176\276"
"\136\001\377\300\300\076\100\214\300\111\033\320\100\346\247\313"
"\346\011\350\005\224\317\261\336\052\337\361\110\373\377\154\241"
"\370\315\112\277\331\164\032\051\040\117\232\032\030\132\057\113"
"\337\325\326\142\100\126\035\063\374\046\142\063\152\253\226\353"
"\237\323\024\232\066\212\214\343\160\236\354\276\250\024\106\255"
"\174\221\322\206\237\062\206\022\161\127\222\214\313\332\174\045"
"\003\323\150\022\023\165\067\073\056\061\111\206\061\146\377\255"
"\261\341\247\055\071\157\326\151\165\361\303\264\011\054\247\213"
"\303\167\035\213\247\200\072\120\160\272\360\207\320\277\142\271"
"\372\340\175\350\141\134\071\014\233\251\266\355\350\116\144\354"
"\326\144\305\126\332\353\142\211\253\310\056\105\112\100\276\115"
"\137\265\035\177\156\020\172\044\274\340\352\243\164\263\276\321"
"\056\162\101\053\376\330\022\371\231\161\243\205\244\301\064\133"
"\331\246\221\157\310\340\032\157\031\306\164\374\344\204\371\112"
"\327\046\233\224\127\377\252\153\026\017\260\102\322\100\162\044"
"\104\033\131\243\313\130\200\263\032\047\306\150\276\107\272\175"
"\001\355\125\011\323\342\372\240\353\243\071\261\066\135\063\264"
"\001\155\131\065\006\154\016\020\174\276\046\016\354\166\333\215"
"\010\125\263\055\367\053\207\341\204\072\374\201\163\303\363\174"
"\151\224\116\136\241\377\222\240\132\036\257\337\140\214\062\146"
"\254\314\227\047\067\053\060\324\160\240\231\302\065\210\234\303"
"\251\361\205\262\353\345\034\233\022\235\062\042\146\076\232\157"
"\340\314\313\241\011\067\265\313\331\053\032\212\351\023\315\134"
"\133\064\036\075\205\347\153\121\117\343\105\374\231\146\361\200"
"\247\350\174\104\364\343\262\050\225\010\165\337\201\372\024\027"
"\010\270\073\251\204\117\275\043\223\152\217\075\041\112\252\337"
"\074\332\364\205\265\012\310\104\336\077\374\303\041\166\124\303"
"\270\156\023\112\106\331\342\167\325\271\227\261\171\273\274\103"
"\224\367\057\324\201\073\063\374\125\011\167\047\075\035\100\351"
"\322\374\135\376\047\145\330\156\055\070\315\340\260\065\357\225"
"\110\161\023\167\133\123\231\035\371\275\252\352\256\350\221\367"
"\111\304\267\204\145\343\321\130\265\014\344\003\025\102\025\100"
"\333\107\345\201\037\370\151\054\337\061\124\174\345\312\020\142"
"\314\001\120\255\307\251\213\144\172\135\346\353\203\075\066\257"
"\333\331\151\334\160\014\251\333\223\273\360\214\042\210\363\375"
"\102\240\340\147\364\023\027\227\377\104\337\107\125\277\033\101"
"\025\176\045\120\247\306\246\001\016\022\061\237\106\304\210\016"
"\061\144\000\173\032\172\245\225\115\065\212\034\317\117\325\200"
"\346\110\053\272\336\376\353\343\133\041\074\077\032\341\227\215"
"\331\254\172\124\156\034\105\213\304\271\211\073\303\355\150\376"
"\376\171\201\254\033\051\036\040\251\044\070\312\155\344\320\110"
"\131\146\117\135\274\344\330\237\360\073\011\036\256\024\032\121"
"\117\055\224\071\305\063\002\072\232\304\217\234\042\275\047\045"
"\012\044\132\260\344\304\210\114\344\376\002\146\067\035\305\225"
"\037\246\057\132\011\373\244\371\351\346\314\320\074\111\223\054"
"\321\244\056\230\153\007\265\270\346\213\120\171\046\277\220\366"
"\340\276\376\000\051\155\307\205\145\013\352\064\244\227\233\315"
"\271\203\201\305\004\257\134\372\302\051\145\317\120\141\173\305"
"\130\034\342\227\131\311\221\224\256\162\225\146\115\031\375\362"
"\361\335\370\372\132\354\234\347\304\116\273\322\311\117\014\305"
"\103\173\023\324\266\272\251\235\200\075\165\336\044\350\150\351"
"\365\076\122\040\101\213\301\077\130\125\330\047\056\125\276\266"
"\330\040\266\344\167\012\021\174\004\112\037\005\033\367\317\010"
"\114\341\216\376\146\076\202\075\124\025\100\377\327\070\064\016"
"\213\237\216\051\253\351\055\206\020\111\163\110\354\310\275\043"
"\101\177\035\067\242\145\311\016\244\306\265\260\140\034\352\215"
"\022\020\017\376\312\356\133\131\146\261\247\105\257\144\122\040"
"\107\272\046\060\160\332\107\076\067\222\127\177\226\042\131\151"
"\032\016\352\116\030\255\121\323\313\150\203\367\263\033\104\113"
"\110\006\016\133\175\177\034\363\264\261\212\174\115\017\073\052"
"\151\022\273\373\165\010\375\361\152\157\213\331\136\256\134\121"
"\041\146\125\221\325\336\355\163\200\362\106\146\277\376\235\242"
"\043\172\221\064\076\366\236\056\033\101\172\230\144\116\244\043"
"\101\302\132\317\327\200\341\271\274\353\116\345\037\375\061\366"
"\353\004\224\363\054\166\052\366\333\106\261\043\355\263\242\010"
"\000\172\234\103\216\124\322\221\177\365\266\075\313\222\132\251"
"\066\011\161\273\321\163\076\112\345\211\041\245\016\304\137\366"
"\125\277\101\106\073\335\330\140\020\206\344\271\042\340\051\326"
"\120\116\322\261\157\053\376\074\061\247\062\102\224\331\244\322"
"\237\270\244\173\322\265\230\101\240\176\236\225\302\011\347\205"
"\376\241\120\340\204\051\335\057\072\170\204\311\124\223\356\352"
"\272\076\146\155\372\101\251\164\354\134\205\313\251\105\033\377"
"\121\231\371\357\056\325\221\252\247\321\371\027\333\202\361\017"
"\151\263\053\347\054\340\324\203\261\376\276\206\377\330\264\335"
"\371\125\206\121\066\135\271\130\353\025\276\104\365\015\325\063"
"\227\013\032\223\222\164\345\040\103\336\027\144\261\046\277\225"
"\153\122\061\362\056\216\152\335\031\363\205\151\104\362\324\330"
"\242\075\324\040\305\330\114\327\070\153\016\270\070\257\230\040"
"\245\260\320\145\272\120\327\064\171\104\272\006\342\316\333\150"
"\240\127\253\027\377\010\324\312\043\332\012\266\134\340\242\070"
"\245\377\071\133\041\021\202\073\227\056\203\312\306\166\167\344"
"\270\166\370\315\307\137\244\111\004\331\171\232\065\061\055\140"
"\235\043\171\232\003\140\210\150\310\011\243\037\054\017\163\150"
"\173\246\261\005\161\034\071\213\342\373\112\200\344\256\165\244"
"\237\374\247\247\230\162\312\240\157\062\171\156\335\334\253\331"
"\011\216\333\227\063\370\006\016\366\060\151\073\022\224\214\376"
"\375\000\336\174\053\050\070\014\222\024\254\201\123\173\102\342"
"\032\015\361\031\116\243\241\115\165\117\337\300\275\144\071\165"
"\240\311\235\020\014\302\072\006\021\220\012\007\051\342\312\057"
"\015\376\375\376\112\373\151\373\303\254\156\352\254\224\237\037"
"\313\342\155\235\363\175\000\161\226\176\274\156\051\250\234\210"
"\037\316\262\215\103\264\316\055\330\303\255\236\202\370\264\146"
"\226\260\137\326\232\020\212\261\202\112\271\124\037\000\377\370"
"\313\176\065\165\151\141\312\132\074\100\347\136\010\177\110\145"
"\317\157\162\205\164\037\073\320\221\353\132\017\123\176\116\230"
"\362\300\312\155\103\363\360\370\053\142\253\147\343\117\160\275"
"\206\334\232\251\177\135\112\226\145\045\342\216\052\367\364\067"
"\127\131\004\052\215\344\153\101\223\065\000\146\252\002\272\107"
"\126\345\115\364\213\211\244\000\172\064\025\046\125\313\227\147"
"\217\133\263\231\365\365\170\032\031\160\157\207\302\100\260\112"
"\357\034\016\264\275\275\377\034\360\032\156\363\131\144\057\127"
"\214\267\152\153\345\122\201\035\143\243\051\176\022\275\374\316"
"\066\264\206\012\146\257\227\135\346\324\176\332\033\002\105\162"
"\014\036\203\002\027\176\302\104\215\177\353\351\027\212\256\157"
"\233\320\150\201\167\144\370\355\155\250\225\100\021\132\270\172"
"\276\346\045\065\356\243\062\335\065\054\215\012\305\342\156\111"
"\043\361\273\346\063\174\100\100\306\155\150\377\274\131\213\020"
"\046\354\112\305\224\075\150\220\302\370\227\333\323\014\023\165"
"\103\007\320\131\252\376\104\222\344\007\214\063\312\251\167\204"
"\104\072\373\271\242\350\154\017\376\170\127\335\054\226\137\012"
"\211\021\265\233\140\121\336\217\372\224\212\125\276\163\331\325"
"\221\024\215\236\324\277\122\117\257\275\006\122\372\032\214\271"
"\152\037\012\122\324\137\301\213\055\003\204\100\272\045\224\172"
"\333\027\301\173\013\337\371\156\271\032\121\065\107\205\027\131"
"\323\060\144\050\356\121\205\301\072\146\130\026\303\324\175\145"
"\254\043\310\345\060\032\257\262\214\314\263\357\023\154\250\074"
"\342\315\172\344\276\262\372\121\252\261\010\215\275\017\012\246"
"\331\065\143\213\011\372\115\053\072\263\363\377\007\152\243\237"
"\035\036\006\064\224\240\225\024\254\167\047\163\331\257\171\072"
"\005\337\227\161\131\203\312\376\112\040\363\232\243\026\332\203"
"\163\104\320\237\274\354\152\120\022\000\124\311\146\163\303\361"
"\143\202\172\033\046\340\005\042\377\317\061\271\340\375\104\261"
"\331\351\350\276\066\100\072\233\000\371\050\276\231\345\207\055"
"\043\251\021\170\154\207\340\244\030\332\150\206\241\343\004\044"
"\002\222\156\156\000\337\231\123\012\217\264\073\227\372\215\062"
"\017\205\025\174\127\067\020\044\144\320\222\162\343\267\260\135"
"\045\143\167\154\131\001\242\240\242\171\257\220\354\340\154\057"
"\306\261\020\216\300\176\237\040\347\036\274\201\317\143\061\232"
"\333\105\060\013\173\017\243\053\010\270\304\332\130\163\065\066"
"\025\115\331\066\136\023\077\001\365\137\334\261\070\211\155\154"
"\363\225\160\125\331\316\033\057\300\001\367\134\057\020\112\177"
"\050\262\122\344\137\176\353\115\272\344\036\222\255\362\005\344"
"\027\122\210\153\320\016\357\304\340\017\163\123\062\143\231\226"
"\357\220\305\054\215\110\107\160\276\111\336\052\165\147\224\345"
"\134\316\210\320\112\240\146\350\054\053\257\373\350\066\337\141"
"\216\236\043\110\051\154\263\066\006\167\003\373\042\214\355\316"
"\055\324\304\247\375\007\313\040\070\373\276\330\161\136\016\034"
"\372\342\257\342\073\332\026\030\050\244\272\175\031\210\172\022"
"\013\131\363\370\353\354\131\000\173\061\105\067\026\102\336\352"
"\247\154\031\232\212\304\245\110\121\326\171\175\125\061\114\115"
"\206\357\244\004\300\162\017\223\030\047\071\051\321\025\120\303"
"\250\307\133\205\161\152\164\130\024\356\104\355\106\301\121\253"
"\151\305\273\273\246\027\320\116\325\376\263\334\225\277\374\031"
"\073\343\043\240\367\370\106\252\361\116\223\257\033\172\224\064"
"\065\213\322\346\124\227\314\364\332\243\273\252\014\303\223\371"
"\107\300\023\047\314\360\276\370\057\366\012\327\144\322\105\064"
"\036\302\067\075\161\026\243\174\331\346\046\265\301\001\115\221"
"\073\356\317\266\244\160\254\267\312\016\176\143\051\355\324\070"
"\370\305\333\147\121\236\332\074\324\154\136\342\144\377\106\115"
"\026\056\177\050\276\155\103\140\370\051\033\015\136\266\310\302"
"\227\024\067\012\007\101\120\373\313\063\307\132\312\251\216\240"
"\146\237\235\332\356\126\024\130\351\026\212\115\262\126\160\242"
"\346\006\010\101\257\327\350\246\263\147\132\100\272\202\212\032"
"\102\211\033\011\157\006\127\304\325\144\113\354\122\226\122\273"
"\216\260\027\307\247\262\161\243\321\075\055\017\324\352\362\361"
"\242\021\126\213\052\241\130\227\122\355\052\231\130\365\256\151"
"\200\133\244\121\126\170\265\371\307\321\363\057\267\340\142\265"
"\333\207\124\032\142\001\133\125\011\332\043\224\256\031\062\045"
"\377\176\343\336\212\047\301\072\255\233\055\301\370\261\040\237"
"\034\101\346\310\040\231\334\224\204\343\001\047\071\335\026\303"
"\347\000\063\254\133\330\034\322\342\052\101\372\157\326\031\026"
"\267\142\033\070\111\367\374\074\236\225\107\101\230\154\326\161"
"\055\316\346\057\045\307\117\133\234\266\334\131\206\366\023\326"
"\214\002\060\320\165\231\263\047\332\257\177\116\126\271\064\275"
"\262\271\013\210\241\356\026\012\064\120\135\253\127\005\010\361"
"\262\075\051\067\012\147\067\032\252\002\057\246\227\207\020\302"
"\043\151\031\266\226\303\101\331\354\344\226\271\201\155\367\051"
"\304\074\243\011\320\243\246\126\025\216\111\011\114\031\212\056"
"\356\354\346\162\174\313\217\300\120\210\232\256\345\152\230\125"
"\172\330\021\113\152\360\164\132\265\002\335\260\276\367\237\301"
"\130\044\361\035\012\016\130\326\070\274\031\360\123\306\067\343"
"\226\204\267\304\174\350\140\046\237\234\276\160\161\016\161\351"
"\342\140\147\166\317\000\127\045\170\204\005\053\047\171\113\301"
"\277\126\312\374\146\135\250\002\042\107\350\266\154\053\247\255"
"\364\220\377\022\335\155\264\364\064\271\032\221\074\142\235\265"
"\052\347\367\166\154\140\013\273\355\036\071\110\002\275\342\276"
"\334\126\014\141\006\101\060\247\006\200\261\060\177\101\051\115"
"\021\036\072\055\301\006\301\116\156\077\072\371\243\226\270\327"
"\050\136\373\230\255\351\006\132\165\165\354\257\344\215\016\100"
"\374\111\307\362\020\305\162\036\231\216\327\164\342\206\052\216"
"\334\060\056\256\263\314\121\325\210\007\205\007\026\257\264\211"
"\113\271\033\100\146\075\356\317\325\370\373\242\324\312\232\152"
"\063\037\007\275\101\230\332\051\051\356\135\044\224\226\105\125"
"\371\014\240\311\234\064\214\016\237\041\256\034\152\372\000\124"
"\242\343\144\263\123\110\050\170\370\064\314\372\173\354\166\367"
"\172\317\227\034\363\045\164\336\235\144\323\211\276\057\361\274"
"\352\311\261\355\170\064\041\212\342\126\032\033\025\153\265\225"
"\243\061\374\121\162\006\230\274\370\143\260\350\032\372\265\150"
"\020\032\064\336\132\234\040\101\355\306\203\136\226\055\103\115"
"\221\152\360\252\016\141\205\305\176\344\251\334\105\203\272\146"
"\107\130\256\014\036\153\065\077\110\116\376\071\360\367\215\315"
"\126\357\323\143\032\146\273\151\015\365\375\135\150\053\242\337"
"\144\241\374\042\265\025\267\027\331\250\261\066\377\331\020\334"
"\323\022\227\333\012\052\236\345\067\174\243\153\046\350\261\145"
"\003\255\374\261\243\237\312\103\071\001\160\275\044\007\350\056"
"\374\216\171\171\164\023\334\032\301\255\141\351\144\002\260\042"
"\123\050\126\005\320\031\324\276\340\367\015\124\210\351\275\133"
"\212\120\303\061\117\316\342\065\361\265\306\072\176\105\063\120"
"\302\200\054\046\204\331\233\016\240\377\010\133\211\072\213\214"
"\136\050\210\307\354\126\302\123\066\241\304\150\133\245\041\033"
"\274\262\012\211\154\030\241\015\017\063\252\143\242\133\200\255"
"\023\203\361\037\130\356\135\361\065\065\272\203\230\070\020\011"
"\005\151\214\202\330\001\032\205\361\046\356\122\132\261\211\002"
"\261\307\133\320\064\102\052\217\060\266\343\131\117\222\054\317"
"\203\376\153\274\201\121\366\202\160\325\157\026\071\122\034\170"
"\231\314\315\015\047\154\047\050\074\043\366\306\372\351\232\360"
"\251\276\034\266\371\333\235\006\157\314\031\003\254\344\107\151"
"\371\350\337\032\337\022\207\136\125\132\225\303\102\064\116\013"
"\110\103\155\200\260\052\154\157\005\232\242\240\264\211\032\264"
"\145\143\011\252\312\150\327\101\174\021\276\135\127\301\000\150"
"\126\211\142\065\005\071\267\131\151\052\166\330\367\330\236\317"
"\027\174\170\157\156\277\010\167\176\007\334\064\214\056\174\267"
"\265\217\115\331\325\226\206\123\231\253\262\072\205\254\100\333"
"\221\177\035\206\262\265\156\211\327\120\141\150\363\001\336\134"
"\315\354\105\255\134\103\022\125\113\247\163\026\043\324\137\213"
"\174\036\130\305\300\011\270\121\074\027\100\216\143\375\161\257"
"\355\056\342\326\020\027\254\240\063\265\245\153\174\247\031\236"
"\054\103\371\324\075\151\171\372\262\377\162\201\153\232\116\140"
"\114\243\151\224\107\037\204\127\136\172\246\240\325\230\335\225"
"\343\303\171\262\066\150\363\077\165\226\347\025\144\255\005\145"
"\073\021\253\237\273\216\230\345\363\333\360\240\113\271\340\310"
"\032\361\357\041\302\056\225\243\320\334\353\337\117\162\246\314"
"\125\325\130\307\347\162\343\010\165\223\264\007\224\323\210\302"
"\231\277\266\013\232\344\303\031\347\137\116\220\227\055\237\207"
"\155\100\044\151\335\167\043\110\004\275\273\005\216\057\263\131"
"\164\154\022\051\031\017\253\043\122\141\306\056\077\312\114\315"
"\020\232\300\000\112\321\003\132\365\060\107\364\272\316\374\353"
"\127\257\031\346\143\063\355\243\212\350\300\336\354\054\310\027"
"\247\147\250\220\153\166\310\176\140\023\153\310\144\300\324\120"
"\174\054\211\272\353\137\133\304\040\161\014\136\165\076\270\100"
"\367\204\336\216\207\206\205\270\366\325\041\176\134\342\353\046"
"\372\173\011\370\301\151\326\036\002\370\144\333\067\275\244\204"
"\237\061\115\161\201\142\373\243\031\365\123\033\246\046\000\276"
"\353\105\304\015\246\377\045\071\150\262\277\307\175\100\232\370"
"\275\167\236\145\376\201\147\213\122\204\322\312\320\232\015\032"
"\165\055\117\157\023\310\047\164\010\352\365\112\015\344\243\254"
"\142\022\273\226\322\121\255\172\273\112\053\310\264\247\171\034"
"\341\050\222\054\007\361\262\171\026\335\364\120\063\354\133\331"
"\243\171\072\073\207\230\060\030\057\052\072\006\305\154\163\224"
"\042\135\302\227\211\142\267\152\046\011\317\131\335\370\255\331"
"\203\057\325\166\333\266\043\366\251\162\311\036\001\177\252\275"
"\064\220\353\262\176\244\137\242\002\062\364\044\314\067\007\140"
"\327\156\047\227\360\106\133\271\243\273\206\033\010\363\030\025"
"\312\051\167\163\020\240\176\037\067\347\041\305\321\342\017\227"
"\270\155\131\260\263\174\333\130\221\360\230\276\217\023\252\156"
"\306\152\143\052\274\112\016\240\132\365\273\266\327\021\215\000"
"\345\233\156\050\372\326\236\222\357\070\055\105\200\221\166\374"
"\101\221\310\357\371\166\261\254\035\142\074\153\133\176\123\222"
"\244\315\212\051\151\271\245\064\045\316\043\223\221\355\025\173"
"\336\256\352\116\225\045\050\310\043\163\230\270\006\272\262\005"
"\131\325\244\307\352\125\146\024\175\144\337\030\361\122\362\046"
"\344\332\357\004\270\164\272\067\001\222\273\222\243\067\156\360"
"\166\070\335\260\252\255\375\043\245\057\000\304\374\236\145\366"
"\215\270\231\244\173\154\005\274\201\012\230\146\064\341\063\141"
"\365\013\210\016\345\221\016\107\046\221\372\016\103\276\302\336"
"\071\034\032\304\144\157\103\145\362\245\262\311\352\301\373\111"
"\156\074\073\150\025\234\364\264\076\046\165\206\376\062\350\040"
"\007\273\035\370\033\362\133\203\154\217\266\161\127\341\307\065"
"\041\302\232\266\063\216\004\176\247\136\206\172\201\071\130\235"
"\174\341\301\343\066\230\234\100\362\273\246\154\107\340\106\332"
"\167\070\070\115\214\152\030\067\005\346\365\107\307\372\025\372"
"\217\372\360\253\157\076\044\207\305\020\047\240\233\206\012\307"
"\372\314\002\232\374\111\203\266\210\031\320\226\062\371\045\270"
"\004\111\304\047\312\173\164\350\346\336\225\154\352\360\006\174"
"\125\223\311\236\041\275\256\252\043\006\337\331\133\221\165\176"
"\103\160\226\016\222\221\007\126\245\255\014\200\047\161\220\026"
"\116\120\330\326\160\221\131\157\353\347\274\053\026\374\236\074"
"\207\221\310\312\261\101\116\215\307\224\174\340\034\226\116\157"
"\007\054\160\335\064\365\057\021\342\251\261\001\124\264\012\236"
"\057\374\316\045\202\152\301\061\061\172\115\132\031\362\021\376"
"\011\101\357\317\310\122\116\234\370\163\203\026\100\354\326\045"
"\025\267\360\265\076\104\260\171\066\222\220\047\242\244\232\326"
"\147\323\211\227\055\247\124\262\123\330\057\073\206\244\027\133"
"\074\271\000\226\312\076\012\335\034\222\125\122\006\317\073\300"
"\225\337\151\023\241\062\106\224\207\153\327\167\155\313\224\071"
"\133\233\157\355\343\050\106\267\301\033\263\003\134\201\044\225"
"\263\364\156\013\326\203\144\161\203\372\161\075\150\251\100\037"
"\166\060\076\162\300\170\347\137\053\313\205\367\163\301\013\124"
"\235\227\067\336\331\112\061\142\161\124\151\367\067\232\267\303"
"\014\233\253\026\115\260\112\056\316\162\251\221\056\347\321\173"
"\341\141\371\366\207\142\160\056\235\033\265\131\060\173\066\054"
"\110\053\333\216\237\005\045\373\350\014\266\377\236\015\277\140"
"\151\072\263\325\254\221\077\204\140\342\315\070\016\341\020\361"
"\266\307\365\111\011\160\013\354\226\042\115\300\030\104\270\270"
"\127\273\303\147\007\027\370\243\233\240\055\331\063\313\106\060"
"\231\220\306\242\076\122\013\371\211\354\044\061\053\250\170\234"
"\020\327\010\303\236\226\066\170\071\265\110\175\224\127\144\242"
"\003\056\332\021\033\152\016\230\067\240\354\204\371\247\140\064"
"\356\066\307\157\254\340\345\134\050\210\146\272\174\113\174\245"
"\105\171\372\064\234\025\065\246\204\147\032\133\217\347\365\223"
"\166\260\220\150\037\173\004\121\142\133\141\227\163\375\040\350"
"\224\170\241\002\324\323\054\250\224\132\233\271\247\102\246\253"
"\067\203\065\177\306\004\143\022\311\307\313\030\023\271\103\376"
"\310\337\116\050\201\340\032\353\225\375\027\002\040\253\231\300"
"\333\317\244\346\047\377\142\307\014\005\163\224\336\026\376\025"
"\327\266\352\340\011\327\205\075\137\362\373\214\065\243\176\017"
"\062\243\002\260\263\273\201\157\010\213\320\334\175\152\023\316"
"\252\370\236\261\020\310\372\252\246\133\342\046\047\145\063\063"
"\127\011\127\207\242\273\300\317\352\167\043\053\214\356\111\130"
"\062\327\006\010\321\340\371\230\113\242\337\366\110\316\036\075"
"\117\010\331\165\115\305\277\065\106\077\021\305\366\272\047\310"
"\205\227\124\303\275\305\165\114\015\350\050\252\317\147\036\242"
"\076\154\163\177\265\156\111\062\251\317\356\114\266\275\177\170"
"\145\042\306\203\026\105\163\151\302\037\210\115\014\203\301\150"
"\022\211\231\376\273\304\125\003\167\313\074\013\305\171\112\156"
"\070\171\265\327\142\147\125\251\267\136\167\036\333\256\322\263"
"\241\062\320\023\307\010\332\041\077\272\127\255\015\273\317\245"
"\316\251\134\372\256\020\056\350\276\221\313\120\020\021\305\226"
"\137\122\331\365\164\174\013\046\205\254\116\365\203\165\357\012"
"\337\311\213\151\143\041\164\071\007\202\020\137\265\254\371\354"
"\177\210\240\322\255\062\206\150\022\051\343\170\316\075\055\262"
"\111\131\234\262\367\114\047\243\341\236\356\266\152\066\343\132"
"\162\253\332\206\021\103\330\343\175\036\145\077\360\202\045\010"
"\170\370\115\170\105\121\264\352\047\236\212\205\115\353\214\011"
"\276\150\243\063\233\216\154\030\341\201\376\304\000\122\026\350"
"\340\274\176\236\260\155\275\144\032\025\143\064\136\167\257\001"
"\027\373\144\204\273\127\136\164\243\256\167\057\246\146\162\355"
"\153\231\272\235\254\150\222\140\214\266\122\310\377\365\042\174"
"\300\306\301\255\025\355\316\050\210\115\000\253\202\232\230\047"
"\143\035\351\360\364\341\076\205\324\110\346\326\141\177\322\036"
"\210\331\303\075\277\112\010\106\112\347\030\304\377\074\236\015"
"\011\015\366\251\075\254\116\365\367\155\317\076\225\056\230\117"
"\336\146\103\361\056\175\026\336\304\227\115\313\171\046\277\360"
"\162\300\165\335\116\127\205\165\017\203\202\040\041\000\151\316"
"\147\236\062\101\162\336\006\270\003\314\245\107\315\050\262\143"
"\022\256\335\036\263\303\255\356\013\021\330\172\333\314\227\225"
"\302\276\201\314\272\356\227\364\150\200\356\117\124\234\150\341"
"\164\204\365\031\364\164\163\036\160\336\057\043\060\377\156\021"
"\167\044\131\065\127\121\251\352\211\152\355\362\314\163\210\201"
"\345\005\055\141\360\031\064\243\011\245\240\275\201\147\104\036"
"\372\255\171\115\346\030\076\336\222\104\027\127\265\026\000\277"
"\001\166\063\273\305\105\353\007\111\111\311\272\353\242\036\312"
"\206\156\310\206\254\212\212\026\053\206\300\220\331\063\370\166"
"\044\156\366\161\074\326\134\030\332\014\161\271\334\162\073\001"
"\171\272\350\337\106\275\303\012\052\323\236\141\011\114\110\321"
"\100\026\246\215\354\226\337\266\016\055\253\055\376\023\317\122"
"\175\244\351\322\054\252\054\052\064\265\322\065\002\206\244\037"
"\326\143\110\013\225\015\111\373\156\136\034\235\011\254\265\267"
"\113\160\054\336\076\205\132\362\334\060\252\223\203\156\157\323"
"\233\351\337\352\163\210\352\172\153\161\334\047\362\076\364\250"
"\373\064\252\356\024\115\254\066\135\316\302\023\160\050\351\253"
"\115\270\311\134\236\256\144\344\322\124\074\100\244\205\036\163"
"\126\011\313\057\151\112\033\246\315\025\033\343\170\351\230\075"
"\261\137\077\352\114\234\067\003\356\375\366\211\117\124\053\124"
"\002\205\174\256\173\164\350\366\015\226\323\205\224\115\353\060"
"\213\124\234\333\314\064\154\263\067\032\257\306\226\352\337\302"
"\170\323\112\232\000\144\045\312\344\355\007\035\171\154\312\216"
"\352\101\073\324\013\131\356\004\346\131\164\360\014\146\024\075"
"\160\037\263\336\100\165\166\345\267\353\164\167\251\040\124\354"
"\220\277\203\027\136\124\026\264\214\113\031\334\027\314\233\231"
"\227\005\057\103\044\111\263\005\172\207\262\006\351\214\107\031"
"\051\234\053\142\172\215\166\210\145\126\130\316\046\050\240\112"
"\050\051\130\115\076\217\370\376\035\012\331\365\234\360\144\004"
"\161\011\300\026\300\113\237\363\016\135\331\255\324\334\173\316"
"\026\103\023\124\025\003\143\056\052\034\060\246\303\366\043\134"
"\343\335\111\214\264\150\244\315\323\225\066\014\161\142\247\143"
"\120\261\102\211\075\264\255\063\243\045\256\203\024\123\113\270"
"\032\125\246\305\375\041\366\276\216\123\122\014\277\226\110\212"
"\200\125\345\274\142\147\133\126\366\053\062\056\075\236\201\102"
"\173\026\301\027\026\157\376\153\244\231\364\225\015\335\031\320"
"\217\365\316\370\060\024\016\206\067\146\221\016\263\064\101\043"
"\212\027\326\352\005\343\206\347\027\030\323\354\375\227\372\257"
"\207\165\365\341\375\053\103\147\277\204\145\120\071\001\164\004"
"\366\226\213\167\342\236\057\073\173\144\320\103\314\323\050\036"
"\200\074\003\053\056\305\230\057\223\022\145\122\277\057\346\305"
"\100\065\314\364\251\244\360\344\322\130\360\120\155\062\363\215"
"\312\336\324\222\364\175\146\207\155\020\271\171\143\056\016\026"
"\025\204\345\050\341\330\116\103\021\250\003\367\250\265\347\376"
"\232\056\126\376\002\051\047\237\213\037\022\012\341\113\375\254"
"\153\251\312\054\362\077\353\204\366\023\014\104\326\306\322\136"
"\223\120\044\204\223\075\236\107\360\067\151\005\375\252\067\041"
"\154\210\332\217\210\355\371\032\025\346\316\003\200\111\217\350"
"\366\303\022\301\117\312\060\236\236\126\152\263\316\166\374\011"
"\124\107\347\217\066\022\223\373\156\243\304\317\350\170\273\115"
"\233\173\263\154\111\275\113\031\064\305\043\151\352\154\026\101"
"\004\066\121\254\371\021\136\146\260\176\316\323\176\110\077\024"
"\051\160\333\315\150\073\235\025\377\107\137\262\005\322\132\250"
"\110\302\347\115\106\251\075\204\103\305\027\243\322\054\306\040"
"\240\151\210\315\066\054\157\052\326\103\173\054\171\322\356\071"
"\131\333\132\021\051\131\220\360\345\135\033\277\330\355\144\222"
"\210\105\373\145\377\125\060\341\076\116\374\042\020\245\353\324"
"\365\372\037\231\274\341\003\065\321\170\271\142\105\012\272\014"
"\064\053\264\141\173\131\160\161\177\352\015\165\073\310\005\232"
"\064\110\037\017\212\113\244\244\132\124\046\343\306\307\370\131"
"\233\362\133\376\050\312\301\326\137\312\127\326\055\125\324\333"
"\135\337\200\325\355\050\131\256\376\002\044\337\236\344\037\203"
"\210\252\221\124\316\357\237\036\152\340\101\241\027\174\376\101"
"\263\206\000\350\056\354\117\036\373\377\046\144\043\254\222\023"
"\111\036\133\226\063\112\020\326\344\162\012\017\303\123\225\365"
"\112\223\275\161\172\111\110\244\173\373\232\241\142\361\077\113"
"\072\340\221\161\044\072\274\131\256\375\206\371\125\216\023\163"
"\303\171\053\222\120\201\366\371\052\105\215\311\271\166\012\106"
"\207\072\252\036\073\211\135\373\313\142\317\211\355\324\203\067"
"\273\132\053\375\110\315\145\003\201\307\317\342\127\170\330\124"
"\124\111\302\036\347\063\040\043\125\153\215\352\221\270\300\323"
"\104\214\374\331\350\314\225\162\107\350\036\007\231\317\122\336"
"\200\073\103\047\110\154\371\014\000\162\114\203\356\163\017\154"
"\053\131\014\131\146\306\173\201\073\245\205\121\253\207\330\170"
"\173\016\205\342\202\066\263\103\334\237\347\051\067\313\007\310"
"\116\132\115\252\043\241\112\302\240\271\074\264\033\051\272\342"
"\114\070\237\301\203\254\244\336\070\250\240\262\124\171\010\070"
"\117\040\213\262\263\341\261\234\356\330\274\251\203\240\154\243"
"\060\141\341\140\241\142\156\367\132\176\245\066\145\374\036\356"
"\301\074\313\131\024\270\144\336\272\274\263\004\003\200\021\230"
"\116\172\161\122\144\073\042\070\150\023\261\331\111\237\202\017"
"\164\026\046\063\266\126\262\060\230\313\056\153\064\234\154\276"
"\212\006\300\161\206\176\272\301\260\325\350\034\354\073\375\071"
"\371\202\276\007\267\117\046\255\136\131\120\262\237\111\140\106"
"\260\111\260\125\200\277\342\112\352\354\355\011\274\255\347\125"
"\247\022\117\135\331\306\132\226\007\201\220\066\007\252\054\353"
"\133\224\174\044\061\245\173\330\367\077\145\302\346\073\305\312"
"\140\066\163\015\024\240\101\174\071\121\073\356\140\244\370\335"
"\107\054\124\302\241\225\205\143\310\066\054\236\055\150\171\160"
"\303\160\234\105\352\002\311\330\166\012\272\034\064\174\315\033"
"\303\117\324\236\207\323\234\024\312\267\336\256\173\124\330\333"
"\167\307\374\031\064\356\114\142\324\223\106\220\055\246\252\321"
"\067\303\160\364\240\341\212\016\301\133\207\016\175\222\056\142"
"\147\113\226\222\210\251\126\273\276\301\334\323\061\121\000\334"
"\303\224\140\302\153\142\165\035\363\242\120\130\074\300\061\375"
"\362\155\171\013\020\160\137\053\256\233\156\006\372\356\024\146"
"\061\332\307\352\341\306\073\360\200\056\015\007\056\266\163\112"
"\154\312\063\363\070\341\065\377\164\220\147\177\366\233\352\200"
"\353\006\273\015\015\360\224\374\360\145\175\206\154\135\136\343"
"\121\204\267\321\322\341\054\076\106\273\144\266\102\216\364\376"
"\240\125\051\064\243\314\202\006\120\076\216\060\107\137\010\073"
"\152\163\327\212\245\264\247\042\174\045\320\255\070\244\364\015"
"\177\277\067\213\234\230\324\341\105\074\136\007\064\365\322\306"
"\152\007\254\076\360\360\327\302\027\366\225\201\355\042\350\135"
"\277\034\246\047\213\110\036\221\267\375\337\361\202\230\313\205"
"\036\157\200\045\117\250\054\375\274\176\324\027\105\064\305\340"
"\270\247\317\211\246\177\177\007\163\075\300\154\331\245\325\114"
"\232\106\257\166\306\117\313\074\106\342\234\067\221\351\337\152"
"\336\200\127\162\066\037\270\042\171\273\130\225\335\035\123\251"
"\254\341\044\352\060\034\223\247\221\154\047\111\361\024\154\177"
"\150\311\305\240\302\262\135\131\306\126\117\367\063\250\016\276"
"\071\235\247\245\052\247\346\317\132\260\370\107\052\147\252\347"
"\024\244\372\246\250\233\334\000\213\146\166\153\133\342\212\053"
"\272\162\164\365\310\176\131\145\017\073\154\252\344\023\142\240"
"\347\115\060\260\124\063\136\001\326\220\357\206\203\210\234\336"
"\130\117\251\144\371\020\117\050\064\230\333\023\316\064\356\360"
"\317\372\134\330\115\037\235\247\156\070\110\066\032\265\206\322"
"\305\110\351\250\312\117\155\205\022\045\022\252\373\373\153\247"
"\361\074\237\172\055\033\202\157\351\075\271\055\376\051\017\266"
"\344\042\040\241\241\261\374\373\061\326\246\310\160\010\130\073"
"\364\135\256\363\077\142\220\156\152\225\106\042\376\152\110\002"
"\157\306\251\303\151\005\231\362\063\231\107\253\326\211\053\114"
"\212\061\037\313\037\213\155\332\037\102\364\321\005\322\213\245"
"\004\113\105\313\361\166\261\273\302\132\216\165\361\207\077\043"
"\217\156\141\127\151\257\170\200\100\153\015\054\250\171\356\145"
"\202\103\320\101\073\237\254\273\030\040\005\131\055\127\135\351"
"\227\277\146\252\244\037\336\055\103\016\330\102\103\024\217\010"
"\107\341\166\101\203\244\233\056\240\244\106\103\137\030\216\200"
"\326\365\066\123\226\157\344\004\275\106\073\242\011\061\011\354"
"\326\203\016\271\046\255\246\067\011\027\101\272\041\231\075\172"
"\021\317\114\053\357\354\261\343\103\312\063\333\307\072\002\150"
"\144\035\265\303\160\037\101\052\347\224\106\175\266\114\042\013"
"\076\061\221\303\322\005\133\363\305\337\320\255\165\216\250\305"
"\367\327\303\030\042\265\361\030\266\073\212\024\133\055\275\141"
"\116\152\351\265\307\202\227\162\327\233\111\152\017\262\377\063"
"\040\373\341\115\043\007\005\160\334\221\045\323\000\127\141\376"
"\163\114\313\131\033\325\140\120\333\334\134\374\213\362\200\223"
"\100\050\217\052\025\040\323\257\370\255\304\214\224\156\321\173"
"\232\371\007\021\227\033\254\130\321\114\155\051\315\201\156\341"
"\352\267\243\373\317\250\151\344\124\146\322\312\110\362\014\034"
"\312\000\266\075\270\124\362\171\315\220\171\246\323\164\152\307"
"\054\214\065\116\003\301\266\173\345\127\171\134\265\263\255\114"
"\372\026\123\043\073\256\041\055\323\324\236\270\076\030\027\051"
"\274\063\360\201\044\060\115\314\235\242\026\003\115\104\246\355"
"\043\133\036\226\333\135\130\030\134\045\031\254\131\273\121\270"
"\132\230\077\002\043\243\365\012\132\254\076\173\326\334\032\313"
"\021\060\336\360\125\176\324\215\230\362\257\164\061\305\246\245"
"\351\244\011\011\127\114\337\336\132\276\204\174\060\051\140\011"
"\046\257\000\274\124\243\300\357\276\372\143\231\130\343\001\140"
"\126\243\364\242\120\310\126\010\031\305\071\111\077\206\144\044"
"\051\204\106\020\064\007\020\040\004\342\346\134\205\115\167\342"
"\041\267\307\323\063\077\201\227\301\243\257\110\135\051\031\161"
"\356\055\130\277\364\264\265\256\177\061\167\204\240\214\330\041"
"\101\144\061\337\023\274\324\274\235\155\347\206\201\230\202\144"
"\043\170\270\244\135\376\301\321\204\316\002\236\035\034\317\214"
"\156\333\243\316\353\224\044\070\301\026\137\261\035\000\300\064"
"\307\004\051\207\015\305\131\132\074\141\274\276\107\130\071\144"
"\033\230\370\010\151\357\371\213\374\231\067\313\056\125\316\350"
"\335\366\177\027\045\016\024\356\036\107\325\147\362\273\144\162"
"\344\354\051\241\017\266\015\026\143\261\075\354\020\172\170\226"
"\116\163\116\047\277\227\001\222\005\306\362\103\374\231\130\260"
"\101\040\143\006\217\064\214\321\052\120\074\374\162\350\135\266"
"\337\215\242\357\130\106\360\120\010\264\136\323\155\327\126\263"
"\011\136\030\016\111\375\210\322\361\317\144\363\264\304\136\032"
"\116\255\341\210\173\321\111\145\165\341\101\022\235\014\024\052"
"\204\017\065\057\361\363\144\033\360\041\344\256\345\265\112\106"
"\163\177\044\001\356\317\357\351\027\005\205\236\177\176\023\137"
"\130\152\047\312\333\072\324\006\323\235\352\141\124\027\302\230"
"\273\337\301\344\137\047\361\041\323\346\233\303\250\214\322\164"
"\230\242\267\131\264\257\051\045\332\054\007\162\044\310\201\306"
"\225\111\306\352\272\177\130\047\070\151\000\324\130\263\342\033"
"\136\120\033\322\322\131\353\016\127\104\144\077\136\047\015\135"
"\153\047\373\215\076\011\347\250\015\125\333\073\044\146\251\044"
"\064\277\264\046\007\136\255\145\060\216\322\161\377\306\212\170"
"\133\045\110\042\150\243\042\176\236\327\376\267\373\353\174\163"
"\227\077\174\332\060\275\105\025\360\327\111\207\374\116\041\325"
"\360\360\071\340\057\367\243\113\036\317\261\026\122\170\315\245"
"\103\124\317\170\244\376\153\340\146\143\376\241\015\021\113\244"
"\175\306\054\210\042\272\221\237\341\033\071\212\356\060\071\253"
"\264\206\147\042\331\227\174\326\122\120\364\371\360\374\351\236"
"\060\114\266\151\025\202\277\070\002\267\013\330\004\137\241\244"
"\367\242\164\244\067\361\120\126\226\153\107\113\123\331\264\056"
"\203\101\324\001\073\024\144\267\274\201\272\343\247\071\347\147"
"\305\363\321\036\055\331\142\351\040\252\142\245\150\045\201\137"
"\041\201\044\254\132\323\143\020\224\224\352\265\042\102\357\317"
"\221\360\213\330\347\003\330\117\172\102\335\237\006\056\157\233"
"\213\173\076\043\140\117\021\247\057\013\106\164\335\133\355\015"
"\040\164\324\221\067\321\311\341\020\335\343\261\262\331\206\237"
"\351\146\370\313\332\121\141\174\273\244\371\204\247\175\017\354"
"\047\377\017\043\247\167\024\011\014\135\145\166\172\336\332\332"
"\236\226\233\344\157\307\233\001\026\345\247\101\242\011\072\125"
"\325\375\032\167\150\306\254\012\272\300\327\144\132\266\176\035"
"\056\007\036\265\164\175\241\162\141\313\325\170\201\364\270\050"
"\032\341\340\147\055\245\224\121\153\123\334\225\014\046\066\320"
"\132\177\117\326\045\266\130\242\202\220\133\247\140\140\273\363"
"\331\247\061\304\276\134\176\060\333\135\106\142\035\372\156\102"
"\135\253\146\001\032\151\045\000\043\255\074\320\265\115\305\102"
"\022\124\333\144\023\030\060\006\361\036\324\217\270\151\341\047"
"\313\274\044\165\207\325\212\301\242\371\367\010\243\334\345\367"
"\305\356\123\047\310\067\017\233\007\246\021\156\370\122\067\152"
"\165\322\231\145\301\316\070\136\152\257\351\333\211\127\223\261"
"\076\320\354\132\231\242\004\260\156\372\341\205\255\230\160\154"
"\221\006\020\120\213\245\334\237\366\245\274\104\263\041\327\111"
"\210\050\344\145\371\371\225\251\125\136\124\060\203\077\311\245"
"\315\243\007\101\114\123\057\107\260\112\245\343\113\142\356\270"
"\363\250\040\252\074\061\124\150\126\156\163\055\303\013\373\302"
"\306\146\244\051\100\024\265\265\044\154\124\152\267\142\212\344"
"\234\250\005\156\341\005\005\007\132\041\200\356\330\373\321\220"
"\065\207\165\250\337\064\233\236\252\012\355\147\170\070\111\073"
"\131\105\021\275\353\024\251\341\064\374\251\305\073\212\141\165"
"\222\136\132\050\072\335\145\111\333\266\111\230\202\335\324\351"
"\012\213\203\016\024\066\301\276\220\245\053\310\231\273\364\263"
"\165\140\134\360\061\047\225\047\376\137\262\366\213\315\020\277"
"\310\370\034\144\015\112\037\102\203\017\172\325\246\061\043\206"
"\317\322\076\244\064\246\376\330\324\042\252\236\374\207\013\271"
"\155\246\312\215\025\212\153\007\256\305\266\156\146\127\376\024"
"\343\175\377\327\023\067\006\273\367\366\173\027\040\037\262\363"
"\022\175\311\060\075\134\313\060\156\062\155\125\340\264\034\310"
"\306\314\114\253\361\305\330\026\340\160\231\365\206\365\321\256"
"\045\273\144\145\370\354\224\272\253\000\345\145\152\120\342\144"
"\207\252\030\375\134\311\104\165\311\212\333\335\165\272\177\037"
"\011\355\324\076\263\217\062\347\020\054\355\236\236\144\022\014"
"\134\074\036\017\346\357\003\101\302\320\211\145\352\252\220\160"
"\107\314\354\305\305\334\053\272\345\102\250\346\054\170\254\074"
"\215\146\323\166\265\301\172\266\017\165\362\007\105\045\257\343"
"\371\276\243\237\366\063\314\221\273\304\023\360\113\003\116\100"
"\261\236\007\145\106\321\032\242\237\134\137\247\260\012\060\363"
"\326\252\020\361\136\253\171\201\376\076\025\051\114\325\240\265"
"\211\136\002\022\165\133\254\226\117\331\015\301\211\366\357\374"
"\143\360\221\317\160\367\267\305\020\305\142\115\010\322\105\202"
"\064\037\052\336\321\255\132\151\275\276\075\127\323\274\144\343"
"\313\027\267\265\025\230\377\345\155\351\005\311\233\115\055\324"
"\262\173\113\022\360\017\217\213\201\232\250\164\354\125\367\160"
"\044\127\322\352\333\135\013\263\074\150\302\136\215\314\154\330"
"\255\006\056\362\214\370\111\252\223\067\235\326\374\144\253\254"
"\122\333\352\243\014\163\340\177\033\277\003\342\027\240\205\072"
"\344\277\003\144\100\204\333\171\271\241\053\054\224\317\005\353"
"\261\370\027\015\003\030\206\202\100\042\234\024\000\013\374\221"
"\055\320\231\142\345\170\032\376\073\064\053\221\262\267\347\307"
"\012\244\151\357\344\152\021\247\133\006\244\370\010\374\010\170"
"\036\365\120\173\007\103\162\124\321\353\142\105\251\254\305\263"
"\205\162\002\330\014\336\066\145\313\036\346\045\172\120\357\137"
"\222\352\352\063\073\240\046\243\305\256\073\301\241\305\134\314"
"\035\171\031\160\214\142\203\363\150\173\254\020\226\370\260\056"
"\244\004\035\114\012\070\041\151\334\330\254\173\135\043\057\317"
"\227\243\342\207\246\363\052\024\251\324\242\056\300\234\122\160"
"\042\352\061\277\041\123\226\143\241\051\254\311\262\300\154\234"
"\025\105\271\332\243\256\375\270\331\164\006\047\337\165\150\162"
"\302\052\252\132\112\100\367\105\360\070\324\104\375\126\327\141"
"\323\303\362\357\015\374\324\037\176\110\264\050\101\331\364\325"
"\365\002\013\112\267\041\221\100\212\215\233\041\234\136\300\246"
"\230\053\062\006\050\131\055\131\336\322\141\270\057\166\334\044"
"\151\052\372\016\362\322\212\130\066\345\130\342\161\324\144\360"
"\044\002\234\114\074\223\200\112\226\115\106\261\147\326\321\252"
"\241\213\152\012\327\216\113\120\016\212\212\114\223\213\265\361"
"\023\201\277\346\137\336\323\377\027\244\241\175\036\152\033\002"
"\065\315\161\323\255\006\310\334\101\211\346\321\377\347\155\213"
"\273\260\346\067\211\114\164\244\003\021\317\175\314\231\246\256"
"\210\231\046\364\332\161\116\107\005\106\334\053\035\312\074\154"
"\331\043\036\131\312\242\114\074\177\323\347\273\264\120\251\054"
"\113\113\265\002\372\250\117\264\040\075\137\304\207\171\352\024"
"\334\242\102\237\112\174\347\365\057\307\222\325\067\216\346\343"
"\152\046\163\367\240\026\136\050\025\222\366\006\000\273\234\376"
"\022\375\140\231\075\003\111\054\072\236\276\346\021\127\171\020"
"\307\127\166\212\357\017\140\043\024\365\307\304\251\057\221\036"
"\226\212\126\123\072\016\076\161\263\243\070\033\310\002\014\017"
"\037\222\161\220\216\223\237\115\022\167\303\024\167\112\350\201"
"\315\134\010\063\015\063\207\067\171\031\111\154\252\257\154\001"
"\127\101\237\001\102\201\270\160\136\201\064\021\173\356\037\207"
"\263\205\324\036\065\104\151\060\341\025\323\017\147\276\154\255"
"\057\165\274\120\144\036\015\212\363\264\160\304\073\302\113\304"
"\131\345\354\210\172\325\052\306\364\132\020\003\046\127\026\127"
"\133\334\053\321\054\247\305\372\110\027\317\340\367\060\271\245"
"\216\035\025\066\213\311\031\065\320\261\010\357\173\137\022\230"
"\367\337\170\122\005\330\043\336\340\036\106\112\134\163\374\243"
"\122\107\237\377\073\272\313\025\140\376\300\305\337\351\244\331"
"\232\253\307\067\254\124\306\373\325\276\001\061\043\343\267\050"
"\113\004\223\302\013\014\013\124\117\276\311\112\311\067\030\264"
"\163\266\205\236\040\274\041\347\214\041\145\051\001\247\036\032"
"\266\217\346\125\054\346\043\270\316\262\040\344\046\340\322\311"
"\115\203\132\027\051\327\316\270\363\366\251\124\330\131\105\217"
"\245\060\233\000\160\303\265\144\277\275\351\137\054\124\344\273"
"\154\023\120\314\260\201\226\162\021\312\034\323\146\253\354\364"
"\301\253\326\245\313\200\025\126\160\236\344\237\217\157\024\351"
"\021\257\233\235\271\210\005\020\325\365\010\222\200\040\272\357"
"\016\160\213\156\227\354\234\043\003\253\170\353\131\342\111\020"
"\340\363\264\256\362\043\151\146\135\323\030\010\321\262\362\145"
"\356\327\020\311\054\043\114\316\366\263\316\023\340\164\041\305"
"\063\350\224\110\013\326\175\264\326\327\320\216\227\037\157\371"
"\223\274\207\011\143\024\322\365\053\150\071\151\013\252\326\034"
"\012\266\241\203\370\052\336\262\122\062\276\022\226\310\340\030"
"\172\263\261\160\172\174\374\315\222\050\274\250\007\345\262\266"
"\167\217\352\115\172\310\027\104\132\005\352\200\150\337\123\202"
"\347\320\270\166\176\250\334\153\022\252\013\114\371\136\257\331"
"\015\206\153\363\263\113\030\245\066\356\066\171\224\175\206\303"
"\330\353\020\331\224\030\313\102\231\005\042\327\353\342\041\047"
"\341\064\272\360\060\063\106\130\140\176\071\377\130\061\072\301"
"\267\345\251\350\077\147\020\273\040\342\120\065\155\276\044\204"
"\072\303\243\004\143\011\127\021\070\163\120\254\102\365\252\101"
"\352\126\333\222\366\145\300\322\343\325\335\302\004\174\243\102"
"\354\076\075\002\174\042\232\310\272\010\314\217\055\157\361\042"
"\144\123\116\247\230\251\122\050\312\070\320\233\316\127\165\272"
"\041\233\071\114\104\137\177\202\230\133\051\156\061\365\214\043"
"\362\164\334\127\307\256\161\034\157\326\045\016\362\155\370\024"
"\311\053\013\167\375\265\273\163\156\265\042\366\136\303\021\252"
"\205\062\040\165\302\141\262\154\301\340\371\176\275\072\102\365"
"\071\373\311\102\066\133\227\155\124\067\015\220\102\100\226\033"
"\306\175\256\224\060\131\373\122\051\076\161\070\272\340\104\003"
"\173\357\004\154\041\025\057\145\206\235\072\175\356\276\245\364"
"\115\156\212\034\047\363\331\150\162\045\200\303\203\050\164\046"
"\003\311\017\335\052\310\147\332\311\247\226\174\344\230\131\214"
"\300\331\341\044\073\106\324\272\341\217\370\210\354\253\267\217"
"\041\261\343\023\015\005\004\336\167\317\102\174\173\347\373\167"
"\344\124\361\157\263\052\257\012\120\317\371\357\163\226\054\032"
"\366\310\011\074\270\307\025\204\374\203\006\214\141\333\326\144"
"\217\135\237\241\034\301\214\242\157\065\222\045\272\015\263\345"
"\357\025\050\072\350\107\274\142\274\333\325\203\060\316\017\277"
"\064\345\061\261\072\327\032\265\322\014\211\122\230\007\057\171"
"\311\301\214\006\111\062\032\152\147\164\102\332\047\243\267\161"
"\254\114\212\134\263\341\011\232\252\115\144\002\233\020\246\066"
"\020\365\373\306\217\036\272\205\040\120\314\031\226\213\017\223"
"\054\025\013\304\275\047\316\320\017\241\223\106\055\040\177\122"
"\107\242\265\232\171\222\061\224\014\170\122\316\010\065\076\255"
"\351\124\005\247\141\230\172\321\161\353\037\315\351\240\330\066"
"\336\305\267\153\357\003\174\341\324\224\012\331\046\077\365\310"
"\052\303\016\043\076\326\300\172\071\021\370\202\065\257\015\070"
"\312\320\026\250\100\152\377\200\035\206\030\330\122\225\170\241"
"\303\363\162\064\235\124\201\356\344\377\247\133\123\273\116\043"
"\265\032\055\032\352\032\214\116\143\005\020\241\150\262\016\131"
"\140\175\332\263\136\071\303\171\030\132\126\267\041\071\120\071"
"\021\155\133\025\175\066\066\376\061\071\042\030\242\157\355\141"
"\272\254\133\203\124\331\175\253\313\230\275\376\367\264\364\141"
"\042\372\061\133\003\006\024\167\170\326\213\027\217\176\004\355"
"\351\257\246\045\240\367\322\346\021\074\013\207\015\102\262\372"
"\357\017\141\272\171\331\124\260\217\231\232\053\123\236\135\301"
"\116\012\336\046\214\334\322\017\047\045\063\136\036\223\130\372"
"\014\212\375\035\014\271\343\247\021\213\032\255\353\173\031\203"
"\134\107\041\063\016\300\125\356\316\336\201\064\221\046\130\216"
"\013\242\126\061\233\026\201\105\267\223\346\146\145\217\103\336"
"\212\023\255\053\174\143\375\304\123\077\145\212\262\154\032\244"
"\150\156\134\137\245\165\016\136\257\153\233\050\042\147\241\273"
"\204\340\271\012\146\346\015\024\315\352\371\035\132\173\372\345"
"\322\113\216\150\277\217\367\267\114\256\022\323\245\134\065\221"
"\353\165\012\215\304\263\157\272\116\050\237\121\301\226\212\155"
"\140\011\345\212\245\131\252\157\040\015\167\324\216\077\270\057"
"\140\366\140\217\007\047\236\313\116\277\105\326\136\114\142\173"
"\305\115\270\225\246\305\214"
#define chk1_z 22
#define chk1 ((&data[12860]))
"\324\246\321\166\342\100\014\041\116\053\347\320\352\262\274\343"
"\305\052\352\067\224\154\020\342\341\076\036\266\175"
#define tst1_z 22
#define tst1 ((&data[12889]))
"\121\267\152\301\273\003\320\177\072\146\164\237\326\045\072\037"
"\350\163\337\253\241\220\130\141\337\206\143\166\213\070\322\056"
#define date_z 1
#define date ((&data[12916]))
"\320"
#define msg2_z 19
#define msg2 ((&data[12918]))
"\074\131\274\024\346\224\333\025\105\102\071\057\243\142\044\223"
"\210\077\100\350"
#define opts_z 1
#define opts ((&data[12937]))
"\317"
#define tst2_z 19
#define tst2 ((&data[12938]))
"\323\324\005\112\156\251\023\344\226\332\303\013\034\270\105\122"
"\062\137\143\330\205\310\137"
#define rlax_z 1
#define rlax ((&data[12961]))
"\126"
#define shll_z 10
#define shll ((&data[12963]))
"\046\320\122\227\157\152\323\360\124\246\053"
#define chk2_z 19
#define chk2 ((&data[12976]))
"\072\260\357\072\163\100\126\141\210\110\176\154\347\330\273\263"
"\253\362\231\246\007\000\216\261\153"
#define msg1_z 65
#define msg1 ((&data[12998]))
"\171\314\313\050\256\251\037\064\331\307\077\030\327\353\211\124"
"\171\172\152\274\026\353\271\141\340\034\245\256\007\221\142\013"
"\242\232\076\166\003\145\021\135\153\345\125\257\002\045\027\260"
"\051\331\107\205\261\324\353\210\143\355\143\256\050\224\371\303"
"\252\121\241\257\053\046\122\113\325\363\372\273\020\063\233\152"
"\073"
#define pswd_z 256
#define pswd ((&data[13106]))
"\212\243\307\302\015\264\132\312\120\020\024\074\034\151\303\133"
"\001\271\323\274\236\257\256\305\045\014\223\254\006\236\100\325"
"\147\206\107\302\253\057\267\213\242\031\312\142\035\111\254\175"
"\172\217\052\057\342\175\171\243\257\322\015\006\066\155\257\054"
"\243\006\367\040\325\070\053\155\360\155\371\163\320\226\052\325"
"\300\275\104\240\123\160\347\030\240\365\275\323\224\241\374\200"
"\233\326\063\240\315\072\132\072\112\325\163\251\137\123\250\370"
"\141\036\351\055\234\242\301\042\316\056\206\360\264\073\360\235"
"\004\143\155\020\107\156\155\307\147\200\017\334\030\116\224\222"
"\110\104\325\235\021\252\337\031\157\100\236\131\143\333\154\175"
"\352\214\313\156\350\126\167\276\101\345\117\237\222\317\223\245"
"\063\324\147\344\103\014\062\316\340\173\002\355\106\023\243\341"
"\226\072\004\252\341\221\203\122\235\257\012\361\052\041\035\006"
"\002\323\110\106\154\365\331\006\032\071\165\362\336\110\123\162"
"\110\113\243\021\234\253\133\114\326\024\021\145\211\216\274\350"
"\061\337\264\253\027\251\173\347\257\321\206\363\046\341\117\326"
"\200\367\151\314\061\316\164\314\067\316\061\162\107\205\354\314"
"\213\247\015\326\111\170\074\126\262\243\257\005\126\114\031"
#define inlo_z 3
#define inlo ((&data[13366]))
"\347\356\037"
#define xecc_z 15
#define xecc ((&data[13372]))
"\311\114\041\113\354\361\221\211\266\026\143\377\272\014\277\012"
"\256\267\177\033"
#define lsto_z 1
#define lsto ((&data[13389]))
"\165"/* End of data[] */;
#define hide_z 4096
#define SETUID 0 /* Define as 1 to call setuid(0) at start of script */
#define DEBUGEXEC 0 /* Define as 1 to debug execvp calls */
#define TRACEABLE 1 /* Define as 1 to enable ptrace the executable */
#define HARDENING 0 /* Define as 1 to disable ptrace/dump the executable */
#define BUSYBOXON 0 /* Define as 1 to enable work with busybox */
#if HARDENING
static const char * shc_x[] = {
"/*",
" * Copyright 2019 - Intika <[email protected]>",
" * Replace ******** with secret read from fd 21",
" * Also change arguments location of sub commands (sh script commands)",
" * gcc -Wall -fpic -shared -o shc_secret.so shc_secret.c -ldl",
" */",
"",
"#define _GNU_SOURCE /* needed to get RTLD_NEXT defined in dlfcn.h */",
"#define PLACEHOLDER \"********\"",
"#include <dlfcn.h>",
"#include <stdlib.h>",
"#include <string.h>",
"#include <unistd.h>",
"#include <stdio.h>",
"#include <signal.h>",
"",
"static char secret[128000]; //max size",
"typedef int (*pfi)(int, char **, char **);",
"static pfi real_main;",
"",
"// copy argv to new location",
"char **copyargs(int argc, char** argv){",
" char **newargv = malloc((argc+1)*sizeof(*argv));",
" char *from,*to;",
" int i,len;",
"",
" for(i = 0; i<argc; i++){",
" from = argv[i];",
" len = strlen(from)+1;",
" to = malloc(len);",
" memcpy(to,from,len);",
" // zap old argv space",
" memset(from,'\\0',len);",
" newargv[i] = to;",
" argv[i] = 0;",
" }",
" newargv[argc] = 0;",
" return newargv;",
"}",
"",
"static int mymain(int argc, char** argv, char** env) {",
" //fprintf(stderr, \"Inject main argc = %d\\n\", argc);",
" return real_main(argc, copyargs(argc,argv), env);",
"}",
"",
"int __libc_start_main(int (*main) (int, char**, char**),",
" int argc,",
" char **argv,",
" void (*init) (void),",
" void (*fini)(void),",
" void (*rtld_fini)(void),",
" void (*stack_end)){",
" static int (*real___libc_start_main)() = NULL;",
" int n;",
"",
" if (!real___libc_start_main) {",
" real___libc_start_main = dlsym(RTLD_NEXT, \"__libc_start_main\");",
" if (!real___libc_start_main) abort();",
" }",
"",
" n = read(21, secret, sizeof(secret));",
" if (n > 0) {",
" int i;",
"",
" if (secret[n - 1] == '\\n') secret[--n] = '\\0';",
" for (i = 1; i < argc; i++)",
" if (strcmp(argv[i], PLACEHOLDER) == 0)",
" argv[i] = secret;",
" }",
"",
" real_main = main;",
"",
" return real___libc_start_main(mymain, argc, argv, init, fini, rtld_fini, stack_end);",
"}",
"",
0};
#endif /* HARDENING */
/* rtc.c */
#include <sys/stat.h>
#include <sys/types.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
/* 'Alleged RC4' */
static unsigned char stte[256], indx, jndx, kndx;
/*
* Reset arc4 stte.
*/
void stte_0(void)
{
indx = jndx = kndx = 0;
do {
stte[indx] = indx;
} while (++indx);
}
/*
* Set key. Can be used more than once.