~ubuntu-branches/debian/lenny/fpc/lenny

« back to all changes in this revision

Viewing changes to fpcdocs/pics/ide/obrowser.eps

  • Committer: Bazaar Package Importer
  • Author(s): Mazen Neifer, Torsten Werner, Mazen Neifer
  • Date: 2008-05-17 17:12:11 UTC
  • mfrom: (3.1.9 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080517171211-9qi33xhd9evfa0kg
Tags: 2.2.0-dfsg1-9
[ Torsten Werner ]
* Add Mazen Neifer to Uploaders field.

[ Mazen Neifer ]
* Moved FPC sources into a version dependent directory from /usr/share/fpcsrc
  to /usr/share/fpcsrc/${FPCVERSION}. This allow installing more than on FPC
  release.
* Fixed far call issue in compiler preventing building huge binearies.
  (closes: #477743)
* Updated building dependencies, recomennded and suggested packages.
* Moved fppkg to fp-utils as it is just a helper tool and is not required by
  compiler.

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: (obrowser.eps)
 
4
%%CreationDate: (Sun Dec  3 00:55:13 2000)
 
5
%%BoundingBox: 0 0 447 215
 
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 448 216
 
267
userdict begin
 
268
%%BeginData:
 
269
DisplayImage
 
270
0 0
 
271
448 216
 
272
12.000000
 
273
448 216
 
274
1
 
275
0
 
276
0
 
277
9
 
278
c0c0c0
 
279
f8fcf8
 
280
00fc00
 
281
008080
 
282
f8fc00
 
283
000000
 
284
f87c78
 
285
008000
 
286
00fcf8
 
287
00ff00bf00120103000b010300790105003b01020015010100c100120101000502030005
 
288
0101007a0101000101010039010100000101000b01000007010100c10012010100050203
 
289
00050101007a01010001010100380101000201010009010100cb0001010e000101010005
 
290
0203000501010001016f0008010100010101000001020000010100020103000201010002
 
291
010100010103000301030002010200000101000901010002010100000101000001020001
 
292
010500020103000301030002010400030103000a019e00010101000e0101000502030005
 
293
0101007a0104000201010000010200000101000101010001010100020101000001010001
 
294
010100010101000101010002010100000102000801010002010100010101000101010001
 
295
01010007010100020101000101010001010100010101000101010001010100a601010001
 
296
0101000e01010005020300050101007a0101000101010001010200000101000001010001
 
297
010100010101000001000000010100010101000401050002010200000101000801010002
 
298
010100010101000101010001010100070101000201010001010100010101000101010002
 
299
010100a90101000101010001010a0001010100050203000501010001016f000801010001
 
300
010100010101000401010001010100010101000001000000010100030101000201010006
 
301
0101000c0101000201010001010100010101000101010007010100020101000101010001
 
302
01010001010100040101000a019a000101010001010100010101000a0101000502030005
 
303
0101007a0101000101010001010100040101000101010002010100000101000101010001
 
304
0101000101010001010100020101000d0101000001010002010100010101000101010000
 
305
01010004010100020101000101010001010100010101000101010001010100a201010001
 
306
01010001010100010101000a010300030203000301030079010500010103000401030003
 
307
010100000101000201030003010300020103000d01020003010400030102000301050001
 
308
010300020101000101010002010300a3010100010101000101010001010100e1010100cd
 
309
010100010101000101010001010100e0010300cc010100010101000101010001010100ff
 
310
00b1010100010101000101010001010100ff00b1010100010101000101010001010100ff
 
311
00b1010100010101000101010001010100ff00b1010100010101000101010001010100ff
 
312
00b1010100010101000101010001010100ff00b1010100010101000101010001010100ff
 
313
00b1010100010101000101010001010100ff00b1010100010101000101010001010100ff
 
314
00b1010100010101000101010001010100ff00b1010100010101000101010001010100ff
 
315
00b1010100010101000101010001010100ff00b1010100010101000101010001010100ff
 
316
00b101010001010100010101000101010011010300120102000d010300ff007301010001
 
317
01010001010100010101001001010001010100120101000f010100ff0073010100010101
 
318
0001010100010101001001010001010100120101000f010100ff00730101000101010001
 
319
010100010101001001010006010100010101000001050002010400020103000501010003
 
320
010300ff006b010100010101000101010001010100110102000401010001010100000101
 
321
000001000000010100010101000101010000010100010101000401010002010100010101
 
322
00ff006a0101000101010001010100010101001301010003010100010101000001010000
 
323
01000000010100010101000101010000010100010101000401010003010100ff006d0101
 
324
000101010001010100010101001001010001010100020101000101010000010100000100
 
325
0000010100010101000101010000010100010101000401010005010100ff006b01010001
 
326
010100010101000101010010010100010101000301030001010100000100000001010001
 
327
010100010101000001010001010100040101000201010001010100ff006a010100010101
 
328
000101010001010100110103000601010001010100020101000001010000010200020103
 
329
000301050001010300ff006b0101000101010001010100010101001b010100ff00930101
 
330
0001010100010101000101010018010300ff009401010001010100010101000101010008
 
331
03ff039f00080101000101010001010100010101000803090103030b010303090403030b
 
332
0102030d010303940503030b0503030904010301040103140501030a050203050503036a
 
333
00080101000101010001010100010101000803090101030f0101030a0401030d0101030f
 
334
010103940501030f0501030904010301040103140501030b050103070501036a00080101
 
335
000101010001010100010101000803090101030f0101030a0401030d0101030f01010394
 
336
0501030f050103090401030104010322050103070501036a000801010001010100010101
 
337
00010101000803090101030f0101030a0401030501030303010403020103030501010303
 
338
0103038c0501030f05010309040103010401030205030302050203000501030205030303
 
339
050303030504030405010303050303030503035a00080101000101010001010100010101
 
340
000803090101030f0101030a040103080101030201010301010103000101030101010304
 
341
01010302010103010101038b0501030f0501030904010301040103050501030205010300
 
342
050203030501030605010302050103010501030305010302050103010501030105010301
 
343
0501035900080101000101010001010100010101000803090101030f0101030a04010302
 
344
0400030101040302010103010101030001050304010103030101038e0501030f05010309
 
345
040103010401030205040302050203000501030305010303050403020501030105010303
 
346
05010302050503020501035c00080101000101010001010100010101000803090101030f
 
347
0101030a0401030104010300010103010101030201010301010103000101030801010305
 
348
0101038c0501030f05010309040103010401030105010301050103020501030705010302
 
349
0501030105010302050103010501030305010302050103080501035a0008010100010101
 
350
0001010100010101000803090101030f0101030a04010301040103000101030101010302
 
351
0101030101010300010103010101030401010302010103010101038b0501030f0501030a
 
352
040303020501030105010302050103070501030205010301050103020501030105010303
 
353
050103020501030105010301050103010501035900080101000101010001010100010101
 
354
000803090103030b01030309040603010102030001010300010103000102030201030303
 
355
010503010103038c0503030b0503030b0401030405020300050103000503030405050301
 
356
0502030005010300050103000502030205050301050303030503035a0008010100010101
 
357
00010101000101010008030f060703ff0387000801010001010100010101000101010008
 
358
030f060703ff038700080101000101010001010100010101000803ff039f000801010001
 
359
01010001010100010101000803090503030b0503030b040303b30503030b050303090405
 
360
03240502037100080101000101010001010100010101000803090501030f0501030a0401
 
361
03010401031a050003160500037e0501030f0501030a0401030104010324050103710008
 
362
0101000101010001010100010101000803090501030f0501030904010302040103190501
 
363
03150501037e0501030f0501030a04010301040103240501037100080101000101010001
 
364
010100010101000803090501030f05010309040103060503030205040303050303020505
 
365
0302050303020504030205050302050303740501030f0501030a04010301040103000502
 
366
030005010302050303030503030305030303050403010501030105010301050203000501
 
367
0302050303030503035200080101000101010001010100010101000803090501030f0501
 
368
030904010305050103010501030105010301050103010501030105010302050103080501
 
369
030105010301050103020501030405010301050103730501030f0501030a040403020501
 
370
030005020300050103010501030105010301050103010501030105010301050103010501
 
371
030105010301050103020501030005020300050103010501030105010301050103510008
 
372
0101000101010001010100010101000803090501030f0501030904010305050103010501
 
373
030105010301050103020501030505010305050403010501030105010302050103050501
 
374
03760501030f0501030a0401030505020300050103000501030105010301050103050505
 
375
030105010301050103010501030105010302050203000501030005050302050103540008
 
376
0101000101010001010100010101000803090501030f0501030904010302040103000501
 
377
030105010301050103010501030405010303050103040501030105010301050103010501
 
378
030205010307050103740501030f0501030a040103050501030405010301050103010501
 
379
030505010305050103010501030105010301050103020501030405010308050103520008
 
380
0101000101010001010100010101000803090501030f0501030a04010301040103000501
 
381
030105010301050103010501030105010301050103020501030005010301050103010501
 
382
03010501030105010302050103000501030105010301050103730501030f0501030a0401
 
383
030505010304050103010501030105010301050103010501030105010301050103010501
 
384
030105010301050103020501030405010301050103010501030105010351000801010001
 
385
01010001010100010101000803090503030b0503030b0403030205030302050103010501
 
386
030205030304050203030502030005010300050103010501030305020303050303740503
 
387
030b05030309040303030503030405030303050303030503030305020300050103010502
 
388
030005010300050303040503030305030352000801010001010100010101000101010008
 
389
03ff039f00080101000101010001010100010101000803ff039f00080101000101010001
 
390
010100010101000803ff039f00080101000101010001010100010101000803090503030b
 
391
05030309040503b30503030b0503030a0403030a05020317050103150502035900080101
 
392
000101010001010100010101000803090501030f050103090400030004010300040003b3
 
393
0501030f0501030b0401030c050103170501030405000310050103590008010100010101
 
394
0001010100010101000803090501030f0501030b040103b50501030f0501030b0401030c
 
395
0501031d050103100501035900080101000101010001010100010101000803090501030f
 
396
0501030b040103040501030105010300050103000502030205030303050303940501030f
 
397
0501030b0401030305040303050103000501030205030302050203000501030205030302
 
398
05050302050303030504035900080101000101010001010100010101000803090501030f
 
399
0501030b0401030405010301050103010501030105010300050103010501030105010301
 
400
050103930501030f0501030b040103030501030105010302050203000501030005010301
 
401
050103020501030005020303050103030501030405010301050103010501030105010359
 
402
00080101000101010001010100010101000803090501030f0501030b0401030405010301
 
403
05010301050103010501030005050302050103960501030f0501030b0401030305010301
 
404
050103020501030105010300050503020502030005010303050103030501030405050301
 
405
050103010501035900080101000101010001010100010101000803090501030f0501030b
 
406
040103040501030105010301050103010501030005010308050103940501030f0501030b
 
407
040103030501030105010302050103010501030005010306050103070501030305010304
 
408
05010305050103010501035900080101000101010001010100010101000803090501030f
 
409
0501030b0401030505030302050103010501030005010301050103010501030105010393
 
410
0501030f0501030b04010303050103010501030205010301050103000501030105010302
 
411
050103070501030305010300050103010501030105010301050103010501035900080101
 
412
000101010001010100010101000803090503030b0503030a040303060501030205040302
 
413
05030303050303940503030b0503030a0403030205010301050103010502030105010301
 
414
050303020503030405050302050203030503030305020300050103580008010100010101
 
415
00010101000101010008033205010303050103ff03640008010100010101000101010001
 
416
01010008032f05030303050303ff03630008010100010101000101010001010100ff00b1
 
417
010100010101000101010001010100ff00b1010100010101000101010001010100ff00b1
 
418
010100010101000101010001010100ff00b1010100010101000101010001010100ff00b1
 
419
010100010101000101010001010100ff00b1010100010101000101010001010100ff00b1
 
420
010100010101000101010001010100ff00b1010100010101000101010001010100ff00b1
 
421
010100010101000101010001010100ff00b1010100010101000101010001010100ff00b1
 
422
010100010101000101010001010100ff00b1010100010101000101010001010100ff00b1
 
423
010100010101000101010001010100110503000a0502000c050200270501008a05050013
 
424
050200250502008201010001010100010101000101010010050100010501000a0501000d
 
425
050100270501008b05010001050100110501000005010025050100820101000101010001
 
426
0101000101010010050100010501000a0501000d050100b5050100010501001105010028
 
427
05010082010100010101000101010001010100100501000505010001050100020504000a
 
428
050400010502000005010002050300020501000205010001050300030503000205040003
 
429
050200000501007905010001050100000502000005010002050300030501000505030002
 
430
050200000501000105020000050100020503000305040009050100000502000205030002
 
431
050400030503005b01010001010100010101000101010011050200030501000105010002
 
432
050100010501000005060001050100010501000105010000050200000501000105010001
 
433
05010002050100000501000105010004050100020501000105010001050100010501007a
 
434
050400020501000005020000050100010501000105040002050100010501000205010000
 
435
0502000105010000050200000501000105010001050100010501000a0501000105010004
 
436
050100010501000105010001050100010501005a01010001010100010101000101010013
 
437
050100020501000105010002050100010501000905010001050100010502000005010000
 
438
050100010501000105010000050000000501000105010007050100020501000105010001
 
439
050100010501007a05010005050200000501000005050002050100040505000205020000
 
440
05010001050200000501000005050001050100010501000a050100010501000105040001
 
441
05010001050100010505005a010100010101000101010001010100100501000105010001
 
442
050100010501000205010001050100090501000105010001050100040501000105010001
 
443
05010000050000000501000305010005050100020501000105010001050100010501007a
 
444
050100050501000405010006050100040501000605010005050100040501000505010001
 
445
0501000a0501000105010000050100010501000105010001050100010501005e01010001
 
446
010100010101000101010010050100010501000105010001050100020501000105010009
 
447
050100010501000105010004050100010501000205010000050100010501000105010004
 
448
0501000205010001050100020504007a0501000505010004050100010501000205010004
 
449
050100010501000205010005050100040501000105010001050100010501000a05010001
 
450
0501000005010001050100010501000105010001050100010501005a0101000101010001
 
451
010100010101001105030003050200000501000005010000050200090501000005020001
 
452
050300040503000305010000050100020503000305050000050100010501000505010079
 
453
050300030503000405030002050300040503000205030003050300040503000305020000
 
454
0501000905040002050200000501000005010001050100020503005b0101000101010001
 
455
010100010101006805010001050100ca0501007501010001010100010101000101010069
 
456
050300ca050300740101000101010001010100010101000803c7000f03c7000801010001
 
457
010100010101000101010008030b0501030a0501030c04010302040103180502037c000f
 
458
030b0501030a0501030d0403039a000801010001010100010101000101010008030a0501
 
459
030c0501030b04010302040103190501037c000f030a0501030c0501030b040103010401
 
460
039900080101000101010001010100010101000803090501030405010301050103030501
 
461
030a04020301040103190501037c000f03090501030405010301050103030501030a0401
 
462
030104010399000801010001010100010101000101010008030805010306050303050501
 
463
030904030300040103010503030205010302050103090504030105020300050103020503
 
464
0302050103020501030105030303050303020502030005010349000f0308050103060503
 
465
03050501030904010306050303030503030205010300050203020503037a000801010001
 
466
010100010101000101010008030805010304050703030501030904060300050103010501
 
467
030105010302050103090501030105010301050103000502030005010301050103010501
 
468
030205010300050103010501030105010301050103020501030005020348000f03080501
 
469
0304050703030501030a0402030305010301050103010501030105010302050103010501
 
470
030005010301050103790008010100010101000101010001010100080308050103060503
 
471
030505010309040103000403030005050301050103000500030005010309050103010501
 
472
030105020300050103000501030105010301050103000500030005010301050103040505
 
473
03020502030005010348000f030805010306050303050501030c04010302050103050501
 
474
030105010302050103010501030005050379000801010001010100010101000101010008
 
475
03090501030405010301050103030501030a040103010402030005010305050103000500
 
476
030005010309050103010501030105010304050103010501030105010300050003000501
 
477
030305010302050103060501034c000f03090501030405010301050103030501030a0401
 
478
03010401030105010305050103010501030205010301050103000501037d000801010001
 
479
010100010101000101010008030a0501030c0501030b0401030204010300050103010501
 
480
0302050103000501030a0501030105010301050103040501030105010302050103000501
 
481
0301050103010501030105010301050103020501034c000f030a0501030c0501030b0401
 
482
030104010301050103010501030105010301050103020501030105010300050103010501
 
483
0379000801010001010100010101000101010008030b0501030a0501030c040103020401
 
484
030105030303050103000501030905010300050203010503030405030303050103000501
 
485
030205030303050303020503034b000f030b0501030a0501030d04030303050303030503
 
486
0303050403020503037a00080101000101010001010100010101000803c7000f03400501
 
487
038400080101000101010001010100010101000803c7000f033f05030383000801010001
 
488
01010001010100010101000803c7000f03c7000801010001010100010101000101010008
 
489
030b0501030a0501030c0405031205030382000f030b0501030a0501030c0505030b0502
 
490
038a000801010001010100010101000101010008030a0501030c0501030c040103010401
 
491
0313050103540500032c000f030a0501030c0501030c0501030105010309050103000501
 
492
038900080101000101010001010100010101000803090501030e0501030b040103010401
 
493
0313050103530501032c000f03090501030e0501030b05010301050103090501038c0008
 
494
010100010101000101010001010100080308050103100501030a04010301040103010503
 
495
030205010300050203040501030305030303050303030503030b05030302050103010501
 
496
030105020300050103010502030005010302050303020504030205050329000f03080501
 
497
03100501030a050103010501030104030303050103050503030205020300050103020503
 
498
030205040303050303030503035a00080101000101010001010100010101000803080501
 
499
03100501030a040403010501030105010302050103010501030305010306050103010501
 
500
030105010301050103010501030905010301050103010501030105010302050103000502
 
501
03010501030005020300050103010501030105010301050103020501032c000f03080501
 
502
03100501030a050403010401030104010301050403020501030105010302050103000502
 
503
030005010301050103010501030105010301050103010501030105010301050103590008
 
504
010100010101000101010001010100080308050103100501030a04010300040103010505
 
505
030205010301050103030501030305040301050103050505030905010305050103010501
 
506
0302050203000501030105020300050103000505030105010301050103020501032c000f
 
507
0308050103100501030a0501030005010301040503020501030405050302050203000501
 
508
030005050301050103010501030105010305050503590008010100010101000101010001
 
509
0101000803090501030e0501030b04010301040103000501030605010301050103030501
 
510
03020501030105010301050103050501030d050103050501030105010302050103050501
 
511
03040501030505010301050103020501032c000f03090501030e0501030b050103010501
 
512
030004010306050103040501030605010304050103050501030105010301050103050501
 
513
035d000801010001010100010101000101010008030a0501030c0501030c040103010401
 
514
030005010301050103020501030105010303050103020501030105010301050103010501
 
515
030105010301050103090501030105010301050103010501030205010305050103040501
 
516
03010501030105010301050103020501030005010329000f030a0501030c0501030c0501
 
517
030105010300040103010401030205010304050103010501030205010304050103010501
 
518
030105010301050103010501030105010301050103010501035900080101000101010001
 
519
0101000101010008030b0501030a0501030c040203010401030105030303050403020505
 
520
03010502030005010301050303030503030b050303030502030005010300050303030503
 
521
03040503030205010301050103030502032a000f030b0501030a0501030c050203010501
 
522
030104030302050303040503030205030304050303020501030105010302050303030503
 
523
035a00080101000101010001010100010101000803380501038c000f03c7000801010001
 
524
01010001010100010101000803370503038b000f03c70008010100010101000101010001
 
525
010100ff00b1010100010101000101010001010100ff00b1010100010101000101010001
 
526
010100ff00b1010100010101000101010001010100ff00b1010100010101000101010001
 
527
010100ff00b1010100010101000101010001010100ff00b1010100010101000101010001
 
528
010100ff00b1010100010101000101010001010100ff00b1010100010101000101010001
 
529
010100ff00b1010100010101000101010001010100ff00b1010100010101000101010001
 
530
010100ff00b1010100010101000101010001010100ff00b1010100010101000101010001
 
531
010100ff00b1010100010101000101010001010100100504000505010013050300ff007b
 
532
01010001010100010101000101010011050100000501000405010015050100ff007b0101
 
533
0001010100010101000101010011050100010501001b050100ff007b0101000101010001
 
534
010100010101001105010001050100010503000305030002050100000502000405010003
 
535
0503000305010001050100ff006901010001010100010101000101010011050100010501
 
536
000305010002050100010501000205010001050100030501000605010002050100010501
 
537
00ff00690101000101010001010100010101001105010001050100030501000305010005
 
538
0501000105010003050100030504000205010001050100ff006901010001010100010101
 
539
000101010011050100010501000305010005050100030501000105010003050100020501
 
540
00010501000205010001050100ff00690101000101010001010100010101001105010000
 
541
050100040501000205010001050100020501000105010003050100020501000105010003
 
542
050300ff006a010100010101000101010001010100100504000305050001050300030504
 
543
0002050500010502000005010004050100ff006a01010001010100010101000101010029
 
544
05010017050100ff006b0101000101010001010100010101002805030013050300ff006c
 
545
0101000101010001010100010101000803ff039f00080101000101010001010100010101
 
546
000803090503030b0503030b040203130503030505010304050203050501030d05020321
 
547
0502030d0503033c0503030b0503030a0503032b0503036a000801010001010100010101
 
548
00010101000803090501030f0501030a0401030004010314050103050501030305010300
 
549
050103040501030e050103220501030f0501033c0501030f050103090501030105010313
 
550
050003170501036a00080101000101010001010100010101000803090501030f05010309
 
551
04010302040103130501030b05010318050103220501030f0501033c0501030f05010309
 
552
0501030105010312050103170501036a0008010100010101000101010001010100080309
 
553
0501030f0501030904010302040103000501030105010302050303050501030305030303
 
554
0501030505030303050303030504030a0503030305010301050103000505030205040302
 
555
0503030505010303050303340501030f0501030905010306040303020502030005010301
 
556
0505030a050303050501030205010302050103010503030305010301050103010503034a
 
557
00080101000101010001010100010101000803090501030f050103090401030204010300
 
558
050103010501030505010304050103050501030205040305050103020501030105010301
 
559
050103010501030905010301050103020501030105010300050103000500030005010301
 
560
050103010501030005010301050103040501030205010301050103330501030f0501030a
 
561
050203030401030104010302050103000502030105010310050103040501030205010302
 
562
050103040501030205010301050103000501030105010349000801010001010100010101
 
563
00010101000803090501030f050103090401030104020300050103010501030205040304
 
564
0501030505010303050103070501030205050301050103010501030a0501030505010301
 
565
050103000501030005000300050103010501030105010300050103010501030405010303
 
566
050103360501030f0501030c05010302040103010401030205020300050103010501030d
 
567
05040304050103020501030005000300050103010504030205010301050103010501034c
 
568
00080101000101010001010100010101000803090501030f050103090401030004030300
 
569
050103010501030105010301050103040501030505010303050103070501030205010305
 
570
050103010501030c05010303050103010501030005010300050003000501030105010301
 
571
05010300050103010501030405010305050103340501030f050103090501030105010301
 
572
0401030104010302050103050501030c0501030105010304050103020501030005000300
 
573
05010300050103010501030205010301050103030501034a000801010001010100010101
 
574
00010101000803090501030f0501030a0404030105010301050103010501030105010304
 
575
050103050501030305010307050103020501030105010301050103010501030905010301
 
576
050103030503030105010300050003000501030105010301050103000501030105010304
 
577
0501030205010301050103330501030f0501030905010301050103010401030104010302
 
578
050103050501030005010309050103010501030405010303050103000501030105010301
 
579
050103030503030105010301050103490008010100010101000101010001010100080309
 
580
0503030b0503030d04010302050203000501030105020300050103010505030105050300
 
581
050303040505030105030303050203000501030905030306050103010501030205010300
 
582
05010300050203020503030305050301050303340503030b0503030a0503030304030302
 
583
050303050502030b05020300050103010505030105010300050103020502030005010304
 
584
050103020503034a000801010001010100010101000101010008032a04030353050103c5
 
585
05010352000801010001010100010101000101010008037f050303c30503035300080101
 
586
00010101000101010001010100ff00b1010100010101000101010001010100ff00b10101
 
587
00010101000101010001010100ff00b1010100010101000101010001010100ff00b10101
 
588
00010101000101010001010100ff00b1010100010101000101010001010100ff00b10101
 
589
00010101000101010001010100ff00b1010100010101000101010001010100ff00b10101
 
590
00010101000101010001010100ff00b1010100010101000101010001010100ff00b10101
 
591
00010101000101010001010100ff00b1010100010101000101010001010100ff00b10101
 
592
00010101000101010001010100ff00b1010100010101000101010001010100ff00b10101
 
593
00010101000101010001010100ff00b1010100010101000101010001010100ff00b10101
 
594
00010101000101010001010100ff00b1010100010101000101010001010100ff00b10101
 
595
00010101000101010001010100ff00b1010100010101000101010001010100ff00b10101
 
596
00010101000101010001010100ff00b1010100010101000101010001010100ff00b10101
 
597
00010101000101010001010100ff00b1010100010101000101010001010100ff00b10101
 
598
0001010100010101000101010060073f0077073f00580101000101010001010100010101
 
599
0060071908020702040207010401071800770709050307220503070a0058010100010101
 
600
000101010001010100600718080107000801070204010701040107180077070805010701
 
601
050107230501070a00580101000101010001010100010101006007170801070208010701
 
602
04010700040107190077070705010702050107230501070a005801010001010100010101
 
603
000101010060071708010702080107010401070004010719007707070501070605030702
 
604
0504070305030703050307050501070a0058010100010101000101010001010100600717
 
605
08010702080107010403071a007707070501070905010701050107010501070105010701
 
606
0501070105010701050107040501070a0058010100010101000101010001010100600717
 
607
080107020801070104010700040107190507006f07070501070605040701050107010501
 
608
070105010705050507040501070a05070050010100010101000101010001010100600717
 
609
080107020801070104010700040107190507006f07070501070205010700050107010501
 
610
0701050107010501070105010705050107080501070a0507005001010001010100010101
 
611
0001010100600718080107000801070204010701040107180507006f0708050107010501
 
612
070005010701050107010501070105010701050107010501070105010701050107040501
 
613
070a05070050010100010101000101010001010100600719080207020402070104010718
 
614
0507006f0709050307020502070005010700050107010501070205030703050307030505
 
615
07080507005001010001010100010101000101010060073f0507006f073f050700500101
 
616
0001010100010101000101010060073f0507006f073f0507005001010001010100010101
 
617
000101010068053f0077053f005001010001010100010101000101010068053f0077053f
 
618
005001010001010100010101000101010068053f0077053f005001010001010100010101
 
619
000101010068053f0077053f005001010001010100010101000101010068053f0077053f
 
620
005001010001010100010101000101010068053f0077053f005001010001010100010101
 
621
0001010100ff00b1010100010101000101010001010100ff00b101010001010100010101
 
622
0001010100ff00b1010100010101000101010001010100ff00b101010001010100010101
 
623
0001010100ff00b1010100010101000101010001010100ff00b101010001010100010101
 
624
0001010100ff00b1010100010101000101010001010100ff00b101010001010100010101
 
625
0001010100ff00b1010100010101000101010001010100ff00b101010001010100010101
 
626
000101ff01b5000101010001010100ff00b901010001010100ff00b90101000101ff01bd
 
627
00ff00bf00ff00bf00ff00bf00ff00bf
 
628
%%EndData
 
629
end
 
630
%%PageTrailer
 
631
%%Trailer
 
632
%%BoundingBox: 0 0 447 215
 
633
%%EOF