aboutsummaryrefslogtreecommitdiff
path: root/src/doc/ps/h-alldoms.ps
blob: 0fd08ef87ec39e964321578f688f2885206f4426 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
%!PS-Adobe-2.0 EPSF-1.2
%%BoundingBox: 143.000000 280.520006 469.000000 541.719999
%%Creator: xwd2ps
%%CreationDate: Fri Nov 22 15:13:14 1991
%%Title: h-alldoms.xwd
%%EndComments
% xwd2ps -- program written by Robert C. Tatar and Craig A. McGowan.
% The command used to create this file (missing quotes on strings):
%   xwd2ps -w4.5 -h2.5 h-alldoms.xwd
% by loan7:themos (Themos Tsikas, NAG Ltd)
% Information from XWD rasterfile header:
%   width =  622, height = 495, depth = 8
%   file_version = 7, pixmap_format = 2, byte_order = 1
%   bitmap_unit = 32, bitmap_bit_order = 1, bitmap_pad = 32
%   bits_per_pixel = 8, bytes_per_line = 624, visual_class = 3
%   bits/rgb = 8, colormap entries = 256, ncolors = 256
% Portion of raster image in this file:
%   starting line = 1
%   ending line = 495
%   starting column = 1
%   ending column = 622
gsave
/inch {72 mul} def
/buffer 2 string def
/rgbmap 768 string def
/rgb (000) def
/pixels 768 string def
%%Title: colorimage.ps
% Written 11-4-88 by Bob Tatar
% U.S. Mail: GE-CRD, PO Box 8, KW-C214, Schenectady, NY 12301
%    E-Mail: tatar@crd.ge.com
% colorimage procedure to be used on monochrome printers
% or when the colorimage procedure is not available
% NOTE: Only 1 color mode is supported: single proc. & RGB

systemdict /colorimage known not {        % only create if not in systemdict
  % Utility procedure for colorimage operator.  This procedure takes a
  % string of rgb encoded values and creates a string 1/3 as long with
  % monochrome values.  This procedure assumes 8 bits/color (i.e. 
  % 1 character/color)
  % storage format for input string:  (r1 g1 b1  r2 g2 b2  r3 g3 b3  ... )
  % storage format for output string: (g1  g2  g3 ... )
  
  /colortograyscale { %def                % (string)
    dup /rgbdata exch store               % (string)
    length 3 idiv                         % Ns/3 
    /npixls exch store                    % ; npixls => Ns/3
    /indx 0 store                         % ; indx => 0
    /pixls npixls string store            % ; pixls => (....)
    0 1 npixls -1 add {                   % counter 
      pixls exch                          % pixls counter
      rgbdata indx get .3 mul             % pixls counter .3*rgbdata(ind)
      rgbdata indx 1 add get .59 mul add  % pixls counter .3*rgbdata(ind) + 
					  %          .59*rgbdata(ind+1)
      rgbdata indx 2 add get .11 mul add  % pixls counter .3*rgbdata(ind) + .59
					  %  *rgbdata(ind+1)+.11*rgbdata(ind+2)
      cvi                                 % pixls counter <grayscale value>
      put                                 %
      /indx indx 3 add store              % ; /ind => ind+3
    } for                                 % repeat for each rgb value
    pixls                                 % (pixls)
  } bind def                              % ; /colortograyscale -> dictionary
  
  % Utility procedure for colorimage operator.  This procedure takes two
  % procedures off the stack and merges them into a single procedure.
  
  /mergeprocs { %def      % {proc1} {proc2}
    dup length            % {proc1} {proc2} N2
    3 -1 roll             % {proc2} N2 {proc1}
    dup                   % {proc2} N2 {proc1} {proc1}
    length                % {proc2} N2 {proc1} N1
    dup                   % {proc2} N2 {proc1} N1 N1
    5 1 roll              % N1 {proc2} N2 {proc1} N1
    3 -1 roll             % N1 {proc2} {proc1} N1 N2
    add                   % N1 {proc2} {proc1} N1+N2
    array cvx             % N1 {proc2} {proc1} { ... }
    dup                   % N1 {proc2} {proc1} { ... } { ... }
    3 -1 roll             % N1 {proc2} { ... } { ... } {proc1}
    0 exch                % N1 {proc2} { ... } { ... } 0 {proc1}
    putinterval           % N1 {proc2} { <<{proc1}>> ... }
    dup                   % N1 {proc2} { <<{proc1}>> ... } { <<{proc1}>> ... }
    4 2 roll              % { <<{proc1}>> ... } { <<{proc1}>> ... } N1 {proc2}
    putinterval           % { <<{proc1}>> <<{proc2}>> }
  } bind def              % ; /mergeprocs => dictionary

  /colorimage { %def               % {imageproc} multiproc ncolors
     pop                           % {imageproc} multiproc ; assume 3 colors
     pop                           % {imageproc}           ; assume false
     {colortograyscale}            % {imageproc} {colortograyscale}
     mergeprocs                    % {imageproc colortograyscale}
     image                         % construct monochrome image
  } bind def                       % ; /colorimage => dictionary
} if                               % only create if it doesn't already exist
/drawcolorimage {
  622 495 8
  [622 0 0 -495 0 495]
  {currentfile buffer readhexstring pop pop  % get run length & color info
    /npixels buffer 0 get 1 add 3 mul store  % number of pixels (run length)
    /color buffer 1 get 3 mul store          % color of pixels
    % /pixels npixels string store          % create string to hold colors
    /rgb rgbmap color 3 getinterval store    % get rgb value
    0 3 npixels -1 add {
	  pixels exch rgb putinterval
    } for
    pixels 0 npixels getinterval             % Return color values
  }
  false 3
  colorimage
} bind def
%2.000000 inch 3.910000 inch translate
matrix currentmatrix
4.500000 inch 2.500000 inch scale

% get rgb color table
currentfile rgbmap readhexstring pop pop
000000
ffffff
b3b3b3
d8d8bf
dbdb70
ffff00
3299cc
236b8e
238e23
cc7f32
0000ff
2f2f4f
5f9f9f
ff0000
1a1a1a
333333
7f7f7f
4d4d4d
cccccc
d4d8e8
757780
46474d
b4b8c5
fbfbfb
626262
3b3b3b
00dbaa
00dbff
00ff00
00ff55
00ffaa
00ffff
240000
240055
2400aa
2400ff
242400
242455
2424aa
2424ff
244900
244955
2449aa
2449ff
246d00
246d55
246daa
246dff
249200
249255
2492aa
2492ff
24b600
24b655
24b6aa
24b6ff
24db00
24db55
24dbaa
24dbff
24ff00
24ff55
24ffaa
24ffff
490000
490055
4900aa
4900ff
492400
492455
4924aa
4924ff
494900
494955
4949aa
4949ff
496d00
496d55
496daa
496dff
499200
499255
4992aa
4992ff
49b600
49b655
49b6aa
49b6ff
49db00
49db55
49dbaa
49dbff
49ff00
49ff55
49ffaa
49ffff
6d0000
6d0055
6d00aa
6d00ff
6d2400
6d2455
6d24aa
6d24ff
6d4900
6d4955
6d49aa
6d49ff
6d6d00
6d6d55
6d6daa
6d6dff
6d9200
6d9255
6d92aa
6d92ff
6db600
6db655
6db6aa
6db6ff
6ddb00
6ddb55
6ddbaa
6ddbff
6dff00
6dff55
6dffaa
6dffff
920000
920055
9200aa
9200ff
922400
922455
9224aa
9224ff
924900
924955
9249aa
9249ff
926d00
926d55
926daa
926dff
929200
929255
9292aa
9292ff
92b600
92b655
92b6aa
92b6ff
92db00
92db55
92dbaa
92dbff
92ff00
92ff55
92ffaa
92ffff
b60000
b60055
b600aa
b600ff
b62400
b62455
b624aa
b624ff
b64900
b64955
b649aa
b649ff
b66d00
b66d55
b66daa
b66dff
b69200
b69255
b692aa
b692ff
b6b600
b6b655
b6b6aa
b6b6ff
b6db00
b6db55
b6dbaa
b6dbff
b6ff00
b6ff55
b6ffaa
b6ffff
db0000
db0055
db00aa
db00ff
db2400
db2455
db24aa
db24ff
db4900
db4955
db49aa
db49ff
db6d00
db6d55
db6daa
db6dff
db9200
db9255
db92aa
db92ff
dbb600
dbb655
dbb6aa
dbb6ff
dbdb00
dbdb55
dbdbaa
dbdbff
dbff00
dbff55
dbffaa
dbffff
ff0000
ff0055
ff00aa
ff00ff
ff2400
ff2455
ff24aa
ff24ff
ff4900
ff4955
ff49aa
ff49ff
ff6d00
ff6d55
ff6daa
ff6dff
ff9200
ff9255
ff92aa
ff92ff
ffb600
ffb655
ffb6aa
ffb6ff
ffdb00
ffdb55
ffdbaa
ffdbff
ffff00
ffff55
ffffaa
ffffff


drawcolorimage
ff12ff126d1220120011ff12ff12281200112012001101121e0100110012ff01ff0127010011001
21e01011101121e0100110012ff01ff012701001100121e01011101121e010011
0012ff01ff012701001100121e01011101121e0100110012ff01ff012701001100121e010111011
21e0100110012ff01ff012701001100121e01011101121e0100110012ff01ff01
2701001100121e01011101121e0100110012ff01ff012701001100121e010111011206011811001
2ff11ff1128110012171106010111011206010011ff12ff125a12060101110112
060100110012150100110012ff01ff010f010011001215010011001215010011001206010111011
2060100110012150100110012ff01ff010f010011001215010011001215010011
0012060101110112060100110012150100110012ff01ff010f01001100121501001100121501001
10012060101110112060100110012150100110012ff01ff010f01001100121501
0011001202010f12020100110012060101110112060100110012150100110012ff01ff010f01001
10012150100110012020100120d01001102010011001206010111011206010011
0012150100110012ff01ff010f0100110012150100110012020100120d010011020100110012060
101110112060100110012150100110012ff01ff010f0100110012150100110012
020100120d010011020100110012060101110112060100110012150100110012ff01ff010f01001
10012150100110012020100120d01001102010011001206010111011206010011
0012150100110012ff01ff010f0100110012150100110012020100120d010011020100110012060
10111011206010011001202010f12020100110012ff01ff010f01001100120801
0312080100110012020100120d010011020100110012060101110112060100110012020100120d0
10011020100110012ff01ff010f01001100120801001201010011080100110012
020100120d010011020100110012060101110112060100110012020100120d01001102010011001
2ff01ff010f01001100120801001201010011080100110012020100120d010011
020100110012060101110112060100110012020100120e11020100110012ff01ff010f010011001
2080100120211080100110012020100120d010011020100110012060101110112
060100110012150100110012ff01ff010f0100110012150100110012020100120d0100110201001
10012060101110112060100110012150100110012ff01ff010f01001100121501
00110012020100120d010011020100110012060101110112060100110012150100110012ff01ff0
10f0100110012150100110012020100120d010011020100110012060101110112
060100110012150100110012ff01ff010f0100110012150100110012020100120d0100110201001
10012060101110112060100110012150100110012ff01ff010f01001100121501
00110012020100120d010011020100110012060101110112060100110012150100110012ff01ff0
10f0100110012150100110012020100120e110201001100120601011101120601
00110012150100110012ff01ff010f0100110012150100110012150100110012060101110112060
100110012150100110012ff01ff010f0100110012150100110012150100110012
06010111011206010011001216110012ff11ff11101100121611001216110012060101110012ff1
1ff11621100120811091200117b00ff015f017b00091200110112060101117b00
ff015f017b000112060101110112060101117b00ff015f017b000112060101110112060101117b0
0ff015f017b000112060101110112060101110500090103000101070001010300
010103000b014500ff015f010600010105000101040006010400010106000101030008014100011
20601011101120601011105000a0102000201060002010200020102000c014400
ff015f0106000201040002010200080103000201050002010200090140000112060101110112060
1011105000a0103000201040002010300020103000b014400ff015f0106000201
04000201020009010200030103000301020009014000011206010111011206010111050002010b0
002010400020103000201070002014900ff015f01060002010400020102000201
030002010200030103000301020002014700011206010111011206010111050002010c000201020
0020104000201070002014900ff015f0106000201040002010200020103000201
0200030103000301020002014700011206010111011206010111050002010c00020102000201040
00201070002014900730100000301070008010200000100001e01000022010000
8c0106000201040002010200020103000201020004010100040102000201280000011d000112060
10111011206010111050002010d00020100000201050002010700020149007201
01000301070007010100000102001e010000220100008c010600020104000201020002010300020
1020004010100040102000201260004011b000112060101110112060101110500
02010d0002010000020105000201070002014900710102000301000004010000070101000201010
01d010100210101008c010600020104000201020002010300020102000b010200
0201240008011900011206010111011206010111050002010e00040106000201070002014900700
103000801000008010100030100001d010100210101008c010600020104000201
02000201030002010200020100000301000002010200020122000c0117000112060101110112060
10111050008010800040106000201070002014900720101000701010008010100
0301000002010300020101000001020003010300000100000101060001010100000103000101020
00001020003010300020106000301030002010100000103000201030000010000
6e0106000a010200020103000201020002010000030100000201020007011b00100115000112060
10111011206010111050009010800020107000201070002014900720101000601
0100090101000601010001010100020101000101010001010100020101000301010005010200010
10100010101000101010002010100010101000301010005010100010101000201
02000101010000010100020101006e0106000a01020002010300020102000201010001010100020
10200080118001401130001120601011101120601011105000901080002010700
0201070002014900720101000601010009010100050101000301010001010100010101000101010
00301000003010100050101000201010001010100010101000101010002010100
030101000401010003010100010101000201010000010100030100006e0106000a0102000201030
00201020002010100010101000201020008011600180111000112060101110112
06010111050002010e0004010600020107000201490072010100050101000a01010005010100030
10100010101000101010002010200060101000501010006010100010101000101
0100080101000401010003010100010101000601020071010600020104000201020002010300020
102000201050002010200020121000e0116000112060101110112060101110500
02010e0004010600020107000201490072010100050101000a01010003010000000101000301010
00101010001010100040102000401010005010100060101000101010001010100
08010100040101000301010001010100080102006f0106000201040002010200020103000201020
00201050002010200020121000e01160001120601011101120601011105000201
0d000201000002010500020107000201490072010100040102000a0101000301000000010100030
10100010101000101010001010000030101000301010005010100060101000101
010001010100030100000301010004010100030101000101010005010000030101006e010600020
104000201020002010300020102000201050002010200020121000e0116000112
06010111011206010111050002010d0002010000020105000201070002014900720101000401010
00c01010001010100010101000101010002010100010101000101010002010100
0301010001010000020101000601010000010200020101000101010003010100010100000201010
0010101000201010005010100020101006e010600020104000201020002010300
020102000201050002010200020121000e011600011206010111011206010111050002010c00020
1020002010400020107000201490071010400020101000d010300030103000201
0200000103000001000000010300050102000201040005010200000101000201030005010200040
103000201040003010000000103006f0106000201040002010200020103000201
02000201050002010200020121000e011600011206010111011206010111050002010c000201020
00201040002010700020149007001050002010000e40106000201040002010200
0201030002010200020105000201020002014700011206010111011206010111050002010b00020
10400020103000201070002014900ff015f010600020104000201020002010300
0201020002010500020102000201470001120601011101120601011105000901040002010400020
103000201070002014900ff015f01060002010400020102000901020002010500
020102000801410001120601011101120601011105000a010200020106000201020002010700020
14900ff015f010600020104000201030008010200020105000201020009014000
01120601011101120601011106000901030001010700010103000101080001014900ff015f01070
00101050001010400060104000101060001010300080140000112060101110112
060101117b00ff015f017b000112060101110112060101117b00ff015f017b00011206010111011
2060101117b00ff015f017b000112060101110112060101117b00ff015f017b00
011206010111011206010111ff00ff005700011206010111011206010111ff00ff0057000112060
10111011206010111ff01ff0140011600011206010111011206010111ff01ff01
40011600011206010111011206010111ff01ff0140011600011206010111011206010111ff01ff0
140011600011206010111011206010111ff01ff0140010b000001090001120601
0111011206010111ff01ff0140010a0002010800011206010111011206010111ff01ff014001090
004010700011206010111011206010111ff01ff01400108000601060001120601
0111011206010111ff01ff014001070008010500011206010111011206010111ff01ff014001060
00a010400011206010111011206010111ff01ff01400105000c01030001120601
0111011206010111ff01ff01400104000e010200011206010111011206010111ff01ff014001030
010010100011206010111011206010111ff01ff01400102001201000001120601
0111011206010111ff01ff0140011600011206010111011206010111ff01ff01400116000112060
10111011206010111ff01ff0140011600011206010111011206010111ff01ff01
4001160001120601011101120601011115010300040104001301030018010300000101000301010
01e0106000b010300000101000301000022010000200104000301020000010100
1f01000019010000ff0110011600011206010111011206010111150103000401040013010300170
10700020103001d01070009010700020101002101010020010400020106001e01
010018010100ff01100116000112060101110112060101111601020006010200140102001701020
000010300030101001f0102000001020009010200010102000201010021010100
2201020002010200000102001e01010018010100ff0110011600011206010111011206010111150
10400050102001401020017010200010102002501020000010200090102000201
010001010200200102002201020002010200010101001d01020017010200ff01100116000112060
10111011206010111150104000501020003010400000100000201030002010500
0201020001010100020104000201020002010100010104000201020001010200020103000101030
00001020002010200000102000001030000010200000103000101010000010600
0101020001010100010102000001030002010200000101000001060001010200000103000001020
00101010002010400050102000201020001010100030103000101030000010200
020103000001000001010600020104000101030000010200010106000201030000010000ff01040
11600011206010111011206010111150101000001010005010200020107000101
0500010106000101070000010600010102000601040002010200010102000101050000010800010
10500010103000001020001010300030106000101070000010200000103000101
0600000106000101020000010300000107000001060004010200020102000601050000010800000
106000101060001010600000108000001060001010600ff010401020000010100
0001010000010100000101000001010000010100000100000112060101110112060101111501010
00001020004010200020102000001030000010200010102000001030000010200
0101060000010100010102000101020008010200020102000101020000010200010102000001030
00001020001010500010102000101020002010300030102000501060000010200
0101020000010300000102000101020004010200010102000101060000010100010102000401020
00201020005010200010102000001030000010200000102000001020002010200
04010100010102000101030000010200010102000401020000010200ff010401160001120601011
10112060101111501010001010100040102000201020000010200010102000101
0200000102000101020001010300000101000301030001010200000103000301020003010200000
10100010102000101020000010200010102000101020000010200010102000001
0100040103000201020005010300000101000001020001010200000102000201010001010200040
10200010102000101030000010100030103000401020002010200050102000101
0200000102000101020000010300010100000201020007010300010102000101020001010200040
1030001010000ff01040103000001010000010100000101000001010000010100
0001010000010112060101110112060101111401060004010200020102000001020001010700000
10200010102000101020005010500010102000001030003010200030102000001
0100010107000001020001010200010102000001020001010500010101000101030001010200050
10200040102000101020000010200060102000401020001010200010102000501
0500040102000201020005010200010102000001020001010200010104000301020005010500010
10200010102000101020005010400ff0105010200000101000001010000010100
0001010000010100000101000001000001120601011101120601011114010700030102000301040
00201020005010200010102000101020004010200000102000101020001010200
0301020003010400020102000501020001010200010102000001020002010300020101000201020
00101020005010200040102000101020000010200060102000401020001010200
0101020004010200000102000401020002010200010101000101020001010200000102000101020
00001000001010300020102000401020000010200010102000101020001010200
0401000001010300ff0104011600011206010111011206010111140101000201020003010200020
10300040103000101010000010200010102000101020004010200000102000101
0200000103000301020004010300020103000101010000010200010102000101020000010200020
10300020102000101020001010200000101000201020004010200000103000001
0300010101000101020000010100010102000001030001010200040102000001020004010200020
10200010101000101020001010200000102000101020000010200000102000201
0200000101000101020000010200010102000101020001010200000101000101020000010200ff0
10401030000010100000101000001010000010100000101000001010000010112
0601011101120601011113010300000103000101060000010600020106000001060001010400030
1070000010700010106000201020004010a000001030000010700030101000301
0700010105000101040003010700010106000101050001010700000104000301070001010600000
10600020105000001030000010300000106000201050001010b00000103000101
050001010600ff01040102000001010000010100000101000001010000010100000101000001000
00112060101110112060101111301030000010300010106000101060002010400
0101010000010200020104000401020000010200010103000001010001010600020102000501040
00001030000010300000106000301020003010100000103000301030002010400
0401030000010100020104000301030003010300000101000001040004010200000102000101060
00101040004010300010103000001030000010000000103000401030003010200
0001060000010300020103000201000000010300ff0105011600011206010111011206010111260
10200010102005b010200ff01b201030000010100000101000001010000010100
00010100000101000001011206010111011206010111260107005a010300ff01b20102000001010
00001010000010100000101000001010000010100000100000112060101110112
06010111270105005b010200ff01b3011600011206010111011206010111ff01ff0140010300000
10100000101000001010000010100000101000001010000010112060101110112
06010111ff01ff01400102000001010000010100000101000001010000010100000101000001000
0011206010111011206010111ff01ff0140011600011206010111011206010111
ff01ff0140010300000101000001010000010100000101000001010000010100000101120601011
1011206010111ff01ff0140010200000101000001010000010100000101000001
01000001010000010000011206010111011206010111ff01ff01400116000112060101110112060
10111ff01ff014001030000010100000101000001010000010100000101000001
01000001011206010111011206010111ff01ff01400102000001010000010100000101000001010
0000101000001010000010000011206010111011206010111ff01ff0140011600
0112060101110112060101111501030004010400130103001a0101000c0107001e0100000701010
015010700030101000d01040006010300ff016601030000010100000101000001
0100000101000001010000010100000101120601011101120601011115010300040104001301030
0190103000b0107001d0101000601030014010700020103000c01040006010300
ff01660102000001010000010100000101000001010000010100000101000001000001120601011
10112060101111601020006010200140102001a0101000d010200000102001d01
0100070101001601020000010200030101000f01020007010200ff0166011600011206010111011
2060101111501040005010200140102002a010200010101001c01020020010200
010101001501020007010200ff01660103000001010000010100000101000001010000010100000
10100000101120601011101120601011115010400050102000301040000010000
0201030002010500020102000101010002010400030104000401020000010100010102000401020
00001070000010200030102000001010000010600020104000401030001010300
000102000201020005010400040103000501020004010500ff01660102000001010000010100000
10100000101000001010000010100000100000112060101110112060101111501
0100000101000501020002010700010105000101060001010700000106000201040003010600010
104000201020000010c0001010600000106000201040003010500000108000101
040003010400030105000401020003010600ff01660116000112060101110112060101111501010
00001020004010200020102000001030000010200010102000001030000010200
0101060000010100010102000401020002010300000102000101040002010200010102000001030
00001020000010300000102000101020007010200020102000101020000010300
0001020001010400050102000201020001010200030102000201020000010300ff0166010300000
10100000101000001010000010100000101000001010000010112060101110112
0601011115010100010101000401020002010200000102000101020001010200000102000101020
00101030000010100030103000401020002010200020101000101020004010200
0101020000010200010102000001020002010100010102000701020002010200010102000001020
00101020001010200070102000201020001010200030102000201020001010200
ff01660102000001010000010100000101000001010000010100000101000001000001120601011
10112060101111401060004010200020102000001020001010700000102000101
0200010102000501050004010200020102000601020004010200010102000001020001010200000
10200060102000701020002010200010102000001020001010200010102000701
020002010700030102000201020001010200ff01660116000112060101110112060101111401070
00301020003010400020102000501020001010200010102000401020000010200
0401020002010200060102000401020001010200000102000101020000010200060102000701020
00201020001010200000102000101020001010200070102000201020008010200
0201020001010200ff0166010300000101000001010000010100000101000001010000010100000
10112060101110112060101111401010002010200030102000201030004010300
0101010000010200010102000101020004010200000102000401020002010300010101000101020
00401020000010300000102000101020000010300010101000101020000010100
0401020002010200010102000001020001010200010102000701020002010300010101000301020
00201020001010200ff0166010200000101000001010000010100000101000001
0100000101000001000001120601011101120601011113010300000103000101060000010600020
1060000010600010104000301070001010600010106000001040003010b000001
0300010106000101050002010600010105000001030000010300000104000401060001010600010
1060001010600ff01660116000112060101110112060101111301030000010300
0101060001010600020104000101010000010200020104000401020000010200010106000201040
00101040004010300000105000001030002010400030103000301060002010300
0101030000010300000104000401060002010400020106000201020000010100ff0166010300000
10100000101000001010000010100000101000001010000010112060101110112
060101112601020001010200ff01ff0111010200000101000001010000010100000101000001010
0000101000001000001120601011101120601011126010700ff01ff0111011600
01120601011101120601011127010500ff01ff01120103000001010000010100000101000001010
000010100000101000001011206010111011206010111ff01ff01400102000001
0100000101000001010000010100000101000001010000010000011206010111011206010111ff0
1ff0140011600011206010111011206010111ff01ff0140010300000101000001
0100000101000001010000010100000101000001011206010111011206010111ff01ff014001020
00001010000010100000101000001010000010100000101000001000001120601
0111011206010111ff01ff0140011600011206010111011206010111ff01ff01400103000001010
00001010000010100000101000001010000010100000101120601011101120601
0111ff01ff014001020000010100000101000001010000010100000101000001010000010000011
206010111011206010111ff01ff0140011600011206010111011206010111ff01
ff01400103000001010000010100000101000001010000010100000101000001011206010111011
206010111150103002a0101000f01000011010300020105001601030013010300
0401040013010300ff0174010200000101000001010000010100000101000001010000010100000
1000001120601011101120601011115010300290103000d010100110103000201
050016010300130103000401040013010300ff01740116000112060101110112060101111601020
02a0101000e010100120102000401020018010200140102000601020014010200
ff01740103000001010000010100000101000001010000010100000101000001011206010111011
20601011115010400390102001201020004010200180102001301040005010200
14010200ff017401020000010100000101000001010000010100000101000001010000010000011
20601011101120601011115010400030103000001000002010300000100000301
0300040102000001010001010400030104000201060003010300040105000401020003010300020
10200010101000301050001010400010103000001020002010400050102000301
0400000100000201030002010500020102000101010002010400ff015f011600011206010111011
20601011115010100000101000201060001010600020105000201060001010400
0201060001010600020105000201060004010200020105000101070001010600000106000001080
00101010000010100050102000201070001010500010106000101070000010600
ff015e0103000001010000010100000101000001010000010100000101000001011206010111011
20601011115010100000102000101020000010200010102000001020001010200
0101020000010300000102000301020002010100010102000201020004010200010102000001020
00001030004010200010102000101020001010600000102000001030000010100
0101020001010300000102000101010000010200040102000201020000010300000102000101020
00001030000010200010106000001010001010200ff015e010200000101000001
0100000101000001010000010100000101000001000001120601011101120601011115010100010
10100010103000101000001010300010100000101020001010200000102000201
0100030102000501030002010200040102000101020000010200010102000401020001010200010
10200010103000001010000010200010102000301030001010200010102000101
0100010101000401020002010200000102000101020001010200000102000101020001010300000
1010003010300ff015e0116000112060101110112060101111401060002010400
0301040002010200010102000001020008010200030105000201020004010700000102000101020
00401020001010200010102000101020004010200010102000101050001010200
0101020000010600040102000201020000010200010107000001020001010200010102000501050
0ff015e0103000001010000010100000101000001010000010100000101000001
0112060101110112060101111401070000010000010103000101000001010300010102000101020
00001020008010200020102000001020002010200040102000501020001010200
0001010001010200010102000101020001010200040102000101020000010200000102000101020
00101020000010700030102000301040002010200050102000101020001010200
0401020000010200ff015e010200000101000001010000010100000101000001010000010100000
10000011206010111011206010111140101000201020000010200000102000101
0200000102000101020001010200000103000101010003010200020102000001020002010200000
10100010103000101010000010200010102000001010001010200010102000101
0200010102000401020001010200000102000001020001010200010102000001010002010200030
10200020103000401030001010100000102000101020001010200040102000001
0200ff015e011600011206010111011206010111130103000001030000010600010106000201050
00201060001010600000107000101050002010600010106000001060002010500
010104000401060000010b000001070000010300010106000001060002010600000106000101040
003010700ff015d01030000010100000101000001010000010100000101000001
0100000101120601011101120601011113010300000103000001000000010300020100000001030
00401030004010400020106000101020000010200020103000401040003010200
0001010001010400040103000201040005010200000101000101020000010600000107000001030
00101060001010600020104000101010000010200020104000401020000010200
ff015d0102000001010000010100000101000001010000010100000101000001000001120601011
1011206010111b601020001010200ff0181011600011206010111011206010111
b6010700ff018101030000010100000101000001010000010100000101000001010000010112060
10111011206010111b7010500ff01820102000001010000010100000101000001
0100000101000001010000010000011206010111011206010111ff01ff014001160001120601011
1011206010111ff01ff0140010300000101000001010000010100000101000001
0100000101000001011206010111011206010111ff01ff014001020000010100000101000001010
000010100000101000001010000010000011206010111011206010111ff01ff01
40011600011206010111011206010111ff01ff01400103000001010000010100000101000001010
000010100000101000001011206010111011206010111ff01ff01400102000001
0100000101000001010000010100000101000001010000010000011206010111011206010111ff0
1ff0140011600011206010111011206010111ff01ff0140010300000101000001
0100000101000001010000010100000101000001011206010111011206010111ff01ff014001020
00001010000010100000101000001010000010100000101000001000001120601
0111011206010111150103002a0101000f0100001101030000010400060101000d0103000401040
013010300ff018f01160001120601011101120601011115010300290103000d01
01001101030000010400050103000c0103000401040013010300ff018f010300000101000001010
00001010000010100000101000001010000010112060101110112060101111601
02002a0101000e0101001201020001010200070101000e0102000601020014010200ff018f01020
00001010000010100000101000001010000010100000101000001000001120601
011101120601011115010400390102001201020001010200170104000501020014010200ff018f0
11600011206010111011206010111150104000301030000010000020103000001
0000030103000401020000010100010104000301040002010600030103000401050001010200050
10400040103000301040005010200030104000001000002010300020105000201
02000101010002010400ff017a01030000010100000101000001010000010100000101000001010
00001011206010111011206010111150101000001010002010600010106000201
0500020106000101040002010600010106000201050002010600010102000501040003010500020
1010000010100050102000201070001010500010106000101070000010600ff01
7901020000010100000101000001010000010100000101000001010000010000011206010111011
20601011115010100000102000101020000010200010102000001020001010200
0101020000010300000102000301020002010100010102000201020004010200010102000001020
00001030001010200070102000201020001010200010101000001020004010200
020102000001030000010200010102000001030000010200010106000001010001010200ff01790
11600011206010111011206010111150101000101010001010300010100000101
0300010100000101020001010200000102000201010003010200050103000201020004010200010
10200000102000101020001010200070102000201020001010200010101000101
0100040102000201020000010200010102000101020000010200010102000101030000010100030
10300ff0179010300000101000001010000010100000101000001010000010100
0001011206010111011206010111140106000201040003010400020102000101020000010200080
10200030105000201020004010700000102000101020001010200070102000201
0700000106000401020002010200000102000101070000010200010102000101020005010500ff0
17901020000010100000101000001010000010100000101000001010000010000
0112060101110112060101111401070000010000010103000101000001010300010102000101020
00001020008010200020102000001020002010200040102000501020001010200
0101020001010100030102000201020005010700030102000301040002010200050102000101020
0010102000401020000010200ff01790116000112060101110112060101111401
0100020102000001020000010200010102000001020001010200010102000001030001010100030
10200020102000001020002010200000101000101030001010100000102000101
0200010102000001020003010200020103000101010000010100020102000301020002010300040
10300010101000001020001010200010102000401020000010200ff0179010300
0001010000010100000101000001010000010100000101000001011206010111011206010111130
10300000103000001060001010600020105000201060001010600000107000101
05000201060001010600000107000101060001010a0000010300010106000001060002010600000
106000101040003010700ff017801020000010100000101000001010000010100
0001010000010100000100000112060101110112060101111301030000010300000100000001030
00201000000010300040103000401040002010600010102000001020002010300
0401040003010200000101000001070001010600020104000001030000010300010106000101060
0020104000101010000010200020104000401020000010200ff01780116000112
060101110112060101119b01020001010200ff019c0103000001010000010100000101000001010
0000101000001010000010112060101110112060101119b010700ff019c010200
0001010000010100000101000001010000010100000101000001000001120601011101120601011
19c010500ff019d011600011206010111011206010111ff01ff01400103000001
010000010100000101000001010000010100000101000001011206010111011206010111ff01ff0
14001020000010100000101000001010000010100000101000001010000010000
011206010111011206010111ff01ff0140011600011206010111011206010111ff01ff014001030
00001010000010100000101000001010000010100000101000001011206010111
011206010111ff01ff0140010200000101000001010000010100000101000001010000010100000
10000011206010111011206010111ff01ff014001160001120601011101120601
0111ff01ff014001030000010100000101000001010000010100000101000001010000010112060
10111011206010111ff01ff014001020000010100000101000001010000010100
000101000001010000010000011206010111011206010111ff01ff0140011600011206010111011
2060101111501020000010100160100001901010014010800ff01d20103000001
0100000101000001010000010100000101000001010000010112060101110112060101111401060
0150101001801030013010800ff01d20102000001010000010100000101000001
0100000101000001010000010000011206010111011206010111140102000001020015010100190
10100140101000001020000010100ff01d2011600011206010111011206010111
14010200010101001401020033010200ff01d501030000010100000101000001010000010100000
10100000101000001011206010111011206010111140102000101010002010400
0201020001010100010106000301030003010300000100000201040003010400010103000001020
00301020005010300010103000001020002010300000100000301030002010200
01010100ff01a601020000010100000101000001010000010100000101000001010000010000011
20601011101120601011114010200050106000101070000010600020105000101
0600020104000201060000010800020102000401050000010800000106000201050001010700ff0
1a501160001120601011101120601011114010200050101000101020002010600
0101020004010200010102000001020000010200040102000201010001010200010103000001020
00201020003010200010102000001030000010200000102000001020001010200
0101020001010600ff01a5010300000101000001010000010100000101000001010000010100000
10112060101110112060101111401020008010300020103000001010001010200
0401020001010200000103000101000004010200050103000101020001010200020102000301020
00101020000010200010102000001030001010000010102000101020001010300
00010100ff01a501020000010100000101000001010000010100000101000001010000010000011
20601011101120601011114010200060105000201020005010200040107000101
0400050102000301050001010200010102000201020003010700000102000101020001010400020
102000101020001010200ff01a901160001120601011101120601011114010200
0101010001010200000102000201020005010200040102000501000001010300040102000201020
00001020001010200010102000201020003010200050102000101020000010000
01010300010102000101020001010200ff01a901030000010100000101000001010000010100000
10100000101000001011206010111011206010111140102000101010001010200
0001020002010200050102000001010001010300010101000001020000010200040102000201020
00001020001010200010102000201020003010300010101000001020001010200
0001020000010200010102000101020001010200ff01a9010200000101000001010000010100000
10100000101000001010000010000011206010111011206010111140106000101
0700000104000401050002010600000106000201060000010b00000103000101040003010a00000
10300000106000201050001010400ff01a8011600011206010111011206010111
1501040003010200000102000001040005010300040104000101000000010300030106000101020
00001060000010300010104000401040000010300000103000001000000010300
0401030002010400ff01a8010300000101000001010000010100000101000001010000010100000
1011206010111011206010111ff01ff0140010200000101000001010000010100
00010100000101000001010000010000011206010111011206010111ff01ff01400116000112060
10111011206010111ff01ff014001030000010100000101000001010000010100
00010100000101000001011206010111011206010111ff01ff01400102000001010000010100000
1010000010100000101000001010000010000011206010111011206010111ff01
ff0140011600011206010111011206010111ff01ff0140010300000101000001010000010100000
1010000010100000101000001011206010111011206010111ff01ff0140010200
0001010000010100000101000001010000010100000101000001000001120601011101120601011
1ff01ff0140011600011206010111011206010111ff01ff014001030000010100
00010100000101000001010000010100000101000001011206010111011206010111ff01ff01400
10200000101000001010000010100000101000001010000010100000100000112
06010111011206010111ff01ff0140011600011206010111011206010111ff01ff0140010300000
10100000101000001010000010100000101000001010000010112060101110112
0601011115010200000101001d010400ff01ff01010102000001010000010100000101000001010
0000101000001010000010000011206010111011206010111140106001d010400
ff01ff010101160001120601011101120601011114010200000102001f010200ff01ff010101030
00001010000010100000101000001010000010100000101000001011206010111
01120601011114010200010101001f010200ff01ff0101010200000101000001010000010100000
10100000101000001010000010000011206010111011206010111140102000101
0100030103000201000000010100000101000101010000010300040102000401030002010300000
10200ff01ed011600011206010111011206010111140102000601050001010700
0001070003010200030105000101020001010200ff01ed010300000101000001010000010100000
10100000101000001010000010112060101110112060101111401020005010200
010102000001070000010300000102000301020002010200010102000101020000010100ff01ee0
10200000101000001010000010100000101000001010000010100000100000112
0601011101120601011114010200050102000101020000010100000101000001010000010200010
1020003010200020102000101020002010300ff01ef0116000112060101110112
0601011114010200050102000101020000010100000101000001010000010200010102000301020
00201070002010300ff01ef010300000101000001010000010100000101000001
0100000101000001011206010111011206010111140102000101010001010200010102000001010
000010100000101000001020001010200030102000201020007010300ff01ef01
0200000101000001010000010100000101000001010000010100000100000112060101110112060
10111140102000101010001010200010102000001010000010100000101000001
0200000103000301020002010300010101000101010000010200ff01ee011600011206010111011
20601011114010600020105000101010000010100000101000001060002010600
010106000001020001010200ff01ed0103000001010000010100000101000001010000010100000
10100000101120601011101120601011115010400040103000201010000010100
000101000001050003010600020104000101020000010300ff01ed0102000001010000010100000
10100000101000001010000010100000100000112060101110112060101112f01
0200ff01ff010d0116000112060101110112060101112f010200ff01ff010d01030000010100000
10100000101000001010000010100000101000001011206010111011206010111
2e010400ff01ff010c0102000001010000010100000101000001010000010100000101000001000
0011206010111011206010111ff01ff0140011600011206010111011206010111
ff01ff0140010300000101000001010000010100000101000001010000010100000101120601011
1011206010111ff01ff0140010200000101000001010000010100000101000001
01000001010000010000011206010111011206010111ff01ff01400116000112060101110112060
10111ff01ff014001030000010100000101000001010000010100000101000001
01000001011206010111011206010111ff01ff01400102000001010000010100000101000001010
0000101000001010000010000011206010111011206010111ff01ff0140011600
011206010111011206010111ff01ff0140010300000101000001010000010100000101000001010
0000101000001011206010111011206010111ff01ff0140010200000101000001
0100000101000001010000010100000101000001000001120601011101120601011114010600280
10100060100000401020000010300150100001501030020010100030101000c01
000010010100ff01690116000112060101110112060101111401070026010300040101000401020
001010200140101001501030020010100030101000b0101000f010300ff016801
0300000101000001010000010100000101000001010000010100000101120601011101120601011
11501020000010200270101000501010004010200010102001401010016010200
20010200010102000b01010010010100ff016901020000010100000101000001010000010100000
10100000101000001000001120601011101120601011115010200000102002e01
02000401020001010200130102001601020020010200010102000a010200ff017c0116000112060
10111011206010111150102000001020002010300010103000001020002010400
0201020001010200010104000201060001010200010102000101040002010200010101000101060
00301030001010300000102000101050004010300020102000101010002010400
000100000001070001010400020106000101020001010100020104000201030000010200ff015d0
10300000101000001010000010100000101000001010000010100000101120601
0111011206010111150102000001020001010500000108000001060001010200010102000101040
00201060001010700000106000101070000010600020105000001080000010600
0201050001010700000107000001070000010600010106000101070001010400020102000101020
0ff015d0102000001010000010100000101000001010000010100000101000001
0000011206010111011206010111150102000001020000010200010102000001030000010200000
10100010102000101020001010200030102000301020004010700000101000101
0200020106000101020004010200010102000001030000010200000103000001020000010200010
10200010106000001020000010300000107000001010001010200020102000501
0600030102000301020000010100ff015e011600011206010111011206010111150102000001020
00001020001010200000102000101020003010300020102000001010004010200
0301020004010200010102000301030002010300000101000101020004010200010102000001020
00101020000010200010102000001020001010200010103000001010000010200
0001020001010100000101000001010003010300020102000501030000010100030102000401030
0ff015f0103000001010000010100000101000001010000010100000101000001
0112060101110112060101111501020000010200000107000001020001010200010105000201020
00001010004010200030102000401020001010200010105000201020005010200
0401070000010200010102000001020001010200000107000101020004010200000102000101010
000010100000101000101050002010200050102000701020004010300ff015f01
0200000101000001010000010100000101000001010000010100000100000112060101110112060
10111150102000001020000010200050102000101020000010200000102000201
0400050102000301020004010200010102000001020000010200020102000501020004010200050
10200010102000001020001010200000102000601020005010400020101000001
010000010100000102000001020002010200050102000701020004010300ff015f0116000112060
10111011206010111150102000001020000010300010101000001020001010200
0001020000010200030103000501020003010200000101000101020001010200000102000001020
00201020005010200000101000101030001010100000102000101020000010200
0101020000010300010101000101020004010300040101000301010000010200000102000201020
00001010002010200070102000301010000010200ff015e010300000101000001
01000001010000010100000101000001010000010112060101110112060101111401070001010a0
00001030000010700020102000401060001010500010102000101020000010700
000104000401050002010a000001030000010600020106000001040003010600010102000101020
0000107000101050001010400040106000001020001010200ff015d0102000001
0100000101000001010000010100000101000001010000010000011206010111011206010111140
10600030104000001030000010300010102000001020002010200040106000201
0300020102000001030001010200000102000001040005010300040104000001030000010300000
10100000102000401040001010400040106000001020001010200010102000001
02000201030002010400040106000001020000010300ff015d01160001120601011101120601011
1a401020001010200ff0193010300000101000001010000010100000101000001
0100000101000001011206010111011206010111a4010700ff01930102000001010000010100000
1010000010100000101000001010000010000011206010111011206010111a501
0500ff0194011600011206010111011206010111ff01ff014001030000010100000101000001010
00001010000010100000101000001011206010111011206010111ff01ff014001
0200000101000001010000010100000101000001010000010100000100000112060101110112060
10111ff01ff0140011600011206010111011206010111ff01ff01400103000001
010000010100000101000001010000010100000101000001011206010111011206010111ff01ff0
14001020000010100000101000001010000010100000101000001010000010000
011206010111011206010111ff01ff0140011600011206010111011206010111ff01ff014001030
00001010000010100000101000001010000010100000101000001011206010111
011206010111ff01ff0140010200000101000001010000010100000101000001010000010100000
10000011206010111011206010111ff01ff014001160001120601011101120601
01111501030000010100270101000c01010002010200130103002a0101000f01000007010100160
103000401040013010300ff014701030000010100000101000001010000010100
0001010000010100000101120601011101120601011114010700260103000b01020001010200130
10300290103000d01010006010300150103000401040013010300ff0147010200
0001010000010100000101000001010000010100000101000001000001120601011101120601011
11401020000010300270101000c01020002010100140102002a0101000e010100
07010100170102000601020014010200ff014701160001120601011101120601011114010200010
1020036010300010101001301040039010200200104000501020014010200ff01
4701030000010100000101000001010000010100000101000001010000010112060101110112060
10111140102000201010002010300010103000001020003010300020102000101
0100020104000401020000010100000103000101010002010300010103000001020002010400030
10300000100000201030000010000030103000401020000010100010104000301
0400020106000201040002010200010102000201030003010400050102000301040000010000020
1030002010500020102000101010002010400ff01320102000001010000010100
0001010000010100000101000001010000010000011206010111011206010111140102000601050
00001080001010500010107000101040003010600000104000001010001010500
0001080001010100000101000201060001010600020105000201060001010400020106000101060
00201040002010200010102000101050002010100000101000501020002010700
01010500010106000101070000010600ff013101160001120601011101120601011114010200050
10200010102000001030000010200000102000101020001010600030102000201
0300000102000001010000010100000101000001020001010200000103000001020001010100000
10200010102000001020001010200000102000101020001010200000103000001
0200030102000201010001010200020102000701020002010200010102000001020001010200010
10100000102000401020002010200000103000001020001010200000103000001
0200010106000001010001010200ff0131010300000101000001010000010100000101000001010
00001010000010112060101110112060101111401020000010300000102000101
0200000102000101020000010200010102000101030000010100030102000201020002010100000
10100000104000001020001010200000102000101020001010100010101000101
0300010100000101030001010000010102000101020000010200020101000301020005010300020
10200070102000301020000010100010102000101020001010100010101000401
0200020102000001020001010200010102000001020001010200010103000001010003010300ff0
13101020000010100000101000001010000010100000101000001010000010000
0112060101110112060101111401020000010300000107000001020001010200000107000101020
00701020002010200050101000101030000010200010102000001020001010200
0001060002010400030104000201020001010200000102000801020003010500020102000701020
00301020000010100010107000001060004010200020102000001020001010700
00010200010102000101020005010500ff013101160001120601011101120601011114010200010
10200000102000501020001010200000102000601020007010200020102000501
0100010103000001020001010200000102000101020000010700000100000101030001010000010
10300010102000101020000010200080102000201020000010200020102000701
0200030104000201020005010700030102000301040002010200050102000101020001010200040
1020000010200ff01310103000001010000010100000101000001010000010100
0001010000010112060101110112060101111401020000010300000103000101010000010200010
10200000103000101010001010200070102000201030001010100000101000201
0200000102000101020000010200010102000001010002010200000102000001020001010200000
10200010102000101020000010300010101000301020002010200000102000201
0200000101000401020004010300020103000101010000010100020102000301020002010300040
10300010101000001020001010200010102000401020000010200ff0131010200
0001010000010100000101000001010000010100000101000001000001120601011101120601011
11401070001010a00000103000101060000010400040106000101060000010200
0101020001010500000103000001070000010300000106000101060002010500020106000101060
00001070001010500020106000201020004010a00000103000101060000010600
02010600000106000101040003010700ff013001160001120601011101120601011115010300000
10100020104000001030000010300020104000101040004010600020104000101
0200020101000201030001010300000107000001030000010000000103000201000000010300040
10300040104000201060001010200000102000201030003010600020102000501
0400000103000001030001010600010106000201040001010100000102000201040004010200000
10200ff0130010300000101000001010000010100000101000001010000010100
0001011206010111011206010111e301020001010200ff015401020000010100000101000001010
000010100000101000001010000010000011206010111011206010111e3010700
ff0154011600011206010111011206010111e4010500ff015501030000010100000101000001010
00001010000010100000101000001011206010111011206010111ff01ff014001
0200000101000001010000010100000101000001010000010100000100000112060101110112060
10111ff01ff0140011600011206010111011206010111ff01ff01400103000001
010000010100000101000001010000010100000101000001011206010111011206010111ff01ff0
14001020000010100000101000001010000010100000101000001010000010000
011206010111011206010111ff01ff0140011600011206010111011206010111ff01ff014001030
00001010000010100000101000001010000010100000101000001011206010111
011206010111ff01ff0140010200000101000001010000010100000101000001010000010100000
10000011206010111011206010111ff01ff014001160001120601011101120601
0111ff01ff014001030000010100000101000001010000010100000101000001010000010112060
10111011206010111140106000e0103001f01030000010100030101000c010000
10010100ff01c301020000010100000101000001010000010100000101000001010000010000011
206010111011206010111140106000e0103001f01030000010100030101000b01
01000f010300ff01c20116000112060101110112060101111601020011010200200102000001020
0010102000b01010010010100ff01c30103000001010000010100000101000001
0100000101000001010000010112060101110112060101111601020011010200200102000001020
0010102000a010200ff01d6010200000101000001010000010100000101000001
0100000101000001000001120601011101120601011116010200020103000001020003010500020
10300020103000001020002010300040105000001070001010400020106000101
020001010100020104000201030000010200ff01b70116000112060101110112060101111601020
00201080001010600010105000101020001010200010105000201060000010700
000106000101060001010700010104000201020001010200ff01b70103000001010000010100000
10100000101000001010000010100000101120601011101120601011116010200
0301030000010200000102000001030000010200010102000101020000010100010102000101020
00001020000010300000107000001010001010200020102000501060003010200
0301020000010100ff01b8010200000101000001010000010100000101000001010000010100000
10000011206010111011206010111160102000301020001010200000102000101
0200000102000101020002010300020102000101020000010200010102000001010000010100000
10100030103000201020005010300000101000301020004010300ff01b9011600
0112060101110112060101111601020003010200010102000001020001010200000107000201030
00201070000010200010102000001010000010100000101000101050002010200
050102000701020004010300ff01b90103000001010000010100000101000001010000010100000
10100000101120601011101120601011116010200030102000101020000010200
0101020000010200070103000201020005010200010102000001010000010100000101000001020
00001020002010200050102000701020004010300ff01b9010200000101000001
0100000101000001010000010100000101000001000001120601011101120601011116010200030
10200010102000001020001010200000103000101010001010100000102000101
0300010101000001020001010200000101000301010000010200000102000201020000010100020
10200070102000301010000010200ff01b8011600011206010111011206010111
1401060000010300000103000101060001010600000102000101020001010600010106000001020
001010200000107000101050001010400040106000001020001010200ff01b701
0300000101000001010000010100000101000001010000010100000101120601011101120601011
11401060000010300000103000201020000010100020104000101020000010300
0201040003010200000101000001020001010200010102000001020002010300020104000401060
00001020000010300ff01b7010200000101000001010000010100000101000001
01000001010000010000011206010111011206010111ff01ff01400116000112060101110112060
10111ff01ff014001030000010100000101000001010000010100000101000001
01000001011206010111011206010111ff01ff01400102000001010000010100000101000001010
0000101000001010000010000011206010111011206010111ff01ff0140011600
011206010111011206010111ff01ff0140010300000101000001010000010100000101000001010
0000101000001011206010111011206010111ff01ff0140010200000101000001
01000001010000010100000101000001010000010000011206010111011206010111ff01ff01400
11600011206010111011206010111ff01ff014001030000010100000101000001
01000001010000010100000101000001011206010111011206010111ff01ff01400102000001010
00001010000010100000101000001010000010100000100000112060101110112
06010111ff01ff0140011600011206010111011206010111ff01ff0140010300000101000001010
0000101000001010000010100000101000001011206010111011206010111ff01
ff01400102000001010000010100000101000001010000010100000101000001000001120601011
101120601011114010400060101000d010300000101002d010100030101000c01
000010010100ff01b101160001120601011101120601011114010400050103000b0107002d01010
0030101000b0101000f010300ff01b00103000001010000010100000101000001
01000001010000010100000101120601011101120601011115010200070101000c0102000101020
02d010200010102000b01010010010100ff01b101020000010100000101000001
0100000101000001010000010100000100000112060101110112060101111501020016010200020
101002d010200010102000a010200ff01c4011600011206010111011206010111
1501020005010400040103000201030001010100020102000001010000010200000103000101040
00201020001010100030103000201070001010400020106000101020001010100
020104000201030000010200ff01a50103000001010000010100000101000001010000010100000
10100000101120601011101120601011115010200050104000301050002010300
0401060000010200000103000001060001010700010105000101070000010600010106000101070
0010104000201020001010200ff01a50102000001010000010100000101000001
0100000101000001010000010000011206010111011206010111150102000701020002010200010
10200020103000201020001010200000102000101020000010100010102000201
0600000102000101020000010700000101000101020002010200050106000301020003010200000
10100ff01a6011600011206010111011206010111150102000701020002010200
0101020003010300010102000101020000010200010102000301030002010300000101000001020
00101020000010100000101000001010003010300020102000501030000010100
0301020004010300ff01a7010300000101000001010000010100000101000001010000010100000
10112060101110112060101111501020007010200020107000001010001010300
0001020001010200000102000101020001010500020102000401070000010100000101000001010
00101050002010200050102000701020004010300ff01a7010200000101000001
0100000101000001010000010100000101000001000001120601011101120601011115010200010
10100030102000201020005010100020102000001020001010200000102000101
0200000102000001020002010200040102000501010000010100000101000001020000010200020
10200050102000701020004010300ff01a7011600011206010111011206010111
1501020000010200030102000201030001010100000102000101020000010300000102000001020
00001030000010200000102000201020004010300010101000001010003010100
0001020000010200020102000001010002010200070102000301010000010200ff01a6010300000
10100000101000001010000010100000101000001010000010112060101110112
0601011114010700010106000101060000010700010106000001070000010700000104000401060
00001020001010200000107000101050001010400040106000001020001010200
ff01a50102000001010000010100000101000001010000010100000101000001000001120601011
10112060101111401070001010600020104000101010000010300030105000101
0300000101000101020000010200000104000501040001010200010102000101020000010200020
1030002010400040106000001020000010300ff01a50116000112060101110112
060101113d010200ff01ff010300000101000001010000010100000101000001010000010100000
10112060101110112060101113d010200ff01ff01020000010100000101000001
0100000101000001010000010100000100000112060101110112060101113c010300ff01ff01030
00001010000010100000101000001010000010100000101000001011206010111
011206010111ff01ff01400101001401011206010111011206010111ff01ff01400101001401011
206010111011206010111ff01ff01400103000001010000010100000101000001
010000010100000101000001011206010111011206010111ff01ff0140010100140101120601011
1011206010111ff01ff01400101001401011206010111011206010111ff01ff01
4001030000010100000101000001010000010100000101000001010000010112060101110112060
10111ff01ff01400101001401011206010111011206010111ff01ff0140010100
1401011206010111011206010111ff01ff014001030000010100000101000001010000010100000
10100000101000001011206010111011206010111140104000601010028010300
000101001501000016010100030101000c010000100101000c01060012010300ff016b010100140
10112060101110112060101111401040005010300260107001401010016010100
030101000b0101000f0103000b01070011010300ff016b010100140101120601011101120601011
1150102000701010027010200010102001401010016010200010102000b010100
100101000d0102000001020012010200ff016b01030000010100000101000001010000010100000
10100000101000001011206010111011206010111150102003101020002010100
1301020016010200010102000a010200200102000001020012010200ff016b01010014010112060
10111011206010111150102000501040001010300000102000301030003010400
0201020001010100010103000101010000010300000102000101030000010000010106000301030
00201000000010100000101000101070001010400020106000101020001010100
0201040002010300000102000101020000010200010104000401020000010100000102000101020
001010400030104000001000002010300ff014d01010014010112060101110112
0601011115010200050104000101080001010500010106000101070001010300030103000001020
00001060001010600020105000101070000010700000106000101060001010700
0101040002010200010102000101020000010200000106000201060000010200010102000001060
00101070001010500ff014c010300000101000001010000010100000101000001
0100000101000001011206010111011206010111150102000701020002010300000102000001020
00101020000010100010102000201060002010300020102000101020000010200
0001020002010200040102000101020000010700000107000001010001010200020102000501060
00301020003010200000101000201060000010100010102000101030000010200
0001020000010200010101000101020001010200000103000001020001010200ff014b010100140
10112060101110112060101111501020007010200020102000101020000010200
0101020003010300020103000001010003010300020102000001010001010300010100000201020
00401020001010200000101000001010000010100000101000001010000010100
0301030002010200050103000001010003010200040103000301050004010300010102000201010
0000105000501030001010200000102000101020001010200ff014b0101001401
0112060101110112060101111501020007010200020102000101020000010700010105000201020
00401010001010300010105000201040003010200040107000001010000010100
0001010000010100000101000001010001010500020102000501020007010200040103000301020
005010500010102000501040004010500010102000001020001010700ff014b01
0300000101000001010000010100000101000001010000010100000101120601011101120601011
11501020001010100030102000201020001010200000102000501020000010200
0201020004010100020102000201030002010000010103000201020004010200050101000001010
00001010000010100000101000001010000010200000102000201020005010200
0701020004010300030102000401020000010200010102000501020000010100020102000001020
00201040002010200ff0150010100140101120601011101120601011115010200
0001020003010200020102000101020000010300010101000001020000010200020102000401020
00101020002010300020102000001020002010200000101000101030001010100
0001010000010100000101000001010003010100000102000001020002010200000101000201020
00701020003010100000102000201020004010200000102000101030001010100
00010200000102000101020000010200010103000401030001010100ff014b01010014010112060
101110112060101111401070001010a0000010300010106000001070000010400
0301070003010100030106000201050002010600000101000001010000010100000102000101020
00001070001010500010104000401060000010200010102000001040003010700
010106000001020001010200000107000001060002010600ff014b0103000001010000010100000
10100000101000001010000010100000101120601011101120601011114010700
01010a0000010300020104000201020000010200000104000301010000010300030102000301000
00001030004010300040104000101010000010100000101000001020001010200
0101020000010200020103000201040004010600000102000001030000010400040102000001020
002010400010102000101020001010200000102000101060002010400ff014c01
01001401011206010111011206010111540102008b01020001010200ff015401010014010112060
10111011206010111530103008b010700ff015401030000010100000101000001
01000001010000010100000101000001011206010111011206010111530102008d010500ff01550
101001401011206010111011206010111ff01ff01400101001401011206010111
011206010111ff01ff0140010300000101000001010000010100000101000001010000010100000
1011206010111011206010111ff01ff0140010100140101120601011101120601
0111ff01ff01400101001401011206010111011206010111ff01ff0140010300000101000001010
0000101000001010000010100000101000001011206010111011206010111ff01
ff01400101001401011206010111011206010111ff01ff014001010014010112060101110112060
10111ff01ff014001030000010100000101000001010000010100000101000001
01000001011206010111011206010111ff01ff01400101001401011206010111011206010111140
10100030101000c01000010010100ff01ff010201010014010112060101110112
0601011114010100030101000b0101000f010300ff01ff010101030000010100000101000001010
00001010000010100000101000001011206010111011206010111140102000101
02000b01010010010100ff01ff01020101001401011206010111011206010111140102000101020
00a010200ff01ff01150101001401011206010111011206010111140107000101
0400020106000101020001010100020104000201030000010200ff01f6010300000101000001010
00001010000010100000101000001010000010112060101110112060101111401
0700000106000101060001010700010104000201020001010200ff01f6010100140101120601011
10112060101111401070000010100010102000201020005010600030102000301
020000010100ff01f70101001401011206010111011206010111140101000001010000010100030
103000201020005010300000101000301020004010300ff01f801030000010100
0001010000010100000101000001010000010100000101120601011101120601011114010100000
10100000101000101050002010200050102000701020004010300ff01f8010100
1401011206010111011206010111140101000001010000010100000102000001020002010200050
102000701020004010300ff01f801010014010112060101110112060101111401
0100030101000001020000010200020102000001010002010200070102000301010000010200ff0
1f701030000010100000101000001010000010100000101000001010000010112
0601011101120601011114010200010102000001070001010500010104000401060000010200010
10200ff01f6010100140101120601011101120601011114010200010102000101
0200000102000201030002010400040106000001020000010300ff01f6010100140101120601011
1011206010111ff01ff0140010300000101000001010000010100000101000001
0100000101000001011206010111011206010111ff01ff014001010014010112060101110112060
10111ff01ff01400101001401011206010111011206010111ff01ff0140010300
0001010000010100000101000001010000010100000101000001011206010111011206010111ff0
1ff01400101001401011206010111011206010111ff01ff014001010014010112
06010111011206010111ff01ff01400103000001010000010100000101000001010000010100000
101000001011206010111011206010111ff01ff01400101001401011206010111
011206010111ff01ff01400101001401011206010111011206010111ff01ff01400103000001010
00001010000010100000101000001010000010100000101120601011101120601
0111ff01ff01400101001401011206010111011206010111ff01ff0140010100140101120601011
101120601011114010100030101000c010000100101000c010400060101002801
03000401040013010300170107001e01000007010100ff014e01030000010100000101000001010
00001010000010100000101000001011206010111011206010111140101000301
01000b0101000f0103000b01040005010300270103000401040013010300170107001d010100060
10300ff014d010100140101120601011101120601011114010200010102000b01
0100100101000d0102000701010029010200060102001401020018010200000102001d010100070
10100ff014e010100140101120601011101120601011114010200010102000a01
02002001020032010400050102001401020018010200010101001c010200ff01580103000001010
00001010000010100000101000001010000010100000101120601011101120601
0111140107000101040002010600010102000101010002010400020103000001020001010200050
10400010103000001020003010300030104000201020001010100020104000501
0200030104000001000002010300020105000201020001010100020104000301020004010200000
10700000102000301020000010100000106000201040004010300010103000001
02000201030000010000ff013101010014010112060101110112060101111401070000010600010
10600010107000101040002010200010102000101020005010400010108000101
0500010106000101070001010100000101000501020002010700010105000101060001010700000
10600020104000201020000010c00010106000001060002010400030105000001
080000010600ff01310101001401011206010111011206010111140107000001010001010200020
10200050106000301020003010200000101000201020007010200020103000001
0200000102000101020000010100010102000201060001010100000102000401020002010200000
10300000102000101020000010300000102000101060000010100010102000201
0400020102000101020000010300000102000001030000010200010102000701020002010200010
1020000010300000102000001020000010200ff01310103000001010000010100
0001010000010100000101000001010000010112060101110112060101111401010000010100000
10100030103000201020005010300000101000301020004010300030102000701
0200020102000101020000010200010102000301030002010300000101000101010001010100040
10200020102000001020001010200010102000001020001010200010103000001
0100030103000201020004010200010102000001020001010200000102000201010001010200070
10200020102000101020000010200010102000001030001010000ff0131010100
1401011206010111011206010111140101000001010000010100010105000201020005010200070
10200040103000301020007010200020102000101020000010700010105000201
0200040106000401020002010200000102000101070000010200010102000101020005010500020
10200040102000101020000010200010102000001020006010200070102000201
020001010200000102000101020001010400ff01320116000112060101110112060101111401010
00001010000010100000102000001020002010200050102000701020004010300
0301020001010100030102000201020001010200000102000501020000010200020102000401070
00301020003010400020102000501020001010200010102000401020000010200
0201020004010200010102000001020001010200000102000601020007010200020102000101020
000010200010102000001000001010300ff013101160001120601011101120601
0111140101000301010000010200000102000201020000010100020102000701020003010100000
10200020102000001020003010200020102000101020000010300010101000001
0200000102000201020004010100020102000301020002010300040103000101010000010200010
10200010102000401020000010200020102000401020000010300000102000101
0200000103000101010001010200000101000401020002010200010102000001020001010200000
1020000010200ff01310116000112060101110112060101111401020001010200
0001070001010500010104000401060000010200010102000001070001010a00000103000101060
00001070000010400020103000001030001010600000106000201060000010600
01010400030107000001040003010b0000010300010106000101050002010600010105000001030
00001030000010600ff0131011600011206010111011206010111140102000101
0200010102000001020002010300020104000401060000010200000103000001070001010a00000
10300020104000201020000010200000104000201030000010300010106000101
0600020104000101010000010200020104000401020000010200000104000401030000010500000
10300020104000301030003010600020103000101030000010300000100000001
0300ff01320116000112060101110112060101119201020001010200ff01a501160001120601011
101120601011192010700ff01a501160001120601011101120601011193010500
ff01a6011600011206010111011206010111ff01ff0140011600011206010111011206010111ff0
1ff014001020012010000011206010111011206010111ff01ff01400103001001
0100011206010111011206010111ff01ff01400104000e010200011206010111011206010111ff0
1ff01400105000c010300011206010111011206010111ff01ff01400106000a01
0400011206010111011206010111ff01ff014001070008010500011206010111011206010111ff0
1ff014001080006010600011206010111011206010111ff01ff01400109000401
0700011206010111011206010111ff01ff0140010a0002010800011206010111011206010111ff0
1ff0140010b0000010900011206010111011206010111ff01ff01400116000112
06010111011206010111ff01ff0140011600011206010111011206010111ff01ff0140011600011
206010111011206010111ff00ff005700011206010111011206010111ff00ff00
5700011206010111011206010111ff01ff0140011600011206010111011206010111ff01ff01570
1011206010111011206010111ff01ff015701011206010111011206010111ff01
ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff01570
1011206010111011206010111ff01ff015701011206010111011206010111ff01
ff015701011206010111011206010111ff01ff015701011206010111011206010111ff01ff01570
1011206010111011206010111ff01ff015701011206010111011206010111ff01
ff015701011206010111011206010111ff01a40199001801011206010111011206010111ff01a40
199001801011206010111011206010111ac01030008010100100103005d010000
3c0104000401010004010400050100001a019900180101120601011101120601011114010200010
102000401000089010300070103000f0103005c0101003b010600020103000301
0400040101001a01990018010112060101110112060101111501010002010100030102008901020
008010100110102005c0101003b01020000010200030101000601020004010100
1a01990018010112060101110112060101111501010002010000050100008a0102001c0102005b0
102003b01020010010200030102001a0199001801011206010111011206010111
1501010002010000910102000101020001010400010103000001020003010500010103000001000
01c01010000010300020104000201020001010100020104000201000000010100
00010100030103000201060003010300020102000101010002010300000100001c0105000301040
00501020002010600030103000201020001010100050199001801011206010111
01120601011115010100010100000301030005010300010101000401000003010300050100001f0
101000101010004010300020101000201010003010300040103001d0102000101
0200010104000101080001010600000106001c01070000010600010107000001060001010700010
10500010106000201050001010700000106001c01050003010400050102000201
0600020105000101070004019900180101120601011101120601011115010100010100000501010
0030102000101010001010100020101000101020001010100030102001d010000
0001000000010300020101000101010000010300000103000001020001010100010102000101010
01c01020000010200040102000201030000010200000102000001030000010200
000102001c010300000102000001010001010200020106000001010001010200010107000001020
0010102000101020004010200010102000101060000010200000102001d010200
0701020005010200030102000401020001010200010106000401990018010112060101110112060
10111150101000101000004010100040101000201010001010100020101000101
0100020100000501000020010200000101000601010001010000000100000001000000010100000
101000201010001010100020100001d0105000501020002010200010102000001
02000101020000010300010100001c0102000101020003010300020103000001010003010300010
10100000101000001010000010200010102000101020004010200010102000101
03000001010000010300010100001d0102000701020005010200030102000401020001010200010
10300000101000401990018010112060101110112060101111501010000010000
0501010003010100020101000201010002010000030101002a01010001010100030103000201000
00001010001010300020101000301010020010400060102000201020001010200
0001020001010200010104001d01020001010200010105000201020005010500010101000001010
00001010000010700010102000401070001010200050104001e01020007010200
0501020003010200040107000101020008019900180101120601011101120601011115010100000
10000050101000301040003010100010100000001000004010200270101000201
0000020101000101010001010100000101000001010000010400060102001e01020000010100050
102000201020001010200000102000101020000010000010103001c0102000101
0200000102000001020002010200040102000001020001010100000101000001010000010200060
10200040102000601020004010000010103001d01020007010200050102000301
0200040102000601020008019900180101120601011101120601011115010100000100000401010
00401010006010100000101000001000002010000020101002601010001010100
01010100020101000101010000010000010101000001010007010000020101001d0102000001020
0040102000201020001010200000102000101020000010200000102001c010200
0001030000010200000102000201020004010200000102000101010000010100000101000001030
00101010001010200000101000101030001010100010102000401020000010200
1d01020007010200050102000301020000010100010103000101010001010200080199001801011
20601011101120601011115010200050101000101000002010100020100000101
0600010101000101020004010000200101000101010000010200010102000001010001010000010
10000020101000201000001010100010102001d0102000101020001010a000001
030001010600000106001c010600010107000001040003010700000101000001010000010100010
10600010105000201060000010400030106001c01040004010600010106000101
0500020106000001040007019900180101120601011101120601011115010100070102000401030
0030101000001010003010300050102001e010100030101000101020001010100
000100000401000003010300030103001f0102000101020001010a0000010300020102000001010
000010000000103001d0105000301020000010200000104000401020000010200
0001010000010100000101000201040003010300040104000101040003010000000103001d01040
00401060001010600020103000401040001010400070199001801011206010111
011206010111430100003801000076010200ab0199001801011206010111011206010111f501020
0ab0199001801011206010111011206010111f4010400aa019900180101120601
0111011206010111ff01a40199001801011206010111011206010111ff01a401990018010112060
10111011206010111ff01a401040008018b001801011206010111011206010111
ff01a401040008018b001801011206010111011206010111ff01a40199001801011206010111011
206010111ff01ff015701011206010111011206010111ff01ff01570101120601
0111011206010111ff01ff015701011206010111011206010111ff01ff015701011206010111011
2060101116d010300040103003401040004010100040104004e01030003010100
06010000070101003d010300270101000f010000070101009f010112060101110112060101116d0
10300040103003301060002010300030104004e01030002010300040101000601
03003c010300260103000d010100060103009e010112060101110112060101116e0102000501020
0330102000001020003010100060102004f010200030101000501010007010100
3e010200270101000e010100070101009f010112060101110112060101116e01020005010200330
10200100102004f0102000a0102004801020037010200a9010112060101110112
06010111660104000201050002010500020102000101010002010300000100001c0105000301040
0050102000401030003010300000100001e010200000101000201030001010300
0001020003010500010104000201060002010400040103000101030000010200020103000001000
01e01050002010300030103000001000003010200000101000001020001010100
02010400020101000001030001010600020104000401030001010300000102008b0101120601011
10012091165010600010106000101060001010700000106001c01050003010400
0501020003010500010106001d01060001010500000108000101060001010400020106000201040
00301050000010800000106001d01060001010500010106000201060000010700
0101040002010700000106000201040003010500000108008a01011208110912001165010100010
10200010103000001020000010300000102000101060000010200000102001d01
02000701020005010200020102000101020000010200000102001c0103000001020000010200010
10200000103000001020000010200000103000301020003010200070102000201
020001010200000103000001020000010200000102001c010200000103000001020001010200000
10200000102000101030000010200010106000301020002010300000102000101
020007010200020102000101020000010300000102008a010912001101120601011168010300010
10200010102000001020001010200010103000001010000010300010100001d01
02000701020005010200020102000101020000010300010100001c0102000201010000010200010
10200000102000101020000010200010102000301020003010200070102000201
020001010200000102000101020000010300010100001c010200010102000001020001010200000
10300010100000101020002010100010103000001010003010200020102000101
02000101020007010200020102000101020000010200010102008a0101120601011101120601011
1660105000101020001010200000102000101020001010200050104001e010200
070102000501020002010700010104001d010200050102000101020000010200010102000001020
00101020003010200030102000701020002010200010102000001020001010200
010104001d010200010102000001070001010400020102000601020007010200020102000101020
00101020007010200020102000101020000010200010102008a01011206010111
0112060101116501020000010200010102000101020000010200010102000101020004010000010
103001d01020007010200050102000201020005010000010103001c0102000501
0200010102000001020001010200000102000101020003010200030102000701020002010200010
10200000102000101020000010000010103001c01020001010200000102000501
0000010103000101020006010200070102000201020001010200010102000701020002010200010
1020000010200010102008a010112060101110112060101116501020000010200
010102000101020000010200010102000101020004010200000102001d010200070102000501020
0020103000101010000010200000102001c010300010101000001020001010200
0001020001010200000102000101020003010200030102000001010004010200020102000101020
0000102000101020000010200000102001c010200010102000001030001010100
0001020000010200010103000101010001010200070102000201020000010300010102000001010
004010200020102000101020000010200010102008a0101120601011101120601
011165010700000106000101060001010400030106001c010400040106000101060001010600000
106001d0106000101050000010300000103000101060001010600010105000201
0600010105000001030000010300000106001d01060001010600000106000201060000010400040
106000001060002010500020106000101050000010300000103008a0101120601
0111011206010111660102000001020000010100000102000201010000010200020104000301000
0000103001d01040004010600010106000201040001010000000103001f010400
0301030001010300000103000201020000010100010106000201030003010600020103000101030
00001030000010000000103001f01020000010100020104000101000000010300
0401040001010400040106000001050004010300030106000201030001010300000103008a01011
206010111011206010111ff01a0010200b301011206010111011206010111ff01
a0010200b301011206010111011206010111ff019f010400b201011206010111011206010111ff0
1ff015701011206010111011206010111ff01ff01570101120601011101120601
0111ff01ff015701011206010111011206010111ff01ff015701011206010111011206010111ff0
1ff015701011206010111011206010111ff01ff01570101120601011101120601
0111ff01ff015701011206010111011206010111ff01ff015701011206010111011206010111ff0
1ff015701011206010111011206010111ff01ff01570101120601011101120601
0111ff01ff015701011206010111011206010111ff01ff015701011206010111011206010111ff0
1ff015701011206010111011206010111ff12ff12591206010111011206010011
ff12ff125a120601011101121e0100110012ff01ff012701001100121e01011101121e010011001
2ff01ff012701001100121e01011101121e0100110012ff01ff01270100110012
1e01011101121e0100110012ff01ff012701001100121e01011101121e0100110012ff01ff01270
1001100121e01011101121e0100110012ff01ff012701001100121e0101110112
1e0100110012ff01ff012701001100121e01011101121f110012ff11ff112811001220110012ff1
1ff116c11
pop pop setmatrix

/#copies 1 def
grestore
%%Trailer