blob: ba7b31d6f836411013287806470f586dfdc235a1 (
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
|
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: (ImageMagick)
%%Title: (messages.eps)
%%CreationDate: (Sun Dec 3 00:59:11 2000)
%%BoundingBox: 0 0 641 112
%%DocumentData: Clean7Bit
%%LanguageLevel: 1
%%Pages: 0
%%EndComments
%%BeginDefaults
%%PageOrientation: Portrait
%%EndDefaults
%%BeginProlog
%
% Display a color image. The image is displayed in color on
% Postscript viewers or printers that support color, otherwise
% it is displayed as grayscale.
%
/buffer 512 string def
/byte 1 string def
/color_packet 3 string def
/pixels 768 string def
/DirectClassPacket
{
%
% Get a DirectClass packet.
%
% Parameters:
% red.
% green.
% blue.
% length: number of pixels minus one of this color (optional).
%
currentfile color_packet readhexstring pop pop
compression 0 gt
{
/number_pixels 3 def
}
{
currentfile byte readhexstring pop 0 get
/number_pixels exch 1 add 3 mul def
} ifelse
0 3 number_pixels 1 sub
{
pixels exch color_packet putinterval
} for
pixels 0 number_pixels getinterval
} bind def
/DirectClassImage
{
%
% Display a DirectClass image.
%
systemdict /colorimage known
{
columns rows 8
[
columns 0 0
rows neg 0 rows
]
{ DirectClassPacket } false 3 colorimage
}
{
%
% No colorimage operator; convert to grayscale.
%
columns rows 8
[
columns 0 0
rows neg 0 rows
]
{ GrayDirectClassPacket } image
} ifelse
} bind def
/GrayDirectClassPacket
{
%
% Get a DirectClass packet; convert to grayscale.
%
% Parameters:
% red
% green
% blue
% length: number of pixels minus one of this color (optional).
%
currentfile color_packet readhexstring pop pop
color_packet 0 get 0.299 mul
color_packet 1 get 0.587 mul add
color_packet 2 get 0.114 mul add
cvi
/gray_packet exch def
compression 0 gt
{
/number_pixels 1 def
}
{
currentfile byte readhexstring pop 0 get
/number_pixels exch 1 add def
} ifelse
0 1 number_pixels 1 sub
{
pixels exch gray_packet put
} for
pixels 0 number_pixels getinterval
} bind def
/GrayPseudoClassPacket
{
%
% Get a PseudoClass packet; convert to grayscale.
%
% Parameters:
% index: index into the colormap.
% length: number of pixels minus one of this color (optional).
%
currentfile byte readhexstring pop 0 get
/offset exch 3 mul def
/color_packet colormap offset 3 getinterval def
color_packet 0 get 0.299 mul
color_packet 1 get 0.587 mul add
color_packet 2 get 0.114 mul add
cvi
/gray_packet exch def
compression 0 gt
{
/number_pixels 1 def
}
{
currentfile byte readhexstring pop 0 get
/number_pixels exch 1 add def
} ifelse
0 1 number_pixels 1 sub
{
pixels exch gray_packet put
} for
pixels 0 number_pixels getinterval
} bind def
/PseudoClassPacket
{
%
% Get a PseudoClass packet.
%
% Parameters:
% index: index into the colormap.
% length: number of pixels minus one of this color (optional).
%
currentfile byte readhexstring pop 0 get
/offset exch 3 mul def
/color_packet colormap offset 3 getinterval def
compression 0 gt
{
/number_pixels 3 def
}
{
currentfile byte readhexstring pop 0 get
/number_pixels exch 1 add 3 mul def
} ifelse
0 3 number_pixels 1 sub
{
pixels exch color_packet putinterval
} for
pixels 0 number_pixels getinterval
} bind def
/PseudoClassImage
{
%
% Display a PseudoClass image.
%
% Parameters:
% class: 0-PseudoClass or 1-Grayscale.
%
currentfile buffer readline pop
token pop /class exch def pop
class 0 gt
{
currentfile buffer readline pop
token pop /depth exch def pop
/grays columns 8 add depth sub depth mul 8 idiv string def
columns rows depth
[
columns 0 0
rows neg 0 rows
]
{ currentfile grays readhexstring pop } image
}
{
%
% Parameters:
% colors: number of colors in the colormap.
% colormap: red, green, blue color packets.
%
currentfile buffer readline pop
token pop /colors exch def pop
/colors colors 3 mul def
/colormap colors string def
currentfile colormap readhexstring pop pop
systemdict /colorimage known
{
columns rows 8
[
columns 0 0
rows neg 0 rows
]
{ PseudoClassPacket } false 3 colorimage
}
{
%
% No colorimage operator; convert to grayscale.
%
columns rows 8
[
columns 0 0
rows neg 0 rows
]
{ GrayPseudoClassPacket } image
} ifelse
} ifelse
} bind def
/DisplayImage
{
%
% Display a DirectClass or PseudoClass image.
%
% Parameters:
% x & y translation.
% x & y scale.
% label pointsize.
% image label.
% image columns & rows.
% class: 0-DirectClass or 1-PseudoClass.
% compression: 0-RunlengthEncodedCompression or 1-NoCompression.
% hex color packets.
%
gsave
currentfile buffer readline pop
token pop /x exch def
token pop /y exch def pop
x y translate
currentfile buffer readline pop
token pop /x exch def
token pop /y exch def pop
currentfile buffer readline pop
token pop /pointsize exch def pop
/Helvetica findfont pointsize scalefont setfont
x y scale
currentfile buffer readline pop
token pop /columns exch def
token pop /rows exch def pop
currentfile buffer readline pop
token pop /class exch def pop
currentfile buffer readline pop
token pop /compression exch def pop
class 0 gt { PseudoClassImage } { DirectClassImage } ifelse
grestore
} bind def
%%EndProlog
%%Page: 1 1
%%PageBoundingBox: 0 0 642 113
userdict begin
%%BeginData:
DisplayImage
0 0
642 113
12.000000
642 113
1
0
0
9
000000
0000c8
00cc00
00ccc8
00fc00
585c58
c80000
e0e4e0
e8ecd0
03ff03ff03620400031b080103ff03ff03610402031a080103ff031f00010302000103ff
0321000403120401030004010319080103ff031f00020300000203ff0320000103020001
0310040103020401031808010318040403ff0301000603ff03250001033008010301000d
03080404030900ef03070006030100040302000403020004030200030303000203000001
0301000403020004030900df03040001030000070317000e030008010301000103140404
03ff03010001030000000300000103000001030200010300000103020001030000010302
00010304000103010001030100010301000103020001030000010302000103ea0003032e
000103000801030100010300001203000404030100f70307000103020001030000060301
0001030500010305000403010001030100010301000603010001030c00df030400010300
000f0307001303000001030008010301000103000001031104040301000703f700010302
000103000001030700020304000203020001030100010301000103010001030100010307
000203ef0001031800070309000103000001030008010301000103000001031104040301
000703f70001030200010300000103090001030500010301000103010001030100010301
0001030100010309000103ee000103180007030900010300000103000801030100010300
0001031104040301000703f7000103020001030000010302000103000001030200010300
000103020001030000010301000103010001030100010301000103020001030000010302
000103e80001030200010318000703090001030000010300080103010001030000010318
000703f70001030200010301000403020004030200040302000203000001030100040302
00040302000403ea00040319000703090001030000010300080103010001030000010318
000703ff0323000103ff0319000703090001030000010300080103010001030000010318
000703ff031f00010301000103ff03190007030900010300000103000801030100010300
00010318000703ff0320000303ff031a0007030900010300000103000801030100010300
00010318000703ff03ff033f000703090001030000010300080103010001030000010300
02ff02ff026f030201000303080103010001030000010300029000010201000102290001
0201000102ff02a8030101020302080103010001030000010300020f0002020700010265
0001020b00010201000102000002020e000202040002020b0001020100010273000102ff
023203000101030001010301080103010001030000010300021000010207000102650001
020b00010201000102010001020f000102050001020b0001020100010273000102ff0232
0101030201010300080103010001030000010300020d000002010001021a000002620000
0201000002020001020f000102050001020c00000201000002ff02a90307080103010001
030000010300020c00010201000302040002020200010200000202060001020100020200
000102000001020000020202000402010001020000020211000102000002021b00020213
000102000001020200040204000102050001020300040212000102010001020800010200
00020202000302030004020a00010201000102080001020000020201000102000002020a
000102010001020a000202020001020000020202000402ff022103070801030100010300
00010300020b000102020001020000010204000102030001020100010204000102010001
020100010202000202000001020000010202000102010001020100010211000102010001
021b00010213000202000001020000010202000102030001020500010202000102020001
02120003020a000102010001020400010201000102020001020a0003020a000102010001
0201000102010001020a0003020c00010203000102010001020000010202000102ff0220
0307080103010001030000010300020a0001020300010201000102030001020300010201
000102030001020200010201000102020001020100010200000602010001020100010208
000602010001020100010210000602030001021300010201000102000006020300010205
000102020001020200010210000702080001020100010201000402020001020c00070208
000102010001020100010201000102080007020a000102030001020100010200000102ff
022503070801030100010300000103000209000102040001020100010203000102030001
020100010202000102030001020100010202000102040001020600010201000102110001
02010001021b000102130001020100010200000102080001020500010202000102020001
02120003020a000102010001020000010201000102030002020c0003020a000102010001
0201000102010001020a0003020c000102030001020100010200000102ff022503070801
030100010300000103000208000102050001020100010203000102030001020100010201
00010204000102010001020200010204000102060001020100010211000102010001021b
000102130001020100010200000102080001020500010202000102020001021100010201
00010209000102010001020000010201000102050001020a000102010001020900010201
000102010001020100010209000102010001020b000102030001020100010200000102ff
022503070801030100010300000103000207000102060001020100010203000102030001
020100010200000102050001020100010202000102040001020200010201000102010001
0211000102010001021b0001021300010201000102000001020200010203000102050001
0202000102020001021b0001020300010201000102000001020100010201000102020001
021300010203000102010001020100010201000102130001020500010203000102010001
020000010202000102ff0220030708010301000103000001030002070000020700040203
000302020001020100010200000002070004020100030204000402020004021200010201
0001021a0003021100020201000102010004020300030203000302020004021c00010203
000402020002020000010201000402140001020300040202000402140001020400030202
0001020100010201000402ff022103070801030100010300000103000233000102120001
02950001022d00010205000102ff02540307080103010001030000010300022f00010201
00010212000102950001022d00010205000102ff02540307080103010001030000010300
023000030212000302930003022b00030203000302ff0253030708010301000103000001
030002ff02ff026f03070801030100010300000103ff03ff037808010301000103000001
03ff03ff037808010301000103000001030b010003160100031f01010304010103040101
03530102030e01020304010203ff03b208010301000103000001030a010103150101031e
0101030401020305010103530101030f01010305010103ff03b208010301000103000001
030a010103150101031d0101030401030306010103040101034b0101030f010103050101
030d010103ff039b01040301080103010001030000010308010503020104030201040301
01050309010103000102030101010300010203030101030601010306010103040101030a
010103000102030101010300010203020104030201020300010103000101030001020302
01030302010203000101030a010103000101030201040304010103050101030301040304
010103ff039b0104030108010301000103000001030a0101030301010302010103000101
0302010103020101030c0101030101010301010103010101030201010306010103060101
031201010301010103010102030001010300010103020101030001010301010103020102
030001010304010103010106030901020300010103000101030201010303010103050101
030201010302010103ff03a10104030108010301000103000001030a0101030301060301
010103060101030c01010301010103010101030101010302010103060101030601010312
010103010101030101010301010103000101030201010300010103010101030201010301
010103010104030101010300010003000101030901010301010103000106030301010305
0101030201010302010103ff03a10104030108010301000103000001030a010103030101
0307010203040101030c0101030101010301010103010101030201010306010103060101
031201010301010103010101030401010302010103000101030101010302010103040101
030101010301010103000100030001010309010103010101030001010308010103050101
030201010302010103ff03a10104030108010301000103000001030a0101030301010309
010103030101030c01010301010103010101030101010302010103060101030601010304
0101030b0101030101010301010103040101030201010300010103010101030201010304
010103010101030101010300010003000101030901010301010103000101030801010305
010103020101030201010303010103ff039b0104030108010301000103000001030a0101
030001010300010103020101030001010302010103020101030001010303010103030101
03010101030101010301010103030101030501010305010103050101030b010103010101
030101010304010103020101030001010301010103020101030401010301010103010101
030001000300010103090101030101010300010103020101030301010305010103020101
030201010303010103ff039b0104030108010301000103000001030b0102030201040302
010403040102030401010303010403020104030501010302010503020101031401040301
010303040104030201040301010303040102030001010300010103020101030801020301
0101030101040303010303030103030201040303010103ff03a308010301000103000001
0331010103050101032d01010318010103ff03f108010301000103000001033101010305
0101032d0101031401010301010103ff03f1080103010001030000010330010303030103
032b01030314010303ff03f20801030100010300000103ff03ff03780801030100010300
000103ff03ff037101000300010003000100030001000801030100010300000103ff03ff
03700100030001000300010003000100030008010301000103000001030b010003160100
031f01010301010603020101033e01020324010203110102030e01020304010203ff0383
010003000100030001000300010008010301000103000001030a010103150101031e0101
030201010302010103030101033e01010325010103120101030f01010305010103ff0382
0100030001000300010003000100030008010301000103000001030a010103150101031d
0101030801010304010103040101033601010325010103120101030f010103050101030d
010103ff0373010003000100030001000300010008010301000103000001030801050302
010403020104030101050309010103000102030101010300010203030101030801010304
010103040101030a01010300010203010101030001020302010403020104030201040303
01030301010103010101030101010300010203020104030b010303020104030a01010300
0101030201040304010103050101030301040304010103ff037201000300010003000100
03000100030008010301000103000001030a010103030101030201010300010103020101
03020101030c010103010101030101010301010103020101030701010305010103120101
030101010301010203000101030001010302010103000101030201010300010103020101
030101010300010103010101030101010302010203000101030001010302010103090101
030001010301010103020101030901020300010103000101030201010303010103050101
030201010302010103ff0379010003000100030001000300010008010301000103000001
030a0101030301060301010103060101030c010103010101030101010301010103020101
030601010306010103120101030101010301010103010101030001010302010103000101
030501060300010103010101030101010301010103020101030101010300010603080101
030101010301010103020101030901010301010103000106030301010305010103020101
0302010103ff03780100030001000300010003000100030008010301000103000001030a
0101030301010307010203040101030c0101030101010301010103010101030201010305
010103070101031201010301010103010101030401010302010103000101030501010305
01010301010103010101030101010302010103040101030d010103010101030101010302
01010309010103010101030001010308010103050101030201010302010103ff03790100
03000100030001000300010008010301000103000001030a010103030101030901010303
0101030c010103010101030101010301010103020101030501010307010103040101030b
010103010101030101010304010103020101030001010305010103050101030101010301
0101030101010302010103040101030d0101030101010301010103020101030901010301
010103000101030801010305010103020101030201010303010103ff0372010003000100
0300010003000100030008010301000103000001030a0101030001010300010103020101
030001010302010103020101030001010303010103030101030101010301010103010101
03030101030401010306010103050101030b010103010101030101010304010103020101
030001010302010103000101030201010300010103010101030101010301010103020101
030401010302010103080101030101010301010103020101030901010301010103000101
03020101030301010305010103020101030201010303010103ff03730100030001000300
01000300010008010301000103000001030b010203020104030201040304010203040101
030301040302010403050101030301010305010103140104030101030304010403020104
03020104030201020300010103010102030001010300010303040104030a010203000101
030101040309010203010101030101040303010303030103030201040303010103ff0373
01000300010003000100030001000300080103010001030000010331010103050101032d
010103ff03ff030501000300010003000100030001000801030100010300000103310101
03050101032d0101035c010703ff039f0100030001000300010003000100030008010301
0001030000010330010303030103032b010303ff03ff0304010003000100030001000300
01000801030100010300000103ff03ff0370010003000100030001000300010003000801
030100010300000103ff03ff037101000300010003000100030001000801030100010300
000103c201010375010103ff033301000300010003000100030001000300080103010001
03000001030b010003160100031f01010304010103040102030401010323010103020101
030b010103050100030d0102030e0101030301010303010103020101030a010203040102
0334010203050102030c0101030401010305010103ff032c010003000100030001000300
010008010301000103000001030a010103150101031e0101030401020303010103000101
030401010322010103020101030b010103040101030e0101030d01010304010103030101
03020101030b0101030501010335010103060101030b0103030301010306010103ff032a
0100030001000300010003000100030008010301000103000001030a010103150101031d
01010304010303020101030201010304010103040101031a01010302010103120101030e
0101030c0101030401010304010103020101030b0101030501010335010103060101030b
010303020101030801010304010103ff0323010003000100030001000300010008010301
000103000001030801050302010403020104030101050309010103000102030101010300
0102030301010306010103020101030201010304010103040101031a0101030201010300
01010300010203030102030201050302010403040101030201010300010203030101030b
010103020101030101040304010103050101030301040311010103020101030101040301
0101030001020304010103040103030b0103030d01010304010103ff0322010003000100
0300010003000100030008010301000103000001030a0101030301010302010103000101
0302010103020101030c0101030101010301010103010101030201010306010103020101
030001000300010103040101032101010300010003000101030101020300010103030101
03040101030301010302010103030101030301010301010103020101030b010603000101
030201010303010103050101030201010302010103100101030201010300010103020101
0301010203000101030301010303010103000101030c0101030e010103ff032a01000300
0100030001000300010008010301000103000001030a0101030301060301010103060101
030c01010301010103010101030101010302010103060101030201010300010003000101
030401010321010103000100030001010301010103010101030301010304010103030106
03030101030301010301010103020101030b010103020101030001060303010103050101
030201010302010103100101030001000300010103000101030201010301010103010101
030301010302010103010101030c0101030e010103ff0329010003000100030001000300
0100030008010301000103000001030a0101030301010307010203040101030c01010301
010103010101030101010302010103060101030201010302010103040101032101010300
010003000101030101010307010103040101030301010308010103030101030101010302
0101030b0101030201010300010103080101030501010302010103020101031001010300
010003000101030001010302010103010101030701010302010103010101030c0101030e
010103ff032a010003000100030001000300010008010301000103000001030a01010303
01010309010103030101030c010103010101030101010301010103020101030601010302
0101030201010304010103040101031a0106030101010307010103040101030301010308
0101030301010301010103020101030b0101030201010300010103080101030501010302
01010302010103030101030a010103000100030001010300010103020101030101010307
01010302010103010101031d01010304010103ff03220100030001000300010003000100
030008010301000103000001030a01010300010103000101030201010300010103020101
030201010300010103030101030301010301010103010101030101010303010103050101
03030101030001010304010103050101031a010203000102030101010307010103040101
03000101030001010302010103030101030301010301010103030101030a010103020101
03000101030201010303010103050101030201010302010103030101030a010603000101
0302010103010101030701010302010103010101030c0101030d01010305010103ff0323
010003000100030001000300010008010301000103000001030b01020302010403020104
030401020304010103030104030201040305010103020105030201020304010103240101
030001010301010303050103030401020302010403030103030201010301010103040101
03090101030201010301010403030103030301030302010403040101030b010103000101
0302010403010103030501030302010203000101030b0101030c01010305010103ff0323
0100030001000300010003000100030008010301000103000001033101010305010103b6
010103ff037c010003000100030001000300010008010301000103000001033101010305
010103ff03ff033401000300010003000100030001000300080103010001030000010330
01030303010303ff03ff0334010003000100030001000300010008010301000103000001
03ff03ff0370010003000100030001000300010003000801030100010300000103ff03ff
03780801030100010300000103ff03ff037808010301000103000001030b010003160100
031f0101030401010306010103030101031e010203110102030e01020304010203ff03c2
010103020101030008010301000103000001030a010103150101031e0101030401020305
010203040101031e010103120101030f01010305010103ff03c201010302010103000801
0301000103000001030a010103150101031d010103040103030401030305010103040101
0316010103120101030f010103050101030d010103ff03b2010103020101030008010301
000103000001030801050302010403020104030101050309010103000102030101010300
01020303010103060101030301010300010103050101030401010314010303020104030a
010103000101030201040304010103050101030301040304010103ff03b2010103020101
030008010301000103000001030a01010303010103020101030001010302010103020101
030c01010301010103010101030101010302010103060101030201010301010103050101
031a01010300010103010101030201010309010203000101030001010302010103030101
03050101030201010302010103ff03b8010103020101030008010301000103000001030a
0101030301060301010103060101030c0101030101010301010103010101030201010306
010103020106030401010319010103010101030101010302010103090101030101010300
01060303010103050101030201010302010103ff03b80101030201010300080103010001
03000001030a0101030301010307010203040101030c0101030101010301010103010101
030201010306010103060101030501010319010103010101030101010302010103090101
03010101030001010308010103050101030201010302010103ff03b80101030201010300
08010301000103000001030a0101030301010309010103030101030c0101030101010301
010103010101030201010306010103060101030501010304010103120101030101010301
010103020101030901010301010103000101030801010305010103020101030201010303
010103ff03b3010103000101030108010301000103000001030a01010300010103000101
030201010300010103020101030201010300010103030101030301010301010103010101
030101010303010103050101030601010304010103050101031201010301010103010101
030201010309010103010101030001010302010103030101030501010302010103020101
0303010103ff03b40102030208010301000103000001030b010203020104030201040304
010203040101030301040302010403050101030201050303010303020101031c01020300
0101030101040309010203010101030101040303010303030103030201040303010103ff
03b60100030308010301000103000001033101010305010103ff03ff033c080103010001
030000010331010103050101034c010703ff03e708010301000103000001033001030303
010303ff03ff033b0801030100010300000103ff03ff0378080103010001030000010310
010103000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000100031204010302080103010001030000010311
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203120401030208010301000103000001031001010300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010003120401030208010301000103000001030d01010301
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000101030f0401030208010301000103000001030c
010103010101030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
0102030001020300010203000102030001020300010003010101030e0401030208010301
00010300000a030201010303010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203020101030d04010302
080103010001030d01010303010103000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
01020300010203000102030001020300010203000102030001020300010003030101030c
0401030208010301000d0300010103050102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030401010300
040c03020801031101010303010103000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000100030301010311
080103120101030301020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020302010103120801031301010301
010103000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000100030101010313080103140101030101020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010103140801031701010300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010003170801031801020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020317080103170101030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001000317080103180102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
010203000102030001020300010203000102030001020300010203000102030001020300
01020300010203000102030001020300010203000102030001020300010203170801074f
0807070a060107ff07ff071a0801
%%EndData
end
%%PageTrailer
%%Trailer
%%BoundingBox: 0 0 641 112
%%EOF
|