-
Notifications
You must be signed in to change notification settings - Fork 1
/
Resources_rc.py
8377 lines (8367 loc) · 535 KB
/
Resources_rc.py
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
# -*- coding: utf-8 -*-
# Resource object code
#
# Created by: The Resource Compiler for PyQt5 (Qt v5.15.2)
#
# WARNING! All changes made in this file will be lost!
from PyQt5 import QtCore
qt_resource_data = b"\
\x00\x00\x05\xc6\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x11\x00\x00\x00\x09\x08\x06\x00\x00\x00\xd4\xe8\xc7\x0c\
\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\
\x01\x00\x9a\x9c\x18\x00\x00\x05\x0b\x69\x54\x58\x74\x58\x4d\x4c\
\x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\
\x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\
\x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\
\x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\
\x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\
\x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\
\x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\
\x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\
\x43\x6f\x72\x65\x20\x36\x2e\x30\x2d\x63\x30\x30\x32\x20\x37\x39\
\x2e\x31\x36\x34\x34\x38\x38\x2c\x20\x32\x30\x32\x30\x2f\x30\x37\
\x2f\x31\x30\x2d\x32\x32\x3a\x30\x36\x3a\x35\x33\x20\x20\x20\x20\
\x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\
\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\
\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\
\x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\
\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\
\x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x64\x63\x3d\
\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\
\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\x2e\x31\
\x2f\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x3d\x22\x68\x74\
\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\
\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\x78\x6d\x6c\x6e\
\x73\x3a\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3d\x22\x68\x74\x74\
\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\
\x2f\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x2f\x31\x2e\x30\x2f\x22\
\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x4d\x4d\x3d\x22\x68\x74\
\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\
\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x6d\x6d\x2f\x22\x20\x78\
\x6d\x6c\x6e\x73\x3a\x73\x74\x45\x76\x74\x3d\x22\x68\x74\x74\x70\
\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\
\x78\x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\x79\x70\x65\x2f\x52\x65\
\x73\x6f\x75\x72\x63\x65\x45\x76\x65\x6e\x74\x23\x22\x20\x64\x63\
\x3a\x46\x6f\x72\x6d\x61\x74\x3d\x22\x69\x6d\x61\x67\x65\x2f\x70\
\x6e\x67\x22\x20\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3d\x22\x69\
\x6d\x61\x67\x65\x2f\x70\x6e\x67\x22\x20\x78\x6d\x70\x3a\x43\x72\
\x65\x61\x74\x65\x44\x61\x74\x65\x3d\x22\x32\x30\x32\x31\x2d\x30\
\x35\x2d\x30\x38\x54\x31\x32\x3a\x32\x33\x3a\x34\x30\x2b\x30\x32\
\x3a\x30\x30\x22\x20\x78\x6d\x70\x3a\x4d\x6f\x64\x69\x66\x79\x44\
\x61\x74\x65\x3d\x22\x32\x30\x32\x31\x2d\x30\x35\x2d\x30\x38\x54\
\x31\x33\x3a\x31\x35\x3a\x31\x31\x2b\x30\x32\x3a\x30\x30\x22\x20\
\x78\x6d\x70\x3a\x4d\x65\x74\x61\x64\x61\x74\x61\x44\x61\x74\x65\
\x3d\x22\x32\x30\x32\x31\x2d\x30\x35\x2d\x30\x38\x54\x31\x33\x3a\
\x31\x35\x3a\x31\x31\x2b\x30\x32\x3a\x30\x30\x22\x20\x70\x68\x6f\
\x74\x6f\x73\x68\x6f\x70\x3a\x43\x6f\x6c\x6f\x72\x4d\x6f\x64\x65\
\x3d\x22\x33\x22\x20\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x49\
\x43\x43\x50\x72\x6f\x66\x69\x6c\x65\x3d\x22\x73\x52\x47\x42\x20\
\x49\x45\x43\x36\x31\x39\x36\x36\x2d\x32\x2e\x31\x22\x20\x78\x6d\
\x70\x4d\x4d\x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\
\x78\x6d\x70\x2e\x69\x69\x64\x3a\x61\x64\x63\x64\x36\x32\x31\x66\
\x2d\x37\x64\x37\x38\x2d\x64\x36\x34\x61\x2d\x62\x30\x34\x37\x2d\
\x62\x32\x34\x34\x64\x62\x63\x61\x66\x33\x61\x36\x22\x20\x78\x6d\
\x70\x4d\x4d\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\
\x78\x6d\x70\x2e\x64\x69\x64\x3a\x61\x64\x63\x64\x36\x32\x31\x66\
\x2d\x37\x64\x37\x38\x2d\x64\x36\x34\x61\x2d\x62\x30\x34\x37\x2d\
\x62\x32\x34\x34\x64\x62\x63\x61\x66\x33\x61\x36\x22\x20\x78\x6d\
\x70\x4d\x4d\x3a\x4f\x72\x69\x67\x69\x6e\x61\x6c\x44\x6f\x63\x75\
\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\
\x61\x64\x63\x64\x36\x32\x31\x66\x2d\x37\x64\x37\x38\x2d\x64\x36\
\x34\x61\x2d\x62\x30\x34\x37\x2d\x62\x32\x34\x34\x64\x62\x63\x61\
\x66\x33\x61\x36\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\x3a\x48\x69\
\x73\x74\x6f\x72\x79\x3e\x20\x3c\x72\x64\x66\x3a\x53\x65\x71\x3e\
\x20\x3c\x72\x64\x66\x3a\x6c\x69\x20\x73\x74\x45\x76\x74\x3a\x61\
\x63\x74\x69\x6f\x6e\x3d\x22\x73\x61\x76\x65\x64\x22\x20\x73\x74\
\x45\x76\x74\x3a\x69\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\
\x78\x6d\x70\x2e\x69\x69\x64\x3a\x61\x64\x63\x64\x36\x32\x31\x66\
\x2d\x37\x64\x37\x38\x2d\x64\x36\x34\x61\x2d\x62\x30\x34\x37\x2d\
\x62\x32\x34\x34\x64\x62\x63\x61\x66\x33\x61\x36\x22\x20\x73\x74\
\x45\x76\x74\x3a\x77\x68\x65\x6e\x3d\x22\x32\x30\x32\x31\x2d\x30\
\x35\x2d\x30\x38\x54\x31\x33\x3a\x31\x35\x3a\x31\x31\x2b\x30\x32\
\x3a\x30\x30\x22\x20\x73\x74\x45\x76\x74\x3a\x73\x6f\x66\x74\x77\
\x61\x72\x65\x41\x67\x65\x6e\x74\x3d\x22\x41\x64\x6f\x62\x65\x20\
\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x32\x32\x2e\x30\x20\x28\
\x57\x69\x6e\x64\x6f\x77\x73\x29\x22\x20\x73\x74\x45\x76\x74\x3a\
\x63\x68\x61\x6e\x67\x65\x64\x3d\x22\x2f\x22\x2f\x3e\x20\x3c\x2f\
\x72\x64\x66\x3a\x53\x65\x71\x3e\x20\x3c\x2f\x78\x6d\x70\x4d\x4d\
\x3a\x48\x69\x73\x74\x6f\x72\x79\x3e\x20\x3c\x2f\x72\x64\x66\x3a\
\x44\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x3e\x20\x3c\x2f\x72\
\x64\x66\x3a\x52\x44\x46\x3e\x20\x3c\x2f\x78\x3a\x78\x6d\x70\x6d\
\x65\x74\x61\x3e\x20\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x65\
\x6e\x64\x3d\x22\x72\x22\x3f\x3e\x0b\x2a\xad\xbb\x00\x00\x00\x61\
\x49\x44\x41\x54\x28\x91\x63\xfc\xff\xff\x3f\x03\xa5\x80\x89\x62\
\x13\x68\x6a\x08\x23\x23\x63\x15\x10\x5b\x33\x42\x00\x88\xaf\x07\
\x15\x13\xc0\xa6\x9e\x05\x87\xe1\x3b\x81\xd8\x1d\x88\xc5\x81\xf8\
\x3d\x10\x5b\x00\xf1\x79\x20\xfe\x4c\x8a\x21\x67\x81\x98\x07\x88\
\xad\x40\x0e\x03\xe2\x4b\x40\xbc\x1d\x87\x5a\x06\x46\x6c\xb1\x03\
\xf2\x02\x14\x88\x40\xe9\xb7\x40\x0c\x56\x88\x55\xfd\xa0\x89\x62\
\x00\xf3\x50\x16\x2b\x33\xb9\xb5\x9c\x00\x00\x00\x00\x49\x45\x4e\
\x44\xae\x42\x60\x82\
\x00\x00\x05\xcd\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x11\x00\x00\x00\x09\x08\x06\x00\x00\x00\xd4\xe8\xc7\x0c\
\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\
\x01\x00\x9a\x9c\x18\x00\x00\x05\x0b\x69\x54\x58\x74\x58\x4d\x4c\
\x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\
\x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\
\x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\
\x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\
\x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\
\x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\
\x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\
\x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\
\x43\x6f\x72\x65\x20\x36\x2e\x30\x2d\x63\x30\x30\x32\x20\x37\x39\
\x2e\x31\x36\x34\x34\x38\x38\x2c\x20\x32\x30\x32\x30\x2f\x30\x37\
\x2f\x31\x30\x2d\x32\x32\x3a\x30\x36\x3a\x35\x33\x20\x20\x20\x20\
\x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\
\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\
\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\
\x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\
\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\
\x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x64\x63\x3d\
\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\
\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\x2e\x31\
\x2f\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x3d\x22\x68\x74\
\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\
\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\x78\x6d\x6c\x6e\
\x73\x3a\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3d\x22\x68\x74\x74\
\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\
\x2f\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x2f\x31\x2e\x30\x2f\x22\
\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x4d\x4d\x3d\x22\x68\x74\
\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\
\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x6d\x6d\x2f\x22\x20\x78\
\x6d\x6c\x6e\x73\x3a\x73\x74\x45\x76\x74\x3d\x22\x68\x74\x74\x70\
\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\
\x78\x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\x79\x70\x65\x2f\x52\x65\
\x73\x6f\x75\x72\x63\x65\x45\x76\x65\x6e\x74\x23\x22\x20\x64\x63\
\x3a\x46\x6f\x72\x6d\x61\x74\x3d\x22\x69\x6d\x61\x67\x65\x2f\x70\
\x6e\x67\x22\x20\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3d\x22\x69\
\x6d\x61\x67\x65\x2f\x70\x6e\x67\x22\x20\x78\x6d\x70\x3a\x43\x72\
\x65\x61\x74\x65\x44\x61\x74\x65\x3d\x22\x32\x30\x32\x31\x2d\x30\
\x35\x2d\x30\x38\x54\x31\x32\x3a\x32\x33\x3a\x34\x30\x2b\x30\x32\
\x3a\x30\x30\x22\x20\x78\x6d\x70\x3a\x4d\x6f\x64\x69\x66\x79\x44\
\x61\x74\x65\x3d\x22\x32\x30\x32\x31\x2d\x30\x35\x2d\x30\x38\x54\
\x31\x33\x3a\x31\x34\x3a\x35\x32\x2b\x30\x32\x3a\x30\x30\x22\x20\
\x78\x6d\x70\x3a\x4d\x65\x74\x61\x64\x61\x74\x61\x44\x61\x74\x65\
\x3d\x22\x32\x30\x32\x31\x2d\x30\x35\x2d\x30\x38\x54\x31\x33\x3a\
\x31\x34\x3a\x35\x32\x2b\x30\x32\x3a\x30\x30\x22\x20\x70\x68\x6f\
\x74\x6f\x73\x68\x6f\x70\x3a\x43\x6f\x6c\x6f\x72\x4d\x6f\x64\x65\
\x3d\x22\x33\x22\x20\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x49\
\x43\x43\x50\x72\x6f\x66\x69\x6c\x65\x3d\x22\x73\x52\x47\x42\x20\
\x49\x45\x43\x36\x31\x39\x36\x36\x2d\x32\x2e\x31\x22\x20\x78\x6d\
\x70\x4d\x4d\x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\
\x78\x6d\x70\x2e\x69\x69\x64\x3a\x66\x61\x39\x37\x31\x66\x39\x36\
\x2d\x34\x66\x39\x63\x2d\x66\x63\x34\x65\x2d\x39\x34\x64\x63\x2d\
\x31\x34\x61\x61\x32\x37\x38\x64\x30\x30\x30\x65\x22\x20\x78\x6d\
\x70\x4d\x4d\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\
\x78\x6d\x70\x2e\x64\x69\x64\x3a\x66\x61\x39\x37\x31\x66\x39\x36\
\x2d\x34\x66\x39\x63\x2d\x66\x63\x34\x65\x2d\x39\x34\x64\x63\x2d\
\x31\x34\x61\x61\x32\x37\x38\x64\x30\x30\x30\x65\x22\x20\x78\x6d\
\x70\x4d\x4d\x3a\x4f\x72\x69\x67\x69\x6e\x61\x6c\x44\x6f\x63\x75\
\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\
\x66\x61\x39\x37\x31\x66\x39\x36\x2d\x34\x66\x39\x63\x2d\x66\x63\
\x34\x65\x2d\x39\x34\x64\x63\x2d\x31\x34\x61\x61\x32\x37\x38\x64\
\x30\x30\x30\x65\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\x3a\x48\x69\
\x73\x74\x6f\x72\x79\x3e\x20\x3c\x72\x64\x66\x3a\x53\x65\x71\x3e\
\x20\x3c\x72\x64\x66\x3a\x6c\x69\x20\x73\x74\x45\x76\x74\x3a\x61\
\x63\x74\x69\x6f\x6e\x3d\x22\x73\x61\x76\x65\x64\x22\x20\x73\x74\
\x45\x76\x74\x3a\x69\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\
\x78\x6d\x70\x2e\x69\x69\x64\x3a\x66\x61\x39\x37\x31\x66\x39\x36\
\x2d\x34\x66\x39\x63\x2d\x66\x63\x34\x65\x2d\x39\x34\x64\x63\x2d\
\x31\x34\x61\x61\x32\x37\x38\x64\x30\x30\x30\x65\x22\x20\x73\x74\
\x45\x76\x74\x3a\x77\x68\x65\x6e\x3d\x22\x32\x30\x32\x31\x2d\x30\
\x35\x2d\x30\x38\x54\x31\x33\x3a\x31\x34\x3a\x35\x32\x2b\x30\x32\
\x3a\x30\x30\x22\x20\x73\x74\x45\x76\x74\x3a\x73\x6f\x66\x74\x77\
\x61\x72\x65\x41\x67\x65\x6e\x74\x3d\x22\x41\x64\x6f\x62\x65\x20\
\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x32\x32\x2e\x30\x20\x28\
\x57\x69\x6e\x64\x6f\x77\x73\x29\x22\x20\x73\x74\x45\x76\x74\x3a\
\x63\x68\x61\x6e\x67\x65\x64\x3d\x22\x2f\x22\x2f\x3e\x20\x3c\x2f\
\x72\x64\x66\x3a\x53\x65\x71\x3e\x20\x3c\x2f\x78\x6d\x70\x4d\x4d\
\x3a\x48\x69\x73\x74\x6f\x72\x79\x3e\x20\x3c\x2f\x72\x64\x66\x3a\
\x44\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x3e\x20\x3c\x2f\x72\
\x64\x66\x3a\x52\x44\x46\x3e\x20\x3c\x2f\x78\x3a\x78\x6d\x70\x6d\
\x65\x74\x61\x3e\x20\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x65\
\x6e\x64\x3d\x22\x72\x22\x3f\x3e\xc3\x13\x09\xbd\x00\x00\x00\x68\
\x49\x44\x41\x54\x28\xcf\x63\xfc\xff\xff\x3f\x03\xa5\x80\x89\x81\
\x0a\x80\x76\x86\x00\xbd\x78\x13\x88\x33\x81\x4c\x46\x20\x00\xf1\
\x83\xa1\x62\x32\xd8\xd4\xb3\xe0\x30\xbc\x11\x88\xeb\x81\x9a\x34\
\xfe\xfd\xfb\xf7\x18\xc8\x4e\x06\xe2\x15\x40\x03\x5f\x32\xe0\xb0\
\x15\x03\x83\x00\x50\x73\x01\x10\xdf\x00\xe2\x9b\x40\xdc\x86\x4f\
\x3d\x23\xb6\xd8\x01\x79\x01\x6a\x90\x0a\x94\x7f\x0f\x88\xff\xc1\
\x0c\xc1\x50\x3f\x68\xa2\x18\x00\xa6\xfa\x58\xf0\x12\x8b\x7f\x55\
\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x05\xc9\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x11\x00\x00\x00\x09\x08\x06\x00\x00\x00\xd4\xe8\xc7\x0c\
\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\
\x01\x00\x9a\x9c\x18\x00\x00\x05\x0b\x69\x54\x58\x74\x58\x4d\x4c\
\x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\
\x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\
\x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\
\x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\
\x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\
\x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\
\x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\
\x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\
\x43\x6f\x72\x65\x20\x36\x2e\x30\x2d\x63\x30\x30\x32\x20\x37\x39\
\x2e\x31\x36\x34\x34\x38\x38\x2c\x20\x32\x30\x32\x30\x2f\x30\x37\
\x2f\x31\x30\x2d\x32\x32\x3a\x30\x36\x3a\x35\x33\x20\x20\x20\x20\
\x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\
\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\
\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\
\x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\
\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\
\x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x64\x63\x3d\
\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\
\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\x2e\x31\
\x2f\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x3d\x22\x68\x74\
\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\
\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\x78\x6d\x6c\x6e\
\x73\x3a\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3d\x22\x68\x74\x74\
\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\
\x2f\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x2f\x31\x2e\x30\x2f\x22\
\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x4d\x4d\x3d\x22\x68\x74\
\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\
\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x6d\x6d\x2f\x22\x20\x78\
\x6d\x6c\x6e\x73\x3a\x73\x74\x45\x76\x74\x3d\x22\x68\x74\x74\x70\
\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\
\x78\x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\x79\x70\x65\x2f\x52\x65\
\x73\x6f\x75\x72\x63\x65\x45\x76\x65\x6e\x74\x23\x22\x20\x64\x63\
\x3a\x46\x6f\x72\x6d\x61\x74\x3d\x22\x69\x6d\x61\x67\x65\x2f\x70\
\x6e\x67\x22\x20\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3d\x22\x69\
\x6d\x61\x67\x65\x2f\x70\x6e\x67\x22\x20\x78\x6d\x70\x3a\x43\x72\
\x65\x61\x74\x65\x44\x61\x74\x65\x3d\x22\x32\x30\x32\x31\x2d\x30\
\x35\x2d\x30\x38\x54\x31\x32\x3a\x32\x33\x3a\x34\x30\x2b\x30\x32\
\x3a\x30\x30\x22\x20\x78\x6d\x70\x3a\x4d\x6f\x64\x69\x66\x79\x44\
\x61\x74\x65\x3d\x22\x32\x30\x32\x31\x2d\x30\x35\x2d\x30\x38\x54\
\x31\x33\x3a\x31\x33\x3a\x35\x35\x2b\x30\x32\x3a\x30\x30\x22\x20\
\x78\x6d\x70\x3a\x4d\x65\x74\x61\x64\x61\x74\x61\x44\x61\x74\x65\
\x3d\x22\x32\x30\x32\x31\x2d\x30\x35\x2d\x30\x38\x54\x31\x33\x3a\
\x31\x33\x3a\x35\x35\x2b\x30\x32\x3a\x30\x30\x22\x20\x70\x68\x6f\
\x74\x6f\x73\x68\x6f\x70\x3a\x43\x6f\x6c\x6f\x72\x4d\x6f\x64\x65\
\x3d\x22\x33\x22\x20\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x49\
\x43\x43\x50\x72\x6f\x66\x69\x6c\x65\x3d\x22\x73\x52\x47\x42\x20\
\x49\x45\x43\x36\x31\x39\x36\x36\x2d\x32\x2e\x31\x22\x20\x78\x6d\
\x70\x4d\x4d\x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\
\x78\x6d\x70\x2e\x69\x69\x64\x3a\x30\x61\x36\x37\x34\x65\x64\x66\
\x2d\x36\x61\x36\x61\x2d\x34\x35\x34\x36\x2d\x38\x61\x39\x37\x2d\
\x34\x36\x34\x64\x61\x30\x62\x38\x36\x34\x34\x63\x22\x20\x78\x6d\
\x70\x4d\x4d\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\
\x78\x6d\x70\x2e\x64\x69\x64\x3a\x30\x61\x36\x37\x34\x65\x64\x66\
\x2d\x36\x61\x36\x61\x2d\x34\x35\x34\x36\x2d\x38\x61\x39\x37\x2d\
\x34\x36\x34\x64\x61\x30\x62\x38\x36\x34\x34\x63\x22\x20\x78\x6d\
\x70\x4d\x4d\x3a\x4f\x72\x69\x67\x69\x6e\x61\x6c\x44\x6f\x63\x75\
\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\
\x30\x61\x36\x37\x34\x65\x64\x66\x2d\x36\x61\x36\x61\x2d\x34\x35\
\x34\x36\x2d\x38\x61\x39\x37\x2d\x34\x36\x34\x64\x61\x30\x62\x38\
\x36\x34\x34\x63\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\x3a\x48\x69\
\x73\x74\x6f\x72\x79\x3e\x20\x3c\x72\x64\x66\x3a\x53\x65\x71\x3e\
\x20\x3c\x72\x64\x66\x3a\x6c\x69\x20\x73\x74\x45\x76\x74\x3a\x61\
\x63\x74\x69\x6f\x6e\x3d\x22\x73\x61\x76\x65\x64\x22\x20\x73\x74\
\x45\x76\x74\x3a\x69\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\
\x78\x6d\x70\x2e\x69\x69\x64\x3a\x30\x61\x36\x37\x34\x65\x64\x66\
\x2d\x36\x61\x36\x61\x2d\x34\x35\x34\x36\x2d\x38\x61\x39\x37\x2d\
\x34\x36\x34\x64\x61\x30\x62\x38\x36\x34\x34\x63\x22\x20\x73\x74\
\x45\x76\x74\x3a\x77\x68\x65\x6e\x3d\x22\x32\x30\x32\x31\x2d\x30\
\x35\x2d\x30\x38\x54\x31\x33\x3a\x31\x33\x3a\x35\x35\x2b\x30\x32\
\x3a\x30\x30\x22\x20\x73\x74\x45\x76\x74\x3a\x73\x6f\x66\x74\x77\
\x61\x72\x65\x41\x67\x65\x6e\x74\x3d\x22\x41\x64\x6f\x62\x65\x20\
\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x32\x32\x2e\x30\x20\x28\
\x57\x69\x6e\x64\x6f\x77\x73\x29\x22\x20\x73\x74\x45\x76\x74\x3a\
\x63\x68\x61\x6e\x67\x65\x64\x3d\x22\x2f\x22\x2f\x3e\x20\x3c\x2f\
\x72\x64\x66\x3a\x53\x65\x71\x3e\x20\x3c\x2f\x78\x6d\x70\x4d\x4d\
\x3a\x48\x69\x73\x74\x6f\x72\x79\x3e\x20\x3c\x2f\x72\x64\x66\x3a\
\x44\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x3e\x20\x3c\x2f\x72\
\x64\x66\x3a\x52\x44\x46\x3e\x20\x3c\x2f\x78\x3a\x78\x6d\x70\x6d\
\x65\x74\x61\x3e\x20\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x65\
\x6e\x64\x3d\x22\x72\x22\x3f\x3e\xae\xa8\xe9\xb0\x00\x00\x00\x64\
\x49\x44\x41\x54\x28\xcf\x63\xfc\xff\xff\x3f\x03\xa5\x80\x71\x70\
\x1b\x02\x15\xb3\x00\xe2\xf9\x40\xcc\x04\xc4\x05\x40\xbc\x1d\xac\
\x81\x91\x91\x68\x43\xcc\x80\xd4\x6c\x20\x7e\x02\xc4\x8f\x81\xd8\
\x16\x88\x3b\x80\x78\x31\x29\x86\xdc\x04\x52\x27\x80\x1a\x12\x81\
\xec\x7f\x40\xf6\x04\x20\xf6\x04\x62\x67\xa0\xd8\x13\x62\x0d\x51\
\x81\x2a\xfe\x01\x15\x62\x01\x8a\x29\x00\xc5\x1e\x02\xd9\xbf\x07\
\x6f\xec\x00\x00\x71\xa8\x3b\xef\xa1\x21\xfc\x49\x00\x00\x00\x00\
\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x05\xc8\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x11\x00\x00\x00\x09\x08\x06\x00\x00\x00\xd4\xe8\xc7\x0c\
\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\
\x01\x00\x9a\x9c\x18\x00\x00\x05\x0b\x69\x54\x58\x74\x58\x4d\x4c\
\x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\
\x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\
\x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\
\x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\
\x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\
\x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\
\x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\
\x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\
\x43\x6f\x72\x65\x20\x36\x2e\x30\x2d\x63\x30\x30\x32\x20\x37\x39\
\x2e\x31\x36\x34\x34\x38\x38\x2c\x20\x32\x30\x32\x30\x2f\x30\x37\
\x2f\x31\x30\x2d\x32\x32\x3a\x30\x36\x3a\x35\x33\x20\x20\x20\x20\
\x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\
\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\
\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\
\x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\
\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\
\x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x64\x63\x3d\
\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\
\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\x2e\x31\
\x2f\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x3d\x22\x68\x74\
\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\
\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\x78\x6d\x6c\x6e\
\x73\x3a\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3d\x22\x68\x74\x74\
\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\
\x2f\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x2f\x31\x2e\x30\x2f\x22\
\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x4d\x4d\x3d\x22\x68\x74\
\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\
\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x6d\x6d\x2f\x22\x20\x78\
\x6d\x6c\x6e\x73\x3a\x73\x74\x45\x76\x74\x3d\x22\x68\x74\x74\x70\
\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\
\x78\x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\x79\x70\x65\x2f\x52\x65\
\x73\x6f\x75\x72\x63\x65\x45\x76\x65\x6e\x74\x23\x22\x20\x64\x63\
\x3a\x46\x6f\x72\x6d\x61\x74\x3d\x22\x69\x6d\x61\x67\x65\x2f\x70\
\x6e\x67\x22\x20\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3d\x22\x69\
\x6d\x61\x67\x65\x2f\x70\x6e\x67\x22\x20\x78\x6d\x70\x3a\x43\x72\
\x65\x61\x74\x65\x44\x61\x74\x65\x3d\x22\x32\x30\x32\x31\x2d\x30\
\x35\x2d\x30\x38\x54\x31\x32\x3a\x32\x33\x3a\x34\x30\x2b\x30\x32\
\x3a\x30\x30\x22\x20\x78\x6d\x70\x3a\x4d\x6f\x64\x69\x66\x79\x44\
\x61\x74\x65\x3d\x22\x32\x30\x32\x31\x2d\x30\x35\x2d\x30\x38\x54\
\x31\x33\x3a\x31\x34\x3a\x32\x35\x2b\x30\x32\x3a\x30\x30\x22\x20\
\x78\x6d\x70\x3a\x4d\x65\x74\x61\x64\x61\x74\x61\x44\x61\x74\x65\
\x3d\x22\x32\x30\x32\x31\x2d\x30\x35\x2d\x30\x38\x54\x31\x33\x3a\
\x31\x34\x3a\x32\x35\x2b\x30\x32\x3a\x30\x30\x22\x20\x70\x68\x6f\
\x74\x6f\x73\x68\x6f\x70\x3a\x43\x6f\x6c\x6f\x72\x4d\x6f\x64\x65\
\x3d\x22\x33\x22\x20\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x49\
\x43\x43\x50\x72\x6f\x66\x69\x6c\x65\x3d\x22\x73\x52\x47\x42\x20\
\x49\x45\x43\x36\x31\x39\x36\x36\x2d\x32\x2e\x31\x22\x20\x78\x6d\
\x70\x4d\x4d\x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\
\x78\x6d\x70\x2e\x69\x69\x64\x3a\x38\x61\x33\x32\x66\x65\x39\x63\
\x2d\x30\x35\x32\x33\x2d\x65\x37\x34\x32\x2d\x62\x64\x39\x62\x2d\
\x61\x36\x38\x32\x33\x37\x61\x31\x31\x33\x34\x64\x22\x20\x78\x6d\
\x70\x4d\x4d\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\
\x78\x6d\x70\x2e\x64\x69\x64\x3a\x38\x61\x33\x32\x66\x65\x39\x63\
\x2d\x30\x35\x32\x33\x2d\x65\x37\x34\x32\x2d\x62\x64\x39\x62\x2d\
\x61\x36\x38\x32\x33\x37\x61\x31\x31\x33\x34\x64\x22\x20\x78\x6d\
\x70\x4d\x4d\x3a\x4f\x72\x69\x67\x69\x6e\x61\x6c\x44\x6f\x63\x75\
\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\
\x38\x61\x33\x32\x66\x65\x39\x63\x2d\x30\x35\x32\x33\x2d\x65\x37\
\x34\x32\x2d\x62\x64\x39\x62\x2d\x61\x36\x38\x32\x33\x37\x61\x31\
\x31\x33\x34\x64\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\x3a\x48\x69\
\x73\x74\x6f\x72\x79\x3e\x20\x3c\x72\x64\x66\x3a\x53\x65\x71\x3e\
\x20\x3c\x72\x64\x66\x3a\x6c\x69\x20\x73\x74\x45\x76\x74\x3a\x61\
\x63\x74\x69\x6f\x6e\x3d\x22\x73\x61\x76\x65\x64\x22\x20\x73\x74\
\x45\x76\x74\x3a\x69\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\
\x78\x6d\x70\x2e\x69\x69\x64\x3a\x38\x61\x33\x32\x66\x65\x39\x63\
\x2d\x30\x35\x32\x33\x2d\x65\x37\x34\x32\x2d\x62\x64\x39\x62\x2d\
\x61\x36\x38\x32\x33\x37\x61\x31\x31\x33\x34\x64\x22\x20\x73\x74\
\x45\x76\x74\x3a\x77\x68\x65\x6e\x3d\x22\x32\x30\x32\x31\x2d\x30\
\x35\x2d\x30\x38\x54\x31\x33\x3a\x31\x34\x3a\x32\x35\x2b\x30\x32\
\x3a\x30\x30\x22\x20\x73\x74\x45\x76\x74\x3a\x73\x6f\x66\x74\x77\
\x61\x72\x65\x41\x67\x65\x6e\x74\x3d\x22\x41\x64\x6f\x62\x65\x20\
\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x32\x32\x2e\x30\x20\x28\
\x57\x69\x6e\x64\x6f\x77\x73\x29\x22\x20\x73\x74\x45\x76\x74\x3a\
\x63\x68\x61\x6e\x67\x65\x64\x3d\x22\x2f\x22\x2f\x3e\x20\x3c\x2f\
\x72\x64\x66\x3a\x53\x65\x71\x3e\x20\x3c\x2f\x78\x6d\x70\x4d\x4d\
\x3a\x48\x69\x73\x74\x6f\x72\x79\x3e\x20\x3c\x2f\x72\x64\x66\x3a\
\x44\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x3e\x20\x3c\x2f\x72\
\x64\x66\x3a\x52\x44\x46\x3e\x20\x3c\x2f\x78\x3a\x78\x6d\x70\x6d\
\x65\x74\x61\x3e\x20\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x65\
\x6e\x64\x3d\x22\x72\x22\x3f\x3e\xee\x35\x9b\x90\x00\x00\x00\x63\
\x49\x44\x41\x54\x28\xcf\x63\xfc\xff\xff\x3f\x03\xa5\x80\x71\x70\
\x1b\xc2\xc8\xc8\x08\xa2\xe4\x81\x38\x0a\xc4\x05\xe2\xf5\x40\x7c\
\x1d\x24\x88\x55\x3d\x0e\x43\x40\x06\x84\x01\xf1\x47\x20\xfe\x00\
\xc4\x4a\x40\xbc\x07\x88\xcf\x90\x62\x48\x15\x90\x7a\x08\xc4\xcb\
\x40\x96\x03\x71\x20\x10\x6b\x02\xf1\x34\xa0\xfa\x0f\xc4\x1a\x22\
\x02\x75\xc5\x6f\xa8\x10\x13\x10\x0b\x01\xf1\x7b\xa0\xfa\xbf\x83\
\x37\x76\x00\x4e\xca\x35\xef\x28\x3e\xd9\x5d\x00\x00\x00\x00\x49\
\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x18\xcb\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\
\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\
\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\x00\x00\x00\
\x09\x70\x48\x59\x73\x00\x00\x0e\xc4\x00\x00\x0e\xc4\x01\x95\x2b\
\x0e\x1b\x00\x00\x18\x60\x49\x44\x41\x54\x78\x5e\xed\x5d\x09\x78\
\x95\xd5\x99\xfe\x71\xd7\x5a\x15\x45\x8a\x4b\x1d\xeb\xb4\x7d\xb4\
\xce\x74\xc6\x79\xd4\x4e\xc7\xd6\x69\x1f\x3b\x33\xf6\xa9\x33\xad\
\xed\xb8\xd5\x8a\x56\x6b\x6b\xd1\xb6\x6a\xab\x2c\x2a\x32\x88\x10\
\x16\x59\x83\x40\xd8\xb2\x11\x42\x20\x09\x8b\xec\x4a\x58\x04\x94\
\x2d\x24\x61\x0b\x10\x12\x92\x40\x12\xc8\xbe\xdc\x24\x37\x81\x77\
\xbe\xf7\xbf\xf7\x4f\x6e\x6e\xce\x5d\x73\x42\x42\xee\xff\x3d\xcf\
\x4b\xc8\x97\xff\x3f\xff\x7f\xcf\xf7\x9e\xef\x7c\xe7\x9c\xef\x9c\
\x6b\x18\x69\x55\xb0\x11\xc1\x50\x2a\x6d\x44\x0e\x94\x4a\x1b\x91\
\x03\xa5\xd2\x46\xe4\x40\xa9\xb4\x11\x39\x50\x2a\x6d\x44\x0e\x94\
\x4a\x1b\x91\x03\xa5\xd2\x46\xe4\x40\xa9\xb4\x11\x39\x50\x2a\x75\
\x23\xd5\x46\x58\x50\xd5\xa5\x6e\x28\x95\x1a\x71\xc5\xf2\x2a\xfc\
\x39\xcb\x81\xa9\xc7\x9b\x30\xf9\x98\x8d\x60\x30\x45\x30\x3e\xb7\
\x11\xdf\x58\x5d\x01\x63\x99\x40\x51\xaf\xda\xa0\x54\x6a\xc4\x35\
\x2b\xaa\xb0\xa3\xdc\x09\x5b\x42\x13\x87\xb3\x15\x3f\x58\x76\x10\
\x46\x62\xa1\xb2\x5e\xb5\x41\xa9\xd4\x88\x6b\x96\x57\xe2\xf3\xb3\
\x36\x01\x42\x95\x86\x66\x27\x1e\x9a\xbd\x11\xc6\xdc\xc3\xca\x7a\
\xd5\x06\xa5\x52\x23\x6c\x02\x84\x27\x0d\x4d\x42\x80\x99\x6b\x60\
\xc4\x88\x17\x50\xd4\xab\x36\x28\x95\x1a\x61\x13\x20\x3c\xb1\x09\
\x10\xe1\x62\x13\x20\xc2\xc5\x26\x40\x84\x8b\x4d\x80\x08\x97\x88\
\x24\x40\x5d\x63\x33\xd2\x77\x1f\xc4\xa2\xed\x59\x48\xda\x91\xdd\
\xe7\xb0\x48\xb0\x78\x67\x0e\xf2\xcf\x54\xb9\x3f\xb1\x6f\x89\x48\
\x02\xb0\x62\xee\x1c\x3a\x0b\xfd\xde\x9c\x8f\x4b\x87\x26\xf4\x49\
\x5c\x39\x3c\x11\x49\xfb\xf2\xdc\x9f\xd8\xb7\x44\x26\x01\xce\x56\
\xe3\x8e\xb1\xcb\x60\x7c\x9c\x09\x23\x2e\xcf\x85\xd8\xbe\x85\xcb\
\xe2\x8e\x63\xd1\xf1\x1a\xf7\x27\xf6\x2d\x91\x4b\x80\x89\xab\xc4\
\xf0\x27\x94\x65\xf5\x05\x5c\x96\x56\x89\x45\x05\x8d\xee\x4f\xec\
\x5b\x22\x97\x00\x13\x6c\x02\x50\x6c\x02\x28\xca\xea\x0b\xb0\x09\
\xe0\x47\x6c\x02\xb4\x8b\x4d\x00\x45\x59\x7d\x01\x36\x01\xfc\x88\
\x4d\x80\x76\xb1\x09\xa0\x28\xab\x2f\xc0\x26\x80\x1f\xb1\x09\xd0\
\x2e\x36\x01\x14\x65\xf5\x05\xd8\x04\xf0\x23\x36\x01\xda\xc5\x26\
\x80\xa2\xac\xbe\x00\x9b\x00\x7e\xc4\x26\x40\xbb\xd8\x04\x50\x94\
\xd5\x17\x60\x13\xc0\x8f\x14\x94\x57\xe3\x9b\x93\x57\xe3\x8a\xc4\
\x7c\x5c\xb5\xbc\xaa\xcf\xe1\x4a\xc1\xb5\x2b\x2a\x91\x7c\xd2\x26\
\x80\x52\x1c\xcd\x2d\xd8\x94\x57\x86\x35\xc5\x0d\x58\x53\xea\xec\
\x93\x58\x2b\x38\xe5\x68\x75\x7f\x62\xdf\x12\x91\x04\xb0\xa5\x5d\
\x6c\x02\x44\xb8\xd8\x04\x88\x70\xb1\x09\x10\xe1\x62\x13\x20\xc2\
\xc5\x26\x40\x84\x8b\x4d\x80\x08\x17\x9b\x00\x11\x2e\x11\x49\x80\
\x1a\x47\x13\xf6\xe5\x9f\xc2\xee\xbc\xe2\xa0\xb0\x47\xb0\x4b\x90\
\x55\x58\x8a\xe6\x16\xdf\x93\x2b\x3c\x6c\x61\x7f\xc1\x69\x65\x19\
\x2a\xb0\x5c\xfe\xdc\x9b\x7f\x1a\xf5\x4d\xcd\xee\x52\x3a\x8b\x53\
\x9e\xb9\x3e\xeb\x28\xe2\xb7\xed\x47\xe2\xf6\xac\xa0\x90\xf0\x39\
\x7f\x66\xe3\x78\x59\xa5\xbb\x14\xb5\x44\x24\x01\xb6\xe7\x9e\xc4\
\x5d\x43\x67\x61\xc0\xb0\xf9\xb8\x79\x44\x6c\x40\x0c\x10\xdc\x3e\
\x32\x1e\x93\x37\xee\x81\xb3\xd5\x37\x01\x72\x8a\x4a\x71\xcf\x88\
\x39\x18\x30\x74\x9e\xb2\x1c\x6f\xb0\xdc\x81\xef\xc4\xe2\xcd\xa5\
\x5b\x50\xdb\xd8\xe4\x2e\xa5\xb3\x54\x37\x34\xe2\x47\xe3\x13\xd1\
\xef\xf5\x18\x5c\x3e\x3c\x31\x20\x2e\x1b\x26\x3f\x05\xbf\x8e\xff\
\x0c\xa7\xab\xeb\xdc\xa5\xa8\x25\x22\x09\xb0\xf9\xc8\x49\x5c\xff\
\xfe\x12\x18\xd3\xbf\x84\x31\x27\xdb\x3f\x66\x67\xe3\xca\xb9\xd9\
\x78\x67\x47\x21\xea\x9d\xfe\xa7\x56\x33\x4f\x96\x62\xe0\xa8\x64\
\x18\x53\x77\xaa\xcb\xf2\xc2\x25\x82\xe7\x36\xe4\xa1\xb4\xde\xb7\
\xf1\x29\x24\xc0\x0f\x67\xac\x82\x31\x65\x07\x8c\xd8\xe3\x9d\x76\
\x01\x75\xc4\x71\xf4\x13\x3c\xb9\xa9\x18\xa7\xeb\x03\xd7\x47\x44\
\x12\x60\x4b\x6e\x21\xae\x1f\x2f\x1f\x7a\x51\x11\x8c\xd4\x4a\xbf\
\xb8\x2a\xbd\x12\xef\x1e\x70\xa0\xa1\xf5\xbc\xfb\x6e\xdf\x92\x59\
\x58\x86\x81\xe3\x3f\x81\x91\x50\xa0\x2c\xcb\x13\x97\x08\x06\xef\
\xae\xc3\x99\xa6\x73\xee\xbb\x7d\x8b\x49\x80\x59\xeb\xdc\x46\x92\
\xfb\x15\x9f\xdf\x42\x3f\xc1\x93\x5f\xd6\xe3\x74\x63\xe0\x72\x29\
\x36\x01\x14\x65\x59\xe0\xca\xda\xbb\x07\x1b\x83\x32\x3e\xa5\x9d\
\x00\x27\x95\xe5\x59\xb8\x44\x30\x78\x77\x03\xca\x9a\x82\x2b\xb7\
\x23\x01\xd4\x65\x12\x96\xf1\x4f\x05\x69\x7c\x8a\x4d\x00\x45\x59\
\x44\xa8\xc6\xa7\x04\x43\x00\x97\xf1\xeb\xc5\xf8\xc1\x1b\x29\x18\
\x02\x84\xda\xf2\x2d\xb1\x09\xa0\x28\x2b\x1c\xe3\x53\x02\x11\xe0\
\x52\xc1\xe0\x3d\xa1\x19\x9f\x12\x88\x00\xe1\x1a\x9f\x62\x13\xc0\
\xab\x9c\x70\x8d\x4f\xf1\x47\x00\xd3\xf8\x21\xb6\x7c\x4b\xfc\x11\
\x80\xc6\x7f\x2a\x4c\xe3\x53\x6c\x02\x78\x94\xd1\x15\xe3\x53\x7c\
\x11\x20\x1c\xb7\xef\x29\xbe\x08\xd0\x95\x96\x6f\x89\x4d\x00\xf7\
\xfd\x5d\x35\x3e\x45\x45\x00\x1a\xff\xb9\x2e\x18\x9f\xa2\x22\x00\
\x8d\xff\x44\x88\x01\x9f\x4a\x6c\x02\xc8\xbd\x34\xfe\x7b\x87\xba\
\x66\x7c\x8a\x37\x01\xe8\xf6\xbb\x6a\x7c\x4a\x07\x02\xa4\xfa\x6e\
\xf9\xe7\xcf\x9f\xef\x80\x60\x24\xe2\x09\xa0\xa3\xe5\x5b\xe2\x49\
\x00\x1d\x2d\xdf\x12\x12\xe0\x61\x37\x01\xfa\xa5\x56\xe2\x7f\x77\
\xd6\xa2\xb0\xb6\x19\x4d\x8d\x0e\xd4\xd4\xd4\xa0\xa2\xa2\x02\x65\
\x65\x65\x38\x75\xea\x14\x8a\x8a\x8a\x4c\x14\x17\x17\xe3\xf4\xe9\
\xd3\x38\x73\xe6\x0c\xaa\xaa\xaa\x50\x57\x57\x87\xa6\xa6\x26\xb4\
\xb4\xb4\x74\x20\x47\xc4\x12\xe0\x3a\x21\xc0\x95\x8b\x8b\xb4\x19\
\x9f\x62\x11\xa0\x9f\x10\xe0\x39\x73\x9c\xdf\x75\xe3\x53\xaa\xea\
\x1d\xf8\x61\xf4\x6a\x18\x33\x76\xe3\xd1\xd5\x27\xf0\xf9\x81\x63\
\xc8\xda\x9f\x89\xad\x5b\xb7\x62\xdd\xda\xb5\x58\x9e\x96\x86\x94\
\xe4\xc5\x48\x4a\x88\x47\x62\x7c\x1c\x12\xe2\xe2\x90\x98\x90\x80\
\xc5\x49\x49\x48\x5d\xba\x14\x9f\xac\x5c\x81\xcf\x36\xac\xc7\x17\
\x3b\xb6\xe3\x40\x4e\x36\x4e\x16\x14\xa0\xa2\xbc\x1c\x8d\x42\xa0\
\x5a\x47\x23\x1e\x8a\x8e\x30\x02\x64\x08\x01\x06\x4e\x5c\x8b\x77\
\x33\x2b\xc5\xf8\x6e\xa5\x06\x21\x01\x06\x09\x01\x9e\xdd\x5a\x2a\
\xc6\xef\x3a\xa9\x5a\x5b\x5b\x51\x5f\x5f\x8f\x23\x79\x27\xf0\xc0\
\x7b\xb3\x71\xff\x98\x78\x7c\x9c\x90\x8c\x85\x73\x63\x30\x7d\xea\
\x54\x4c\x98\xf4\x11\x46\x4d\x9a\x86\xb7\xa6\xc6\x60\xc8\xcc\x24\
\x0c\x9e\x9d\x86\x27\xe6\xad\xc5\xcf\x17\x7e\x86\xc7\xe2\xb6\xe0\
\xb1\xf8\xad\xf8\x45\xfc\x66\x3c\x15\xf7\x29\x5e\x8c\x5d\x8b\x37\
\xe3\x56\xe1\x83\x84\x74\xcc\x49\x4e\x43\xfa\x27\xab\xb1\x63\xfb\
\xe7\xc8\xce\xce\xc1\x03\xe3\x92\x5c\x07\x66\xa5\x76\xe3\x77\x06\
\x28\x95\x1a\x11\x0a\x01\x76\xe6\x9d\xc6\xf8\xcd\x07\x51\xdf\xa2\
\xa7\x85\x5a\x92\x55\x74\x06\x6f\xac\xda\x83\x92\x86\x16\xb7\x26\
\x3c\x71\x3a\x9d\xa8\xac\xac\x44\x6e\x6e\x2e\x36\x67\x64\x60\x7e\
\x6c\x1c\x1e\x7f\x6d\x28\x86\x8d\xfa\x00\xef\x8f\xff\x08\x43\xa6\
\x2d\xc4\xe3\x62\xe8\xef\x25\xee\xc5\x5d\x4b\xf3\x70\x53\x6a\x09\
\xae\x49\x2f\xc7\xe5\xd2\x9d\x5d\x92\x5e\x8d\x7e\x02\xc3\x03\xd4\
\x5d\x96\x2e\xb1\x4e\x7a\x05\x6e\x48\x2b\xc3\x9d\xa9\x85\x78\x70\
\xe9\x21\x3c\x95\xf2\x25\x86\x2e\xd9\x88\xbb\xfe\xf2\x11\x8c\x77\
\x52\x5c\x6b\x14\x49\xc5\xdd\xf3\xe5\x11\x4a\xa5\x46\x84\x42\x00\
\x87\xb3\x05\x4d\x7e\x96\x75\xc3\x95\xfa\x66\x27\x6a\x1a\x7d\x2f\
\xeb\x06\x12\xf6\xcf\xec\xaf\x0f\x1d\x3a\x84\xb5\xe2\xda\xe7\xcd\
\x9d\x8b\x89\xe3\xa3\x30\xf2\xc3\x71\xf8\xc3\xe4\xf9\xf8\xe9\xc2\
\x0c\x7c\x2b\xe5\x18\xbe\x9a\x7e\xd6\x34\xaa\x91\x5e\x23\x9f\x5d\
\x7e\x12\xde\x5f\x03\xe3\x0b\x66\x7d\xb9\xee\x21\x51\xae\x4e\x2b\
\xc7\x65\x0b\x73\x5d\x0b\x63\x13\x33\x5c\x98\x9d\xe5\x22\x82\x4e\
\x8f\xa0\x54\x6a\x44\x28\x04\xe8\x6d\x72\xee\xdc\x39\xd3\xd5\x1f\
\x3b\x76\x0c\xeb\xd7\xaf\x47\xcc\x9c\x39\x88\x1a\x3b\x16\xef\x8c\
\x9d\x80\xe7\x3e\x4e\xc1\x7d\x8b\x73\x70\x7d\xfa\x19\x57\xcb\x36\
\x8d\xd7\xf1\xb3\x5f\x22\xad\xfb\xf6\xb5\x35\xf8\xd6\x06\xff\xb8\
\x6b\x7d\x8d\xb9\x6b\xc8\xfb\xfe\x36\x6f\xb1\xac\x1c\x46\x7c\x3e\
\x8c\xe8\x3d\x30\xa6\xed\x84\x31\xef\x30\x8c\x25\xa5\x72\x8d\xff\
\x05\xa8\xa0\xa0\x54\x6a\xc4\xc5\x4a\x00\xba\xfb\xd2\xd2\x52\xec\
\xd8\xb1\x03\xb1\xb1\xb1\x98\x10\x35\x0e\xef\x8d\x19\x8b\xc1\x33\
\x53\x70\x6f\xf2\x61\xd3\x6d\x9b\xc6\x51\x7c\x66\x0b\x5f\x59\x51\
\x8d\x25\xc5\x4e\x14\x39\xce\xa1\xa0\x41\x8d\x93\x82\xcc\xea\x56\
\xdc\xb3\xb1\xd6\xc3\x13\x28\x60\x3e\x4b\x0c\x4e\x0f\xc0\x2e\x61\
\x96\xc4\x06\x89\x32\xac\xed\x6a\xb7\xa0\x54\x6a\xc4\xc5\x46\x00\
\x0e\xc5\x1c\x0e\x87\xd9\xea\x57\xae\x5c\x89\x69\x12\xd4\x8d\x1e\
\x3d\x1a\xaf\x4e\x9e\x87\x07\x17\x65\x4a\x9f\x1e\xd8\xf0\x16\xbe\
\xb2\xb2\x1a\x9b\xce\x04\x8e\x3b\x18\x98\xfe\xe3\xa7\x01\x08\xd0\
\x06\x37\x11\x16\x15\xca\x08\xe1\x00\x8c\x85\x47\x61\xa4\x9c\xf1\
\xba\x26\x04\x28\x95\x1a\x71\x31\x11\x80\xc6\xaf\xad\xad\x45\x66\
\x66\x26\x12\x64\xb8\x66\xba\xfb\x31\x51\x78\x7c\xee\x5a\xdc\x9c\
\x7a\x3a\x68\xc3\x5b\xb8\x56\x08\x90\x11\x04\x01\xce\x08\x01\xbe\
\x1b\x34\x01\x2c\xc8\xbb\x98\x5d\xc3\x09\x18\x0b\x84\x04\x66\x97\
\xa0\xba\x2e\x00\x94\x4a\x8d\xb8\x58\x08\xc0\xfe\x9e\x11\xfe\x8e\
\x9d\x3b\x11\x13\x13\x83\x31\xd2\xea\xdf\x98\x10\x8d\x07\x92\xf6\
\xe3\x0a\xe9\xcb\x55\x7d\x7c\x20\x5c\x25\x5d\xc0\x98\x23\x8d\x48\
\x3f\xed\xc4\xae\xca\x56\x78\x0f\x40\xf3\xc5\xfd\xa7\x9d\x72\x22\
\xee\x64\x33\xee\x5c\x27\x81\x63\x48\x04\xf0\x40\x72\x09\xcc\x73\
\x95\x17\x0b\x49\x99\xd8\xa2\xba\xc6\x17\x94\x4a\x8d\xb8\x18\x08\
\x40\xe3\x9f\x3d\x7b\x16\x5b\xb6\x6c\xc1\xcc\xe8\x68\x8c\xfe\xbf\
\x51\x78\x65\xea\x42\x7c\x53\x86\x72\xae\x00\x4f\xfd\xd9\xfc\x82\
\xc6\x14\x70\x08\xc8\xae\xe0\x8f\x99\x0e\x78\xcf\x6b\x25\x14\x36\
\xa3\xff\xaa\x6a\x33\x00\xe4\x34\xb2\x75\x8f\xb2\x3c\x05\x78\x8f\
\x79\x1f\xb1\xf4\xac\x2b\x26\x08\x95\x04\x4a\xa5\x46\xf4\x76\x02\
\x9c\x17\xe3\x73\xca\x76\xf3\xe6\xcd\x98\x31\x7d\x3a\x46\x8d\x1a\
\x85\xe7\x67\x2e\xc1\xa0\x54\x09\xb6\x42\x35\xbe\x18\xef\x52\xf1\
\x16\xb7\xac\xa9\xc1\x4f\xb6\xd5\xe1\xaf\x39\x0e\xcc\xcd\x6f\xc6\
\xc6\xb2\x16\xe4\xd5\x77\x9e\xdb\x38\xdb\x7c\x1e\xdb\xca\x5b\xb0\
\x48\x88\xf0\xfe\xa1\x46\x3c\xfe\x45\x3d\xfe\xde\x1a\x11\x04\x20\
\xc3\xe5\xf2\x9c\xdf\xef\x6b\xc0\x8b\x7b\x1b\xcc\xb9\x04\x53\xcf\
\xe1\x61\xd2\x29\xe9\x0e\xc4\x23\x04\x3b\x42\x50\x2a\x35\x22\x14\
\x02\x94\x56\xd7\x21\x69\x7b\x16\x62\xb7\xee\x47\xec\xb6\xe0\xb0\
\x60\x6b\x26\x56\xef\x3f\x86\x46\xa7\xef\xbe\xb6\xb8\xa2\x06\x43\
\x17\xaf\xc7\x90\xb8\xb5\x18\x92\xb0\xae\x1d\xf1\xeb\xf0\xca\xdc\
\x74\x3c\x33\x7a\x1a\x1e\xf9\xed\x6b\x78\xf0\x97\xcf\xe1\xbe\x77\
\x67\xa1\x7f\x2a\x2b\x30\x48\xe3\xbb\x0d\x75\xf3\x27\xd5\xf8\xf9\
\xce\x7a\xcc\x11\x83\xe7\xd4\xb4\xa2\xbe\x25\xf4\x19\xc7\x66\xe1\
\x08\xbb\x85\x65\xd2\x2d\xfc\x4e\x8c\xcb\xe1\x21\xd7\x2e\xbc\x89\
\x40\xaf\x32\x64\xbf\x03\xd5\xce\xf3\xa8\x12\x90\x08\xed\x24\x10\
\xc3\x33\x1e\x08\x36\x30\x54\x2a\x35\x22\x14\x02\x6c\x39\x9c\x8f\
\xfe\xaf\x47\xe3\x92\xb7\x62\x71\xe9\xb0\xc4\x80\xe8\x27\xb8\x75\
\x74\x0a\x92\x76\xe7\xe2\x9c\x9f\x55\xb6\xcc\x82\x12\xdc\xfc\xd6\
\x1c\x18\x23\x52\x60\x8c\x5a\x29\x58\xe1\xc2\x88\x25\x30\x5e\x9e\
\x04\xe3\x67\xaf\xc0\xf8\xf7\xa7\x61\xbc\x14\x25\x41\x55\x41\xf0\
\x2d\x5f\x0c\x73\xab\xb4\xf6\x3f\x65\x39\xb0\xb3\xa2\x05\x0e\x0f\
\x1f\x4f\xfb\x33\xba\xdf\x5b\xd5\x8a\x74\x31\x68\x74\x5e\x93\xd9\
\xca\xff\x26\x5e\xe1\xaf\xd9\x0e\xbc\x73\xb0\x11\x93\x8e\x35\x61\
\x71\x51\x33\x3e\x17\x2f\x70\x52\x86\x8a\x9e\x4b\x14\x2c\xea\x68\
\xdd\x39\x8c\x3f\xda\x64\x8e\x10\xb8\x82\x69\x91\xed\xc7\xe2\x5d\
\x3c\xa7\xb4\x49\x82\x3f\x64\x36\xb8\xae\x31\x21\x24\x48\x29\x73\
\x75\x0b\x6d\x3a\x1f\x50\x2a\x35\x22\x24\x02\x70\x35\xf0\x83\x34\
\xd7\xf0\x86\xe7\x04\x05\xc0\xa0\x25\xf9\x48\x3c\x5a\xe5\xd7\xf8\
\x94\xcc\xc2\x52\x0c\x1c\x2b\x06\x5f\x90\xeb\x0a\x98\x92\xa5\x9f\
\x64\x7f\xf9\xd1\x56\x18\x7f\x9c\x0a\xe3\x89\xbf\xc1\x78\x35\xda\
\xa5\x0b\xc6\xf8\x62\x84\xeb\xa5\x5f\x67\x2b\xa5\x81\x2d\xbb\xf3\
\xe7\x71\x71\xf5\x0b\x25\xa8\x7b\x61\x4f\x03\xfe\xe9\xb3\x5a\x0c\
\x10\xcf\x40\x77\xdd\xa1\x8f\xb7\x20\x3a\x76\x19\xd7\x4b\x1c\xf0\
\xed\x0d\x35\xf8\x85\x78\x90\x49\x62\x70\x96\xd9\xe8\x41\x26\x92\
\x83\xc1\xe4\xdf\xb9\x03\xc5\x1b\xe5\x7a\x12\xca\xd3\xc9\xb4\x91\
\xc0\xd3\x13\xd0\x0b\x04\x9a\x27\x50\x2a\x35\x22\x64\x02\x98\xcb\
\xc1\xd2\xff\x2a\xca\x6a\x83\x54\xc2\xa0\xd5\xd5\x48\x94\xbe\xf3\
\x9c\x7f\xdb\x9b\xd2\x31\x1f\x40\x0c\xcc\xbe\x92\xb3\x69\x6f\x27\
\xc0\xf8\xf5\xbb\x30\x7e\x2f\x5e\x60\xe1\xb1\xa0\x8c\x4f\x43\xde\
\x9f\x51\x6b\x46\xf6\x56\x8b\xa5\xeb\x66\x5f\xfe\xaa\xb8\x65\xf6\
\xe1\xa6\x3b\xf6\x30\x72\x50\x70\x5f\xcf\xf2\x07\xca\x67\xfb\x95\
\xc4\x03\x4b\x8b\x9d\xa6\x9b\xa7\xf0\xdf\x7d\x42\x0c\x26\x9b\x70\
\x54\x72\x9d\x10\xd0\x9b\x04\x95\xee\xee\xa0\x03\x09\xe8\x05\xfc\
\x05\x85\x4a\xa5\x46\x84\x47\x00\x75\x52\xa8\x89\x10\x8d\x4f\xe9\
\x48\x00\x29\x83\x2d\xfd\x03\xf9\xfd\x85\x31\x30\x7e\xf3\x3e\x8c\
\xe8\xdd\x41\x19\x9f\xc1\xd9\x6f\x25\xe8\x62\x3f\x4d\xe1\xf3\xd9\
\x5a\x19\x88\xdd\x24\x2d\x3d\x64\xa3\xfb\x83\x94\x73\xb5\x0c\x23\
\xff\xe3\xf3\x3a\xac\x14\xb2\x59\x1e\xa1\x56\x2c\x3e\x41\xbc\xc4\
\x4d\xe2\x05\x48\x82\x19\x42\x02\x37\x47\x4c\x21\x61\x9e\xde\xd5\
\xd0\xfe\x1e\x24\x3b\xe7\x0b\xbc\xcb\xb7\xa0\x54\x6a\x84\x56\x02\
\x84\x61\x7c\x4a\x07\x02\xd0\x2d\x4e\xfb\x02\xc6\x90\x69\x30\x9e\
\x1e\x26\xb1\xc0\x72\x29\xd7\x4f\x0b\x21\xe4\xb9\x74\xf9\x63\x73\
\x9b\x50\xe7\x6e\x72\x95\x12\xc1\x8f\x97\xdf\xef\x58\xdb\x85\xf1\
\x7b\x30\x90\xb2\x69\xe8\x97\xa5\x65\x33\x26\xa0\x90\x0b\xcb\x85\
\x14\xf4\x36\xd7\x09\x49\x3c\x49\xc0\x00\xf4\xa1\x2d\x75\x5e\x65\
\x08\x09\x7c\x7d\x46\xa5\x52\x23\xb4\x11\xc0\x6d\x7c\x0e\x99\x42\
\x31\x3e\xa5\x8d\x00\x0c\xf0\x62\xc5\xd5\x0f\x4f\x72\xb9\xfe\x57\
\x67\xb8\xe6\xd6\xfd\xb5\x7e\x79\x2e\xfb\xdc\x59\x27\xda\xdd\xed\
\x01\xa9\xe4\x5f\x8a\x8b\x6e\x73\xf5\xaa\xfb\x74\x43\x9e\xf3\xcf\
\x12\x53\x7c\x52\xe2\x6c\x8b\x39\x36\x9f\x6d\xc1\x3d\x1b\x6b\xf0\
\x55\x21\xc1\x4c\x21\xc1\xbe\xea\x56\xfc\xdb\x66\x31\xbe\xea\x9d\
\x7c\xad\x20\x2a\x95\x1a\xa1\x85\x00\x5d\x30\x3e\xa5\x8d\x00\x9c\
\x32\x9d\xb4\x05\xc6\xef\x26\xc0\x78\xf6\x3d\x18\x33\x76\x05\x74\
\xfd\x6c\x7d\x1f\x8b\xf1\xad\x4a\xdf\x2a\x7d\x3d\x0d\x71\xc1\x0c\
\xef\x09\x79\x26\xe3\x03\x0e\x35\x2d\x32\xf2\x7d\x18\x40\xf2\x3d\
\x39\x6c\x54\xde\x67\x42\x3c\x80\xca\x0b\x74\x52\x68\x46\x97\x09\
\xd0\x45\xe3\x53\xda\x08\xc0\xe5\x54\x06\x7e\xcf\x8c\x90\x9f\xf1\
\x01\x87\x49\x57\x48\x9f\x3f\x2e\xb7\xb1\xad\xb2\x37\x94\xb5\xe0\
\x9b\xac\xe4\x9e\x30\xbe\x05\x79\x36\x8d\xfd\x91\x0c\x21\x9d\xee\
\x20\x74\x6d\x69\x8b\x39\x1c\x0d\xf8\x5e\x17\x1d\x01\x34\x18\x9f\
\x62\x12\x60\xac\xf4\xf5\x63\xa4\xec\x97\xa5\xf5\x3f\x27\x81\x1f\
\x97\x54\xcd\xc4\x8d\xce\xef\x6c\x81\xc1\x9d\xd5\xe7\xd3\xdd\xf6\
\xb8\xf1\x2d\xc8\x3b\x70\xa1\x89\x7d\xbf\xe5\x99\x66\x9d\x68\xc6\
\x35\xd2\x15\x28\xaf\xef\x00\x2f\x12\x74\xf8\xa5\x1b\x10\x36\x01\
\x34\x19\x9f\x62\x12\x60\xd4\x62\x18\x6f\xce\x37\xfb\xfe\x7e\x6f\
\xc7\xf9\x8f\x8c\xe5\xd9\x0f\xca\x50\x8f\xeb\xf5\x14\x06\x56\x1c\
\xd3\x77\x32\x3e\x7f\xf7\xd6\x5d\x28\xc8\x73\x39\x12\x60\xbe\x01\
\x85\xa3\x04\xce\x03\x28\xaf\xf5\x07\xa5\x52\x23\xc2\x22\x40\x62\
\x91\x18\xbf\x46\x8b\xf1\x29\xfb\x38\x13\xf8\x76\x0c\x8c\x17\xa3\
\x70\xf5\xe0\x91\xb8\x6e\xce\x5e\xbf\xad\x9f\x13\x33\x1c\x7a\x51\
\x2a\x24\xda\xe7\x04\x8d\xb7\xa1\x39\x5e\x67\x9f\x4b\xaf\x60\x4e\
\xd7\xf6\x04\xe4\x9d\xbe\x25\xcf\x67\xf0\x47\xe1\x7a\x83\x92\xa8\
\xfe\xa0\x54\x6a\x44\xa8\x04\xb8\x2e\x6a\x0d\xbe\x96\x7a\x4a\x9b\
\xf1\x29\xbb\x8f\x17\x62\xc0\x90\x09\xb8\xfa\xd9\x11\x78\x68\xe4\
\x2c\xf4\x4f\x2b\x53\xbe\xab\x09\xa9\x3c\x4e\xa6\x70\x72\x87\xc2\
\x18\xa0\x6d\x62\xc5\xe3\x9a\xbb\x25\xfa\xde\x2f\x15\xcf\xa1\x19\
\x17\x71\xda\x56\xe5\x2e\x34\xe4\x5d\x48\x50\x6b\xc2\x68\x41\x41\
\xb3\xb9\xa7\x42\x79\xad\x0a\x4a\xa5\x46\x84\x42\x80\x4d\x47\x0a\
\xf1\xed\xe9\x1b\x90\x98\x57\x0b\x77\xfd\x6b\x91\x6d\x39\xb9\xb8\
\xfd\xc5\xf7\xf0\xdf\x7f\x1e\x81\xc7\xe6\x7f\xea\x4a\xdc\x54\xbc\
\x2b\x2b\x93\xe3\x7a\x1a\x96\xb2\xbb\xaa\xd5\xcc\xe9\xeb\xd4\xa2\
\xe4\xf7\xef\x4a\x4b\x63\xaa\x17\x85\x3f\x1f\x17\x23\xf4\x14\x09\
\x38\xd5\x3c\x5b\x46\x2a\x94\x1a\x21\xc2\xa3\xdb\x7d\x0c\x05\x55\
\x50\x2a\x35\x22\x14\x02\x64\x17\x9f\xc5\x8a\x83\x85\x6d\x81\x8d\
\x0e\x61\x96\xcf\xb6\x7d\x59\xf8\xfd\xc8\x71\x18\x31\x26\x0a\xf7\
\x2e\xc9\x95\xf7\xf2\x4d\x80\x37\xb2\x1d\xe6\xb4\x2b\xa7\x79\x9f\
\xdf\xe3\x31\xa3\xe6\x05\x73\x87\x91\xfc\x9d\xd9\x3c\x14\x93\x04\
\x3d\xe5\x09\x48\xc8\x4f\xdb\x63\x96\x65\x12\x17\x70\x16\x51\x79\
\xad\x37\x94\x4a\x8d\x08\x85\x00\x5c\xd4\x09\x76\xef\x5c\xb0\xc2\
\xe4\xce\xbd\x7b\xf7\x62\xfa\xd4\x29\xf8\xd3\x94\xb9\xe8\x9f\xee\
\xdb\xfd\xdf\x2c\x41\x27\x33\x77\x28\x19\x12\xf5\x73\x02\x48\x75\
\x9d\x05\x92\x60\x70\x2f\x21\x01\x9f\xc9\x29\x62\x0a\xd7\x04\x7e\
\xc8\xd9\xc0\x60\xbc\x80\x52\xa9\x11\xa1\x10\xa0\x3b\xa4\xa1\xa1\
\x01\x19\x19\x19\x66\x56\xef\x93\x31\xab\x70\xd9\x72\xdf\xad\x9f\
\x0b\x30\x6c\xf9\x8c\x3d\x18\x07\x04\x53\x81\x96\x27\x60\x72\x07\
\xa5\xd8\x4d\x02\xd5\xb5\xdd\x0a\x79\xd7\x7f\xd9\x54\x8b\x92\x46\
\xd7\x7b\x4c\x3e\xd6\xa4\xbe\xce\x1b\x4a\xa5\x46\xf4\x34\x01\x98\
\xe7\xb7\x72\xe5\x0a\x8c\xf9\xf0\x43\x3c\x9c\xf0\xa5\xcf\xe8\x9f\
\x81\xde\x42\x09\xa0\x28\xb9\x12\xd8\x85\x92\xa3\x67\x79\x02\x8b\
\x04\x96\x27\x50\x5d\xdb\x9d\xe0\xc4\x55\xb2\x7b\x58\xc8\xa1\x6b\
\x50\x93\x43\x4a\xa5\x46\xf4\x34\x01\x4a\x4a\x4a\xcc\xcd\x98\x23\
\xc7\x4d\xc0\xdd\x29\x47\xe5\x9d\x14\x1e\x40\x2a\xe9\xeb\x12\xec\
\x1d\xa9\x75\xf5\xa1\xf3\xf2\x9b\xcd\x4d\x1d\x9d\xae\xf3\x83\x5e\
\xd1\x1d\xc8\xe7\x60\xdc\xc2\x18\x8a\xc9\x29\x3f\xdb\xd1\x79\xf8\
\xda\x09\x4a\xa5\x46\xf4\x24\x01\x18\x4f\x14\x14\x14\x60\xe1\x82\
\xf9\x78\x6b\xe2\x0c\xdc\x22\xc3\x4b\x5f\x04\x78\x74\x7b\xbd\x59\
\x69\x9c\xf8\xfb\xb5\xe7\x72\x6a\x08\xe8\x71\x12\xc8\x3b\x73\x78\
\xca\xe7\x52\x98\x44\x12\xd1\x04\x60\xb6\xef\xd1\xa3\x47\x11\x33\
\x7b\x16\x5e\x9d\xba\x00\xd7\xa5\xf9\x98\xfb\x97\x4a\x1a\x76\xc0\
\x61\xde\xc3\xc3\x1d\xbe\x13\x68\x97\x8e\x1f\x58\x31\x41\x4f\x91\
\x80\xd3\xc1\x5c\xb3\xa0\xac\x2e\x71\xaa\xb7\x9c\x79\x42\xa9\xd4\
\x88\x9e\x24\x00\xb7\x71\x73\x43\xe7\xac\x99\xd1\x78\x69\x66\xb2\
\x79\xb8\xa4\xea\x1d\xd9\xff\x33\x37\x9f\xb2\xa3\xa2\xc5\x4c\xd5\
\x56\x5d\x17\x2c\x7a\x3a\x26\x60\x00\x48\x39\x58\x1b\x44\x1c\xa0\
\x54\x6a\x44\x28\x04\x28\x2c\xaf\xc6\x9c\xcf\x76\x21\x7a\x63\xf0\
\x98\xbe\x61\x17\x96\xed\x3a\x04\x47\x73\xe7\x67\x70\x57\x6f\x4e\
\x4e\x0e\xa6\x4c\x9e\x8c\x47\xc6\x27\x74\x9e\xd1\x73\x83\x7b\xf8\
\x38\xec\xa3\x24\x17\x39\x7d\x5e\x17\x0a\x54\x24\xe0\x8c\x5d\x3f\
\x1a\x23\x4c\xef\x12\x14\xa4\x6c\xee\x41\xa0\xd0\x0b\x05\xdc\x72\
\xa6\x54\x6a\x44\x28\x04\xd8\x7c\x38\x1f\xd7\xbf\x31\x13\xc6\xd0\
\x04\xf4\x7b\x27\x39\x20\x8c\x11\x8b\xf1\xf5\xb1\x69\x58\xba\xef\
\xb8\x72\xfe\x80\x04\xc8\xce\xce\xc6\xe8\xb1\x51\xb8\xf1\x8d\x68\
\xa9\x08\xb5\x07\x60\x1e\x3f\x93\x3c\x28\x1c\x4b\xeb\x32\x90\x77\
\x77\x50\x28\x24\x78\x6d\xbf\x03\xff\xb5\xbd\x0e\x5f\x5b\xdd\x35\
\x2f\xe3\x13\xf2\xee\xff\x23\x44\xe3\x70\x96\x27\xac\x30\xa5\xec\
\xa2\x21\x80\xb9\x18\x34\x66\x39\x8c\xb9\x87\x60\x9e\xeb\xeb\x0f\
\xf1\x05\xb8\x7d\x59\x21\x96\x9e\xa8\x11\xe3\xbb\x0b\xf0\x12\xcb\
\x03\x8c\x1e\x37\x1e\x37\x0c\x9d\xaf\x7c\x3f\x56\x0e\xb7\x68\x5b\
\xb3\x68\xc3\x0e\x04\x11\x38\x85\x00\x6f\x12\x30\x42\xa7\x71\x3e\
\x3d\xd3\x62\x3e\x57\xe7\xb3\x4c\x48\x79\x3f\xda\x5a\x67\x2e\x63\
\x33\x5f\xe0\x57\x5f\x06\x18\x09\x28\x95\x1a\x11\x32\x01\xb8\x1a\
\xc8\x34\x2d\x45\x59\x6d\x90\x0f\xc4\x39\x7a\x6e\xa0\xf0\x61\x7b\
\x53\x5c\x31\xc0\x41\x8c\x99\x30\x09\x37\x0c\x5b\x28\xf7\xaa\x47\
\x00\xff\x20\x6e\xd2\x3a\xd9\x8b\x53\xc1\xba\x8d\xc2\x00\xf0\xad\
\x1c\x47\xa7\xc5\xad\x91\x87\xf4\x92\xcd\x84\x94\xf7\xaf\x9b\xeb\
\xcc\xc5\x21\x92\x2d\xe0\x88\x46\xa9\xd4\x88\xb0\x08\xa0\xca\x09\
\xb4\x20\x1f\xe6\x76\x71\xd9\xcb\x8a\x9b\xfd\x1a\x9f\x62\x8d\x02\
\xa2\x3e\x9a\x82\x1b\xde\x9e\xe7\xb3\x3c\xf6\x93\xd6\x0c\xda\xeb\
\x59\xfa\x09\xc0\xf2\xd8\xff\x5b\x69\xe4\x96\xcc\x2b\x68\xd6\x3f\
\x3a\x90\x67\x7d\x2f\xa3\xb6\x9d\x00\xbb\xfb\x12\x01\xe4\x83\xdc\
\xbe\xa6\x3a\x28\xe3\x53\xcc\x79\x80\xfc\x7c\x4c\x9a\x36\x03\xfd\
\x7d\xc5\x00\x52\xe6\xdd\x32\xec\xb3\xc6\xce\x6c\xa9\x7e\x2b\x2c\
\x1c\xf0\xbd\xc5\x63\x71\x84\xe1\x29\x9c\x36\x36\x03\x43\xd5\x3d\
\xe1\x42\x9e\xc5\x75\x00\xa6\x8f\x73\x4e\x83\xe7\x16\xfa\xfd\x3c\
\x4a\xa5\x46\x68\x23\x80\xbb\x12\x83\x35\x3e\x85\x04\xe0\x99\x7c\
\x33\x66\xc7\xa0\xff\x90\x89\x30\x96\x2a\xb2\x80\xa4\x5c\x2e\x01\
\x73\xfa\x97\x32\xfa\x70\x37\xb8\x65\x37\xee\x15\x4f\xf3\xe1\x91\
\x46\x73\x57\xb0\xb5\xb5\x8b\xc4\x63\xd0\xa6\xba\x3e\x2c\xc8\xbb\
\x73\x39\x98\x93\x5a\xec\xd5\x1e\x0b\x34\x1b\xa8\x54\x6a\x84\x16\
\x02\x84\x61\x7c\x4b\x2a\x2b\x2a\x30\x3f\x3e\x11\x37\xbe\x34\x1a\
\x46\x32\x0f\x51\xe8\x1c\x07\x30\x03\xe8\x8b\x0a\xd7\x28\x60\xbe\
\xb8\x65\xef\xbf\x6b\x03\x0d\x21\xe0\x34\xb3\xe7\x8c\x21\x87\xa0\
\x5f\x5d\xa9\x69\x54\x20\xe5\xb3\x6c\xc6\x1b\xec\x06\x98\xda\x76\
\x71\x13\xa0\x0b\xc6\xa7\xf0\x90\xa7\xe4\xf4\x15\x18\xf0\x9b\xa1\
\xae\xd1\x83\x22\x19\x84\x8b\x28\xa9\x12\x50\x52\xb8\x95\x9b\xf3\
\x02\xde\xd7\xe8\x06\x47\x07\xcf\x48\x80\xb6\x5d\xba\x05\x76\x3b\
\x3a\xe6\x1e\x4c\x48\x7d\x8d\x12\x2f\x46\x39\x51\x1f\xc4\xa2\x96\
\x52\xa9\x11\x5d\x22\x00\x8d\x1f\x42\x9f\xaf\x12\xa7\xb3\x19\x6b\
\x3e\xdb\x8c\x81\x4f\xbf\x0e\x23\x26\xc7\xe7\x6a\x60\x54\xae\x6b\
\xf6\x8c\x9b\x3b\xef\xe8\xca\x69\x1d\x21\x80\x7d\x3f\x5b\x3e\x33\
\x7a\x54\x7f\x0f\x07\xdc\xac\x92\xe2\x5e\x11\xe4\x9e\x01\xa6\x90\
\xab\xae\x6b\x83\x52\xa9\x11\x61\x13\xc0\x34\x7e\xf8\x2d\xdf\x12\
\x1e\x00\xb1\x6d\x4f\x26\x06\x91\x00\xdc\x14\xa2\x22\x80\x3c\x8b\
\xad\x91\x41\x13\x27\x4f\xfe\x33\xd0\xe4\x49\x6f\x85\xbc\xf3\x6d\
\x52\x67\x9c\x02\xa6\x70\x43\x8b\xf2\x3a\x4f\x28\x95\x1a\x11\x16\
\x01\x12\x8b\xba\xe4\xf6\xbd\x25\x33\x37\x0f\xb7\x3d\x3f\x1c\xc6\
\x7b\xcb\xe4\x9d\x14\x2d\x42\x2a\x8e\x01\x9a\x75\xc4\xbb\xb9\x8a\
\xe6\x7d\xcd\xc5\x00\xf9\x1c\x3f\x75\xaf\x6a\x32\x06\xf0\x97\xd2\
\xd6\x06\xa5\x52\x23\x42\x25\x00\xb3\x82\x6f\x4b\x3b\x65\xf6\xc9\
\x3a\x8c\x4f\x39\x5c\x58\x82\x3b\x5e\x8d\xc2\x15\x7f\x9d\x87\xcb\
\x97\xa9\x4f\xce\xe0\x2a\xda\x9a\x52\xd7\x7b\x72\xb8\x16\x28\x1d\
\xac\xb7\xc2\x5a\x08\xe2\xe8\x22\xa8\x55\x4d\xa5\x52\x23\x42\x21\
\x00\xb3\x82\xbf\x13\xbd\x11\x4b\xf3\xeb\xb4\x19\x9f\x72\xb4\xa4\
\x1c\xf7\x8d\x5a\x80\xc1\x53\xe2\xf0\x9d\xb4\x7c\x79\x2f\xb5\x17\
\xf8\x4b\x96\x6b\x11\x85\xc7\xbb\x84\x94\x59\xdb\x1b\x20\xef\x4a\
\xaf\x69\xad\x69\x30\x0e\x08\xb8\x14\x4c\x28\x95\x1a\x11\x0a\x01\
\x0e\x9c\x2a\xc7\xba\x23\xc5\x9d\xa6\x4c\xbb\x2a\x65\x35\x0d\x48\
\xdf\x7d\x10\x9b\x32\x32\xf0\x4c\x7a\xa6\x72\x24\xc0\x0a\xbc\x7b\
\x43\x4d\xdb\xde\x7f\x2e\x0f\xeb\x0c\xce\xba\x1d\xf2\xfe\xcc\x63\
\xe4\xec\x1f\xf7\x34\x30\xa6\x09\x8a\xc0\x4a\xa5\x46\x84\x42\x00\
\x33\x2b\xd8\xfd\x7f\xdd\xd2\xd2\xe2\x44\x7e\xde\x71\x7c\xfc\xe9\
\x2e\xdc\xb8\x42\xbd\x2d\x8c\x43\x31\x9e\xba\x41\xe1\x32\xee\x0f\
\x82\xcd\xac\xed\x69\xc8\x3b\x72\x75\x71\xa7\x7b\x2e\x83\x99\xcd\
\x41\xaf\x36\x2a\x95\x1a\x11\x0a\x01\xba\x53\x38\x2b\xc8\x6f\xe7\
\xc8\x3c\x94\x8b\x9f\x6c\x38\xad\x7c\x57\x56\x24\x27\x4e\x4a\xdc\
\x13\x34\xcc\x0d\x08\x6e\xc3\x65\x0f\x43\xde\xfb\xcf\xd2\x7d\xb1\
\xf5\x13\x3c\xaa\x26\x68\xe2\x2a\x95\x1a\xd1\x5b\x08\x40\xe1\xe2\
\x50\x4d\x75\x15\xe6\xe4\x94\x8a\x61\xd5\xef\x4b\x2f\x30\xf5\xb8\
\xcb\x0b\x70\x48\x18\x6e\x7e\xe0\x05\x83\xbc\xdb\xbd\x12\xec\x59\
\xa7\x87\xf0\xc4\x31\x9e\x21\xa0\xbc\x56\x05\xa5\x52\x23\x7a\x13\
\x01\x28\xe7\x5a\x5b\x51\x5c\x55\x8f\x1f\x6f\x91\x4a\x52\x19\x56\
\x74\x3c\x70\xe1\x90\x7b\x2c\x9d\x2d\x41\x15\x63\x83\xde\x4a\x02\
\x4e\x24\x71\x1f\x25\x85\x0b\x40\xdc\xdb\x10\xd2\xbb\x2a\x95\x1a\
\xd1\xdb\x08\x60\xca\xf9\x73\x48\x3a\xd9\x88\x6b\x7d\xb9\x77\xa9\
\x40\x1e\x06\x65\x7d\x67\x11\x23\x6a\x33\x4f\xb0\x97\x91\x80\xe7\
\x02\x72\x1a\xd9\xda\xc8\xca\x63\x6c\x42\xda\x18\x4a\x28\x95\x1a\
\xd1\x2b\x09\x20\x52\xeb\x3c\x6f\x1e\xb9\xe6\xcb\xa8\x57\x4b\x45\
\x72\x26\x8d\xc2\x19\xc2\x89\x47\x9b\x7a\x55\x3c\xc0\x69\xe4\x67\
\x77\x37\xa0\xdc\x9d\x73\xc8\xb9\x0b\xeb\x1c\x41\xd5\xf5\x3e\xa1\
\x54\x6a\x44\x6f\x25\x00\x85\xfd\xe5\x6d\x32\x76\x56\x56\x9a\xe8\
\x98\x51\x6b\xa5\x58\x73\x92\x90\x8b\x2c\x24\x46\xa7\x6b\x2f\x30\
\x68\x7c\x1e\x52\x65\x65\x31\x31\x9d\xed\xe1\x70\x47\x2c\x4a\xa5\
\x46\x90\x00\xdb\x7b\x29\x01\x58\x7d\xe3\x8f\x36\xe3\x0a\x3f\xfb\
\x05\x99\x2e\xc6\x6d\xe2\x14\x4e\xb1\x8e\x3d\xd2\xe8\x5a\xba\x0d\
\xa7\xb2\x35\x80\x6e\x9f\x63\x7c\x6b\xda\x9a\x79\x05\xa6\x27\xf3\
\xba\x2e\x68\x28\x95\x1a\x71\xb5\x10\x20\xa5\xa0\x1e\x05\xe5\xd5\
\xc8\x2b\xad\xe8\x55\x38\x51\x56\x81\x5d\x45\xe5\xf8\xfe\xba\x52\
\xdf\x06\x15\xfd\xfd\x9b\x6a\xcd\x03\x21\x29\xec\x6f\x79\x08\x43\
\x58\xee\xb6\x2b\x90\x67\x91\x78\x3c\x6b\xd8\x4a\x35\xa7\xf1\x99\
\x70\xca\xa5\x65\xe5\x3d\xc1\x40\xa9\xd4\x08\x7e\xa3\xe6\x80\x84\
\x23\xb8\x75\x6c\x1a\x6e\x19\xb1\x00\xb7\x0c\xef\x5d\xb8\x75\xf8\
\x7c\x5c\xfb\xfe\x52\xb4\x1d\x23\xab\xf8\x0c\xac\x7c\x1e\x0d\xc7\
\xe5\x55\x4b\xb8\x8e\xcf\x55\xc3\x0b\x72\x56\xa0\x94\xcf\x79\x7d\
\x66\x12\x59\x01\x1f\xbf\x6b\x88\xe9\x5e\x5d\x32\x3e\xa1\x54\x6a\
\x45\x25\x8c\xc5\xa7\x5c\xdf\x80\xf9\xf1\xbe\xde\x0b\x7e\xe3\x86\
\x8f\x7d\x03\x26\xc4\x08\x6c\xf5\x34\x82\x75\x3c\x1b\x03\x30\x1e\
\xd7\xc6\xf4\x6e\x33\xaf\x4f\x27\x11\x58\x96\x80\x87\x4d\x73\x62\
\xc7\x4a\x59\xa3\xf0\x64\x72\xe6\xfd\x69\xc9\x25\x54\x2a\xbb\x03\
\xac\xdc\xde\x0e\xd5\x7b\x7b\x42\x0c\xc2\x04\x0b\x1e\xf7\xce\x84\
\x4e\x0a\x9d\x31\x8d\xc3\x14\x6f\xb6\xd2\xb0\x0e\x8a\xf6\x84\xdc\
\x47\xc3\x32\x00\xe5\x31\x75\xf4\x3a\x16\xe1\x98\xeb\x3f\xfb\x44\
\x33\xbe\xa1\xb3\xfb\x51\x2a\x6d\xf8\x05\xdd\x2e\x73\xef\x79\x14\
\x4b\xbd\x7b\xae\x80\xff\xd2\x2d\x33\xa7\x90\x41\x19\x4f\x10\x33\
\xc7\xe4\x16\x19\x02\x80\xc4\x19\x24\x46\x7f\x64\x5b\x1d\xa2\x72\
\x1b\xcd\x73\x8a\x2c\xc3\x73\x18\xca\x9c\x45\xba\x7c\x73\x14\xc2\
\x7b\xbc\xde\x29\x6c\x28\x95\x36\x02\x43\x8c\xc0\xdc\x41\x0e\xc7\
\x98\x47\x60\x1d\x28\x49\x61\x3f\xcd\x23\xdb\x56\x95\x38\xcd\xe4\
\x92\x17\xa4\x25\x33\x5e\xf8\xbe\x90\x86\xa7\x78\xdc\x27\xf1\x04\
\x73\xf7\xf9\xc5\x0f\x4f\xed\xaa\xc7\xf0\x03\x8d\x48\x2a\x6a\x36\
\x67\x1d\x3d\xcb\x21\x01\x18\x7c\x72\x9e\x7f\xd0\x9a\x6e\x1a\x79\
\x28\x95\x36\x82\x87\x18\x85\xd1\x39\xf7\xfb\xf1\x0c\x5f\xce\xc9\
\x5b\x81\x9a\x25\xfc\x95\xb3\x8a\xfc\x52\x07\x46\xf0\x04\x4f\x1b\
\xa7\xb1\xdd\x0e\xa4\x4d\xf8\x3b\xc7\xf7\xfc\x36\x31\x66\xf7\x72\
\xdf\xa2\x69\xf8\xee\x30\x3e\xa1\x54\xda\x08\x1d\x62\x20\x2e\x24\
\x31\x0b\x97\x5d\x00\x33\x73\xb8\xff\xef\x98\x78\x02\x1e\xda\xc4\
\xd6\xec\x99\xe7\xc0\xff\xb2\xb1\x93\x04\xfc\x46\x10\x2e\xe5\x72\
\xa7\x10\x8f\x85\xe7\x4e\xa5\xab\xb8\x58\xd5\x9d\x86\xb7\xa0\x54\
\xda\x08\x1f\x6e\xa3\x31\x90\x63\x17\x41\x42\x70\x89\x99\xe7\x03\
\x30\x47\x8f\x49\x1b\x7f\xc8\x74\x98\x01\x1e\xfb\xf4\x87\xb7\xd6\
\x99\x8b\x4f\x37\xac\xe2\xb7\x89\xb7\xdf\xaf\x2c\xbb\x3b\xa0\x54\
\xda\xd0\x07\xcb\xa0\x81\xa0\xba\xf7\x42\x40\xa9\xb4\x11\x39\x50\
\x2a\x6d\x44\x0e\x94\x4a\x1b\x91\x03\xa5\xd2\x46\xe4\x40\xa9\xb4\
\x11\x21\xa8\xc2\xff\x03\x01\xf5\x9b\x31\xd0\x47\x7c\xa4\x00\x00\
\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x06\x4b\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x0f\x00\x00\x00\x11\x08\x04\x00\x00\x00\xa8\x03\x3e\x2a\
\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\
\x01\x00\x9a\x9c\x18\x00\x00\x05\xc8\x69\x54\x58\x74\x58\x4d\x4c\
\x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\
\x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\
\x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\
\x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\
\x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\
\x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\
\x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\
\x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\
\x43\x6f\x72\x65\x20\x36\x2e\x30\x2d\x63\x30\x30\x32\x20\x37\x39\
\x2e\x31\x36\x34\x34\x38\x38\x2c\x20\x32\x30\x32\x30\x2f\x30\x37\
\x2f\x31\x30\x2d\x32\x32\x3a\x30\x36\x3a\x35\x33\x20\x20\x20\x20\
\x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\
\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\
\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\
\x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\
\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\
\x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\
\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\
\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\
\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x4d\x4d\x3d\x22\x68\x74\x74\
\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\
\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x6d\x6d\x2f\x22\x20\x78\x6d\
\x6c\x6e\x73\x3a\x73\x74\x45\x76\x74\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\
\x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\x79\x70\x65\x2f\x52\x65\x73\
\x6f\x75\x72\x63\x65\x45\x76\x65\x6e\x74\x23\x22\x20\x78\x6d\x6c\
\x6e\x73\x3a\x64\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\
\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\
\x74\x73\x2f\x31\x2e\x31\x2f\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x70\
\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3d\x22\x68\x74\x74\x70\x3a\x2f\
\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x70\x68\
\x6f\x74\x6f\x73\x68\x6f\x70\x2f\x31\x2e\x30\x2f\x22\x20\x78\x6d\
\x70\x3a\x43\x72\x65\x61\x74\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\
\x64\x6f\x62\x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x32\
\x32\x2e\x30\x20\x28\x57\x69\x6e\x64\x6f\x77\x73\x29\x22\x20\x78\
\x6d\x70\x3a\x43\x72\x65\x61\x74\x65\x44\x61\x74\x65\x3d\x22\x32\
\x30\x32\x31\x2d\x30\x35\x2d\x30\x38\x54\x30\x31\x3a\x32\x33\x3a\
\x35\x38\x2b\x30\x32\x3a\x30\x30\x22\x20\x78\x6d\x70\x3a\x4d\x65\
\x74\x61\x64\x61\x74\x61\x44\x61\x74\x65\x3d\x22\x32\x30\x32\x31\
\x2d\x30\x35\x2d\x30\x38\x54\x30\x31\x3a\x32\x33\x3a\x35\x38\x2b\
\x30\x32\x3a\x30\x30\x22\x20\x78\x6d\x70\x3a\x4d\x6f\x64\x69\x66\
\x79\x44\x61\x74\x65\x3d\x22\x32\x30\x32\x31\x2d\x30\x35\x2d\x30\
\x38\x54\x30\x31\x3a\x32\x33\x3a\x35\x38\x2b\x30\x32\x3a\x30\x30\
\x22\x20\x78\x6d\x70\x4d\x4d\x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\
\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\x3a\x35\x38\x30\x65\
\x37\x30\x31\x39\x2d\x61\x66\x64\x35\x2d\x33\x38\x34\x30\x2d\x38\
\x33\x35\x64\x2d\x64\x38\x33\x33\x30\x63\x66\x31\x33\x62\x30\x31\
\x22\x20\x78\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\
\x49\x44\x3d\x22\x61\x64\x6f\x62\x65\x3a\x64\x6f\x63\x69\x64\x3a\
\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x37\x64\x39\x34\x63\x30\
\x34\x39\x2d\x62\x34\x37\x38\x2d\x30\x33\x34\x30\x2d\x62\x34\x34\
\x37\x2d\x61\x64\x39\x66\x35\x33\x61\x30\x36\x61\x37\x32\x22\x20\
\x78\x6d\x70\x4d\x4d\x3a\x4f\x72\x69\x67\x69\x6e\x61\x6c\x44\x6f\
\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\
\x64\x3a\x36\x37\x36\x63\x63\x32\x32\x39\x2d\x37\x61\x31\x36\x2d\
\x31\x65\x34\x35\x2d\x39\x34\x32\x63\x2d\x31\x32\x32\x34\x38\x31\
\x34\x33\x62\x35\x65\x30\x22\x20\x64\x63\x3a\x66\x6f\x72\x6d\x61\
\x74\x3d\x22\x69\x6d\x61\x67\x65\x2f\x70\x6e\x67\x22\x20\x70\x68\
\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x43\x6f\x6c\x6f\x72\x4d\x6f\x64\
\x65\x3d\x22\x31\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\x3a\x48\x69\
\x73\x74\x6f\x72\x79\x3e\x20\x3c\x72\x64\x66\x3a\x53\x65\x71\x3e\
\x20\x3c\x72\x64\x66\x3a\x6c\x69\x20\x73\x74\x45\x76\x74\x3a\x61\
\x63\x74\x69\x6f\x6e\x3d\x22\x63\x72\x65\x61\x74\x65\x64\x22\x20\
\x73\x74\x45\x76\x74\x3a\x69\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\
\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\x3a\x36\x37\x36\x63\x63\x32\
\x32\x39\x2d\x37\x61\x31\x36\x2d\x31\x65\x34\x35\x2d\x39\x34\x32\
\x63\x2d\x31\x32\x32\x34\x38\x31\x34\x33\x62\x35\x65\x30\x22\x20\
\x73\x74\x45\x76\x74\x3a\x77\x68\x65\x6e\x3d\x22\x32\x30\x32\x31\
\x2d\x30\x35\x2d\x30\x38\x54\x30\x31\x3a\x32\x33\x3a\x35\x38\x2b\
\x30\x32\x3a\x30\x30\x22\x20\x73\x74\x45\x76\x74\x3a\x73\x6f\x66\
\x74\x77\x61\x72\x65\x41\x67\x65\x6e\x74\x3d\x22\x41\x64\x6f\x62\
\x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x32\x32\x2e\x30\
\x20\x28\x57\x69\x6e\x64\x6f\x77\x73\x29\x22\x2f\x3e\x20\x3c\x72\
\x64\x66\x3a\x6c\x69\x20\x73\x74\x45\x76\x74\x3a\x61\x63\x74\x69\
\x6f\x6e\x3d\x22\x73\x61\x76\x65\x64\x22\x20\x73\x74\x45\x76\x74\
\x3a\x69\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\
\x2e\x69\x69\x64\x3a\x35\x38\x30\x65\x37\x30\x31\x39\x2d\x61\x66\
\x64\x35\x2d\x33\x38\x34\x30\x2d\x38\x33\x35\x64\x2d\x64\x38\x33\
\x33\x30\x63\x66\x31\x33\x62\x30\x31\x22\x20\x73\x74\x45\x76\x74\
\x3a\x77\x68\x65\x6e\x3d\x22\x32\x30\x32\x31\x2d\x30\x35\x2d\x30\
\x38\x54\x30\x31\x3a\x32\x33\x3a\x35\x38\x2b\x30\x32\x3a\x30\x30\
\x22\x20\x73\x74\x45\x76\x74\x3a\x73\x6f\x66\x74\x77\x61\x72\x65\
\x41\x67\x65\x6e\x74\x3d\x22\x41\x64\x6f\x62\x65\x20\x50\x68\x6f\
\x74\x6f\x73\x68\x6f\x70\x20\x32\x32\x2e\x30\x20\x28\x57\x69\x6e\
\x64\x6f\x77\x73\x29\x22\x20\x73\x74\x45\x76\x74\x3a\x63\x68\x61\
\x6e\x67\x65\x64\x3d\x22\x2f\x22\x2f\x3e\x20\x3c\x2f\x72\x64\x66\
\x3a\x53\x65\x71\x3e\x20\x3c\x2f\x78\x6d\x70\x4d\x4d\x3a\x48\x69\
\x73\x74\x6f\x72\x79\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\
\x63\x72\x69\x70\x74\x69\x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\
\x52\x44\x46\x3e\x20\x3c\x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\
\x3e\x20\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\
\x22\x72\x22\x3f\x3e\xb6\x12\xbb\x13\x00\x00\x00\x29\x49\x44\x41\
\x54\x28\xcf\x63\xfc\xcf\x80\x0f\x30\x0e\x7d\x69\x54\x75\xff\x19\
\x31\x44\x11\x4c\x98\x24\x9a\x26\x08\x07\x21\x89\x61\x37\xe3\x7f\
\x64\xc9\xa1\x1c\x6a\x00\x31\xa6\x19\x01\x87\x60\x49\xba\x00\x00\
\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x06\x88\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x0f\x00\x00\x00\x11\x08\x06\x00\x00\x00\x02\x0a\xf6\xa1\
\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\
\x01\x00\x9a\x9c\x18\x00\x00\x05\xf1\x69\x54\x58\x74\x58\x4d\x4c\
\x3a\x63\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\
\x00\x00\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\
\x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\
\x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\
\x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\
\x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\
\x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\
\x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\
\x43\x6f\x72\x65\x20\x36\x2e\x30\x2d\x63\x30\x30\x32\x20\x37\x39\
\x2e\x31\x36\x34\x34\x38\x38\x2c\x20\x32\x30\x32\x30\x2f\x30\x37\
\x2f\x31\x30\x2d\x32\x32\x3a\x30\x36\x3a\x35\x33\x20\x20\x20\x20\
\x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\
\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\
\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\
\x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\
\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\
\x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\
\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\
\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\
\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x4d\x4d\x3d\x22\x68\x74\x74\
\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\
\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x6d\x6d\x2f\x22\x20\x78\x6d\
\x6c\x6e\x73\x3a\x73\x74\x45\x76\x74\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\
\x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\x79\x70\x65\x2f\x52\x65\x73\
\x6f\x75\x72\x63\x65\x45\x76\x65\x6e\x74\x23\x22\x20\x78\x6d\x6c\
\x6e\x73\x3a\x64\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\
\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\
\x74\x73\x2f\x31\x2e\x31\x2f\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x70\
\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3d\x22\x68\x74\x74\x70\x3a\x2f\
\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x70\x68\
\x6f\x74\x6f\x73\x68\x6f\x70\x2f\x31\x2e\x30\x2f\x22\x20\x78\x6d\
\x70\x3a\x43\x72\x65\x61\x74\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\
\x64\x6f\x62\x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x32\
\x32\x2e\x30\x20\x28\x57\x69\x6e\x64\x6f\x77\x73\x29\x22\x20\x78\
\x6d\x70\x3a\x43\x72\x65\x61\x74\x65\x44\x61\x74\x65\x3d\x22\x32\
\x30\x32\x31\x2d\x30\x35\x2d\x30\x38\x54\x30\x31\x3a\x33\x30\x3a\
\x31\x35\x2b\x30\x32\x3a\x30\x30\x22\x20\x78\x6d\x70\x3a\x4d\x65\
\x74\x61\x64\x61\x74\x61\x44\x61\x74\x65\x3d\x22\x32\x30\x32\x31\
\x2d\x30\x35\x2d\x30\x38\x54\x30\x31\x3a\x33\x30\x3a\x31\x35\x2b\
\x30\x32\x3a\x30\x30\x22\x20\x78\x6d\x70\x3a\x4d\x6f\x64\x69\x66\
\x79\x44\x61\x74\x65\x3d\x22\x32\x30\x32\x31\x2d\x30\x35\x2d\x30\
\x38\x54\x30\x31\x3a\x33\x30\x3a\x31\x35\x2b\x30\x32\x3a\x30\x30\
\x22\x20\x78\x6d\x70\x4d\x4d\x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\
\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\x3a\x35\x35\x62\x36\
\x35\x32\x66\x32\x2d\x38\x35\x64\x64\x2d\x62\x31\x34\x38\x2d\x39\
\x65\x65\x66\x2d\x30\x30\x35\x32\x38\x62\x61\x36\x35\x37\x35\x30\
\x22\x20\x78\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\
\x49\x44\x3d\x22\x61\x64\x6f\x62\x65\x3a\x64\x6f\x63\x69\x64\x3a\
\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x38\x65\x65\x33\x36\x65\
\x38\x32\x2d\x63\x35\x65\x36\x2d\x61\x37\x34\x37\x2d\x39\x34\x39\
\x63\x2d\x61\x38\x65\x32\x65\x37\x34\x33\x65\x36\x35\x38\x22\x20\
\x78\x6d\x70\x4d\x4d\x3a\x4f\x72\x69\x67\x69\x6e\x61\x6c\x44\x6f\
\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\
\x64\x3a\x63\x34\x33\x31\x39\x64\x66\x33\x2d\x30\x36\x34\x32\x2d\
\x63\x31\x34\x37\x2d\x39\x36\x66\x38\x2d\x36\x65\x30\x39\x61\x39\
\x65\x34\x37\x30\x32\x37\x22\x20\x64\x63\x3a\x66\x6f\x72\x6d\x61\
\x74\x3d\x22\x69\x6d\x61\x67\x65\x2f\x70\x6e\x67\x22\x20\x70\x68\
\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x43\x6f\x6c\x6f\x72\x4d\x6f\x64\
\x65\x3d\x22\x33\x22\x20\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3a\
\x49\x43\x43\x50\x72\x6f\x66\x69\x6c\x65\x3d\x22\x73\x52\x47\x42\
\x20\x49\x45\x43\x36\x31\x39\x36\x36\x2d\x32\x2e\x31\x22\x3e\x20\
\x3c\x78\x6d\x70\x4d\x4d\x3a\x48\x69\x73\x74\x6f\x72\x79\x3e\x20\
\x3c\x72\x64\x66\x3a\x53\x65\x71\x3e\x20\x3c\x72\x64\x66\x3a\x6c\
\x69\x20\x73\x74\x45\x76\x74\x3a\x61\x63\x74\x69\x6f\x6e\x3d\x22\
\x63\x72\x65\x61\x74\x65\x64\x22\x20\x73\x74\x45\x76\x74\x3a\x69\
\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\
\x69\x64\x3a\x63\x34\x33\x31\x39\x64\x66\x33\x2d\x30\x36\x34\x32\
\x2d\x63\x31\x34\x37\x2d\x39\x36\x66\x38\x2d\x36\x65\x30\x39\x61\
\x39\x65\x34\x37\x30\x32\x37\x22\x20\x73\x74\x45\x76\x74\x3a\x77\
\x68\x65\x6e\x3d\x22\x32\x30\x32\x31\x2d\x30\x35\x2d\x30\x38\x54\
\x30\x31\x3a\x33\x30\x3a\x31\x35\x2b\x30\x32\x3a\x30\x30\x22\x20\
\x73\x74\x45\x76\x74\x3a\x73\x6f\x66\x74\x77\x61\x72\x65\x41\x67\
\x65\x6e\x74\x3d\x22\x41\x64\x6f\x62\x65\x20\x50\x68\x6f\x74\x6f\
\x73\x68\x6f\x70\x20\x32\x32\x2e\x30\x20\x28\x57\x69\x6e\x64\x6f\
\x77\x73\x29\x22\x2f\x3e\x20\x3c\x72\x64\x66\x3a\x6c\x69\x20\x73\
\x74\x45\x76\x74\x3a\x61\x63\x74\x69\x6f\x6e\x3d\x22\x73\x61\x76\
\x65\x64\x22\x20\x73\x74\x45\x76\x74\x3a\x69\x6e\x73\x74\x61\x6e\
\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\x3a\x35\x35\
\x62\x36\x35\x32\x66\x32\x2d\x38\x35\x64\x64\x2d\x62\x31\x34\x38\
\x2d\x39\x65\x65\x66\x2d\x30\x30\x35\x32\x38\x62\x61\x36\x35\x37\
\x35\x30\x22\x20\x73\x74\x45\x76\x74\x3a\x77\x68\x65\x6e\x3d\x22\
\x32\x30\x32\x31\x2d\x30\x35\x2d\x30\x38\x54\x30\x31\x3a\x33\x30\
\x3a\x31\x35\x2b\x30\x32\x3a\x30\x30\x22\x20\x73\x74\x45\x76\x74\
\x3a\x73\x6f\x66\x74\x77\x61\x72\x65\x41\x67\x65\x6e\x74\x3d\x22\
\x41\x64\x6f\x62\x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\
\x32\x32\x2e\x30\x20\x28\x57\x69\x6e\x64\x6f\x77\x73\x29\x22\x20\
\x73\x74\x45\x76\x74\x3a\x63\x68\x61\x6e\x67\x65\x64\x3d\x22\x2f\
\x22\x2f\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x53\x65\x71\x3e\x20\x3c\
\x2f\x78\x6d\x70\x4d\x4d\x3a\x48\x69\x73\x74\x6f\x72\x79\x3e\x20\
\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\x63\x72\x69\x70\x74\x69\x6f\
\x6e\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x20\x3c\x2f\
\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\x3e\x20\x3c\x3f\x78\x70\x61\
\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\x22\x72\x22\x3f\x3e\x74\x23\
\x55\x30\x00\x00\x00\x3d\x49\x44\x41\x54\x38\xcb\x63\xfc\xff\xff\
\x3f\x03\xb9\x80\x71\x54\xf3\x40\x6a\x66\x3c\xf0\x05\xa7\x69\xff\
\x1d\x78\x18\x09\x69\x06\xab\xc3\x6a\x91\x03\x0f\x61\x67\x63\x31\
\x80\x11\x6a\x33\x71\x9a\x41\x0a\xa1\x5e\xc0\xaa\x71\x34\x9e\xe9\
\xad\x19\x00\xf7\x8a\x45\xdf\xb1\x25\xca\x25\x00\x00\x00\x00\x49\
\x45\x4e\x44\xae\x42\x60\x82\