~ubuntu-branches/ubuntu/feisty/fpc/feisty

« back to all changes in this revision

Viewing changes to docs/pics/ide/template.eps

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2007-01-27 20:08:50 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070127200850-9mrptaqqjsx9nwa7
Tags: 2.0.4-5
* Fixed Build-Depends.
* Add myself to Uploaders in debian/control.
* Make sure that the sources are really patched before building them.
* Build unit 'libc' on powerpc too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
%!PS-Adobe-3.0 EPSF-3.0
2
 
%%Creator: (ImageMagick)
3
 
%%Title: (template.eps)
4
 
%%CreationDate: (Wed Nov 15 21:36:01 2000)
5
 
%%BoundingBox: 0 0 400 279
6
 
%%DocumentData: Clean7Bit
7
 
%%LanguageLevel: 1
8
 
%%Pages: 0
9
 
%%EndComments
10
 
 
11
 
%%BeginDefaults
12
 
%%PageOrientation: Portrait
13
 
%%EndDefaults
14
 
 
15
 
%%BeginProlog
16
 
%
17
 
% Display a color image.  The image is displayed in color on
18
 
% Postscript viewers or printers that support color, otherwise
19
 
% it is displayed as grayscale.
20
 
%
21
 
/buffer 512 string def
22
 
/byte 1 string def
23
 
/color_packet 3 string def
24
 
/pixels 768 string def
25
 
 
26
 
/DirectClassPacket
27
 
{
28
 
  %
29
 
  % Get a DirectClass packet.
30
 
  %
31
 
  % Parameters:
32
 
  %   red.
33
 
  %   green.
34
 
  %   blue.
35
 
  %   length: number of pixels minus one of this color (optional).
36
 
  %
37
 
  currentfile color_packet readhexstring pop pop
38
 
  compression 0 gt
39
 
  {
40
 
    /number_pixels 3 def
41
 
  }
42
 
  {
43
 
    currentfile byte readhexstring pop 0 get
44
 
    /number_pixels exch 1 add 3 mul def
45
 
  } ifelse
46
 
  0 3 number_pixels 1 sub
47
 
  {
48
 
    pixels exch color_packet putinterval
49
 
  } for
50
 
  pixels 0 number_pixels getinterval
51
 
} bind def
52
 
 
53
 
/DirectClassImage
54
 
{
55
 
  %
56
 
  % Display a DirectClass image.
57
 
  %
58
 
  systemdict /colorimage known
59
 
  {
60
 
    columns rows 8
61
 
    [
62
 
      columns 0 0
63
 
      rows neg 0 rows
64
 
    ]
65
 
    { DirectClassPacket } false 3 colorimage
66
 
  }
67
 
  {
68
 
    %
69
 
    % No colorimage operator;  convert to grayscale.
70
 
    %
71
 
    columns rows 8
72
 
    [
73
 
      columns 0 0
74
 
      rows neg 0 rows
75
 
    ]
76
 
    { GrayDirectClassPacket } image
77
 
  } ifelse
78
 
} bind def
79
 
 
80
 
/GrayDirectClassPacket
81
 
{
82
 
  %
83
 
  % Get a DirectClass packet;  convert to grayscale.
84
 
  %
85
 
  % Parameters:
86
 
  %   red
87
 
  %   green
88
 
  %   blue
89
 
  %   length: number of pixels minus one of this color (optional).
90
 
  %
91
 
  currentfile color_packet readhexstring pop pop
92
 
  color_packet 0 get 0.299 mul
93
 
  color_packet 1 get 0.587 mul add
94
 
  color_packet 2 get 0.114 mul add
95
 
  cvi
96
 
  /gray_packet exch def
97
 
  compression 0 gt
98
 
  {
99
 
    /number_pixels 1 def
100
 
  }
101
 
  {
102
 
    currentfile byte readhexstring pop 0 get
103
 
    /number_pixels exch 1 add def
104
 
  } ifelse
105
 
  0 1 number_pixels 1 sub
106
 
  {
107
 
    pixels exch gray_packet put
108
 
  } for
109
 
  pixels 0 number_pixels getinterval
110
 
} bind def
111
 
 
112
 
/GrayPseudoClassPacket
113
 
{
114
 
  %
115
 
  % Get a PseudoClass packet;  convert to grayscale.
116
 
  %
117
 
  % Parameters:
118
 
  %   index: index into the colormap.
119
 
  %   length: number of pixels minus one of this color (optional).
120
 
  %
121
 
  currentfile byte readhexstring pop 0 get
122
 
  /offset exch 3 mul def
123
 
  /color_packet colormap offset 3 getinterval def
124
 
  color_packet 0 get 0.299 mul
125
 
  color_packet 1 get 0.587 mul add
126
 
  color_packet 2 get 0.114 mul add
127
 
  cvi
128
 
  /gray_packet exch def
129
 
  compression 0 gt
130
 
  {
131
 
    /number_pixels 1 def
132
 
  }
133
 
  {
134
 
    currentfile byte readhexstring pop 0 get
135
 
    /number_pixels exch 1 add def
136
 
  } ifelse
137
 
  0 1 number_pixels 1 sub
138
 
  {
139
 
    pixels exch gray_packet put
140
 
  } for
141
 
  pixels 0 number_pixels getinterval
142
 
} bind def
143
 
 
144
 
/PseudoClassPacket
145
 
{
146
 
  %
147
 
  % Get a PseudoClass packet.
148
 
  %
149
 
  % Parameters:
150
 
  %   index: index into the colormap.
151
 
  %   length: number of pixels minus one of this color (optional).
152
 
  %
153
 
  currentfile byte readhexstring pop 0 get
154
 
  /offset exch 3 mul def
155
 
  /color_packet colormap offset 3 getinterval def
156
 
  compression 0 gt
157
 
  {
158
 
    /number_pixels 3 def
159
 
  }
160
 
  {
161
 
    currentfile byte readhexstring pop 0 get
162
 
    /number_pixels exch 1 add 3 mul def
163
 
  } ifelse
164
 
  0 3 number_pixels 1 sub
165
 
  {
166
 
    pixels exch color_packet putinterval
167
 
  } for
168
 
  pixels 0 number_pixels getinterval
169
 
} bind def
170
 
 
171
 
/PseudoClassImage
172
 
{
173
 
  %
174
 
  % Display a PseudoClass image.
175
 
  %
176
 
  % Parameters:
177
 
  %   class: 0-PseudoClass or 1-Grayscale.
178
 
  %
179
 
  currentfile buffer readline pop
180
 
  token pop /class exch def pop
181
 
  class 0 gt
182
 
  {
183
 
    currentfile buffer readline pop
184
 
    token pop /depth exch def pop
185
 
    /grays columns 8 add depth sub depth mul 8 idiv string def
186
 
    columns rows depth
187
 
    [
188
 
      columns 0 0
189
 
      rows neg 0 rows
190
 
    ]
191
 
    { currentfile grays readhexstring pop } image
192
 
  }
193
 
  {
194
 
    %
195
 
    % Parameters:
196
 
    %   colors: number of colors in the colormap.
197
 
    %   colormap: red, green, blue color packets.
198
 
    %
199
 
    currentfile buffer readline pop
200
 
    token pop /colors exch def pop
201
 
    /colors colors 3 mul def
202
 
    /colormap colors string def
203
 
    currentfile colormap readhexstring pop pop
204
 
    systemdict /colorimage known
205
 
    {
206
 
      columns rows 8
207
 
      [
208
 
        columns 0 0
209
 
        rows neg 0 rows
210
 
      ]
211
 
      { PseudoClassPacket } false 3 colorimage
212
 
    }
213
 
    {
214
 
      %
215
 
      % No colorimage operator;  convert to grayscale.
216
 
      %
217
 
      columns rows 8
218
 
      [
219
 
        columns 0 0
220
 
        rows neg 0 rows
221
 
      ]
222
 
      { GrayPseudoClassPacket } image
223
 
    } ifelse
224
 
  } ifelse
225
 
} bind def
226
 
 
227
 
/DisplayImage
228
 
{
229
 
  %
230
 
  % Display a DirectClass or PseudoClass image.
231
 
  %
232
 
  % Parameters:
233
 
  %   x & y translation.
234
 
  %   x & y scale.
235
 
  %   label pointsize.
236
 
  %   image label.
237
 
  %   image columns & rows.
238
 
  %   class: 0-DirectClass or 1-PseudoClass.
239
 
  %   compression: 0-RunlengthEncodedCompression or 1-NoCompression.
240
 
  %   hex color packets.
241
 
  %
242
 
  gsave
243
 
  currentfile buffer readline pop
244
 
  token pop /x exch def
245
 
  token pop /y exch def pop
246
 
  x y translate
247
 
  currentfile buffer readline pop
248
 
  token pop /x exch def
249
 
  token pop /y exch def pop
250
 
  currentfile buffer readline pop
251
 
  token pop /pointsize exch def pop
252
 
  /Helvetica findfont pointsize scalefont setfont
253
 
  x y scale
254
 
  currentfile buffer readline pop
255
 
  token pop /columns exch def
256
 
  token pop /rows exch def pop
257
 
  currentfile buffer readline pop
258
 
  token pop /class exch def pop
259
 
  currentfile buffer readline pop
260
 
  token pop /compression exch def pop
261
 
  class 0 gt { PseudoClassImage } { DirectClassImage } ifelse
262
 
  grestore
263
 
} bind def
264
 
%%EndProlog
265
 
%%Page:  1 1
266
 
%%PageBoundingBox: 0 0 401 280
267
 
userdict begin
268
 
%%BeginData:
269
 
DisplayImage
270
 
0 0
271
 
401 280
272
 
12.000000
273
 
401 280
274
 
1
275
 
0
276
 
0
277
 
9
278
 
c0c0c0
279
 
000080
280
 
00fc00
281
 
f8fcf8
282
 
f8fc00
283
 
008000
284
 
00fcf8
285
 
008080
286
 
000000
287
 
000401000003010000030100000301000003010000030100000301000003010000030100
288
 
000301000003010000030100000301000003010000030100000301000003010000030100
289
 
000301000003010000030100000301000003010000030100000301000003010000030100
290
 
000301000003010000030100000301000003010000030100000301000003010000030100
291
 
000301000003010000030100000301000003010000030100000301000003010000030100
292
 
000301000003010000030100000301000003010000030100000301000003010000030100
293
 
000301000003010000030100000301000003010000030100000301000003010000030100
294
 
000301000003010000030100000301000003010000030100000301000003010000030100
295
 
000301000003010000030100000301000003010000030100000301000003010001010003
296
 
010000030100000301000003010000030100000301000003010000030100000301000003
297
 
010000030100000301000003010000030100000301000003010000030100000301000003
298
 
010000030100000301000003010000030100000301000003010000030100000301000003
299
 
010000030100000301000003010000030100000301000003010000030100000301000003
300
 
010000030100000301000003010000030100000301000003010000030100000301000003
301
 
010000030100000301000003010000030100000301000003010000030100000301000003
302
 
010000030100000301000003010000030100000301000003010000030100000301000003
303
 
010000030100000301000003010000030100000301000003010000030100000301000003
304
 
0100000301000003010000030100000301000003010000030100000300ff009000ff0090
305
 
00ff00900021020500ff00680101001603030004020500040303003f0301000303010022
306
 
0304002b030100240303001003010085001803030004020500040303003f030200020301
307
 
00210305002b030100240303001003010085001803010006020500060301003f03020002
308
 
030100210301002f03010026030100100301008500020312000203010006020500060301
309
 
00020331000a030300010301000303030003030100030301000d03010005030100000304
310
 
00030303000303010000030100000300000d030500040303000303010000030100000300
311
 
000203010000030200060301000503040004030500040303000c036c0002031200020301
312
 
000602050006030100020331000a030300010301000203050002030100030301000b0307
313
 
000103070002030500020307000c03050003030500020307000103060005030100050305
314
 
0003030500030305000b036c010100000302001203010006020500060301003f03010000
315
 
03010000030100010302000103020001030100030301000b030700010303000503020001
316
 
0302000103010000030100000301000d0301000503020001030200010301000003010000
317
 
0301000103020001030200040301000a0301000303010005030200010302007403020002
318
 
0302001203010006020500060301003f0301000003010000030100010301000303010001
319
 
03010000030100000301000d030100050302000603010003030100010301000003010000
320
 
0301000d0301000503010003030100010301000003010000030100010301000303010004
321
 
03010005030600030301000503010003030100740302000203020001030d000203010006
322
 
02050006030100020331000a03010001030300010307000103010000030100000301000d
323
 
0301000503010007030100030301000103010000030100000301000d0301000503070001
324
 
03010000030100000301000103010003030100040301000403070003030100050307000a
325
 
036700010302000203020001030d00020301000602050006030100020331000a03010001
326
 
03030001030700010307000d030100050301000703010003030100010301000003010000
327
 
0301000d0301000503070001030100000301000003010001030100030301000403010004
328
 
0301000303010003030100050307000a0367000103020002030200010302000d03010006
329
 
020500060301003f0301000203020001030200060307000d030100050301000703020001
330
 
0302000103010000030100000301000d0301000503020006030100000301000003010001
331
 
030200010302000403010004030100030301000303010005030200740302000103020101
332
 
0000030200010302000d03010006020500060301003f0301000203020002030500020302
333
 
00010302000d03010005030100080305000203010000030100000301000d030400030305
334
 
000203010000030100000301000103060003030500020307000303040003030500700302
335
 
000103020002030200010302000d03010006020500060301003f03010003030100030303
336
 
0004030000030300000e03010005030100090303000303010000030100000301000e0303
337
 
000403030003030100000301000003010001030100000302000403050003030600040303
338
 
0004030300710302000103020002030200010302000d03010013030100b70301009d0302
339
 
000103020002030200010302000d0303000f030300b70301009d03020001030200020302
340
 
00010302000d0303000f030300b70301009d0302000103020101000003020001030200dd
341
 
0301009d030200010302000203020001030200ff007d0302000103020002030200010302
342
 
00ff007d030200010302000203020001030200ff007d0302000103020002030200010302
343
 
00ff007d0302000103020101000003020001030200ff007d030200010302000203020001
344
 
030200ff007d030200010302000203020001030200ff007d030200010302000203020001
345
 
030200ff007d030200010302000203020001030200ff007d030200010302010100000302
346
 
0001030200ff007d030200010302000203020001030200ff007d03020001030200020302
347
 
0001030200ff007d030200010302000203020001030200ff007d03020001030200020302
348
 
0001030200ff007d0302000103020101000003020001030200ff007d0302000103020002
349
 
03020001030200ff007d030200010302000203020001030200ff007d0302000103020002
350
 
03020001030200ff007d030200010302000203020001030200ff007d0302000103020101
351
 
000003020001030200ff007d030200010302000203020001030200ff007d030200010302
352
 
000203020001030200ff007d030200010302000203020001030200ff007d030200010302
353
 
00020302000103020036030100ff00440302000103020101000003020001030200180301
354
 
001b030100050303000e030100080303001a0401002403030010030100c3030200010302
355
 
00020302000103020017030300220303000e030100080303001a04010024030300100301
356
 
00c30302000103020002030200010302001603010001030100230301000e0301000a0301
357
 
001a0401002603010010030100c303020001030200020302000103020015030100030301
358
 
000103010003030100020304000403030007030100050304000303010000030200060301
359
 
00060303000e040500040303000303010000030100000300000203010000030200060301
360
 
0005030400040305000403030005030300ad030200010302000203020001030200150301
361
 
000303010001030100030301000203050003030300070301000503050002030600050301
362
 
00050305000d040500030305000203070001030600050301000503050003030500030305
363
 
0003030500ac030200010302010100000302000103020015030100030301000103010003
364
 
0301000703010004030100070301000a0301000103020001030200040301000403020001
365
 
0302000d0401000503020001030200010301000003010000030100010302000103020004
366
 
0301000a0301000303010005030200010302000103010003030100ab0302000103020002
367
 
030200010302001503010003030100010301000303010002030600040301000703010005
368
 
03060001030100030301000403010004030100030301000d040100050301000303010001
369
 
030100000301000003010001030100030301000403010005030600030301000503010003
370
 
03010001030200b003020001030200020302000103020015030700010301000303010001
371
 
030700040301000703010004030700010301000303010004030100040307000d04010005
372
 
030700010301000003010000030100010301000303010004030100040307000303010005
373
 
03070002030500ac03020001030200020302000103020015030700010301000303010001
374
 
030100030301000403010007030100040301000303010001030100030301000403010004
375
 
0307000d0401000503070001030100000301000003010001030100030301000403010004
376
 
03010003030100030301000503070006030200ab03020001030200020302000103020015
377
 
030100030301000203010001030100020301000303010004030100070301000403010003
378
 
030100010302000103020004030100040302001204010005030200060301000003010000
379
 
030100010302000103020004030100040301000303010003030100050302000603010003
380
 
030100ab0302000103020101000003020001030200150301000303010003030300030307
381
 
000203050003030500020307000103060003030500030305000e04040003030500020301
382
 
000003010000030100010306000303050002030700030304000303050003030500ac0302
383
 
000103020002030200010302001503010003030100040301000503060002030500030305
384
 
000303060001030100000302000403050004030300100403000403030003030100000301
385
 
000003010001030100000302000403050003030600040303000403030005030300ad0302
386
 
0001030200020302000103020097030100e3030200010302000203020001030200970301
387
 
00e303020001030200020302000103020097030100e30302000103020101000003020001
388
 
03020097030100e30302000103020002030200010302000a05ef01090013054f00140302
389
 
000103020002030200010302000a05ef01090013054f0014030200010302000203020001
390
 
0302000a05ef01090013054f00140302000103020002030200010302000a05ef01090013
391
 
054f001403020001030201010000030200010302000a050a030505de0109001305200603
392
 
0503040105020401051f00140302000103020002030200010302000a050a030605dd0109
393
 
0013051f06050502040105010402051f00140302000103020002030200010302000a050a
394
 
03010502030205dc01090013051e06020501060205010401050004020520001403020001
395
 
03020002030200010302000a050a03010503030105010301050003040503030305050303
396
 
05030301050003040502030405030301050003010500030005a101090013051e06010503
397
 
060105010404052100140302000103020002030200010302000a050a0301050303010501
398
 
0307050203050503030505020307050203050502030705a001090013051e060105030601
399
 
050104030522001403020001030201010000030200010302000a050a0301050203020501
400
 
03030505030205010302050103020501030205010303050b030105010301050003010500
401
 
030105a00103070101030013051e06010503060105010402052300140302000103020002
402
 
030200010302000a050a0306050203020506030105030301050103010503030105010302
403
 
0507030605010301050003010500030105a00102070301020013051e0601050306010501
404
 
040305220809000a0302000103020002030200010302000a050a03050503030105070301
405
 
050303010501030105030301050103010507030705010301050003010500030105a00101
406
 
070501010013051e0601050306010501040405210809000a030200010302000203020001
407
 
0302000a050a030105070301050703010503030105010301050303010501030105070301
408
 
0503030105010301050003010500030105a00100070701000013051e0601050306010501
409
 
04010500040205200809000a0302000103020002030200010302000a050a030105070301
410
 
050703020501030205010302050103020501030105070301050303010501030105000301
411
 
0500030105a001090013051e0602050106020501040105010402051f0809000a03020001
412
 
030201010000030200010302000a050a0301050703010508030505030306050103010507
413
 
030705010301050003010500030105a001090013051f06050502040105020402051e0809
414
 
000a0302000103020002030200010302000a050a03010507030105090303050503020500
415
 
0301050103010508030605010301050003010500030105a0010900130520060305030401
416
 
05030401051e0809000a0302000103020002030200010302000a052e030105be01090013
417
 
054f0809000a0302000103020002030200010302000a052d030205be01090013054f0809
418
 
000a0302000103020002030200010302000a0529030505bf01090013054f0809000a0302
419
 
0001030201010000030200010302000a0529030405c001090013054f0809000a03020001
420
 
03020002030200010302000a07ef0100070301000703001d084f000a0302000103020002
421
 
030200010302000a07f3010007030100001d084f000a0302000103020002030200010302
422
 
000a07f20100070301000700001d084f000a0302000103020002030200010302000a07f1
423
 
0100070301000701001d084f000a03020001030201010000030200010302000a07f00100
424
 
070301000702001d084f000a0302000103020002030200010302000a07ef010007030100
425
 
0703001d084f000a0302000103020002030200010302000a07f3010007030100001d084f
426
 
000a0302000103020002030200010302000a07f20100070301000700001d084f000a0302
427
 
000103020002030200010302000a07f10100070301000701001d084f000a030200010302
428
 
01010000030200010302000a07f00100070301000702001d084f000a0302000103020002
429
 
030200010302000a07ef010007030100070300780302000103020002030200010302000a
430
 
07f301000703010000780302000103020002030200010302000a07f20100070301000700
431
 
00780302000103020002030200010302000a07f101000703010007010078030200010302
432
 
01010000030200010302000a07f001000703010007020078030200010302000203020001
433
 
0302000a07ef010007030100070300780302000103020002030200010302000a07f30100
434
 
0703010000780302000103020002030200010302000a07f2010007030100070000780302
435
 
000103020002030200010302000a07f10100070301000701007803020001030201010000
436
 
030200010302000a07f0010007030100070200780302000103020002030200010302000a
437
 
07ef01000703010007030013054f00140302000103020002030200010302000a07f30100
438
 
070301000013054f00140302000103020002030200010302000a07f20100070301000700
439
 
0013054f00140302000103020002030200010302000a07f101000703010007010013054f
440
 
001403020001030201010000030200010302000a07f001000703010007020013050c0803
441
 
052c0803050d00140302000103020002030200010302000a07ef01000703010007030013
442
 
050b0805052b0803050d00140302000103020002030200010302000a07f3010007030100
443
 
0013050a080205010802052c0801050d00140302000103020002030200010302000a07f2
444
 
01000703010007000013050a080105080804050308010500080205050803050508030506
445
 
0801050d00140302000103020002030200010302000a07f101000703010007010013050a
446
 
08010508080505020806050308050503080505050801050d001403020001030201010000
447
 
030200010302000a07f001000703010007020013050a0801050d08010501080205010802
448
 
0501080205010802050108020501080205040801050d0014030200010302000203020001
449
 
0302000a07ef01000703010007030013050a080105080806050108010503080105010801
450
 
050708010503080105040801050d0809000a0302000103020002030200010302000a07f3
451
 
0100070301000013050a0801050708070501080105030801050108010507080705040801
452
 
050d0809000a0302000103020002030200010302000a07f201000703010007000013050a
453
 
080105070801050308010501080105030801050108010507080705040801050d0809000a
454
 
0302000103020002030200010302000a07f101000703010007010013050a080205010802
455
 
0501080105030801050108010503080105010802050108020501080205090801050d0809
456
 
000a03020001030201010000030200010302000a07f001000703010007020013050b0805
457
 
050208070501080105030801050208050503080505030805050b0809000a030200010302
458
 
0002030200010302000a07ef01000703010007030013050c080305040806050108010503
459
 
0801050308030505080305040805050b0809000a0302000103020002030200010302000a
460
 
07f30100070301000013054f0809000a0302000103020002030200010302000a07f20100
461
 
0703010007000013054f0809000a0302000103020002030200010302000a07f101000703
462
 
010007010013054f0809000a03020001030201010000030200010302000a07f001000703
463
 
010007020013054f0809000a0302000103020002030200010302000a07ef010007030100
464
 
0703001d084f000a0302000103020002030200010302000a07f3010007030100001d084f
465
 
000a0302000103020002030200010302000a07f20100070301000700001d084f000a0302
466
 
000103020002030200010302000a07f10100070301000701001d084f000a030200010302
467
 
01010000030200010302000a07f00100070301000702001d084f000a0302000103020002
468
 
030200010302000a07ef0100070301000703001d084f000a030200010302000203020001
469
 
0302000a07f3010007030100001d084f000a0302000103020002030200010302000a07f2
470
 
0100070301000700001d084f000a0302000103020002030200010302000a07f101000703
471
 
01000701001d084f000a03020001030201010000030200010302000a07f0010007030100
472
 
0702001d084f000a0302000103020002030200010302000a07ef01000703010007030078
473
 
0302000103020002030200010302000a07f3010007030100007803020001030200020302
474
 
00010302000a07f2010007030100070000780302000103020002030200010302000a07f1
475
 
0100070301000701007803020001030201010000030200010302000a07f0010007030100
476
 
070200780302000103020002030200010302000a07ef0100070301000703007803020001
477
 
03020002030200010302000a07f301000703010000780302000103020002030200010302
478
 
000a07f2010007030100070000780302000103020002030200010302000a07f101000703
479
 
01000701007803020001030201010000030200010302000a07f001000703010007020078
480
 
0302000103020002030200010302000a07ef010007030100070300780302000103020002
481
 
030200010302000a07f301000703010000780302000103020002030200010302000a07f2
482
 
010007030100070000780302000103020002030200010302000a07f10100070301000701
483
 
007803020001030201010000030200010302000a07f00100070301000702007803020001
484
 
03020002030200010302000a07ef01000703010007030078030200010302000203020001
485
 
0302000a07f301000703010000780302000103020002030200010302000a07f201000703
486
 
0100070000780302000103020002030200010302000a07f1010007030100070100780302
487
 
0001030201010000030200010302000a07f0010007030100070200780302000103020002
488
 
030200010302000a07ef010007030100070300780302000103020002030200010302000a
489
 
07f301000703010000780302000103020002030200010302000a07f20100070301000700
490
 
00780302000103020002030200010302000a07f101000703010007010078030200010302
491
 
01010000030200010302000a07f001000703010007020078030200010302000203020001
492
 
0302000a07ef010007030100070300780302000103020002030200010302000a07f30100
493
 
0703010000780302000103020002030200010302000a07f2010007030100070000780302
494
 
000103020002030200010302000a07f10100070301000701007803020001030201010000
495
 
030200010302000a07f0010007030100070200780302000103020002030200010302000a
496
 
07ef010007030100070300780302000103020002030200010302000a07f3010007030100
497
 
00780302000103020002030200010302000a07f201000703010007000078030200010302
498
 
0002030200010302000a07f1010007030100070100780302000103020101000003020001
499
 
0302000a07f0010007030100070200780302000103020002030200010302000a07ef0100
500
 
07030100070300780302000103020002030200010302000a07f301000703010000780302
501
 
000103020002030200010302000a07f20100070301000700007803020001030200020302
502
 
00010302000a07f10100070301000701007803020001030201010000030200010302000a
503
 
07f0010007030100070200780302000103020002030200010302000a07ef010007030100
504
 
070300780302000103020002030200010302000a07f30100070301000078030200010302
505
 
0002030200010302000a07f2010007030100070000780302000103020002030200010302
506
 
000a07f10100070301000701007803020001030201010000030200010302000a07f00100
507
 
07030100070200780302000103020002030200010302000a07ef01000703010007030078
508
 
0302000103020002030200010302000a07f3010007030100007803020001030200020302
509
 
00010302000a07f2010007030100070000780302000103020002030200010302000a07f1
510
 
0100070301000701007803020001030201010000030200010302000a07f0010007030100
511
 
070200780302000103020002030200010302000a07ef0100070301000703007803020001
512
 
03020002030200010302000a07f301000703010000780302000103020002030200010302
513
 
000a07f2010007030100070000780302000103020002030200010302000a07f101000703
514
 
01000701007803020001030201010000030200010302000a07f001000703010007020078
515
 
0302000103020002030200010302000a07ef010007030100070300780302000103020002
516
 
030200010302000a07f301000703010000780302000103020002030200010302000a07f2
517
 
010007030100070000780302000103020002030200010302000a07f10100070301000701
518
 
007803020001030201010000030200010302000a07f00100070301000702007803020001
519
 
03020002030200010302000a07ef01000703010007030078030200010302000203020001
520
 
0302000a07f301000703010000780302000103020002030200010302000a07f201000703
521
 
0100070000780302000103020002030200010302000a07f1010007030100070100780302
522
 
0001030201010000030200010302000a07f0010007030100070200780302000103020002
523
 
030200010302000a07ef010007030100070300780302000103020002030200010302000a
524
 
07f301000703010000780302000103020002030200010302000a07f20100070301000700
525
 
00780302000103020002030200010302000a07f101000703010007010078030200010302
526
 
01010000030200010302000a07f001000703010007020078030200010302000203020001
527
 
0302000a07ef010007030100070300780302000103020002030200010302000a07f30100
528
 
0703010000780302000103020002030200010302000a07f2010007030100070000780302
529
 
000103020002030200010302000a07f10100070301000701007803020001030201010000
530
 
030200010302000a07f0010007030100070200780302000103020002030200010302000a
531
 
07ef010007030100070300780302000103020002030200010302000a07f3010007030100
532
 
00780302000103020002030200010302000a07f201000703010007000078030200010302
533
 
0002030200010302000a07f1010007030100070100780302000103020101000003020001
534
 
0302000a07f0010007030100070200780302000103020002030200010302000a07ef0100
535
 
07030100070300780302000103020002030200010302000a07f301000703010000780302
536
 
000103020002030200010302000a07f20100070301000700007803020001030200020302
537
 
00010302000a07f10100070301000701007803020001030201010000030200010302000a
538
 
07f0010007030100070200780302000103020002030200010302000a07ef010007030100
539
 
070300780302000103020002030200010302000a07f30100070301000078030200010302
540
 
0002030200010302000a07f2010007030100070000780302000103020002030200010302
541
 
000a07f10100070301000701007803020001030201010000030200010302000a07f00100
542
 
07030100070200780302000103020002030200010302000a07ef01090078030200010302
543
 
0002030200010302000a07ef010900780302000103020002030200010302000a07ef0109
544
 
00780302000103020002030200010302000a07ef01090078030200010302010100000302
545
 
00010302000a07ef010900780302000103020002030200010302000a07ef010900780302
546
 
000103020002030200010302000a07ef010900780302000103020002030200010302000a
547
 
07ef010900780302000103020002030200010302000a07ef010900780302000103020101
548
 
0000030200010302000a07ef01000707010000780302000103020002030200010302000a
549
 
07ef01010705010100780302000103020002030200010302000a07ef0102070301020078
550
 
0302000103020002030200010302000a07ef010307010103007803020001030200020302
551
 
00010302000a07ef0109007803020001030201010000030200010302000a07ef01090078
552
 
0302000103020002030200010302000a07ef010900780302000103020002030200010302
553
 
000a07ef010900780302000103020002030200010302000a07ef01090078030200010302
554
 
0002030200010302000a07ef0109007803020001030201010000030200010302000a07ef
555
 
01090078030200010302000203020001030200ff007d0302000103020002030200010302
556
 
00ff007d030200010302000203020001030200ff007d0302000103020002030200010302
557
 
00ff007d0302000103020101000003020001030200ff007d030200010302000203020001
558
 
030200ff007d030200010302000203020001030200ff007d030200010302000203020001
559
 
030200ff007d030200010302000203020001030200ff007d030200010302010100000302
560
 
0001030200ff007d030200010302000203020001030200ff007d03020001030200020302
561
 
0001030200ff007d030200010302000203020001030200ff007d03020001030200020302
562
 
0001030200ff007d0302000103020101000003020001030200ff007d0302000103020002
563
 
03020001030200ff007d030200010302000203020001030200ff007d0302000103020002
564
 
03020001030200ff007d030200010302000203020001030200ff007d0302000103020101
565
 
000003020001030200ff007d030200010302000203020001030200ff007d030200010302
566
 
000203020001030200ff007d030200010302000203020001030200ff007d030200010302
567
 
000203020001030200ff007d0302000103020101000003020001030200ff007d03020001
568
 
0302000203020001030200ff007d030200010302000203020001030200ff007d03020001
569
 
030200020302000103ff03830001030200020302000103ff038300010302010100000302
570
 
00ff008703020002030200ff00870302000203ff038d000203ff038d00ff0090010100ff
571
 
008e00ff009000ff009000ff0090
572
 
%%EndData
573
 
end
574
 
%%PageTrailer
575
 
%%Trailer
576
 
%%BoundingBox: 0 0 400 279
577
 
%%EOF