blob: f39d9d8573f1b88584eabfc380f4ca6fbfcf11d6 (
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
|
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: (ImageMagick)
%%Title: (search.eps)
%%CreationDate: (Tue Nov 28 23:50:42 2000)
%%BoundingBox: 0 0 444 176
%%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 445 177
userdict begin
%%BeginData:
DisplayImage
0 0
445 177
12.000000
445 177
1
0
0
9
c0c0c0
f8fcf8
00fc00
000080
008000
f8fc00
000000
008080
00fcf8
00ff00bc00120103000b010300a9010600030101000d010200cd00120101000502030005
010100aa01010001010100030101000e010100cd00120101000502030005010100aa0101
000201000014010100cd0001010e0001010100050203000501010001019f000801010001
0100000201030002010400030104000901c300010101000e0101000502030005010100aa
0104000401010002010100010101000101010001010100cd00010101000e010100050203
0005010100aa010100010100000401010002010100010101000101010001010100cd0001
01010001010a0001010100050203000501010001019f0008010100070101000201010001
01010001010100010101000901c200000001010100010101000a01010005020300050101
00aa0101000701010002010100010101000101010001010100ca01010000000101010001
0101000a0103000302030003010300a90103000401050000010100010101000201020000
010100c901010000000101010001010100ff00b101010000000101010001010100ff00b1
01010000000101010001010100ff00b101010000000101010001010100ff00b101010000
000101010001010100ff00b101010000000101010001010100ff00b10101000000010101
0001010100ff00b101010000000101010001010100ff00b1010100000001010100010101
00ff00b101010000000101010001010100ff00b101010000000101010001010100ff00b1
01010000000101010001010100ff00b101010000000101010001010100ff00b101010000
000101010001010100ff00b1010100000001010100010101008003ff0307041700100101
0000000101010001010100180505003b010200050101000d0102000903ff030704010603
040406010404060304010010010100000001010100010101001805000000050100000500
00130100000e0100001501010000010100040101000e0101000903ff0307040106010406
06010406060104010010010100000001010100010101001a050100140101000d01010015
010100180101000903ff0307040106010406060104060601040100100101000000010101
00010101001a0501000401030002010100020101000001050009010500020103000b0101
000501030002010400030104000903ff0307040106010406060104060601040100100101
00000001010100010101001a05010003010100010101000201010000010100020101000d
010100040101000101010009010400050101000201010001010100010101000101010009
03ff030704010601040606010406060104010010010100000001010100010101001a0501
000301050003010200030101000d01010004010100010101000a01010007010100020101
000101010001010100010101000903ff0307040106010406060104060601040100100101
00000001010100010101001a0501000301010007010200030101000d0101000401010001
0101000a01010007010100020101000101010001010100010101000903ff030704010601
040406050404060104010010010100000001010100010101001a05010003010100010101
00020101000001010002010100000101000a0101000001010001010100010101000a0101
0007010100020101000101010001010100010101000903ff030704010601040506030405
060104010010010100000001010100010101001905030003010300020101000201010002
0102000c010200030103000a010300040105000001010001010100020102000001010008
03ff030704010603040406010404060304010010010100000001010100010101008003ff
030704170010010100000001010100010101008003ff0307041700100101000000010101
0001010100ff00b101010000000101010001010100ff00b1010100000001010100010101
00ff00b101010000000101010001010100ff00b101010000000101010001010100ff00b1
01010000000101010001010100ff00b101010000000101010001010100ff00b101010000
000101010001010100ff00b101010000000101010001010100ff00b10101000000010101
0001010100ff00b101010000000101010001010100ff00b1010100000001010100010101
00ff00b101010000000101010001010100ff00b1010100000001010100010101001a0602
0015060100b2060400050601002506010093010100000001010100010101001906010000
0601000b06000007060100b306010000060100040601001c060000070601009301010000
000101010001010100180601000206010009060100bd06010001060100210601009d0101
000000010101000101010018060100020601000006010000060200010605000206030003
06030002060400030603009b060100010601000106030002060200000601000206030003
060300020605000206030003060300020604008301010000000101010001010100180601
000206010001060100010601000106010007060100020601000106010001060100010601
0001060100010601009a0601000106010003060100030601000006020000060100010601
000106010001060100020601000706010002060100010601000106010001060100820101
000000010101000101010018060100020601000106010001060100010601000706010002
060100010601000106010001060100020601009d06010001060100030601000306020000
060100000605000106010006060100070601000206010001060100010601000106010082
010100000001010100010101001806010002060100010601000106010001060100070601
0002060100010601000106010001060100040601009b0601000106010003060100030601
000406010005060100060601000706010002060100010601000106010001060100820101
000000010101000101010019060100000601000206010001060100010601000006010004
0601000206010001060100010601000106010001060100010601009a0601000006010004
060100030601000406010001060100010601000106010002060100000601000406010002
06010001060100010601000106010082010100000001010100010101001a060200030604
000306020003060500010603000206010001060100020603009a06040003060500000603
000406030003060300040602000306050001060300020601000106010082010100000001
0101000101010021060100ff008d0101000000010101000101010020060300ff008c0101
00000001010100010101001007bf000f07bf001001010000000101010001010100100709
0603070b0603070b050307440601070d0601073a000f070b0601070a0601070c0606072b
050207610010010100000001010100010101001007090601070f0601070a050107010501
074306010704060007070601073a000f070a0601070c0601070c060107010601072c0501
07610010010100000001010100010101001007090601070f060107090501070205010749
06010744000f07090601070406010701060107030601070b060107020600072c05010761
0010010100000001010100010101001007090601070f0601070905010706060307030603
07030603070b060307030603070206040703060307030603070206050702060307020601
0701060107020603072a000f070806010706060307050601070a06010701060007020603
070206020700060107010601070206010701060307020602070006010702050407610010
010100000001010100010101001007090601070f06010709050107090601070106010701
060107010601070106010709060107010601070106010701060107010601070106010701
060107010601070406010703060107070601070206010701060107010601070106010729
000f070806010704060707030601070a0604070106010701060107020601070006020700
060107020601070406010702060107000602070005010701050107610010010100000001
010100010101001007090601070f060107090501070606040702060107040605070a0601
070406050701060107010601070206010707060107030601070706010702060107010601
070106050729000f070806010706060307050601070a0601070106000701060107010601
070206020700060107000601070006000700060107010604070206020700060107000501
0701050107610010010100000001010100010101001007090601070f0601070905010702
050107000601070106010704060107020601071006010702060107050601070106010704
0601070506010703060107070601070206010701060107010601072d000f070906010704
06010701060107030601070b060107040601070106010702060107040601070006000700
060107000601070106010702060107040501070105010761001001010000000101010001
0101001007090601070f0601070a05010701050107000601070106010701060107010601
070106010701060107090601070106010701060107010601070106010701060107010601
07010601070406010703060107000601070406010703060307020601070106010729000f
070a0601070c0601070c0601070406010701060107020601070506010700060107010601
070106010702060107040501070105010761001001010000000101010001010100100709
0603070b0603070b050307020602070006010701060307030603070b0603070306030702
060107010601070206030703060507020602070306050702060107040603072a000f070b
0601070a0601070c06030704060307020603070406010700060107020602070006010700
0603070405020700050107600010010100000001010100010101001007bf000f07bf0010
010100000001010100010101001007bf000f07bf00100101000000010101000101010010
07bf000f07bf0010010100000001010100010101001007090603070b0603070905010702
050107000602070d0603072d0602072206030722000f070b0601070a0601070c05050711
0602071f060207590010010100000001010100010101001007090601070f060107090501
0702050107010601070f0601072e0601072406010722000f070a0601070c0601070c0501
07010501071106010720060107590010010100000001010100010101001007090601070f
0601070905010702050107010601070f0601072e0601072406010722000f07090601070e
0601070b0501070105010711060107200601075900100101000000010101000101010010
07090601070f060107090501070205010701060107000601070206030705060107030603
070a0601070206010701060307020602070006010702060407020603070b060307020604
0705060107030601070106010718000f0708060107100601070a05010701050107010603
070306030703060107010601070006010702060107010603070206020700060107020604
07590010010100000001010100010101001007090601070f060107090501070005000700
050107010602070006010700060107010601070406010702060107010601070906010702
060107000601070106010702060107000602070006010701060107010601070106010709
06010701060107010601070106010704060107030601070106010718000f070806010710
0601070a0504070506010701060107010601070206010700060107010601070206010704
060107020601070006020700060107010601075900100101000000010101000101010010
07090601070f060107090501070005000700050107010601070106010700060107010601
070406010702060507090601070006000700060107000601070106010702060207000601
070006010701060107020601070c06010701060107010601070106010704060107030601
070106010718000f0708060107100601070a050107010501070106040701060107060603
070206010700060007000601070106040702060207000601070006010701060107590010
010100000001010100010101001007090601070f0601070a050107000501070206010701
060107000601070106010704060107020601070d06010700060007000601070006010701
060107020601070406010701060107040601070a06010701060107010601070106010704
060107030601070106010718000f07090601070e0601070b050107010501070006010701
060107010601070606010700060107010601070006000700060107000601070106010702
0601070406010701060107590010010100000001010100010101001007090601070f0601
070a05010700050107020601070106010700060107010601070406010702060107010601
070a06010700060107010601070106010702060107040601070106010701060107010601
0709060107010601070106010701060107040601070406030719000f070a0601070c0601
070c05010701050107000601070106010701060107010601070206010701060107010601
070006010701060107010601070206010704060107010601075900100101000000010101
00010101001007090603070b0603070a0501070005010701060207010601070106030703
060507010603070b0601070006010702060307020603070406020700060107010603070b
0603070206010701060107020605070406010719000f070b0601070a0601070c05050702
060207000601070106030702060207010601070106010700060107020602070006010700
0603070406020700060107580010010100000001010100010101001007a20601071a000f
07bf00100101000000010101000101010010079f0603071b000f07bf0010010100000001
01010001010100ff00b101010000000101010001010100ff00b101010000000101010001
010100ff00b101010000000101010001010100ff00b101010000000101010001010100ff
00b101010000000101010001010100ff00b101010000000101010001010100ff00b10101
0000000101010001010100ff00b101010000000101010001010100ff00b1010100000001
01010001010100ff00b101010000000101010001010100ff00b101010000000101010001
010100ff00b101010000000101010001010100ff00b10101000000010101000101010019
060300cc0602000d0601000d060100a30101000000010101000101010018060100010601
00ca060100000601000c0601000d060100a3010100000001010100010101001806010001
060100c906010002060100c1010100000001010100010101001806010006060300030603
00020601000006020002060300aa06010002060100000602000006010002060300030602
000006010001060300020604009b01010000000101010001010100190602000306010001
060100010601000106010002060100010601000006010001060100a90601000206010001
060100000602000306010002060100010601000406010002060100010601009a01010000
0001010100010101001b0601000206010005060100010601000206010001060100000605
00a906010002060100010602000006010003060100020601000106010004060100020601
00010601009a010100000001010100010101001806010001060100010601000506010001
060100020601000106010000060100ad0601000206010001060100070601000206010001
0601000406010002060100010601009a0101000000010101000101010018060100010601
000106010001060100010601000106010002060100010601000006010001060100aa0601
00000601000206010007060100030604000406010002060100010601009a010100000001
010100010101001906030003060300030603000306040002060300ac0602000206030004
060500040601000206050000060100010601009a01010000000101010001010100310601
00cc06010001060100aa0101000000010101000101010030060300cc060300ab01010000
0001010100010101001007bf000f07bf00100101000000010101000101010010070b0601
070a0601070e050307020603070a0602070d0603076a000f070b0601070a0601070c0506
079000100101000000010101000101010010070a0601070c0601070c0501070105010703
0601070b0601070f0601076a000f070a0601070c0601070c050107010501079000100101
00000001010100010101001007090601070406010701060107030601070a050107020501
07030601070b0601070f0601076a000f07090601070406010701060107030601070b0501
070205000790001001010000000101010001010100100708060107060603070506010709
05010708060107030603070306040702060307050601076a000f07080601070606030705
0601070a05010701050007010602070006010702060307020605070a0603070206010701
060107010602070006010702060307030603070206020700060107410010010100000001
010100010101001007080601070406070703060107090501070806010702060107010601
07020601070106010704060107040601076a000f070806010704060707030601070a0504
070206010700060207000601070106010701060107000600070006010708060107010601
070106010701060107020601070006020700060107010601070106010701060107020601
070006020740001001010000000101010001010100100708060107060603070506010709
05010701050207030601070206010701060107020601070106010701060407040601076a
000f070806010706060307050601070a0501070105000702060207000601070006010701
060107010601070006000700060107080601070506010701060107020602070006010701
060107040601070106010702060207000601074000100101000000010101000101010010
07090601070406010701060107030601070a050107020501070306010702060107010601
0702060107010601070006010701060107040601076a000f070906010704060107010601
07030601070b050107050601070406010701060107010601070006000700060107080601
070506010701060107020601070706010702060107010601070206010744001001010000
00010101000101010010070a0601070c0601070c05010701050107030601070206010701
06010702060107010601070006010701060107040601076a000f070a0601070c0601070c
050107050601070406010701060107010601070006000700060107080601070106010701
060107010601070206010704060107010601070106010701060107020601074400100101
000000010101000101010010070b0601070a0601070e0504070106050701060307020601
070006020702060207000601070106050768000f070b0601070a0601070c050307030603
070406030702060107020601070906030703060207000601070006030704060307030603
0702060307430010010100000001010100010101001007bf000f07bf0010010100000001
010100010101001007bf000f07bf0010010100000001010100010101001007bf000f07bf
00100101000000010101000101010010070b0601070a0601070d0503070b060307250602
0759000f070b0601070a0601070c050607130601077a0010010100000001010100010101
0010070a0601070c0601070b050107010501070c06010714060007100601070b06000716
06000734000f070a0601070c0601070c050107020500070a060007070601077a00100101
00000001010100010101001007090601070e0601070a050107010501070c060107130601
07100601070a0601071506010734000f07090601070e0601070b0501070d060107840010
010100000001010100010101001007080601071006010709050107060603070506010703
060307030603070206050702060307030604070906050702060307020601070206010700
06050731000f0708060107100601070a0501070105000701060407020605070206030702
06020700060107020603070b06030703060307030603070206010700060207020603073a
001001010000000101010001010100100708060107100601070a05020703060107010601
070406010702060107010601070106010701060107020601070406010701060107010601
07010601070a060107040601070106010702060107000601070206010734000f07080601
07100601070a050407010601070106010702060107070601070306010700060207000601
070106010709060107010601070106010701060107010601070106010702060107010601
07000601070106010739001001010000000101010001010100100708060107100601070c
05010702060507040601070206050701060107060601070406050701060107010601070a
06010704060507030602070306010734000f0708060107100601070a0501070105000701
0601070106010702060107070601070306020700060107000605070a0601070406010705
060107010601070206010701060107000605073900100101000000010101000101010010
07090601070e0601070a0501070105010701060107080601070206010705060107060601
070406010705060107010601070a06010704060107070602070306010734000f07090601
070e0601070b050107040601070106010702060107070601070306010704060107100601
070206010705060107010601070206010701060107000601073d00100101000000010101
000101010010070a0601070c0601070b0501070105010701060107010601070406010702
060107010601070106010701060107020601070006010701060107010601070106010701
0601070a0601070006010701060107010601070206010700060107020601070006010731
000f070a0601070c0601070c050107020500070006010701060107020601070006010704
060107030601070406010701060107090601070106010701060107010601070106010701
060107020601070106010700060107010601073900100101000000010101000101010010
070b0601070a0601070d0503070306030703060507010603070306030704060207030603
0703060207000601070a0602070306030702060107020601070206020732000f070b0601
070a0601070c0506070006010701060107030602070306050700060307040603070b0603
07030603070306030703060407020603073a0010010100000001010100010101001007bf
000f0778060107440010010100000001010100010101001007bf000f0777060307430010
01010000000101010001010100ff00b101010000000101010001010100ff00b101010000
000101010001010100ff00b101010000000101010001010100ff00b10101000000010101
0001010100ff00b101010000000101010001010100ff00b1010100000001010100010101
00ff00b101010000000101010001010100ff00b101010000000101010001010100ff00b1
01010000000101010001010100ff00b101010000000101010001010100ff00b101010000
000101010001010100ff00b10101000000010101000101010068043f0057043f00700101
000000010101000101010068041908020402050204010501041800570409060304220603
040a00700101000000010101000101010068041808010400080104020501040105010418
0057040806010401060104230601040a0070010100000001010100010101006804170801
04020801040105010400050104190057040706010402060104230601040a007001010000
000101010001010100680417080104020801040105010400050104190057040706010406
060304020604040306030403060304050601040a00700101000000010101000101010068
041708010402080104010503041a00570407060104090601040106010401060104010601
04010601040106010401060104040601040a007001010000000101010001010100680417
080104020801040105010400050104190607004f04070601040606040401060104010601
040106010405060504040601040a06070068010100000001010100010101006804170801
04020801040105010400050104190607004f040706010402060104000601040106010401
060104010601040106010405060104080601040a06070068010100000001010100010101
00680418080104000801040205010401050104180607004f040806010401060104000601
0401060104010601040106010401060104010601040106010401060104040601040a0607
0068010100000001010100010101006804190802040205020401050104180607004f0409
060304020602040006010400060104010601040206030403060304030605040806070068
0101000000010101000101010068043f0607004f043f0607006801010000000101010001
01010068043f0607004f043f060700680101000000010101000101010070063f0057063f
00680101000000010101000101010070063f0057063f0068010100000001010100010101
0070063f0057063f00680101000000010101000101010070063f0057063f006801010000
00010101000101010070063f0057063f00680101000000010101000101010070063f0057
063f006801010000000101010001010100ff00b101010000000101010001010100ff00b1
01010000000101010001010100ff00b101010000000101010001010100ff00b101010000
000101010001010100ff00b101010000000101010001010100ff00b10101000000010101
0001010100ff00b101010000000101010001010100ff00b1010100000001010100010101
00ff00b101010000000101010001010100ff00b10101000000010101000101ff01b50000
0001010100ff00b80001010100ff00b8000101ff01ba00ff00bc
%%EndData
end
%%PageTrailer
%%Trailer
%%BoundingBox: 0 0 444 176
%%EOF
|