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

« back to all changes in this revision

Viewing changes to fpcdocs/pics/ide/ocompe.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: (ocompe.eps)
 
4
%%CreationDate: (Sun Dec  3 00:55:14 2000)
 
5
%%BoundingBox: 0 0 575 251
 
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 252
 
267
userdict begin
 
268
%%BeginData:
 
269
DisplayImage
 
270
0 0
 
271
576 252
 
272
12.000000
 
273
576 252
 
274
1
 
275
0
 
276
0
 
277
11
 
278
c0c0c0
 
279
f8fcf8
 
280
00fc00
 
281
000000
 
282
808080
 
283
f8fc00
 
284
008080
 
285
f87c78
 
286
000080
 
287
008000
 
288
00fcf8
 
289
00ff00ff003f00120103000b010300b30103001c010100030103001b0103000d01010012
 
290
010200f300120101000502030005010100b2010100010101001b010100050101001a0101
 
291
00010101000c010100040100000d010100f300120101000502030005010100b101010002
 
292
010100230101001a01010001010100120101000d010100f30001010e0001010100050203
 
293
00050101000101a700070101000601030002010500010101000001020002010300050101
 
294
000301030002010200000101000901010005010100020101000101030002010500020103
 
295
00030101000001010002010300030103000a01d600010101000e01010005020300050101
 
296
00b101010005010100010101000101010000010000000101000101010001010100030101
 
297
000501010002010100010101000201010000010200090102000301010002010100030101
 
298
000301010004010100010101000201020000010100000101000101010001010100010101
 
299
00de010100010101000e0101000502030005010100b10101000501010001010100010101
 
300
000001000000010100010101000101010003010100050101000201050002010200000101
 
301
000b01010002010100000100000001010003010100030101000401010006010100010101
 
302
000001050002010100e10101000101010001010a000101010005020300050101000101a7
 
303
000701010002010100000101000101010001010100000100000001010001010100010101
 
304
00030101000501010002010100060101000c010100010101000101010000010000000101
 
305
00030101000301010004010100060101000101010000010100080101000a01d200010101
 
306
0001010100010101000a0101000502030005010100b20101000101010000010100010101
 
307
000101010000010000000101000101010001010100030101000501010002010100010101
 
308
00020101000c010100010101000201010000010100040101000301010000010100010101
 
309
0001010100020101000101010000010100010101000101010001010100da010100010101
 
310
0001010100010101000a0103000302030003010300b30103000201030002010100020101
 
311
0001010400020105000101050001010300020103000c0103000301010000010100020105
 
312
00020102000301030002010200010101000101030003010300db01010001010100010101
 
313
0001010100e9010100ff0045010100010101000101010001010100e8010300ff00440101
 
314
00010101000101010001010100ff00ff0031010100010101000101010001010100ff00ff
 
315
0031010100010101000101010001010100ff00ff00310101000101010001010100010101
 
316
00ff00ff0031010100010101000101010001010100ff00ff003101010001010100010101
 
317
00010101000b03440002038c0002034c0002034c00020361004b01010001010100010101
 
318
00010101000b030100450301008d0301004d0301004d0301005d0301004b010100010101
 
319
0001010100010101000b030100450301008d0301004d0301004d0301005d0301004b0101
 
320
000101010001010100010101000b030100450301008d0301004d0301004d0301005d0301
 
321
004b0101000101010001010100010101000b030100450301008d0301004d0301004d0301
 
322
005d0301004b0101000101010001010100010101000b030100450301008d0301004d0301
 
323
004d0301005d0301004b0101000101010001010100010101000b030100450301008d0301
 
324
004d0301004d0301005d0301004b0101000101010001010100010101000b030100450301
 
325
008d0301004d0301004d0301005d0301004b0101000101010001010100010101000b0301
 
326
000b040300350301000c0403000c0402004c0401001d0301000a05010001050100110402
 
327
00270301000a0505003c0301000c01010023010200050103001d0301004b010100010101
 
328
0001010100010101000b0301000a04010001040100130400001f0301000b040100010401
 
329
000c04010043040000070401001d0301000a0501000105010012040100270301000b0501
 
330
00010501003b0301000b01030023010100070101001d0301004b01010001010100010101
 
331
00010101000b0301000a04010001040100120401001f0301000a040100020401000c0401
 
332
0042040100270301000a0501000105010012040100270301000b050100010501003b0301
 
333
000a0101000101010022010100070101001d0301004b0101000101010001010100010101
 
334
000b0301000a040100060501000105010000040400020405000204030002040100020401
 
335
000b0301000a0401000604030003040400020403000b0502000005010001040300020404
 
336
0003040300020402000004010002040300020405000204030003040300020404000d0301
 
337
000a05010001050100020403000204020000040100020404000204030003040300030403
 
338
000d0301000b050100010501000004020000040100020403000204010002040100010403
 
339
000304030002040200000401000c0301000a010100010101000201030003010300030103
 
340
000201050002010400040101000301030002010200000101000c0301004b010100010101
 
341
0001010100010101000b0301000b04020004050100010501000004010001040100020401
 
342
000804010002040100000401000c0301000a040100050401000104010001040100010401
 
343
000104010001040100090501000105010001040100010401000104010001040100010401
 
344
000104010002040100000402000404010002040100070401000204010001040100010401
 
345
00010401000c0301000a0501000105010001040100010401000204010000040200010401
 
346
00010401000004010001040100010401000104010001040100010401000c0301000b0504
 
347
000204010000040200000401000104010001040100020401000004010001040100010401
 
348
000104010002040100000402000b0301000a010100010101000101010001010100010101
 
349
000101010001010100010101000101010000010000000101000101010001010100030101
 
350
00020101000101010002010100000102000b0301004b0101000101010001010100010101
 
351
000b0301000d040100030501000105010000040100010401000204010005040400030402
 
352
000d0301000a040100050401000104010001040100010401000104050009050100010501
 
353
000104050001040100010401000104050002040200000401000104040002040100070401
 
354
00020401000104010001040100010401000c0301000a0501000105010001040500020402
 
355
00000401000104010001040100000401000104010002040100040405000c0301000b0501
 
356
000105010001040200000401000004010001040100010401000004000000040100010401
 
357
000404050002040200000401000b0301000a010500020101000501010004010500010101
 
358
0000010000000101000101010001010100030101000201050002010200000101000b0301
 
359
004b0101000101010001010100010101000b0301000a0401000104010002050100010501
 
360
000004010001040100020401000404010001040100030402000d0301000a040100020401
 
361
0000040100010401000104010001040100010401000d0501000105010001040100050401
 
362
000104010001040100060401000404010001040100020401000704010002040100010401
 
363
0001040100010401000c0301000a05010001050100010401000604010005040100010401
 
364
0000040100010401000404010002040100100301000b0501000105010001040100040401
 
365
00010401000104010000040000000401000304010002040100060401000f0301000a0101
 
366
000101010004010100050101000201010005010100000100000001010001010100010101
 
367
000301010002010100060101000f0301004b0101000101010001010100010101000b0301
 
368
000a04010001040100030503000104010001040100020401000004010001040100010401
 
369
0002040100000401000c0301000b04010001040100000401000104010001040100010401
 
370
0001040100010401000a0504000104010001040100010401000104010001040100010401
 
371
000204010004040100010401000204010000040100040401000204010001040100010401
 
372
00010401000c0301000b0503000204010001040100020401000504010001040100000401
 
373
0001040100010401000104010001040100010401000c0301000b05010001050100010401
 
374
000404010001040100020401000004010001040100010401000104010001040100020401
 
375
000f0301000a010100010101000101010001010100010101000101010001010100010101
 
376
000101010000010000000101000101010001010100030101000201010001010100020101
 
377
000f0301004b0101000101010001010100010101000b0301000b04030006050100010401
 
378
000104010003040200030402000004010000040100020401000b0301000c040300020403
 
379
000304020000040100010403000e05010002040300020401000104010002040300020403
 
380
00040402000004010002040200030405000104030002040100010401000c0301000c0501
 
381
00040403000204030003040100000402000204030003040300030403000d0301000a0505
 
382
00010403000404030003040100000401000204030003040300020403000e0301000a0101
 
383
000101010002010300030103000301030002010100020101000001010000010200020105
 
384
0001010300020103000e0301004b0101000101010001010100010101000b030100150501
 
385
002d0301003205010001050100540301004d0301004d0301005d0301004b010100010101
 
386
0001010100010101000b030100120503002e03010033050300550301004d0301004d0301
 
387
005d0301004b010100010101000101010001010100ff00830301005d0301004b01010001
 
388
0101000101010001010100ff00830301005d0301004b0101000101010001010100010101
 
389
00ff00830301005d0301004b010100010101000101010001010100ff00830301005d0301
 
390
004b010100010101000101010001010100ff00830301005d0301004b0101000101010001
 
391
010100010101000b03ff0379005d0341000b0101000101010001010100010101000b0301
 
392
00ff00ff00150301000b0101000101010001010100010101000b030100ff00ff00150301
 
393
000b0101000101010001010100010101000b030100ff00ff00150301000b010100010101
 
394
0001010100010101000b030100ff00ff00150301000b0101000101010001010100010101
 
395
000b030100ff00ff00150301000b0101000101010001010100010101000b030100ff00ff
 
396
00150301000b0101000101010001010100010101000b030100ff00ff00150301000b0101
 
397
000101010001010100010101000b03010014030100230302000503030035030200a30101
 
398
002301020005010300bd0301000b0101000101010001010100010101000b030100130303
 
399
00230301000703010036030100a201030023010100070101002c01000016010000770301
 
400
000b0101000101010001010100010101000b030100120301000103010022030100070301
 
401
0036030100a10101000101010022010100070101002b01010015010100770301000b0101
 
402
000101010001010100010101000b03010012030100010301000203030003030300030303
 
403
000203050002030400040301000303030002030200000301000903020000030100020303
 
404
000303030003030400020303000203020000030100910101000101010002010300030103
 
405
00030103000201050002010400040101000301030002010200000101000a010300020101
 
406
0001010100010105000101010000010200010101000101010001010500740301000b0101
 
407
000101010001010100010101000b03010012030100010301000103010001030100010301
 
408
000103010001030100010301000103010000030000000301000103010001030100030301
 
409
000203010001030100020301000003020009030100000302000003010001030100050301
 
410
000103010001030100010301000103010002030100000302009001010001010100010101
 
411
000101010001010100010101000101010001010100010101000001000000010100010101
 
412
000101010003010100020101000101010002010100000102000801010001010100010101
 
413
0001010100020101000501010001010100000101000101010002010100770301000b0101
 
414
000101010001010100010101000b03010012030500020301000503010004030500010301
 
415
000003000000030100010301000103010003030100020305000203020000030100090302
 
416
000003010000030500020304000103010001030100010305000203020000030100900105
 
417
000201010005010100040105000101010000010000000101000101010001010100030101
 
418
000201050002010200000101000801010001010100010101000101010002010100050101
 
419
0001010100000101000101010002010100770301000b0101000101010001010100010101
 
420
000b03010012030100010301000403010005030100020301000503010000030000000301
 
421
0001030100010301000303010002030100060301000d0301000403010005030100010301
 
422
000103010001030100010301000603010094010100010101000401010005010100020101
 
423
0005010100000100000001010001010100010101000301010002010100060101000c0101
 
424
000101010001010100010101000201010005010100010101000001010001010100020101
 
425
00770301000b0101000101010001010100010101000b0301001203010001030100010301
 
426
000103010001030100010301000103010001030100010301000003000000030100010301
 
427
0001030100030301000203010001030100020301000d0301000403010001030100010301
 
428
000103010001030100010301000103010001030100020301009401010001010100010101
 
429
000101010001010100010101000101010001010100010101000001000000010100010101
 
430
0001010100030101000201010001010100020101000c0101000101010001010100010101
 
431
000201010000010100020101000101010000010100010101000201010000010100740301
 
432
000b0101000101010001010100010101000b030100120301000103010002030300030303
 
433
0003030300020301000203010000030100000302000203050001030300020303000b0303
 
434
000403030003030200000301000103020000030100010303000203030093010100010101
 
435
000201030003010300030103000201010002010100000101000001020002010500010103
 
436
00020103000c010300030102000001010002010200030104000201020000010100020102
 
437
00750301000b0101000101010001010100010101000b030100ff008b010100870301000b
 
438
0101000101010001010100010101000b030100ff008a010300860301000b010100010101
 
439
0001010100010101000b0301000a06ef001f06ef000a0301000b01010001010100010101
 
440
00010101000b0301000a060b0301060a0301060c0504060503010652030206050303065a
 
441
001f060b0101060a0101060c010106010101061c0502060b010206130103067a000a0301
 
442
000b0101000101010001010100010101000b0301000a060a0301060c0301060c05010600
 
443
050106040301061c03000635030106070301065a001f060a0101060c0101060b01010601
 
444
0101061d0501060a0101060001010614010106040100061e010006160100063c000a0301
 
445
000b0101000101010001010100010101000b0301000a06090301060e0301060b05010601
 
446
0501062103010635030106070301065a001f06090101060401010601010106030101060a
 
447
010106010101061d0501060a01010617010106030101061d010106150101063c000a0301
 
448
000b0101000101010001010100010101000b0301000a0608030106100301060a05010601
 
449
0501060103030602030206000301060203030603030306020305060a0303060303030603
 
450
0303060303030602030506020304060403010603030306020302060003010649001f0608
 
451
0101060601030605010106090101060101010602010306030103060b0504060201030603
 
452
01010605010306020101060101010604010106020105060a010306020101060101010601
 
453
010506010101060001020601010106010101060101050639000a0301000b010100010101
 
454
0001010100010101000b0301000a0608030106100301060a050106010501060303010603
 
455
030106000302060003010601030106010301060103010602030106100301060103010601
 
456
030106010301060103010601030106010301060103010600030006000301060103010601
 
457
030106030301060203010601030106020301060003020648001f06080101060401070603
 
458
010106090101060101010601010106010101060101010601010106090501060105010601
 
459
010106010101060101040606010106010101060101010604010106030101060c01010601
 
460
01010601010106010101060201010605010106010101060001010601010106020101063c
 
461
000a0301000b0101000101010001010100010101000b0301000a0608030106100301060a
 
462
050106010501060303010603030206000301060003050601030106060301060d03040602
 
463
030106050301060403050601030106000300060003010601030106010301060303010602
 
464
030506020302060003010648001f06080101060601030605010106090101060101010602
 
465
010106040105060905010601050106010105060201010605010406010101060101010604
 
466
010106030101060c01010601010106010101060101010602010106050101060101010600
 
467
01010601010106020101063c000a0301000b0101000101010001010100010101000b0301
 
468
000a06090301060e0301060b050106010501060303010603030106040301060503010606
 
469
0301060c0301060103010604030106050301060203010605030106000300060003010601
 
470
030106010301060303010602030106060301064c001f0609010106040101060101010603
 
471
0101060a0101060101010604010106020101060d05010601050106010101060601010604
 
472
01010601010106010101060101010604010106030101060c010106010101060101010601
 
473
0101060201010605010106010101060001010601010106020101063c000a0301000b0101
 
474
000101010001010100010101000b0301000a060a0301060c0301060c0501060005010604
 
475
030106030301060403010601030106010301060103010602030106000301060903010601
 
476
030106010301060103010601030106010301060103010601030106010301060003000600
 
477
0301060103010601030106030301060203010601030106020301064c001f060a0101060c
 
478
0101060b0101060101010601010106010101060101010601010106090501060105010601
 
479
010106010101060201010604010106010101060101010601010106040101060301010600
 
480
010106090101060101010601010106010101060201010600010106020101060101010600
 
481
01010601010106020101060001010639000a0301000b0101000101010001010100010101
 
482
000b0301000a060b0301060a0301060c0504060303050600030306040303060303030604
 
483
0302060b0302060003010601030306030303060303030602030106020301060003010600
 
484
0302060203050601030306020303064b001f060b0101060a0101060d0103060301030603
 
485
0103060b0502060005010601010306020103060401020600010106010102060001010601
 
486
010506020102060b01030603010206000101060201020603010406020102060001010602
 
487
0102063a000a0301000b0101000101010001010100010101000b0301000a06ef001f060f
 
488
070706880101064c000a0301000b0101000101010001010100010101000b0301000a06ef
 
489
001f060f070706870103064b000a0301000b0101000101010001010100010101000b0301
 
490
000a06ef001f06ef000a0301000b0101000101010001010100010101000b0301000a060b
 
491
0301060a0301060e050106030305060203020603030506220303063a030206050303063a
 
492
001f060b0301060a0301060c030106010301061b05030601030106020301060003010601
 
493
03010691000a0301000b0101000101010001010100010101000b0301000a060a0301060c
 
494
0301060c0503060203000600030106000300060103010600030106020300060003010600
 
495
030006130300060f0301063b030106070301063a001f060a0301060c0301060b03010601
 
496
0301061a050106010501060003010602030106000301060103010691000a0301000b0101
 
497
000101010001010100010101000b0301000a06090301060403010601030106030301060a
 
498
0501060105010603030106030301060003010604030106140301060f0301063b03010607
 
499
0301063a001f06090301060e0301060a0301060103010619050106020501060003020601
 
500
030106000301060103010691000a0301000b0101000101010001010100010101000b0301
 
501
000a0608030106060303060503010609050106010501060303010604030206050301060c
 
502
03030602030506020301060103010603030106030303060b030306030303060303030603
 
503
03030602030506020304060403010603030306020302060003010629001f060803010610
 
504
030106090301060103010602030306030303060a05010605030306000301060003010601
 
505
0301060a030306030303067a000a0301000b0101000101010001010100010101000b0301
 
506
000a06080301060403070603030106090501060105010603030106030304060003000602
 
507
0301060b030106010301060203010605030106010301060303010602030106010301060d
 
508
030106010301060103010601030106010301060103010601030106010301060003000600
 
509
0301060103010601030106030301060203010601030106020301060003020628001f0608
 
510
030106100301060903010601030106010301060103010601030106010301060905010605
 
511
03060600030106010301060d030106010301060103010679000a0301000b010100010101
 
512
0001010100010101000b0301000a06080301060603030605030106090505060303010603
 
513
03010600030306020301060c03010605030106050301060103010603030106020305060a
 
514
030406020301060503010604030506010301060003000600030106010301060103010603
 
515
03010602030506020302060003010628001f060803010610030106090301060103010602
 
516
030106040305060905010601050206000301060003030600030106010301060a03040602
 
517
0301067c000a0301000b0101000101010001010100010101000b0301000a060903010604
 
518
03010601030106030301060a05010601050106030301060303010601030106030301060e
 
519
03010603030106050301060103010603030106020301060d030106010301060403010605
 
520
030106020301060503010600030006000301060103010601030106030301060203010606
 
521
0301062c001f06090301060e0301060a0301060103010604030106020301060d05010602
 
522
050106000301060103020600030106010301060903010601030106040301067a000a0301
 
523
000b0101000101010001010100010101000b0301000a060a0301060c0301060b05010601
 
524
050106030301060303010600030206030301060b03010601030106020301060003010603
 
525
030306040301060203010601030106090301060103010601030106010301060103010601
 
526
030106010301060103010601030106000300060003010601030106010301060303010602
 
527
03010601030106020301062c001f060a0301060c0301060b030106010301060103010601
 
528
03010601030106010301060a050106010501060003010602030106000301060103010609
 
529
03010601030106010301060103010679000a0301000b0101000101010001010100010101
 
530
000b0301000a060b0301060a0301060c0501060105010602030306030302060003010601
 
531
0303060b030306040302060603010602030506010303060b030206000301060103030603
 
532
03030603030306020301060203010600030106000302060203050601030306020303062b
 
533
001f060b0301060a0301060d03030603030306030303060c050406000301060203010601
 
534
0303060b03020600030106010303067a000a0301000b0101000101010001010100010101
 
535
000b0301000a06620301068a001f06ef000a0301000b0101000101010001010100010101
 
536
000b0301000a065f0303068b001f06ef000a0301000b0101000101010001010100010101
 
537
000b0301000a06ef001f06ef000a0301000b0101000101010001010100010101000b0301
 
538
000a060b0301060a0301060d0503061b030306230303063a0302060503030632001f060b
 
539
0301060a0301060c03010601030106190501060205010602030106040303060203010602
 
540
0301061a0302060403020662000a0301000b0101000101010001010100010101000b0301
 
541
000a060a0301060c0301060d0501060d0300060f030106140300060f0301063b03010607
 
542
03010632001f060a0301060c0301060b0301060103010619050106020501060103030602
 
543
0301060103010601030206000302061903010600030106020301060003010661000a0301
 
544
000b0101000101010001010100010101000b0301000a06090301060e0301060c0501060c
 
545
0301060f030106130301060f0301063b0301060703010632001f06090301060e0301060a
 
546
030106010301061905020601050106000301060103010601030106010301060103060619
 
547
0301060503010664000a0301000b0101000101010001010100010101000b0301000a0608
 
548
030106100301060b050106030304060203050602030306050301060b0303060203050602
 
549
0301060103010603030106030303060b0303060303030603030306030303060203050602
 
550
0304060403010603030306020302060003010621001f0608030106100301060903010601
 
551
03010602030306030303060a050306000501060003010601030106010301060503060609
 
552
03030603030306030301060503010664000a0301000b0101000101010001010100010101
 
553
000b0301000a0608030106100301060b0501060303010601030106020301060403010601
 
554
030106040301060a03010601030106020301060503010601030106030301060203010601
 
555
0301060d0301060103010601030106010301060103010601030106010301060103010600
 
556
030006000301060103010601030106030301060203010601030106020301060003020620
 
557
001f06080301061003010609030106010301060103010601030106010301060103010609
 
558
050606000301060103010602030206030301060003000600030106080301060103010601
 
559
03010601030106010304060203040662000a0301000b0101000101010001010100010101
 
560
000b0301000a0608030106100301060b0501060303010601030106020301060403050604
 
561
0301060b03010605030106050301060103010603030106020305060a0304060203010605
 
562
030106040305060103010600030006000301060103010601030106030301060203050602
 
563
0302060003010620001f0608030106100301060903010601030106020301060403050609
 
564
050106000503060003050604030106020301060203010608030106050301060103010602
 
565
0301060503010664000a0301000b0101000101010001010100010101000b0301000a0609
 
566
0301060e0301060c05010603030106010301060203010604030106080301060d03010603
 
567
030106050301060103010603030106020301060d03010601030106040301060503010602
 
568
030106050301060003000600030106010301060103010603030106020301060603010624
 
569
001f06090301060e0301060a0301060103010604030106020301060d0501060105020600
 
570
030106010301060103010601030106010301060203010608030106050301060103010602
 
571
0301060503010664000a0301000b0101000101010001010100010101000b0301000a060a
 
572
0301060c0301060d05010603030106010301060203010600030106010301060103010604
 
573
0301060a0301060103010602030106000301060303030604030106020301060103010609
 
574
030106010301060103010601030106010301060103010601030106010301060103010600
 
575
0300060003010601030106010301060303010602030106010301060203010624001f060a
 
576
0301060c0301060b03010601030106010301060103010601030106010301060905010602
 
577
050106000301060103010601030106010301060103010602030106080301060103010601
 
578
03010601030106020301060503010664000a0301000b0101000101010001010100010101
 
579
000b0301000a060b0301060a0301060d0503060203010601030106030302060303030603
 
580
03050609030306040302060603010602030506010303060b030206000301060103030603
 
581
030306030303060203010602030106000301060003020602030506010303060203030623
 
582
001f060b0301060a0301060d03030603030306030303060a050106020501060003010601
 
583
0301060203030602030106020301060903030603030306020303060303030663000a0301
 
584
000b0101000101010001010100010101000b0301000a066a03010682001f06ef000a0301
 
585
000b0101000101010001010100010101000b0301000a066703030683001f06ef000a0301
 
586
000b0101000101010001010100010101000b030100ff001a06ef000a0301000b01010001
 
587
01010001010100010101000b030100ff001a060b0301060a0301060c0301060103010619
 
588
030106020301060203010604030306020301060203010611030306040302066a000a0301
 
589
000b0101000101010001010100010101000b030100ff001a060a0301060c0301060b0301
 
590
060103010619030106020301060103030602030106010301060103020600030206130301
 
591
06030301060003010669000a0301000b0101000101010001010100010101000b030100ff
 
592
001a06090301060e0301060a030106010301061903020601030106000301060103010601
 
593
030106010301060103060613030106030301066c000a0301000b01010001010100010101
 
594
00010101000b030100ff001a060803010610030106090301060103010602030306030303
 
595
060a03030600030106000301060103010601030106050306060905030605030106030301
 
596
066c000a0301000b0101000101010001010100010101000b030100ff001a060803010610
 
597
030106090301060103010601030106010301060103010601030106090306060003010601
 
598
03010602030206030301060003000600030106080501060105010604030106020304066a
 
599
000a0301000b0101000101010001010100010101000b030100ff001a0608030106100301
 
600
060903010601030106020301060403050609030106000303060003050604030106020301
 
601
06020301060805050604030106030301066c000a0301000b010100010101000101010001
 
602
0101000b030100ff001a06090301060e0301060a0301060103010604030106020301060d
 
603
030106010302060003010601030106010301060103010601030106020301060805010608
 
604
030106030301066c000a0301000b0101000101010001010100010101000b030100ff001a
 
605
060a0301060c0301060b0301060103010601030106010301060103010601030106090301
 
606
060203010600030106010301060103010601030106010301060203010608050106010501
 
607
0604030106030301066c000a0301000b0101000101010001010100010101000b030100ff
 
608
001a060b0301060a0301060d03030603030306030303060a030106020301060003010601
 
609
0301060203030602030106020301060905030603030506000303066b000a0301000b0101
 
610
000101010001010100010101000b030100ff001a06ef000a0301000b0101000101010001
 
611
010100010101000b030100ff001a06ef000a0301000b0101000101010001010100010101
 
612
000b030100ff001a06ef000a0301000b0101000101010001010100010101000b03010014
 
613
03010023030200050303001d0301000c030200a2060b0301060a0301060c030106010301
 
614
06190301060203010602030106040303060203010602030106100302060803010669000a
 
615
0301000b0101000101010001010100010101000b0301001303030023030100070301001d
 
616
0301000b03010000030100a1060a0301060c0301060b0301060103010619030106020301
 
617
060103030602030106010301060103020600030206110301060803010669000a0301000b
 
618
0101000101010001010100010101000b030100120301000103010022030100070301002b
 
619
030100a406090301060e0301060a03010601030106190302060103010600030106010301
 
620
060103010601030106010306061103010674000a0301000b010100010101000101010001
 
621
0101000b0301001203010001030100020303000303030003030300020305000203040004
 
622
0301000303030002030200000301000a0303000203040003030100050303009a06080301
 
623
0610030106090301060103010602030306030303060a0303060003010600030106010301
 
624
06010301060503060609050306030304060303030669000a0301000b0101000101010001
 
625
010100010101000b03010012030100010301000103010001030100010301000103010001
 
626
030100010301000103010000030000000301000103010001030100030301000203010001
 
627
03010002030100000302000b030100020301000103010001030400020301000103010099
 
628
060803010610030106090301060103010601030106010301060103010601030106090306
 
629
060003010601030106020302060303010600030006000301060805010601050106020301
 
630
06010301060403010669000a0301000b0101000101010001010100010101000b03010012
 
631
030500020301000503010004030500010301000003000000030100010301000103010003
 
632
0301000203050002030200000301000b0301000203010001030100020301000403010001
 
633
030100990608030106100301060903010601030106020301060403050609030106000303
 
634
060003050604030106020301060203010608050106010501060203010601030106040301
 
635
0669000a0301000b0101000101010001010100010101000b030100120301000103010004
 
636
030100050301000203010005030100000300000003010001030100010301000303010002
 
637
030100060301000f03010002030100010301000203010004030100010301009906090301
 
638
060e0301060a0301060103010604030106020301060d0301060103020600030106010301
 
639
060103010601030106010301060203010608050106010501060203010601030106040301
 
640
0669000a0301000b0101000101010001010100010101000b030100120301000103010001
 
641
030100010301000103010001030100010301000103010001030100000300000003010001
 
642
03010001030100030301000203010001030100020301000f030100020301000103010002
 
643
030100040301000103010099060a0301060c0301060b0301060103010601030106010301
 
644
060103010601030106090301060203010600030106010301060103010601030106010301
 
645
0602030106080501060105010602030106010301060403010669000a0301000b01010001
 
646
01010001010100010101000b030100120301000103010002030300030303000303030002
 
647
0301000203010000030100000302000203050001030300020303000c0305000003010001
 
648
03010001030300040303009a060b0301060a0301060d03030603030306030303060a0301
 
649
060203010600030106010301060203030602030106020301060905030602030106000302
 
650
06010301060103010669000a0301000b0101000101010001010100010101000b030100ff
 
651
001a067f0301060103010669000a0301000b0101000101010001010100010101000b0301
 
652
00ff001a06800303066a000a0301000b0101000101010001010100010101000b0301000a
 
653
06ef001f06ef000a0301000b0101000101010001010100010101000b0301000a06090303
 
654
060b0303060905030606030106ba001f060b0301060a0301060c03010601030106190501
 
655
06020501060203010604030306020301060203010688000a0301000b0101000101010001
 
656
010100010101000b0301000a06090301060f0301060a050106070301060c030006ac001f
 
657
060a0301060c0301060b0301060103010619050206000502060103030602030106010301
 
658
06010302060003020688000a0301000b0101000101010001010100010101000b0301000a
 
659
06090301060f0301060a05010615030106ac001f06090301060e0301060a030106010301
 
660
0619050606000301060103010601030106010301060103060688000a0301000b01010001
 
661
01010001010100010101000b0301000a06090301060f0301060a05010605030306030303
 
662
06020305060a030306030303060203010601030106010302060003010602030306030303
 
663
0672001f060803010610030106090301060103010602030306030303060a050606000301
 
664
0601030106010301060503060688000a0301000b0101000101010001010100010101000b
 
665
0301000a06090301060f0301060a050106070301060203010601030106020301060c0301
 
666
060103010601030106010301060103010601030106020301060003020600030106010301
 
667
06010301060103010671001f060803010610030106090301060103010601030106010301
 
668
060103010601030106090501060005000600050106000301060103010602030206030301
 
669
06000300060003010688000a0301000b0101000101010001010100010101000b0301000a
 
670
06090301060f0301060a050106020500060303010603030106050301060d030106040301
 
671
060103010601030106010301060203020600030106000301060503050671001f06080301
 
672
061003010609030106010301060203010604030506090501060205010600030506040301
 
673
06020301060203010688000a0301000b0101000101010001010100010101000b0301000a
 
674
06090301060f0301060a050106010501060303010605030106030301060f030106020301
 
675
0601030106010301060103010602030106040301060503010675001f06090301060e0301
 
676
060a0301060103010604030106020301060d050106020501060003010601030106010301
 
677
0601030106010301060203010688000a0301000b0101000101010001010100010101000b
 
678
0301000a06090301060f0301060a05010601050106030301060203010601030106020301
 
679
060003010609030106010301060103010601030106010301060103010602030106040301
 
680
0601030106010301060103010671001f060a0301060c0301060b03010601030106010301
 
681
060103010601030106010301060905010602050106000301060103010601030106010301
 
682
06010301060203010688000a0301000b0101000101010001010100010101000b0301000a
 
683
06090303060b030306090506060103050601030306040302060b03030603030306030302
 
684
060003010600030306040303060303030672001f060b0301060a0301060d030306030303
 
685
06030303060a05010602050106000301060103010602030306020301060203010688000a
 
686
0301000b0101000101010001010100010101000b0301000a06ef001f06ef000a0301000b
 
687
0101000101010001010100010101000b0301000a06ef001f06ef000a0301000b01010001
 
688
01010001010100010101000b0301000a06ef001f06ef000a0301000b0101000101010001
 
689
010100010101000b0301000a06090303060b0303060a0303060503010635030106330303
 
690
0603030306250301061a001f060b0301060a0301060c0301060103010619050506030301
 
691
0604030306020301060203010688000a0301000b0101000101010001010100010101000b
 
692
0301000a06090301060f0301060c030106050301060c030006270301060c030006270301
 
693
06050301061c030006070301061a001f060a0301060c0301060b03010601030106190500
 
694
060005010600050006020303060203010601030106010302060003020688000a0301000b
 
695
0101000101010001010100010101000b0301000a06090301060f0301060c030106130301
 
696
063503010627030106050301061b03010624001f06090301060e0301060a030106010301
 
697
061b050106030301060103010601030106010301060103060688000a0301000b01010001
 
698
01010001010100010101000b0301000a06090301060f0301060c03010603030306030303
 
699
060203050609050206000501060203030603030206000301060103030603030306020305
 
700
060203030602030206000301060a03030605030106050301060303030603030306030303
 
701
06020305060203030603030306020304060a001f06080301061003010609030106010301
 
702
0602030306030303060c0501060303010601030106010301060503060688000a0301000b
 
703
0101000101010001010100010101000b0301000a06090301060f0301060c030106050301
 
704
060203010601030106020301060d05010600050206000301060103010601030106010301
 
705
0604030106020301060103010602030106040301060103010602030106000302060c0301
 
706
060403010605030106020301060103010601030106010301060503010602030106070301
 
707
060203010601030106010301060103010609001f06080301061003010609030106010301
 
708
06010301060103010601030106010301060b050106030301060103010602030206030301
 
709
06000300060003010688000a0301000b0101000101010001010100010101000b0301000a
 
710
06090301060f0301060c0301060503010603030106050301060d05020600050106000305
 
711
060103010601030106040301060303010605030106040305060203020600030106090304
 
712
060403010605030106020301060103010601030106060304060203010607030106020301
 
713
0601030106010301060103010609001f0608030106100301060903010601030106020301
 
714
06040305060b0501060303050604030106020301060203010688000a0301000b01010001
 
715
01010001010100010101000b0301000a06090301060f0301060c03010605030106050301
 
716
06030301060d050106040301060503010601030106040301060503010603030106040301
 
717
06060301060c030106010301060403010605030106020301060103010601030106050301
 
718
060103010602030106070301060203010601030106010301060103010609001f06090301
 
719
060e0301060a0301060103010604030106020301060f0501060303010601030106010301
 
720
0601030106010301060203010688000a0301000b0101000101010001010100010101000b
 
721
0301000a06090301060f0301060c03010605030106020301060103010602030106000301
 
722
060a05010604030106010301060203040604030106020301060103010602030106000301
 
723
060103010601030106020301060c03010601030106040301060503010602030106010301
 
724
060103010601030106010301060103010602030106000301060403010602030106010301
 
725
06010301060103010609001f060a0301060c0301060b0301060103010601030106010301
 
726
0601030106010301060b0501060303010601030106010301060103010601030106020301
 
727
0688000a0301000b0101000101010001010100010101000b0301000a06090303060b0303
 
728
060a0305060103050601030306040302060a050306040303060603010602030506010303
 
729
060403020603030306020303060c03020600030106010305060103050601030306030303
 
730
060303020600030106020302060303050601030306020301060103010609001f060b0301
 
731
060a0301060d03030603030306030303060b050306020301060103010602030306020301
 
732
060203010688000a0301000b0101000101010001010100010101000b0301000a065f0301
 
733
060103010689001f06ef000a0301000b0101000101010001010100010101000b0301000a
 
734
06600303068a001f06ef000a0301000b0101000101010001010100010101000b0301000a
 
735
06ef001f06ef000a0301000b0101000101010001010100010101000b0301000a06090303
 
736
060b0303060a030306050301064b03030603030306250301063a001f060b0301060a0301
 
737
060c030106010301062b030206040302068a000a0301000b010100010101000101010001
 
738
0101000b0301000a06090301060f0301060c030106050301060c0300060e0500062f0301
 
739
06050301061c030006070301063a001f060a0301060c0301060b030106010301062a0301
 
740
0600030106020301060003010689000a0301000b0101000101010001010100010101000b
 
741
0301000a06090301060f0301060c030106130301060d0501062f030106050301061b0301
 
742
0644001f06090301060e0301060a030106010301062a030106050301068c000a0301000b
 
743
0101000101010001010100010101000b0301000a06090301060f0301060c030106030303
 
744
06030303060203050609050506020303060203050601030106000302060a030306050301
 
745
0605030106030303060303030603030306020305060203030603030306020304062a001f
 
746
060803010610030106090301060103010602030306030303060b05030603030306030301
 
747
06050301068c000a0301000b0101000101010001010100010101000b0301000a06090301
 
748
060f0301060c030106050301060203010601030106020301060d05010604030106010301
 
749
0601030106000300060003010601030106010301060c0301060403010605030106020301
 
750
060103010601030106010301060503010602030106070301060203010601030106010301
 
751
060103010629001f06080301061003010609030106010301060103010601030106010301
 
752
06010301060905010601050106010301060103010601030406020304068a000a0301000b
 
753
0101000101010001010100010101000b0301000a06090301060f0301060c030106050301
 
754
0603030106050301060d0501060403050601030106000300060003010601030106010301
 
755
060903040604030106050301060203010601030106010301060603040602030106070301
 
756
060203010601030106010301060103010629001f06080301061003010609030106010301
 
757
06020301060403050609050106050301060103010602030106050301068c000a0301000b
 
758
0101000101010001010100010101000b0301000a06090301060f0301060c030106050301
 
759
0605030106030301060d0501060403010605030106000300060003010601030106010301
 
760
060803010601030106040301060503010602030106010301060103010605030106010301
 
761
0602030106070301060203010601030106010301060103010629001f06090301060e0301
 
762
060a0301060103010604030106020301060d050106050301060103010602030106050301
 
763
068c000a0301000b0101000101010001010100010101000b0301000a06090301060f0301
 
764
060c03010605030106020301060103010602030106000301060a05010600050106010301
 
765
060103010601030106000300060003010601030106010301060803010601030106040301
 
766
060503010602030106010301060103010601030106010301060103010602030106000301
 
767
06040301060203010601030106010301060103010629001f060a0301060c0301060b0301
 
768
060103010601030106010301060103010601030106090501060105010601030106010301
 
769
0602030106050301068c000a0301000b0101000101010001010100010101000b0301000a
 
770
06090303060b0303060a0305060103050601030306040302060c05020603030306020301
 
771
0602030106010304060a0302060003010601030506010305060103030603030306030302
 
772
0600030106020302060303050601030306020301060103010629001f060b0301060a0301
 
773
060d03030603030306030303060b0503060303030602030306030303068b000a0301000b
 
774
0101000101010001010100010101000b0301000a066803010684001f06ef000a0301000b
 
775
0101000101010001010100010101000b0301000a066703030683001f06ef000a0301000b
 
776
0101000101010001010100010101000b030100ff001a06ef000a0301000b010100010101
 
777
0001010100010101000b030100ff001a060b0301060a0301060c030106010301063b0302
 
778
06040302067a000a0301000b0101000101010001010100010101000b030100ff001a060a
 
779
0301060c0301060b030106010301063a03010600030106020301060003010679000a0301
 
780
000b0101000101010001010100010101000b030100ff001a06090301060e0301060a0301
 
781
06010301063a030106050301067c000a0301000b0101000101010001010100010101000b
 
782
030100ff001a060803010610030106090301060103010602030306030303060a05010600
 
783
05020602030306030303060303030603030106050301067c000a0301000b010100010101
 
784
0001010100010101000b030100ff001a0608030106100301060903010601030106010301
 
785
060103010601030106010301060a05010601050106000301060103010601030106010301
 
786
06010301060103010601030406020304067a000a0301000b010100010101000101010001
 
787
0101000b030100ff001a060803010610030106090301060103010602030106040305060a
 
788
050106010501060003050601030106050301060103010602030106050301067c000a0301
 
789
000b0101000101010001010100010101000b030100ff001a06090301060e0301060a0301
 
790
060103010604030106020301060e05010601050106000301060503010605030106010301
 
791
0602030106050301067c000a0301000b0101000101010001010100010101000b030100ff
 
792
001a060a0301060c0301060b03010601030106010301060103010601030106010301060a
 
793
050106010501060003010601030106010301060103010601030106010301060203010605
 
794
0301067c000a0301000b0101000101010001010100010101000b030100ff001a060b0301
 
795
060a0301060d03030603030306030303060b050406020303060303030603030306020303
 
796
06030303067b000a0301000b0101000101010001010100010101000b030100ff001a0648
 
797
050106a4000a0301000b0101000101010001010100010101000b030100ff001a06470503
 
798
06a3000a0301000b0101000101010001010100010101000b030100ff00ff00150301000b
 
799
0101000101010001010100010101000b030100ff00ff00150301000b0101000101010001
 
800
010100010101000b030100ff00ff00150301000b0101000101010001010100010101000b
 
801
030100ff00ff00150301000b0101000101010001010100010101000b030100ff00ff0015
 
802
0301000b0101000101010001010100010101000b03ff03ff0319000b0101000101010001
 
803
01010001010100ff00ff0031010100010101000101010001010100ff00ff003101010001
 
804
0101000101010001010100ff00ff0031010100010101000101010001010100ff00ff0031
 
805
010100010101000101010001010100ff00ff0031010100010101000101010001010100ff
 
806
00ff0031010100010101000101010001010100ff00ff0031010100010101000101010001
 
807
0101001203030014030200040301000d0301001b0303000d0302000b03020005030100ff
 
808
00a301010001010100010101000101010011030100010301001403010004030100040300
 
809
00070301001d0301000e0301000a0301000003010004030100ff00a30101000101010001
 
810
010100010101001003010002030100140301000a030100270301000e0301000a030100ff
 
811
00ad01010001010100010101000101010010030100060303000203040003030400020303
 
812
000203050002030300030303000205040003030300050301000b03040002030300030301
 
813
0005030300020304000303030003030300ff008b01010001010100010101000101010010
 
814
030100050301000103010001030100010301000103010001030100040301000303010007
 
815
0301000203010001030100010501000105010005030100040301000a0301000103010001
 
816
030100010301000103040005030100020301000103010001030100010301000103010001
 
817
030100ff008a010100010101000101010001010100100301000503010001030100010301
 
818
000103010001030100010301000403010003030100070301000203010001030100010501
 
819
000105010002030400040301000a03010001030100010305000203010007030100020301
 
820
00010301000103050002030100ff008d0101000101010001010100010101001003010002
 
821
030100000301000103010001030100010301000103010001030100040301000303010007
 
822
030100020301000103010001050100010501000103010001030100040301000a03010001
 
823
03010001030100060301000703010002030100010301000103010008030100ff008b0101
 
824
000101010001010100010101001103010001030100000301000103010001030100010301
 
825
000103010001030100040301000303010000030100040301000203010001030100010501
 
826
00010501000103010001030100040301000a030100010301000103010001030100020301
 
827
0007030100020301000103010001030100010301000103010001030100ff008a01010001
 
828
010100010101000101010012030300020303000203010001030100020302000003010001
 
829
030500020302000303050001030300020501000105010002030200000301000103050009
 
830
0302000003010001030300020303000403050000030100010301000203030003030300ff
 
831
008b010100010101000101010001010100ff00ff00310101000101010001010100010101
 
832
00ff00ff00310101000101010001010100010101000808ff08ff00070917000801010001
 
833
01010001010100010101000808ff08ff0007090103030904030109040303090100080101
 
834
000101010001010100010101000808ff08ff000709010301090603010906030109010008
 
835
0101000101010001010100010101000808ff08ff00070901030109060301090603010901
 
836
00080101000101010001010100010101000808ff08ff0007090103010906030109060301
 
837
090100080101000101010001010100010101000808ff08ff000709010301090603010906
 
838
0301090100080101000101010001010100010101000808ff08ff00070901030109060301
 
839
09060301090100080101000101010001010100010101000808ff08ff0007090103010904
 
840
030509040301090100080101000101010001010100010101000808ff08ff000709010301
 
841
0905030309050301090100080101000101010001010100010101000808ff08ff00070901
 
842
03030904030109040303090100080101000101010001010100010101000808ff08ff0007
 
843
091700080101000101010001010100010101000808ff08ff000709170008010100010101
 
844
000101010001010100ff00ff0031010100010101000101010001010100ff00ff00310101
 
845
00010101000101010001010100ff00ff0031010100010101000101010001010100ff00ff
 
846
0031010100010101000101010001010100ff00ff00310101000101010001010100010101
 
847
00ff00ff0031010100010101000101010001010100ff00ff003101010001010100010101
 
848
0001010100ff00ff0031010100010101000101010001010100ff00ff0031010100010101
 
849
000101010001010100ff00ff0031010100010101000101010001010100ff00ff00310101
 
850
00010101000101010001010100ff00ff003101010001010100010101000101010080093f
 
851
00b7093f00780101000101010001010100010101008009190a0209020502090105010918
 
852
00b70909030309220303090a00780101000101010001010100010101008009180a010900
 
853
0a010902050109010501091800b7090803010901030109230301090a0078010100010101
 
854
0001010100010101008009170a0109020a010901050109000501091900b7090703010902
 
855
030109230301090a00780101000101010001010100010101008009170a0109020a010901
 
856
050109000501091900b7090703010906030309020304090303030903030309050301090a
 
857
00780101000101010001010100010101008009170a0109020a0109010503091a00b70907
 
858
03010909030109010301090103010901030109010301090103010901030109040301090a
 
859
00780101000101010001010100010101008009170a0109020a0109010501090005010919
 
860
030700af09070301090603040901030109010301090103010905030509040301090a0307
 
861
00700101000101010001010100010101008009170a0109020a0109010501090005010919
 
862
030700af0907030109020301090003010901030109010301090103010901030109050301
 
863
09080301090a030700700101000101010001010100010101008009180a0109000a010902
 
864
0501090105010918030700af090803010901030109000301090103010901030109010301
 
865
0901030109010301090103010901030109040301090a0307007001010001010100010101
 
866
00010101008009190a0209020502090105010918030700af090903030902030209000301
 
867
090003010901030109020303090303030903030509080307007001010001010100010101
 
868
000101010080093f030700af093f0307007001010001010100010101000101010080093f
 
869
030700af093f0307007001010001010100010101000101010088033f00b7033f00700101
 
870
0001010100010101000101010088033f00b7033f00700101000101010001010100010101
 
871
0088033f00b7033f007001010001010100010101000101010088033f00b7033f00700101
 
872
0001010100010101000101010088033f00b7033f00700101000101010001010100010101
 
873
0088033f00b7033f0070010100010101000101010001010100ff00ff0031010100010101
 
874
000101010001010100ff00ff0031010100010101000101010001010100ff00ff00310101
 
875
00010101000101010001010100ff00ff0031010100010101000101010001010100ff00ff
 
876
0031010100010101000101010001010100ff00ff00310101000101010001010100010101
 
877
00ff00ff0031010100010101000101010001010100ff00ff003101010001010100010101
 
878
0001010100ff00ff0031010100010101000101010001010100ff00ff0031010100010101
 
879
00010101000101ff01ff0135000101010001010100ff00ff003901010001010100ff00ff
 
880
00390101000101ff01ff013d00ff00ff003f00ff00ff003f00ff00ff003f00ff00ff003f
 
881
 
 
882
%%EndData
 
883
end
 
884
%%PageTrailer
 
885
%%Trailer
 
886
%%BoundingBox: 0 0 575 251
 
887
%%EOF