blob: fbc8da1b228da1207dab81651205e493eb30afeb (
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
|
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: (ImageMagick)
%%Title: (template.eps)
%%CreationDate: (Wed Nov 15 21:36:01 2000)
%%BoundingBox: 0 0 400 279
%%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 401 280
userdict begin
%%BeginData:
DisplayImage
0 0
401 280
12.000000
401 280
1
0
0
9
c0c0c0
000080
00fc00
f8fcf8
f8fc00
008000
00fcf8
008080
000000
000401000003010000030100000301000003010000030100000301000003010000030100
000301000003010000030100000301000003010000030100000301000003010000030100
000301000003010000030100000301000003010000030100000301000003010000030100
000301000003010000030100000301000003010000030100000301000003010000030100
000301000003010000030100000301000003010000030100000301000003010000030100
000301000003010000030100000301000003010000030100000301000003010000030100
000301000003010000030100000301000003010000030100000301000003010000030100
000301000003010000030100000301000003010000030100000301000003010000030100
000301000003010000030100000301000003010000030100000301000003010001010003
010000030100000301000003010000030100000301000003010000030100000301000003
010000030100000301000003010000030100000301000003010000030100000301000003
010000030100000301000003010000030100000301000003010000030100000301000003
010000030100000301000003010000030100000301000003010000030100000301000003
010000030100000301000003010000030100000301000003010000030100000301000003
010000030100000301000003010000030100000301000003010000030100000301000003
010000030100000301000003010000030100000301000003010000030100000301000003
010000030100000301000003010000030100000301000003010000030100000301000003
0100000301000003010000030100000301000003010000030100000300ff009000ff0090
00ff00900021020500ff00680101001603030004020500040303003f0301000303010022
0304002b030100240303001003010085001803030004020500040303003f030200020301
00210305002b030100240303001003010085001803010006020500060301003f03020002
030100210301002f03010026030100100301008500020312000203010006020500060301
00020331000a030300010301000303030003030100030301000d03010005030100000304
00030303000303010000030100000300000d030500040303000303010000030100000300
000203010000030200060301000503040004030500040303000c036c0002031200020301
000602050006030100020331000a030300010301000203050002030100030301000b0307
000103070002030500020307000c03050003030500020307000103060005030100050305
0003030500030305000b036c010100000302001203010006020500060301003f03010000
03010000030100010302000103020001030100030301000b030700010303000503020001
0302000103010000030100000301000d0301000503020001030200010301000003010000
0301000103020001030200040301000a0301000303010005030200010302007403020002
0302001203010006020500060301003f0301000003010000030100010301000303010001
03010000030100000301000d030100050302000603010003030100010301000003010000
0301000d0301000503010003030100010301000003010000030100010301000303010004
03010005030600030301000503010003030100740302000203020001030d000203010006
02050006030100020331000a03010001030300010307000103010000030100000301000d
0301000503010007030100030301000103010000030100000301000d0301000503070001
03010000030100000301000103010003030100040301000403070003030100050307000a
036700010302000203020001030d00020301000602050006030100020331000a03010001
03030001030700010307000d030100050301000703010003030100010301000003010000
0301000d0301000503070001030100000301000003010001030100030301000403010004
0301000303010003030100050307000a0367000103020002030200010302000d03010006
020500060301003f0301000203020001030200060307000d030100050301000703020001
0302000103010000030100000301000d0301000503020006030100000301000003010001
030200010302000403010004030100030301000303010005030200740302000103020101
0000030200010302000d03010006020500060301003f0301000203020002030500020302
00010302000d03010005030100080305000203010000030100000301000d030400030305
000203010000030100000301000103060003030500020307000303040003030500700302
000103020002030200010302000d03010006020500060301003f03010003030100030303
0004030000030300000e03010005030100090303000303010000030100000301000e0303
000403030003030100000301000003010001030100000302000403050003030600040303
0004030300710302000103020002030200010302000d03010013030100b70301009d0302
000103020002030200010302000d0303000f030300b70301009d03020001030200020302
00010302000d0303000f030300b70301009d0302000103020101000003020001030200dd
0301009d030200010302000203020001030200ff007d0302000103020002030200010302
00ff007d030200010302000203020001030200ff007d0302000103020002030200010302
00ff007d0302000103020101000003020001030200ff007d030200010302000203020001
030200ff007d030200010302000203020001030200ff007d030200010302000203020001
030200ff007d030200010302000203020001030200ff007d030200010302010100000302
0001030200ff007d030200010302000203020001030200ff007d03020001030200020302
0001030200ff007d030200010302000203020001030200ff007d03020001030200020302
0001030200ff007d0302000103020101000003020001030200ff007d0302000103020002
03020001030200ff007d030200010302000203020001030200ff007d0302000103020002
03020001030200ff007d030200010302000203020001030200ff007d0302000103020101
000003020001030200ff007d030200010302000203020001030200ff007d030200010302
000203020001030200ff007d030200010302000203020001030200ff007d030200010302
00020302000103020036030100ff00440302000103020101000003020001030200180301
001b030100050303000e030100080303001a0401002403030010030100c3030200010302
00020302000103020017030300220303000e030100080303001a04010024030300100301
00c30302000103020002030200010302001603010001030100230301000e0301000a0301
001a0401002603010010030100c303020001030200020302000103020015030100030301
000103010003030100020304000403030007030100050304000303010000030200060301
00060303000e040500040303000303010000030100000300000203010000030200060301
0005030400040305000403030005030300ad030200010302000203020001030200150301
000303010001030100030301000203050003030300070301000503050002030600050301
00050305000d040500030305000203070001030600050301000503050003030500030305
0003030500ac030200010302010100000302000103020015030100030301000103010003
0301000703010004030100070301000a0301000103020001030200040301000403020001
0302000d0401000503020001030200010301000003010000030100010302000103020004
0301000a0301000303010005030200010302000103010003030100ab0302000103020002
030200010302001503010003030100010301000303010002030600040301000703010005
03060001030100030301000403010004030100030301000d040100050301000303010001
030100000301000003010001030100030301000403010005030600030301000503010003
03010001030200b003020001030200020302000103020015030700010301000303010001
030700040301000703010004030700010301000303010004030100040307000d04010005
030700010301000003010000030100010301000303010004030100040307000303010005
03070002030500ac03020001030200020302000103020015030700010301000303010001
030100030301000403010007030100040301000303010001030100030301000403010004
0307000d0401000503070001030100000301000003010001030100030301000403010004
03010003030100030301000503070006030200ab03020001030200020302000103020015
030100030301000203010001030100020301000303010004030100070301000403010003
030100010302000103020004030100040302001204010005030200060301000003010000
030100010302000103020004030100040301000303010003030100050302000603010003
030100ab0302000103020101000003020001030200150301000303010003030300030307
000203050003030500020307000103060003030500030305000e04040003030500020301
000003010000030100010306000303050002030700030304000303050003030500ac0302
000103020002030200010302001503010003030100040301000503060002030500030305
000303060001030100000302000403050004030300100403000403030003030100000301
000003010001030100000302000403050003030600040303000403030005030300ad0302
0001030200020302000103020097030100e3030200010302000203020001030200970301
00e303020001030200020302000103020097030100e30302000103020101000003020001
03020097030100e30302000103020002030200010302000a05ef01090013054f00140302
000103020002030200010302000a05ef01090013054f0014030200010302000203020001
0302000a05ef01090013054f00140302000103020002030200010302000a05ef01090013
054f001403020001030201010000030200010302000a050a030505de0109001305200603
0503040105020401051f00140302000103020002030200010302000a050a030605dd0109
0013051f06050502040105010402051f00140302000103020002030200010302000a050a
03010502030205dc01090013051e06020501060205010401050004020520001403020001
03020002030200010302000a050a03010503030105010301050003040503030305050303
05030301050003040502030405030301050003010500030005a101090013051e06010503
060105010404052100140302000103020002030200010302000a050a0301050303010501
0307050203050503030505020307050203050502030705a001090013051e060105030601
050104030522001403020001030201010000030200010302000a050a0301050203020501
03030505030205010302050103020501030205010303050b030105010301050003010500
030105a00103070101030013051e06010503060105010402052300140302000103020002
030200010302000a050a0306050203020506030105030301050103010503030105010302
0507030605010301050003010500030105a00102070301020013051e0601050306010501
040305220809000a0302000103020002030200010302000a050a03050503030105070301
050303010501030105030301050103010507030705010301050003010500030105a00101
070501010013051e0601050306010501040405210809000a030200010302000203020001
0302000a050a030105070301050703010503030105010301050303010501030105070301
0503030105010301050003010500030105a00100070701000013051e0601050306010501
04010500040205200809000a0302000103020002030200010302000a050a030105070301
050703020501030205010302050103020501030105070301050303010501030105000301
0500030105a001090013051e0602050106020501040105010402051f0809000a03020001
030201010000030200010302000a050a0301050703010508030505030306050103010507
030705010301050003010500030105a001090013051f06050502040105020402051e0809
000a0302000103020002030200010302000a050a03010507030105090303050503020500
0301050103010508030605010301050003010500030105a0010900130520060305030401
05030401051e0809000a0302000103020002030200010302000a052e030105be01090013
054f0809000a0302000103020002030200010302000a052d030205be01090013054f0809
000a0302000103020002030200010302000a0529030505bf01090013054f0809000a0302
0001030201010000030200010302000a0529030405c001090013054f0809000a03020001
03020002030200010302000a07ef0100070301000703001d084f000a0302000103020002
030200010302000a07f3010007030100001d084f000a0302000103020002030200010302
000a07f20100070301000700001d084f000a0302000103020002030200010302000a07f1
0100070301000701001d084f000a03020001030201010000030200010302000a07f00100
070301000702001d084f000a0302000103020002030200010302000a07ef010007030100
0703001d084f000a0302000103020002030200010302000a07f3010007030100001d084f
000a0302000103020002030200010302000a07f20100070301000700001d084f000a0302
000103020002030200010302000a07f10100070301000701001d084f000a030200010302
01010000030200010302000a07f00100070301000702001d084f000a0302000103020002
030200010302000a07ef010007030100070300780302000103020002030200010302000a
07f301000703010000780302000103020002030200010302000a07f20100070301000700
00780302000103020002030200010302000a07f101000703010007010078030200010302
01010000030200010302000a07f001000703010007020078030200010302000203020001
0302000a07ef010007030100070300780302000103020002030200010302000a07f30100
0703010000780302000103020002030200010302000a07f2010007030100070000780302
000103020002030200010302000a07f10100070301000701007803020001030201010000
030200010302000a07f0010007030100070200780302000103020002030200010302000a
07ef01000703010007030013054f00140302000103020002030200010302000a07f30100
070301000013054f00140302000103020002030200010302000a07f20100070301000700
0013054f00140302000103020002030200010302000a07f101000703010007010013054f
001403020001030201010000030200010302000a07f001000703010007020013050c0803
052c0803050d00140302000103020002030200010302000a07ef01000703010007030013
050b0805052b0803050d00140302000103020002030200010302000a07f3010007030100
0013050a080205010802052c0801050d00140302000103020002030200010302000a07f2
01000703010007000013050a080105080804050308010500080205050803050508030506
0801050d00140302000103020002030200010302000a07f101000703010007010013050a
08010508080505020806050308050503080505050801050d001403020001030201010000
030200010302000a07f001000703010007020013050a0801050d08010501080205010802
0501080205010802050108020501080205040801050d0014030200010302000203020001
0302000a07ef01000703010007030013050a080105080806050108010503080105010801
050708010503080105040801050d0809000a0302000103020002030200010302000a07f3
0100070301000013050a0801050708070501080105030801050108010507080705040801
050d0809000a0302000103020002030200010302000a07f201000703010007000013050a
080105070801050308010501080105030801050108010507080705040801050d0809000a
0302000103020002030200010302000a07f101000703010007010013050a080205010802
0501080105030801050108010503080105010802050108020501080205090801050d0809
000a03020001030201010000030200010302000a07f001000703010007020013050b0805
050208070501080105030801050208050503080505030805050b0809000a030200010302
0002030200010302000a07ef01000703010007030013050c080305040806050108010503
0801050308030505080305040805050b0809000a0302000103020002030200010302000a
07f30100070301000013054f0809000a0302000103020002030200010302000a07f20100
0703010007000013054f0809000a0302000103020002030200010302000a07f101000703
010007010013054f0809000a03020001030201010000030200010302000a07f001000703
010007020013054f0809000a0302000103020002030200010302000a07ef010007030100
0703001d084f000a0302000103020002030200010302000a07f3010007030100001d084f
000a0302000103020002030200010302000a07f20100070301000700001d084f000a0302
000103020002030200010302000a07f10100070301000701001d084f000a030200010302
01010000030200010302000a07f00100070301000702001d084f000a0302000103020002
030200010302000a07ef0100070301000703001d084f000a030200010302000203020001
0302000a07f3010007030100001d084f000a0302000103020002030200010302000a07f2
0100070301000700001d084f000a0302000103020002030200010302000a07f101000703
01000701001d084f000a03020001030201010000030200010302000a07f0010007030100
0702001d084f000a0302000103020002030200010302000a07ef01000703010007030078
0302000103020002030200010302000a07f3010007030100007803020001030200020302
00010302000a07f2010007030100070000780302000103020002030200010302000a07f1
0100070301000701007803020001030201010000030200010302000a07f0010007030100
070200780302000103020002030200010302000a07ef0100070301000703007803020001
03020002030200010302000a07f301000703010000780302000103020002030200010302
000a07f2010007030100070000780302000103020002030200010302000a07f101000703
01000701007803020001030201010000030200010302000a07f001000703010007020078
0302000103020002030200010302000a07ef010007030100070300780302000103020002
030200010302000a07f301000703010000780302000103020002030200010302000a07f2
010007030100070000780302000103020002030200010302000a07f10100070301000701
007803020001030201010000030200010302000a07f00100070301000702007803020001
03020002030200010302000a07ef01000703010007030078030200010302000203020001
0302000a07f301000703010000780302000103020002030200010302000a07f201000703
0100070000780302000103020002030200010302000a07f1010007030100070100780302
0001030201010000030200010302000a07f0010007030100070200780302000103020002
030200010302000a07ef010007030100070300780302000103020002030200010302000a
07f301000703010000780302000103020002030200010302000a07f20100070301000700
00780302000103020002030200010302000a07f101000703010007010078030200010302
01010000030200010302000a07f001000703010007020078030200010302000203020001
0302000a07ef010007030100070300780302000103020002030200010302000a07f30100
0703010000780302000103020002030200010302000a07f2010007030100070000780302
000103020002030200010302000a07f10100070301000701007803020001030201010000
030200010302000a07f0010007030100070200780302000103020002030200010302000a
07ef010007030100070300780302000103020002030200010302000a07f3010007030100
00780302000103020002030200010302000a07f201000703010007000078030200010302
0002030200010302000a07f1010007030100070100780302000103020101000003020001
0302000a07f0010007030100070200780302000103020002030200010302000a07ef0100
07030100070300780302000103020002030200010302000a07f301000703010000780302
000103020002030200010302000a07f20100070301000700007803020001030200020302
00010302000a07f10100070301000701007803020001030201010000030200010302000a
07f0010007030100070200780302000103020002030200010302000a07ef010007030100
070300780302000103020002030200010302000a07f30100070301000078030200010302
0002030200010302000a07f2010007030100070000780302000103020002030200010302
000a07f10100070301000701007803020001030201010000030200010302000a07f00100
07030100070200780302000103020002030200010302000a07ef01000703010007030078
0302000103020002030200010302000a07f3010007030100007803020001030200020302
00010302000a07f2010007030100070000780302000103020002030200010302000a07f1
0100070301000701007803020001030201010000030200010302000a07f0010007030100
070200780302000103020002030200010302000a07ef0100070301000703007803020001
03020002030200010302000a07f301000703010000780302000103020002030200010302
000a07f2010007030100070000780302000103020002030200010302000a07f101000703
01000701007803020001030201010000030200010302000a07f001000703010007020078
0302000103020002030200010302000a07ef010007030100070300780302000103020002
030200010302000a07f301000703010000780302000103020002030200010302000a07f2
010007030100070000780302000103020002030200010302000a07f10100070301000701
007803020001030201010000030200010302000a07f00100070301000702007803020001
03020002030200010302000a07ef01000703010007030078030200010302000203020001
0302000a07f301000703010000780302000103020002030200010302000a07f201000703
0100070000780302000103020002030200010302000a07f1010007030100070100780302
0001030201010000030200010302000a07f0010007030100070200780302000103020002
030200010302000a07ef010007030100070300780302000103020002030200010302000a
07f301000703010000780302000103020002030200010302000a07f20100070301000700
00780302000103020002030200010302000a07f101000703010007010078030200010302
01010000030200010302000a07f001000703010007020078030200010302000203020001
0302000a07ef010007030100070300780302000103020002030200010302000a07f30100
0703010000780302000103020002030200010302000a07f2010007030100070000780302
000103020002030200010302000a07f10100070301000701007803020001030201010000
030200010302000a07f0010007030100070200780302000103020002030200010302000a
07ef010007030100070300780302000103020002030200010302000a07f3010007030100
00780302000103020002030200010302000a07f201000703010007000078030200010302
0002030200010302000a07f1010007030100070100780302000103020101000003020001
0302000a07f0010007030100070200780302000103020002030200010302000a07ef0100
07030100070300780302000103020002030200010302000a07f301000703010000780302
000103020002030200010302000a07f20100070301000700007803020001030200020302
00010302000a07f10100070301000701007803020001030201010000030200010302000a
07f0010007030100070200780302000103020002030200010302000a07ef010007030100
070300780302000103020002030200010302000a07f30100070301000078030200010302
0002030200010302000a07f2010007030100070000780302000103020002030200010302
000a07f10100070301000701007803020001030201010000030200010302000a07f00100
07030100070200780302000103020002030200010302000a07ef01090078030200010302
0002030200010302000a07ef010900780302000103020002030200010302000a07ef0109
00780302000103020002030200010302000a07ef01090078030200010302010100000302
00010302000a07ef010900780302000103020002030200010302000a07ef010900780302
000103020002030200010302000a07ef010900780302000103020002030200010302000a
07ef010900780302000103020002030200010302000a07ef010900780302000103020101
0000030200010302000a07ef01000707010000780302000103020002030200010302000a
07ef01010705010100780302000103020002030200010302000a07ef0102070301020078
0302000103020002030200010302000a07ef010307010103007803020001030200020302
00010302000a07ef0109007803020001030201010000030200010302000a07ef01090078
0302000103020002030200010302000a07ef010900780302000103020002030200010302
000a07ef010900780302000103020002030200010302000a07ef01090078030200010302
0002030200010302000a07ef0109007803020001030201010000030200010302000a07ef
01090078030200010302000203020001030200ff007d0302000103020002030200010302
00ff007d030200010302000203020001030200ff007d0302000103020002030200010302
00ff007d0302000103020101000003020001030200ff007d030200010302000203020001
030200ff007d030200010302000203020001030200ff007d030200010302000203020001
030200ff007d030200010302000203020001030200ff007d030200010302010100000302
0001030200ff007d030200010302000203020001030200ff007d03020001030200020302
0001030200ff007d030200010302000203020001030200ff007d03020001030200020302
0001030200ff007d0302000103020101000003020001030200ff007d0302000103020002
03020001030200ff007d030200010302000203020001030200ff007d0302000103020002
03020001030200ff007d030200010302000203020001030200ff007d0302000103020101
000003020001030200ff007d030200010302000203020001030200ff007d030200010302
000203020001030200ff007d030200010302000203020001030200ff007d030200010302
000203020001030200ff007d0302000103020101000003020001030200ff007d03020001
0302000203020001030200ff007d030200010302000203020001030200ff007d03020001
030200020302000103ff03830001030200020302000103ff038300010302010100000302
00ff008703020002030200ff00870302000203ff038d000203ff038d00ff0090010100ff
008e00ff009000ff009000ff0090
%%EndData
end
%%PageTrailer
%%Trailer
%%BoundingBox: 0 0 400 279
%%EOF
|