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

« back to all changes in this revision

Viewing changes to docs/pics/ide/ocompd.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: (ocompd.eps)
4
 
%%CreationDate: (Sun Dec  3 00:55:14 2000)
5
 
%%BoundingBox: 0 0 575 250
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 576 251
267
 
userdict begin
268
 
%%BeginData:
269
 
DisplayImage
270
 
0 0
271
 
576 251
272
 
12.000000
273
 
576 251
274
 
1
275
 
0
276
 
0
277
 
10
278
 
c0c0c0
279
 
f8fcf8
280
 
00fc00
281
 
000000
282
 
808080
283
 
f8fc00
284
 
008080
285
 
000080
286
 
008000
287
 
00fcf8
288
 
00ff00ff003f00120103000b010300b30103001c010100030103001b0103000d01010012
289
 
010200f300120101000502030005010100b2010100010101001b010100050101001a0101
290
 
00010101000c010100040100000d010100f300120101000502030005010100b101010002
291
 
010100230101001a01010001010100120101000d010100f30001010e0001010100050203
292
 
00050101000101a700070101000601030002010500010101000001020002010300050101
293
 
000301030002010200000101000901010005010100020101000101030002010500020103
294
 
00030101000001010002010300030103000a01d600010101000e01010005020300050101
295
 
00b101010005010100010101000101010000010000000101000101010001010100030101
296
 
000501010002010100010101000201010000010200090102000301010002010100030101
297
 
000301010004010100010101000201020000010100000101000101010001010100010101
298
 
00de010100010101000e0101000502030005010100b10101000501010001010100010101
299
 
000001000000010100010101000101010003010100050101000201050002010200000101
300
 
000b01010002010100000100000001010003010100030101000401010006010100010101
301
 
000001050002010100e10101000101010001010a000101010005020300050101000101a7
302
 
000701010002010100000101000101010001010100000100000001010001010100010101
303
 
00030101000501010002010100060101000c010100010101000101010000010000000101
304
 
00030101000301010004010100060101000101010000010100080101000a01d200010101
305
 
0001010100010101000a0101000502030005010100b20101000101010000010100010101
306
 
000101010000010000000101000101010001010100030101000501010002010100010101
307
 
00020101000c010100010101000201010000010100040101000301010000010100010101
308
 
0001010100020101000101010000010100010101000101010001010100da010100010101
309
 
0001010100010101000a0103000302030003010300b30103000201030002010100020101
310
 
0001010400020105000101050001010300020103000c0103000301010000010100020105
311
 
00020102000301030002010200010101000101030003010300db01010001010100010101
312
 
0001010100e9010100ff0045010100010101000101010001010100e8010300ff00440101
313
 
00010101000101010001010100ff00ff0031010100010101000101010001010100ff00ff
314
 
0031010100010101000101010001010100ff00ff00310101000101010001010100010101
315
 
00ff00ff0031010100010101000101010001010100ff00ff003101010001010100010101
316
 
00010101000b03440002038c0002034c000203510002035c004b01010001010100010101
317
 
00010101000b030100450301008d0301004d0301004d0301005d0301004b010100010101
318
 
0001010100010101000b030100450301008d0301004d0301004d0301005d0301004b0101
319
 
000101010001010100010101000b030100450301008d0301004d0301004d0301005d0301
320
 
004b0101000101010001010100010101000b030100450301008d0301004d0301004d0301
321
 
005d0301004b0101000101010001010100010101000b030100450301008d0301004d0301
322
 
004d0301005d0301004b0101000101010001010100010101000b030100450301008d0301
323
 
004d0301004d0301005d0301004b0101000101010001010100010101000b030100450301
324
 
008d0301004d0301004d0301005d0301004b0101000101010001010100010101000b0301
325
 
000b040300350301000c0403000c0402004c0401001d0301000a05010001050100110402
326
 
00270301000a0105003c0301000c05010023040200050403001d0301004b010100010101
327
 
0001010100010101000b0301000a04010001040100130400001f0301000b040100010401
328
 
000c04010043040000070401001d0301000a0501000105010012040100270301000b0101
329
 
00010101003b0301000b05030023040100070401001d0301004b01010001010100010101
330
 
00010101000b0301000a04010001040100120401001f0301000a040100020401000c0401
331
 
0042040100270301000a0501000105010012040100270301000b010100010101003b0301
332
 
000a0501000105010022040100070401001d0301004b0101000101010001010100010101
333
 
000b0301000a040100060501000105010000040400020405000204030002040100020401
334
 
000b0301000a0401000604030003040400020403000b0502000005010001040300020404
335
 
0003040300020402000004010002040300020405000204030003040300020404000d0301
336
 
000a05010001050100020403000204020000040100020404000204030003040300030403
337
 
000d0301000b010100010101000001020000010100020103000201010002010100010103
338
 
000301030002010200000101000c0301000a050100010501000204030003040300030403
339
 
000204050002040400040401000304030002040200000401000c0301004b010100010101
340
 
0001010100010101000b0301000b04020004050100010501000004010001040100020401
341
 
000804010002040100000401000c0301000a040100050401000104010001040100010401
342
 
000104010001040100090501000105010001040100010401000104010001040100010401
343
 
000104010002040100000402000404010002040100070401000204010001040100010401
344
 
00010401000c0301000a0501000105010001040100010401000204010000040200010401
345
 
00010401000004010001040100010401000104010001040100010401000c0301000b0104
346
 
000201010000010200000101000101010001010100020101000001010001010100010101
347
 
000101010002010100000102000b0301000a050100010501000104010001040100010401
348
 
000104010001040100010401000104010000040000000401000104010001040100030401
349
 
00020401000104010002040100000402000b0301004b0101000101010001010100010101
350
 
000b0301000d040100030501000105010000040100010401000204010005040400030402
351
 
000d0301000a040100050401000104010001040100010401000104050009050100010501
352
 
000104050001040100010401000104050002040200000401000104040002040100070401
353
 
00020401000104010001040100010401000c0301000a0501000105010001040500020402
354
 
00000401000104010001040100000401000104010002040100040405000c0301000b0101
355
 
000101010001010200000101000001010001010100010101000001000000010100010101
356
 
000401050002010200000101000b0301000a050500020401000504010004040500010401
357
 
0000040000000401000104010001040100030401000204050002040200000401000b0301
358
 
004b0101000101010001010100010101000b0301000a0401000104010002050100010501
359
 
000004010001040100020401000404010001040100030402000d0301000a040100020401
360
 
0000040100010401000104010001040100010401000d0501000105010001040100050401
361
 
000104010001040100060401000404010001040100020401000704010002040100010401
362
 
0001040100010401000c0301000a05010001050100010401000604010005040100010401
363
 
0000040100010401000404010002040100100301000b0101000101010001010100040101
364
 
00010101000101010000010000000101000301010002010100060101000f0301000a0501
365
 
000105010004040100050401000204010005040100000400000004010001040100010401
366
 
000304010002040100060401000f0301004b0101000101010001010100010101000b0301
367
 
000a04010001040100030503000104010001040100020401000004010001040100010401
368
 
0002040100000401000c0301000b04010001040100000401000104010001040100010401
369
 
0001040100010401000a0504000104010001040100010401000104010001040100010401
370
 
000204010004040100010401000204010000040100040401000204010001040100010401
371
 
00010401000c0301000b0503000204010001040100020401000504010001040100000401
372
 
0001040100010401000104010001040100010401000c0301000b01010001010100010101
373
 
000401010001010100020101000001010001010100010101000101010001010100020101
374
 
000f0301000a050100010501000104010001040100010401000104010001040100010401
375
 
000104010000040000000401000104010001040100030401000204010001040100020401
376
 
000f0301004b0101000101010001010100010101000b0301000b04030006050100010401
377
 
000104010003040200030402000004010000040100020401000b0301000c040300020403
378
 
000304020000040100010403000e05010002040300020401000104010002040300020403
379
 
00040402000004010002040200030405000104030002040100010401000c0301000c0501
380
 
00040403000204030003040100000402000204030003040300030403000d0301000a0105
381
 
00010103000401030003010100000101000201030003010300020103000e0301000a0501
382
 
000105010002040300030403000304030002040100020401000004010000040200020405
383
 
0001040300020403000e0301004b0101000101010001010100010101000b030100150501
384
 
002d0301003205010001050100540301004d0301004d0301005d0301004b010100010101
385
 
0001010100010101000b030100120503002e03010033050300550301004d0301004d0301
386
 
005d0301004b010100010101000101010001010100ff00330301004d030100ab01010001
387
 
0101000101010001010100ff00330301004d030100ab0101000101010001010100010101
388
 
00ff00330301004d030100ab010100010101000101010001010100ff00330301004d0301
389
 
00ab010100010101000101010001010100ff00330301004d030100ab0101000101010001
390
 
010100010101000b03ff0329004d03a1000b0101000101010001010100010101000b0301
391
 
00ff00ff00150301000b0101000101010001010100010101000b030100ff00ff00150301
392
 
000b0101000101010001010100010101000b030100ff00ff00150301000b010100010101
393
 
0001010100010101000b030100ff00ff00150301000b0101000101010001010100010101
394
 
000b030100ff00ff00150301000b0101000101010001010100010101000b030100ff00ff
395
 
00150301000b0101000101010001010100010101000b030100ff00ff00150301000b0101
396
 
000101010001010100010101000b03010012010500ff00fc0301000b0101000101010001
397
 
010100010101000b0301001301010001010100ff00fb0301000b01010001010100010101
398
 
00010101000b0301001301010001010100ff00fb0301000b010100010101000101010001
399
 
0101000b0301001301010001010100000102000001010002010300020101000201010001
400
 
010300030103000201020000010100ff00cc0301000b0101000101010001010100010101
401
 
000b03010013010400020101000001020000010100010101000101010002010100000101
402
 
000101010001010100010101000201010000010200ff00cb0301000b0101000101010001
403
 
010100010101000b03010013010100010101000101020000010100000101000101010001
404
 
010100000100000001010001010100040105000201020000010100ff00cb0301000b0101
405
 
000101010001010100010101000b03010013010100010101000101010004010100010101
406
 
00010101000001000000010100030101000201010006010100ff00cf0301000b01010001
407
 
01010001010100010101000b030100130101000101010001010100040101000101010002
408
 
010100000101000101010001010100010101000101010002010100ff00cf0301000b0101
409
 
000101010001010100010101000b03010012010500010103000401030003010100000101
410
 
00020103000301030002010300ff00ce0301000b0101000101010001010100010101000b
411
 
030100ff00ff00150301000b0101000101010001010100010101000b030100ff00ff0015
412
 
0301000b0101000101010001010100010101000b0301000a06ff060f00fa0301000b0101
413
 
000101010001010100010101000b0301000a060b0101060a0101060c0101060201010610
414
 
010206cc00fa0301000b0101000101010001010100010101000b0301000a060a0101060c
415
 
0101060b0101060201010611010106cc00fa0301000b0101000101010001010100010101
416
 
000b0301000a06090101060401010601010106030101060a0102060101010611010106cc
417
 
00fa0301000b0101000101010001010100010101000b0301000a06080101060601030605
418
 
0101060901030600010106010503060b0104060101020600010106020103060201010602
419
 
010106010103060301030602010206000101069900fa0301000b01010001010100010101
420
 
00010101000b0301000a060801010604010706030101060901060600050106010501060a
421
 
010106010101060101010600010206000101060101010601010106020101060001010601
422
 
010106010101060101010602010106000102069800fa0301000b01010001010100010101
423
 
00010101000b0301000a0608010106060103060501010609010106000103060005010601
424
 
0501060a0101060101010601010206000101060001010601010106010101060001000600
425
 
010106010101060401050602010206000101069800fa0301000b01010001010100010101
426
 
00010101000b0301000a06090101060401010601010106030101060a0101060101020600
427
 
050106010501060a01010601010106010101060401010601010106010101060001000600
428
 
0101060301010602010106060101069c00fa0301000b0101000101010001010100010101
429
 
000b0301000a060a0101060c0101060b0101060201010600050106010501060a01010601
430
 
010106010101060401010601010106020101060001010601010106010101060101010601
431
 
010106020101069c00fa0301000b0101000101010001010100010101000b0301000a060b
432
 
0101060a0101060c01010602010106010503060a01010600010206010103060401030603
433
 
010106000101060201030603010306020103069b00fa0301000b01010001010100010101
434
 
00010101000b0301000a06ff060f00fa0301000b0101000101010001010100010101000b
435
 
0301000a06ff060f00fa0301000b0101000101010001010100010101000b0301000a06ff
436
 
060f00fa0301000b0101000101010001010100010101000b0301000a060b0301060a0301
437
 
060e0302060b03030614030306020303060a0302060d0303060a0302068400fa0301000b
438
 
0101000101010001010100010101000b0301000a060a0301060c0301060c030106000301
439
 
060c0301061303010601030106030301060b0301060f0301060b0301068400fa0301000b
440
 
0101000101010001010100010101000b0301000a06090301060e0301060a030106020301
441
 
060b0301061203010602030106030301060b0301060f0301060b0301068400fa0301000b
442
 
0101000101010001010100010101000b0301000a06080301061003010609030106020301
443
 
060003040605030106030301060103010608030106080301060303030603030406020503
444
 
06050301060b030406010302060003010602030306020301060203010601030306030303
445
 
0602030206000301065100fa0301000b0101000101010001010100010101000b0301000a
446
 
060803010610030106090301060203010600030106010301060403010603030106010301
447
 
0608030106080301060203010601030106020301060103010604050106040301060b0301
448
 
060103010601030106000302060003010601030106010301060203010600030106010301
449
 
06010301060103010602030106000302065000fa0301000b010100010101000101010001
450
 
0101000b0301000a06080301061003010609030106020301060003010601030106040301
451
 
060303010601030106080301060103020603030106020301060103010602030106010301
452
 
0601050406040301060b0301060103010601030206000301060003010601030106010301
453
 
060003000600030106010301060403050602030206000301065000fa0301000b01010001
454
 
01010001010100010101000b0301000a06090301060e0301060a03010602030106000301
455
 
060103010604030106030301060103010608030106020301060303010602030106010301
456
 
0602030106010301060005010601050106040301060b0301060103010601030106040301
457
 
06010301060103010600030006000301060303010602030106060301065400fa0301000b
458
 
0101000101010001010100010101000b0301000a060a0301060c0301060c030106000301
459
 
06010301060103010604030106040303060a030106010301060303010602030106010301
460
 
0602030106010301060005010601050106040301060b0301060103010601030106040301
461
 
0601030106020301060003010601030106010301060103010601030106020301065400fa
462
 
0301000b0101000101010001010100010101000b0301000a060b0301060a0301060e0302
463
 
06020301060103010602030506040301060b030406010305060103030602030106000302
464
 
060205020600050106010305060803010600030206010303060403030603030106000301
465
 
060203030603030306020303065300fa0301000b0101000101010001010100010101000b
466
 
0301000a0642030106ca00fa0301000b0101000101010001010100010101000b0301000a
467
 
063f030306cb00fa0301000b0101000101010001010100010101000b0301000a06ff060f
468
 
00fa0301000b0101000101010001010100010101000b0301000a060b0301060a0301060c
469
 
0503061c0303061d030206120303060a0302060d0303060a0302065c00fa0301000b0101
470
 
000101010001010100010101000b0301000a060a0301060c0301060c0501061f0301061e
471
 
030106140301060b0301060f0301060b0301065c00fa0301000b01010001010100010101
472
 
00010101000b0301000a06090301060e0301060b0501061f0301061e030106140301060b
473
 
0301060f0301060b0301065c00fa0301000b0101000101010001010100010101000b0301
474
 
000a0608030106100301060a050106050303060303030603030306050301060b03030602
475
 
030406030304060a0302060003010603030106030303060303040602030306050301060b
476
 
030406010302060003010602030306020301060203010601030306030303060203020600
477
 
0301062900fa0301000b0101000101010001010100010101000b0301000a060803010610
478
 
0301060a0501060403010601030106010301060103010605030106040301060e03010601
479
 
030106010301060103010601030106090301060103010604030106020301060103010602
480
 
0301060103010604030106040301060b0301060103010601030106000302060003010601
481
 
030106010301060203010600030106010301060103010601030106020301060003020628
482
 
00fa0301000b0101000101010001010100010101000b0301000a0608030106100301060a
483
 
0501060205000600030106010301060103010606030406040301060b0304060103010601
484
 
030106010301060103010609030106010301060403010602030106010301060203010601
485
 
03010601030406040301060b030106010301060103020600030106000301060103010601
486
 
0301060003000600030106010301060403050602030206000301062800fa0301000b0101
487
 
000101010001010100010101000b0301000a06090301060e0301060b0501060105010600
488
 
03010601030106010301060503010601030106040301060a030106010301060103010601
489
 
030106010301060103010609030106010301060403010602030106010301060203010601
490
 
0301060003010601030106040301060b0301060103010601030106040301060103010601
491
 
03010600030006000301060303010602030106060301062c00fa0301000b010100010101
492
 
0001010100010101000b0301000a060a0301060c0301060c050106010501060003010601
493
 
03010601030106010301060103010601030106040301060a030106010301060103010601
494
 
03010601030106010301060a030406040301060203010601030106020301060103010600
495
 
03010601030106040301060b030106010301060103010604030106010301060203010600
496
 
03010601030106010301060103010601030106020301062c00fa0301000b010100010101
497
 
0001010100010101000b0301000a060b0301060a0301060c050606010303060303030603
498
 
03020600030106010305060903020600030106000301060103010602030206000301060c
499
 
030106020305060103030602030106000302060203020600030106010305060803010600
500
 
030206010303060403030603030106000301060203030603030306020303062b00fa0301
501
 
000b0101000101010001010100010101000b0301000a0677030106010301069100fa0301
502
 
000b0101000101010001010100010101000b0301000a06780303069200fa0301000b0101
503
 
000101010001010100010101000b030100ff00ff00150301000b01010001010100010101
504
 
00010101000b030100ff00ff00150301000b0101000101010001010100010101000b0301
505
 
00ff00ff00150301000b0101000101010001010100010101000b030100ff00ff00150301
506
 
000b0101000101010001010100010101000b030100ff00ff00150301000b010100010101
507
 
0001010100010101000b030100ff00ff00150301000b0101000101010001010100010101
508
 
000b030100ff00ff00150301000b0101000101010001010100010101000b030100ff00ff
509
 
00150301000b0101000101010001010100010101000b030100ff00ff00150301000b0101
510
 
000101010001010100010101000b030100ff00ff00150301000b01010001010100010101
511
 
00010101000b030100ff00ff00150301000b0101000101010001010100010101000b0301
512
 
00ff00ff00150301000b0101000101010001010100010101000b030100ff00ff00150301
513
 
000b0101000101010001010100010101000b030100ff00ff00150301000b010100010101
514
 
0001010100010101000b030100ff00ff00150301000b0101000101010001010100010101
515
 
000b030100ff00ff00150301000b0101000101010001010100010101000b030100ff00ff
516
 
00150301000b0101000101010001010100010101000b030100ff00ff00150301000b0101
517
 
000101010001010100010101000b030100ff00ff00150301000b01010001010100010101
518
 
00010101000b030100ff00ff00150301000b0101000101010001010100010101000b0301
519
 
00ff00ff00150301000b0101000101010001010100010101000b030100ff00ff00150301
520
 
000b0101000101010001010100010101000b030100ff00ff00150301000b010100010101
521
 
0001010100010101000b030100ff00ff00150301000b0101000101010001010100010101
522
 
000b030100ff00ff00150301000b0101000101010001010100010101000b030100ff00ff
523
 
00150301000b0101000101010001010100010101000b030100ff00ff00150301000b0101
524
 
000101010001010100010101000b030100ff00ff00150301000b01010001010100010101
525
 
00010101000b030100ff00ff00150301000b0101000101010001010100010101000b0301
526
 
00ff00ff00150301000b0101000101010001010100010101000b030100ff00ff00150301
527
 
000b0101000101010001010100010101000b030100ff00ff00150301000b010100010101
528
 
0001010100010101000b030100ff00ff00150301000b0101000101010001010100010101
529
 
000b030100ff00ff00150301000b0101000101010001010100010101000b030100ff00ff
530
 
00150301000b0101000101010001010100010101000b030100ff00ff00150301000b0101
531
 
000101010001010100010101000b030100ff00ff00150301000b01010001010100010101
532
 
00010101000b030100ff00ff00150301000b0101000101010001010100010101000b0301
533
 
00ff00ff00150301000b0101000101010001010100010101000b030100ff00ff00150301
534
 
000b0101000101010001010100010101000b030100ff00ff00150301000b010100010101
535
 
0001010100010101000b030100ff00ff00150301000b0101000101010001010100010101
536
 
000b030100ff00ff00150301000b0101000101010001010100010101000b030100ff00ff
537
 
00150301000b0101000101010001010100010101000b030100ff00ff00150301000b0101
538
 
000101010001010100010101000b030100ff00ff00150301000b01010001010100010101
539
 
00010101000b030100ff00ff00150301000b0101000101010001010100010101000b0301
540
 
00ff00ff00150301000b0101000101010001010100010101000b030100ff00ff00150301
541
 
000b0101000101010001010100010101000b030100ff00ff00150301000b010100010101
542
 
0001010100010101000b030100ff00ff00150301000b0101000101010001010100010101
543
 
000b030100ff00ff00150301000b0101000101010001010100010101000b030100ff00ff
544
 
00150301000b0101000101010001010100010101000b030100ff00ff00150301000b0101
545
 
000101010001010100010101000b030100ff00ff00150301000b01010001010100010101
546
 
00010101000b030100ff00ff00150301000b0101000101010001010100010101000b0301
547
 
00ff00ff00150301000b0101000101010001010100010101000b030100ff00ff00150301
548
 
000b0101000101010001010100010101000b030100ff00ff00150301000b010100010101
549
 
0001010100010101000b030100ff00ff00150301000b0101000101010001010100010101
550
 
000b030100ff00ff00150301000b0101000101010001010100010101000b030100ff00ff
551
 
00150301000b0101000101010001010100010101000b030100ff00ff00150301000b0101
552
 
000101010001010100010101000b030100ff00ff00150301000b01010001010100010101
553
 
00010101000b030100ff00ff00150301000b0101000101010001010100010101000b0301
554
 
00ff00ff00150301000b0101000101010001010100010101000b030100ff00ff00150301
555
 
000b0101000101010001010100010101000b030100ff00ff00150301000b010100010101
556
 
0001010100010101000b030100ff00ff00150301000b0101000101010001010100010101
557
 
000b030100ff00ff00150301000b0101000101010001010100010101000b030100ff00ff
558
 
00150301000b0101000101010001010100010101000b030100ff00ff00150301000b0101
559
 
000101010001010100010101000b030100ff00ff00150301000b01010001010100010101
560
 
00010101000b030100ff00ff00150301000b0101000101010001010100010101000b0301
561
 
00ff00ff00150301000b0101000101010001010100010101000b030100ff00ff00150301
562
 
000b0101000101010001010100010101000b030100ff00ff00150301000b010100010101
563
 
0001010100010101000b03ff03ff0319000b010100010101000101010001010100ff00ff
564
 
0031010100010101000101010001010100ff00ff00310101000101010001010100010101
565
 
00ff00ff0031010100010101000101010001010100ff00ff003101010001010100010101
566
 
0001010100ff00ff0031010100010101000101010001010100ff00ff0031010100010101
567
 
000101010001010100ff00ff003101010001010100010101000101010012030300140302
568
 
00040301000d0301001b0303000d0302000b03020005030100ff00a30101000101010001
569
 
010100010101001103010001030100140301000403010004030000070301001d0301000e
570
 
0301000a0301000003010004030100ff00a3010100010101000101010001010100100301
571
 
0002030100140301000a030100270301000e0301000a030100ff00ad0101000101010001
572
 
010100010101001003010006030300020304000303040002030300020305000203030003
573
 
0303000205040003030300050301000b0304000203030003030100050303000203040003
574
 
03030003030300ff008b0101000101010001010100010101001003010005030100010301
575
 
000103010001030100010301000103010004030100030301000703010002030100010301
576
 
00010501000105010005030100040301000a030100010301000103010001030100010304
577
 
0005030100020301000103010001030100010301000103010001030100ff008a01010001
578
 
010100010101000101010010030100050301000103010001030100010301000103010001
579
 
030100040301000303010007030100020301000103010001050100010501000203040004
580
 
0301000a0301000103010001030500020301000703010002030100010301000103050002
581
 
030100ff008d010100010101000101010001010100100301000203010000030100010301
582
 
000103010001030100010301000103010004030100030301000703010002030100010301
583
 
0001050100010501000103010001030100040301000a0301000103010001030100060301
584
 
000703010002030100010301000103010008030100ff008b010100010101000101010001
585
 
010100110301000103010000030100010301000103010001030100010301000103010004
586
 
030100030301000003010004030100020301000103010001050100010501000103010001
587
 
030100040301000a03010001030100010301000103010002030100070301000203010001
588
 
03010001030100010301000103010001030100ff008a0101000101010001010100010101
589
 
001203030002030300020301000103010002030200000301000103050002030200030305
590
 
000103030002050100010501000203020000030100010305000903020000030100010303
591
 
00020303000403050000030100010301000203030003030300ff008b0101000101010001
592
 
01010001010100ff00ff0031010100010101000101010001010100ff00ff003101010001
593
 
01010001010100010101000807ff07ff0007081700080101000101010001010100010101
594
 
000807ff07ff000708010303080403010804030308010008010100010101000101010001
595
 
0101000807ff07ff00070801030108060301080603010801000801010001010100010101
596
 
00010101000807ff07ff0007080103010806030108060301080100080101000101010001
597
 
010100010101000807ff07ff000708010301080603010806030108010008010100010101
598
 
0001010100010101000807ff07ff00070801030108060301080603010801000801010001
599
 
01010001010100010101000807ff07ff0007080103010806030108060301080100080101
600
 
000101010001010100010101000807ff07ff000708010301080403050804030108010008
601
 
0101000101010001010100010101000807ff07ff00070801030108050303080503010801
602
 
00080101000101010001010100010101000807ff07ff0007080103030804030108040303
603
 
080100080101000101010001010100010101000807ff07ff000708170008010100010101
604
 
0001010100010101000807ff07ff000708170008010100010101000101010001010100ff
605
 
00ff0031010100010101000101010001010100ff00ff0031010100010101000101010001
606
 
010100ff00ff0031010100010101000101010001010100ff00ff00310101000101010001
607
 
01010001010100ff00ff0031010100010101000101010001010100ff00ff003101010001
608
 
0101000101010001010100ff00ff0031010100010101000101010001010100ff00ff0031
609
 
010100010101000101010001010100ff00ff0031010100010101000101010001010100ff
610
 
00ff0031010100010101000101010001010100ff00ff0031010100010101000101010001
611
 
010100ff00ff003101010001010100010101000101010080083f00b7083f007801010001
612
 
010100010101000101010080081909020802050208010501081800b70809030308220303
613
 
080a00780101000101010001010100010101008008180901080009010802050108010501
614
 
081800b7080803010801030108230301080a007801010001010100010101000101010080
615
 
08170901080209010801050108000501081900b7080703010802030108230301080a0078
616
 
0101000101010001010100010101008008170901080209010801050108000501081900b7
617
 
080703010806030308020304080303030803030308050301080a00780101000101010001
618
 
0101000101010080081709010802090108010503081a00b7080703010809030108010301
619
 
080103010801030108010301080103010801030108040301080a00780101000101010001
620
 
0101000101010080081709010802090108010501080005010819030700af080703010806
621
 
03040801030108010301080103010805030508040301080a030700700101000101010001
622
 
0101000101010080081709010802090108010501080005010819030700af080703010802
623
 
030108000301080103010801030108010301080103010805030108080301080a03070070
624
 
010100010101000101010001010100800818090108000901080205010801050108180307
625
 
00af08080301080103010800030108010301080103010801030108010301080103010801
626
 
03010801030108040301080a030700700101000101010001010100010101008008190902
627
 
08020502080105010818030700af08090303080203020800030108000301080103010802
628
 
0303080303030803030508080307007001010001010100010101000101010080083f0307
629
 
00af083f0307007001010001010100010101000101010080083f030700af083f03070070
630
 
01010001010100010101000101010088033f00b7033f0070010100010101000101010001
631
 
01010088033f00b7033f007001010001010100010101000101010088033f00b7033f0070
632
 
01010001010100010101000101010088033f00b7033f0070010100010101000101010001
633
 
01010088033f00b7033f007001010001010100010101000101010088033f00b7033f0070
634
 
010100010101000101010001010100ff00ff0031010100010101000101010001010100ff
635
 
00ff0031010100010101000101010001010100ff00ff0031010100010101000101010001
636
 
010100ff00ff0031010100010101000101010001010100ff00ff00310101000101010001
637
 
01010001010100ff00ff0031010100010101000101010001010100ff00ff003101010001
638
 
0101000101010001010100ff00ff0031010100010101000101010001010100ff00ff0031
639
 
010100010101000101010001010100ff00ff003101010001010100010101000101ff01ff
640
 
0135000101010001010100ff00ff003901010001010100ff00ff00390101000101ff01ff
641
 
013d00ff00ff003f00ff00ff003f00ff00ff003f
642
 
%%EndData
643
 
end
644
 
%%PageTrailer
645
 
%%Trailer
646
 
%%BoundingBox: 0 0 575 250
647
 
%%EOF