]> git.uio.no Git - u/mrichter/AliRoot.git/blame - Euclid/its5+6_conv.ps
Add SHLD variable required by general macros
[u/mrichter/AliRoot.git] / Euclid / its5+6_conv.ps
CommitLineData
fe4da5cc 1%!PS-Adobe-3.0
2%%Creator: (ImageMagick)
3%%Title: (its5+6_conv.ps)
4%%CreationDate: (Sat Mar 13 17:26:02 1999)
5%%BoundingBox: 0 132 595 709
6%%DocumentData: Clean7Bit
7%%LanguageLevel: 1
8%%Orientation: Portrait
9%%PageOrder: Ascend
10%%Pages: 1
11%%EndComments
12
13%%BeginDefaults
14%%PageOrientation: Portrait
15%%EndDefaults
16
17%%BeginProlog
18%
19% Display a color image. The image is displayed in color on
20% Postscript viewers or printers that support color, otherwise
21% it is displayed as grayscale.
22%
23/buffer 512 string def
24/byte 1 string def
25/color_packet 3 string def
26/pixels 768 string def
27
28/DirectClassPacket
29{
30 %
31 % Get a DirectClass packet.
32 %
33 % Parameters:
34 % red.
35 % green.
36 % blue.
37 % length: number of pixels minus one of this color (optional).
38 %
39 currentfile color_packet readhexstring pop pop
40 compression 0 gt
41 {
42 /number_pixels 3 def
43 }
44 {
45 currentfile byte readhexstring pop 0 get
46 /number_pixels exch 1 add 3 mul def
47 } ifelse
48 0 3 number_pixels 1 sub
49 {
50 pixels exch color_packet putinterval
51 } for
52 pixels 0 number_pixels getinterval
53} bind def
54
55/DirectClassImage
56{
57 %
58 % Display a DirectClass image.
59 %
60 systemdict /colorimage known
61 {
62 columns rows 8
63 [
64 columns 0 0
65 rows neg 0 rows
66 ]
67 { DirectClassPacket } false 3 colorimage
68 }
69 {
70 %
71 % No colorimage operator; convert to grayscale.
72 %
73 columns rows 8
74 [
75 columns 0 0
76 rows neg 0 rows
77 ]
78 { GrayDirectClassPacket } image
79 } ifelse
80} bind def
81
82/GrayDirectClassPacket
83{
84 %
85 % Get a DirectClass packet; convert to grayscale.
86 %
87 % Parameters:
88 % red
89 % green
90 % blue
91 % length: number of pixels minus one of this color (optional).
92 %
93 currentfile color_packet readhexstring pop pop
94 color_packet 0 get 0.299 mul
95 color_packet 1 get 0.587 mul add
96 color_packet 2 get 0.114 mul add
97 cvi
98 /gray_packet exch def
99 compression 0 gt
100 {
101 /number_pixels 1 def
102 }
103 {
104 currentfile byte readhexstring pop 0 get
105 /number_pixels exch 1 add def
106 } ifelse
107 0 1 number_pixels 1 sub
108 {
109 pixels exch gray_packet put
110 } for
111 pixels 0 number_pixels getinterval
112} bind def
113
114/GrayPseudoClassPacket
115{
116 %
117 % Get a PseudoClass packet; convert to grayscale.
118 %
119 % Parameters:
120 % index: index into the colormap.
121 % length: number of pixels minus one of this color (optional).
122 %
123 currentfile byte readhexstring pop 0 get
124 /offset exch 3 mul def
125 /color_packet colormap offset 3 getinterval def
126 color_packet 0 get 0.299 mul
127 color_packet 1 get 0.587 mul add
128 color_packet 2 get 0.114 mul add
129 cvi
130 /gray_packet exch def
131 compression 0 gt
132 {
133 /number_pixels 1 def
134 }
135 {
136 currentfile byte readhexstring pop 0 get
137 /number_pixels exch 1 add def
138 } ifelse
139 0 1 number_pixels 1 sub
140 {
141 pixels exch gray_packet put
142 } for
143 pixels 0 number_pixels getinterval
144} bind def
145
146/PseudoClassPacket
147{
148 %
149 % Get a PseudoClass packet.
150 %
151 % Parameters:
152 % index: index into the colormap.
153 % length: number of pixels minus one of this color (optional).
154 %
155 currentfile byte readhexstring pop 0 get
156 /offset exch 3 mul def
157 /color_packet colormap offset 3 getinterval def
158 compression 0 gt
159 {
160 /number_pixels 3 def
161 }
162 {
163 currentfile byte readhexstring pop 0 get
164 /number_pixels exch 1 add 3 mul def
165 } ifelse
166 0 3 number_pixels 1 sub
167 {
168 pixels exch color_packet putinterval
169 } for
170 pixels 0 number_pixels getinterval
171} bind def
172
173/PseudoClassImage
174{
175 %
176 % Display a PseudoClass image.
177 %
178 % Parameters:
179 % class: 0-PseudoClass or 1-Grayscale.
180 %
181 currentfile buffer readline pop
182 token pop /class exch def pop
183 class 0 gt
184 {
185 currentfile buffer readline pop
186 token pop /depth exch def pop
187 /grays columns 8 add depth sub depth mul 8 idiv string def
188 columns rows depth
189 [
190 columns 0 0
191 rows neg 0 rows
192 ]
193 { currentfile grays readhexstring pop } image
194 }
195 {
196 %
197 % Parameters:
198 % colors: number of colors in the colormap.
199 % colormap: red, green, blue color packets.
200 %
201 currentfile buffer readline pop
202 token pop /colors exch def pop
203 /colors colors 3 mul def
204 /colormap colors string def
205 currentfile colormap readhexstring pop pop
206 systemdict /colorimage known
207 {
208 columns rows 8
209 [
210 columns 0 0
211 rows neg 0 rows
212 ]
213 { PseudoClassPacket } false 3 colorimage
214 }
215 {
216 %
217 % No colorimage operator; convert to grayscale.
218 %
219 columns rows 8
220 [
221 columns 0 0
222 rows neg 0 rows
223 ]
224 { GrayPseudoClassPacket } image
225 } ifelse
226 } ifelse
227} bind def
228
229/DisplayImage
230{
231 %
232 % Display a DirectClass or PseudoClass image.
233 %
234 % Parameters:
235 % x & y translation.
236 % x & y scale.
237 % label pointsize.
238 % image label.
239 % image columns & rows.
240 % class: 0-DirectClass or 1-PseudoClass.
241 % compression: 0-RunlengthEncodedCompression or 1-NoCompression.
242 % hex color packets.
243 %
244 gsave
245 currentfile buffer readline pop
246 token pop /x exch def
247 token pop /y exch def pop
248 x y translate
249 currentfile buffer readline pop
250 token pop /x exch def
251 token pop /y exch def pop
252 currentfile buffer readline pop
253 token pop /pointsize exch def pop
254 /Helvetica findfont pointsize scalefont setfont
255 x y scale
256 currentfile buffer readline pop
257 token pop /columns exch def
258 token pop /rows exch def pop
259 currentfile buffer readline pop
260 token pop /class exch def pop
261 currentfile buffer readline pop
262 token pop /compression exch def pop
263 class 0 gt { PseudoClassImage } { DirectClassImage } ifelse
264 grestore
265 showpage
266} bind def
267%%EndProlog
268%%Page: 1 1
269%%PageBoundingBox: 0 132 595 709
270%%BeginData:
271DisplayImage
2720 132
273595.000000 577.000000
27412
275796 772
2761
2770
2780
2798
280c808c8
28108c8c8
282f8f8f8
28330f0f0
2840000f8
28500f800
286000000
287f800f8
288000000000000000000000000000000000000000000000000000000000000000000000000
289000000000000000000000000000000000000000000000000000000000000000000000000
290000000000000000000000000000000000000000000000000000000000000000000000000
291000000000000000000000000000000000000000000000000000000000000000000000000
292000000000000000000000000000000000000000000000000000000000000000000000000
293000000000000000000000000000000000000000000000000000000000000000000000000
294000000000000000000000000000000000000000000000000000000000000000000000000
295000000000000000000000000000000000000000000000000000000000000000000000000
296000000000000000000000000000000000000000000000000000000000000000000000000
297000000000000000000000000000000000000000000000000000000000000000000000000
298000000000000000000000000000000000000000000000000000000000000000000000000
299000000000000000000000000000000000000000000000000000000000000000000000000
300000000000000000000000000000000000000000000000000000000000000000000000000
301000000000000000000000000000000000000000000000000000000000000000000000000
302000000000000000000000000000000000000000000000000000000000000000000000000
303000000000000000000000000000000000000000000000000000000000000000000000000
304000000000000000000000000000000000000000000000000000000000000000000000000
305000000000000000000000000000000000000000000000000000000000000000000000000
306000000000000000000000000000000000000000000000000000000000000000000000000
307000000000000000000000000000000000000000000000000000000000000000000000000
308000000000000000000000000000000000000000000000000000000000000000000000000
309000000000000000000000000000000000000000000000000000000000000000000000000
310000000000000000000000000000000000000000000000000000000000000000000000000
311000000000000000000000000000000000000000000000000000000000000000000000000
312000000000000000000000000000000000000000000000000000000000000000000000000
313000000000000000000000000000000000000000000000000000000000000000000000000
314000000000000000000000000000000000000000000000000000000000000000000000000
315000000000000000000000000000000000000000000000000000000000000000000000000
316000000000000000000000000000000000000000000000000000000000000000000000000
317000000000000000000000000000000000000000000000000000000000000000000000000
318000000000000000000000000000000000000000000000000000000000000000000000000
319000000000000000000000000000000000000000000000000000000000000000000000000
320000000000000000000000000000000000000000000000000000000000000000000000000
321000000000000000000000000000000000000000000000000000000000000000000000000
322000000000000000000000000000000000000000000000000000000000000000000000000
323000000000000000000000000000000000000000000000000000000000000000000000000
324000000000000000000000000000000000000000000000000000000000000000000000000
325000000000000000000000000000000000000000000000000000000000000000000000000
326000000000000000000000000000000000000000000000000000000000000000000000000
327000000000000000000000000000000000000000000000000000000000000000000000000
328000000000000000000000000000000000000000000000000000000000000000000000000
329000000000000000000000000000000000000000000000000000000000000000000000000
330000000000000000000000000000000000000000000000000000000000000000000000000
331000000000000000000000000000000000000000000000000000000000000000000000000
332000000000000000000000000000000000000000000000000000000000000000000000000
333000000000000000000000000000000000000000000000000000000000000000000000000
334000000000000000000000000000000000000000000000000000000000000000000000000
335000000000000000000000000000000000000000000000000000000000000000000000000
336000000000000000000000000000000000000000000000000000000000000000000000000
337000000000000000000000000000000000000000000000000000000000000000000000000
338000000000000000000000000000000000000000000000000000000000000000000000000
339000000000000000000000000000000000000000000000000000000000000000000000000
340000000000000000000000000000000000000000000000000000000000000000000000000
341000000000000000000000000000000000000000000000000000000000000000000000000
342000000000000000000000000000000000000000000000000000000000000000000000000
343000000000000000000000000000000000000000000000000000000000000000000000000
344000000000000000000000000000000000000000000000000000000000000000000000000
345000000000000000000000000000000000000000000000000000000000000000000000000
346000000000000000000000000000000000000000000000000000000000000000000000000
347000000000000000000000000000000000000000000000000000000000000000000000000
348000000000000000000000000000000000000000000000000000000000000000000000000
349000000000000000000000000000000000000000000000000000000000000000000000000
350000000000000000000000000000000000000000000000000000000000000000000000000
351000000000000000000000000000000000000000000000000000000000000000000000000
352000000000000000000000000000000000000000000000000000000000000000000000000
353000000000000000000000000000000000000000000000000000000000000000000000000
354000000000000000000000000000000000000000000000000000000000000000000000000
355000000000000000000000000000000000000000000000000000000000000000000000000
356000000000000000000000000000000000000000000000000000000000000000000000000
357000000000000000000000000000000000000000000000000000000000000000000000000
358000000000000000000000000000000000000000000000000000000000000000000000000
359000000000000000000000000000000000000000000000000000000000000000000000000
360000000000000000000000000000000000000000000000000000000000000000000000000
361000000000000000000000000000000000000000000000000000000000000000000000000
362000000000000000000000000000000000000000000000000000000000000000000000000
363000000000000000000000000000000000000000000000000000000000000000000000000
364000000000000000000000000000000000000000000000000000000000000000000000000
365000000000000000000000000000000000000000000000000000000000000000000000000
366000000000000000000000000000000000000000000000000000000000000000000000000
367000000000000000000000000000000000000000000000000000000000000000000000000
368000000000000000000000000000000000000000000000000000000000000000000000000
369000000000000000000000000000000000000000000000000000000000000000000000000
370000000000000000000000000000000000000000000000000000000000000000000000000
371000000000000000000000000000000000000000000000000000000000000000000000000
372000000000000000000000000000000000000000000000000000000000000000000000000
373000000000000000000000000000000000000000000000000000000000000000000000000
374000000000000000000000000000000000000000000000000000000000000000000000000
375000000000000000000000000000000000000000000000000000000000000000000000000
376000000000000000000000000000001000000000002000200020002000200020002000200
377020002000200020002000200020002000200020002000200020002000200020002000200
378020002000200020002000200020002000200020002000200020002000200020002000200
379020002000200020002000200020002000200020002000200020002000200020002000200
380020002000200020002000200020002000200020002000200020002000200020002000200
381020002000200020002000200020002000200020002000200020002000200020002000200
382020002000200020002000200020002000200020002000200020002000200020002000200
383020002000200020002000200020002000200020002000200020002000200020002000200
384020002000200020002000200020002000200020002000200020002000200020002000200
385020002000200020002000200020002000200020002000200020002000200020002000200
386020002000200020002000200020002000200020002000200020002000200020002000200
387020002000200020002000200020002000200020002000200020002000200020002000200
388020002000200020002000200020002000200020002000200020002000200020002000200
389020002000200020002000200020002000200020002000200020002000200020002000200
390020002000200020002000200020002000200020002000200020002000200020002000200
391020002000200020002000200020002000200020002000200020002000200020002000200
392020002000200020002000200020002000200020002000200020002000200020002000200
393020002000200020002000200020002000200020002000200020002000200020002000200
394020002000200020002000200020002000200020002000200020002000200020002000200
395020002000200020002000200020002000200020002000200020002000200020002000200
396020002000200020002000200020002000200020002000200020002000200020002000200
397020002000200020002000200020002000200020002000200020002000200020002000200
398020002000200020002000200020002000200020002000200020002000200020002000200
399020002000200020002000200020002000200020002000200020002000200020002000200
400020002000200020002000200020002000200020002000200020002000200020002000200
401020002000200020002000200020002000200020002000200020002000200020002000200
402020002000200020002000200020002000200020002000200020002000200020002000200
403020002000200020002000200020002000200020002000200020002000200020002000200
404020002000200020002000200020002000200020002000200020002000200020002000200
405020002000200020002000200020002000200020002000200020002000200020002000200
406020002000200020002000200020002000200020002000200020002000200020002000200
407020002000200020002000200020002000200020002000200020002000200020002000200
408020002000200020002000200020002000200020002000200020002000200020002000200
409020002000200020002000200020002000200020002000200020002000200020002000200
410020002000200020002000200020002000200020002000200020002000200020002000200
411020002000200020002000200020002000200020002000200020002000200020002000200
412020002000200020002000200020002000200020002000200020002000200020002000200
413020002000200020002000200020002000200020002000200020002000200020002000200
414020002000200020002000200020002000200020002000200020002000200020002000200
415020002000200020002000200020002000200020002000200020002000200020002000200
416020002000200020002000200020002000200020002000200020002000200020002000200
417020002000200020002000200020002000200020002000200020002000200020002000200
418020002000200020002000200020002000200020002000200020002000200020002000200
419020002000200020002000200020002000200020002000200020002000200020002000200
420020002000200020002000200020002000200030001000100000000000200020002000200
421020002000200020002000200020002000200020002000200020002000200020002000200
422020002000200020002000200020002000200020002000200020002000200020002000200
423020002000200020002000200020002000200020002000200020002000200020002000200
424020002000200020002000200020002000200020002000200020002000200020002000200
425020002000200020002000200020002000200020002000200020002000200020002000200
426020002000200020002000200020002000200020002000200020002000200020002000200
427020002000200020002000200020002000200020002000200020002000200020002000200
428020002000200020002000200020002000200020002000200020002000200020002000200
429020002000200020002000200020002000200020002000200020002000200020002000200
430020002000200020002000200020002000200020002000200020002000200020002000200
431020002000200020002000200020002000200020002000200020002000200020002000200
432020002000200020002000200020002000200020002000200020002000200020002000200
433020002000200020002000200020002000200020002000200020002000200020002000200
434020002000200020002000200020002000200020002000200020002000200020002000200
435020002000200020002000200020002000200020002000200020002000200020002000200
436020002000200020002000200020002000200020002000200020002000200020002000200
437020002000200020002000200020002000200020002000200020002000200020002000200
438020002000200020002000200020002000200020002000200020002000200020002000200
439020002000200020002000200020002000200020002000200020002000200020002000200
440020002000200020002000200020002000200020002000200020002000200020002000200
441020002000200020002000200020002000200020002000200020002000200020002000200
442020002000200020002000200020002000200020002000200020002000200020002000200
443020002000200020002000200020002000200020002000200020002000200020002000200
444020002000200020002000200020002000200020002000200020002000200020002000200
445020002000200020002000200020002000200020002000200020002000200020002000200
446020002000200020002000200020002000200020002000200020002000200020002000200
447020002000200020002000200020002000200020002000200020002000200020002000200
448020002000200020002000200020002000200020002000200020002000200020002000200
449020002000200020002000200020002000200020002000200020002000200020002000200
450020002000200020002000200020002000200020002000200020002000200020002000200
451020002000200020002000200020002000200020002000200020002000200020002000200
452020002000200020002000200020002000200020002000200020002000200020002000200
453020002000200020002000200020002000200020002000200020002000200020002000200
454020002000200020002000200020002000200020002000200020002000200020002000200
455020002000200020002000200020002000200020002000200020002000200020002000200
456020002000200020002000200020002000200020002000200020002000200020002000200
457020002000200020002000200020002000200020002000200020002000200020002000200
458020002000200020002000200020002000200020002000200020002000200020002000200
459020002000200020002000200020002000200020002000200020002000200020002000200
460020002000200020002000200020002000200020002000200020002000200020002000200
461020002000200020002000200020002000200020002000200020002000200020002000200
462020002000200020002000200020002000200020002000200020002000200020002000200
463020002000200020002000200020002000200020002000200020002000200020002000200
464020002000200020002000200020002000200020002000200020003000100010000000000
465020002000200020002000200020002000200020002000200020002000200020002000200
466020002000200020002000200020002000200020002000200020002000200020002000200
467020002000200020002000200020002000200020002000200020002000200020002000200
468020002000200020002000200020002000200020002000200020002000200020002000200
469020002000200020002000200020002000200020002000200020002000200020002000200
470020002000200020002000200020002000200020002000200020002000200020002000200
471020002000200020002000200020002000200020002000200020002000200020002000200
472020002000200020002000200020002000200020002000200020002000200020002000200
473020002000200020002000200020002000200020002000200020002000200020002000200
474020002000200020002000200020002000200020002000200020002000200020002000200
475020002000200020002000200020002000200020002000200020002000200020002000200
476020002000200020002000200020002000200020002000200020002000200020002000200
477020002000200020002000200020002000200020002000200020002000200020002000200
478020002000200020002000200020002000200020002000200020002000200020002000200
479020002000200020002000200020002000200020002000200020002000200020002000200
480020002000200020002000200020002000200020002000200020002000200020002000200
481020002000200020002000200020002000200020002000200020002000200020002000200
482020002000200020002000200020002000200020002000200020002000200020002000200
483020002000200020002000200020002000200020002000200020002000200020002000200
484020002000200020002000200020002000200020002000200020002000200020002000200
485020002000200020002000200020002000200020002000200020002000200020002000200
486020002000200020002000200020002000200020002000200020002000200020002000200
487020002000200020002000200020002000200020002000200020002000200020002000200
488020002000200020002000200020002000200020002000200020002000200020002000200
489020002000200020002000200020002000200020002000200020002000200020002000200
490020002000200020002000200020002000200020002000200020002000200020002000200
491020002000200020002000200020002000200020002000200020002000200020002000200
492020002000200020002000200020002000200020002000200020002000200020002000200
493020002000200020002000200020002000200020002000200020002000200020002000200
494020002000200020002000200020002000200020002000200020002000200020002000200
495020002000200020002000200020002000200020002000200020002000200020002000200
496020002000200020002000200020002000200020002000200020002000200020002000200
497020002000200020002000200020002000200020002000200020002000200020002000200
498020002000200020002000200020002000200020002000200020002000200020002000200
499020002000200020002000200020002000200020002000200020002000200020002000200
500020002000200020002000200020002000200020002000200020002000200020002000200
501020002000200020002000200020002000200020002000200020002000200020002000200
502020002000200020002000200020002000200020002000200020002000200020002000200
503020002000200020002000200020002000200020002000200020002000200020002000200
504020002000200020002000200020002000200020002000200020002000200020002000200
505020002000200020002000200020002000200020002000200020002000200020002000200
506020002000200020002000200020002000200020002000200020002000200020002000200
507020002000200020002000200020002000200020002000200020002000200020002000200
508020002000200020002000200020002000200020002000200020002000200020002000300
509010001000000000002000200020002000200020002000200020002000200020002000200
510020002000200020002000200020002000200020002000200020002000200020002000200
511020002000200020002000200020002000200020002000200020002000200020002000200
512020002000200020002000200020002000200020002000200020002000200020002000200
513020002000200020002000200020002000200020002000200020002000200020002000200
514020002000200020002000200020002000200020002000200020002000200020002000200
515020002000200020002000200020002000200020002000200020002000200020002000200
516020002000200020002000200020002000200020002000200020002000200020002000200
517020002000200020002000200020002000200020002000200020002000200020002000200
518020002000200020002000200020002000200020002000200020002000200020002000200
519020002000200020002000200020002000200020002000200020002000200020002000200
520020002000200020002000200020002000200020002000200020002000200020002000200
521020002000200020002000200020002000200020002000200020002000200020002000200
522020002000200020002000200020002000200020002000200020002000200020002000200
523020002000200020002000200020002000200020002000200020002000200020002000200
524020002000200020002000200020002000200020002000200020002000200020002000200
525020002000200020002000200020002000200020002000200020002000200020002000200
526020002000200020002000200020002000200020002000200020002000200020002000200
527020002000200020002000200020002000200020002000200020002000200020002000200
528020002000200020002000200020002000200020002000200020002000200020002000200
529020002000200020002000200020002000200020002000200020002000200020002000200
530020002000200020002000200020002000200020002000200020002000200020002000200
531020002000200020002000200020002000200020002000200020002000200020002000200
532020002000200020002000200020002000200020002000200020002000200020002000200
533020002000200020002000200020002000200020002000200020002000200020002000200
534020002000200020002000200020002000200020002000200020002000200020002000200
535020002000200020002000200020002000200020002000200020002000200020002000200
536020002000200020002000200020002000200020002000200020002000200020002000200
537020002000200020002000200020002000200020002000200020002000200020002000200
538020002000200020002000200020002000200020002000200020002000200020002000200
539020002000200020002000200020002000200020002000200020002000200020002000200
540020002000200020002000200020002000200020002000200020002000200020002000200
541020002000200020002000200020002000200020002000200020002000200020002000200
542020002000200020002000200020002000200020002000200020002000200020002000200
543020002000200020002000200020002000200020002000200020002000200020002000200
544020002000200020002000200020002000200020002000200020002000200020002000200
545020002000200020002000200020002000200020002000200020002000200020002000200
546020002000200020002000200020002000200020002000200020002000200020002000200
547020002000200020002000200020002000200020002000200020002000200020002000200
548020002000200020002000200020002000200020002000200020002000200020002000200
549020002000200020002000200020002000200020002000200020002000200020002000200
550020002000200020002000200020002000200020002000200020002000200020002000200
551020002000200020002000200020002000200020002000200020002000200020002000200
552020002000200020002000200020002000200020002000200020002000200020002000200
553020002000200030001000100000000000200020002000200020002000200020002000200
554020002000200020002000200020002000200020002000200020002000200020002000200
555020002000200020002000200020002000200020002000200020002000200020002000200
556020002000200020002000200020002000200020002000200020002000200020002000200
557020002000200020002000200020002000200020002000200020002000200020002000200
558020002000200020002000200020002000200020002000200020002000200020002000200
559020002000200020002000200020002000200020002000200020002000200020002000200
560020002000200020002000200020002000200020002000200020002000200020002000200
561020002000200020002000200020002000200020002000200020002000200020002000200
562020002000200020002000200020002000200020002000200020002000200020002000200
563020002000200020002000200020002000200020002000200020002000200020002000200
564020002000200020002000200020002000200020002000200020002000200020002000200
565020002000200020002000200020002000200020002000200020002000200020002000200
566020002000200020002000200020002000200020002000200020002000200020002000200
567020002000200020002000200020002000200020002000200020002000200020002000200
568020002000200020002000200020002000200020002000200020002000200020002000200
569020002000200020002000200020002000200020002000200020002000200020002000200
570020002000200020002000200020002000200020002000200020002000200020002000200
571020002000200020002000200020002000200020002000200020002000200020002000200
572020002000200020002000200020002000200020002000200020002000200020002000200
573020002000200020002000200020002000200020002000200020002000200020002000200
574020002000200020002000200020002000200020002000200020002000200020002000200
575020002000200020002000200020002000200020002000200020002000200020002000200
576020002000200020002000200020002000200020002000200020002000200020002000200
577020002000200020002000200020002000200020002000200020002000200020002000200
578020002000200020002000200020002000200020002000200020002000200020002000200
579020002000200020002000200020002000200020002000200020002000200020002000200
580020002000200020002000200020002000200020002000200020002000200020002000200
581020002000200020002000200020002000200020002000200020002000200020002000200
582020002000200020002000200020002000200020002000200020002000200020002000200
583020002000200020002000200020002000200020002000200020002000200020002000200
584020002000200020002000200020002000200020002000200020002000200020002000200
585020002000200020002000200020002000200020002000200020002000200020002000200
586020002000200020002000200020002000200020002000200020002000200020002000200
587020002000200020002000200020002000200020002000200020002000200020002000200
588020002000200020002000200020002000200020002000200020002000200020002000200
589020002000200020002000200020002000200020002000200020002000200020002000200
590020002000200020002000200020002000200020002000200020002000200020002000200
591020002000200020002000200020002000200020002000200020002000200020002000200
592020002000200020002000200020002000200020002000200020002000200020002000200
593020002000200020002000200020002000200020002000200020002000200020002000200
594020002000200020002000200020002000200020002000200020002000200020002000200
595020002000200020002000200020002000200020002000200020002000200020002000200
596020002000200020002000200020002000200020002000200020002000200020002000200
597020002000200020002000200020003000100010000000000020002000200020002000200
598020002000200020002000200020002000200020002000200020002000200020002000200
599020002000200020002000200020002000200020002000200020002000200020002000200
600020002000200020002000200020002000200020002000200020002000200020002000200
601020002000200020002000200020002000200020002000200020002000200020002000200
602020002000200020002000200020002000200020002000200020002000200020002000200
603020002000200020002000200020002000200020002000200020002000200020002000200
604020002000200020002000200020002000200020002000200020002000200020002000200
605020002000200020002000200020002000200020002000200020002000200020002000200
606020002000200020002000200020002000200020002000200020002000200020002000200
607020002000200020002000200020002000200020002000200020002000200020002000200
608020002000200020002000200020002000200020002000200020002000200020002000200
609020002000200020002000200020002000200020002000200020002000200020002000200
610020002000200020002000200020002000200020002000200020002000200020002000200
611020002000200020002000200020002000200020002000200020002000200020002000200
612020002000200020002000200020002000200020002000200020002000200020002000200
613020002000200020002000200020002000200020002000200020002000200020002000200
614020002000200020002000200020002000200020002000200020002000200020002000200
615020002000200020002000200020002000200020002000200020002000200020002000200
616020002000200020002000200020002000200020002000200020002000200020002000200
617020002000200020002000200020002000200020002000200020002000200020002000200
618020002000200020002000200020002000200020002000200020002000200020002000200
619020002000200020002000200020002000200020002000200020002000200020002000200
620020002000200020002000200020002000200020002000200020002000200020002000200
621020002000200020002000200020002000200020002000200020002000200020002000200
622020002000200020002000200020002000200020002000200020002000200020002000200
623020002000200020002000200020002000200020002000200020002000200020002000200
624020002000200020002000200020002000200020002000200020002000200020002000200
625020002000200020002000200020002000200020002000200020002000200020002000200
626020002000200020002000200020002000200020002000200020002000200020002000200
627020002000200020002000200020002000200020002000200020002000200020002000200
628020002000200020002000200020002000200020002000200020002000200020002000200
629020002000200020002000200020002000200020002000200020002000200020002000200
630020002000200020002000200020002000200020002000200020002000200020002000200
631020002000200020002000200020002000200020002000200020002000200020002000200
632020002000200020002000200020002000200020002000200020002000200020002000200
633020002000200020002000200020002000200020002000200020002000200020002000200
634020002000200020002000200020002000200020002000200020002000200020002000200
635020002000200020002000200020002000200020002000200020002000200020002000200
636020002000200020002000200020002000200020002000200020002000200020002000200
637020002000200020002000200020002000200020002000200020002000200020002000200
638020002000200020002000200020002000200020002000200020002000200020002000200
639020002000200020002000200020002000200020002000200020002000200020002000200
640020002000200020002000200020002000200020002000200020002000200020002000200
641020002000200020002000200020002000200020002000300010001000000000002000200
642020002000200020002000200020002000200020002000200020002000200020002000200
643020002000200020002000200020002000200020002000200020002000200020002000200
644020002000200020002000200020002000200020002000200020002000200020002000200
645020002000200020002000200020002000200020002000200020002000200020002000200
646020002000200020002000200020002000200020002000200020002000200020002000200
647020002000200020002000200020002000200020002000200020002000200020002000200
648020002000200020002000200020002000200020002000200020002000200020002000200
649020002000200020002000200020002000200020002000200020002000200020002000200
650020002000200020002000200020002000200020002000200020002000200020002000200
651020002000200020002000200020002000200020002000200020002000200020002000200
652020002000200020002000200020002000200020002000200020002000200020002000200
653020002000200020002000200020002000200020002000200020002000200020002000200
654020002000200020002000200020002000200020002000200020002000200020002000200
655020002000200020002000200020002000200020002000200020002000200020002000200
656020002000200020002000200020002000200020002000200020002000200020002000200
657020002000200020002000200020002000200020002000200020002000200020002000200
658020002000200020002000200020002000200020002000200020002000200020002000200
659020002000200020002000200020002000200020002000200020002000200020002000200
660020002000200020002000200020002000200020002000200020002000200020002000200
661020002000200020002000200020002000200020002000200020002000200020002000200
662020002000200020002000200020002000200020002000200020002000200020002000200
663020002000200020002000200020002000200020002000200020002000200020002000200
664020002000200020002000200020002000200020002000200020002000200020002000200
665020002000200020002000200020002000200020002000200020002000200020002000200
666020002000200020002000200020002000200020002000200020002000200020002000200
667020002000200020002000200020002000200020002000200020002000200020002000200
668020002000200020002000200020002000200020002000200020002000200020002000200
669020002000200020002000200020002000200020002000200020002000200020002000200
670020002000200020002000200020002000200020002000200020002000200020002000200
671020002000200020002000200020002000200020002000200020002000200020002000200
672020002000200020002000200020002000200020002000200020002000200020002000200
673020002000200020002000200020002000200020002000200020002000200020002000200
674020002000200020002000200020002000200020002000200020002000200020002000200
675020002000200020002000200020002000200020002000200020002000200020002000200
676020002000200020002000200020002000200020002000200020002000200020002000200
677020002000200020002000200020002000200020002000200020002000200020002000200
678020002000200020002000200020002000200020002000200020002000200020002000200
679020002000200020002000200020002000200020002000200020002000200020002000200
680020002000200020002000200020002000200020002000200020002000200020002000200
681020002000200020002000200020002000200020002000200020002000200020002000200
682020002000200020002000200020002000200020002000200020002000200020002000200
683020002000200020002000200020002000200020002000200020002000200020002000200
684020002000200020002000200020002000200020002000200020002000200020002000200
685020002000200020002000200020002000200020002000200020002000200030001000100
686000000000200020002000200020002000200020002000200020002000200020002000200
687020002000200020002000200020002000200020002000200020002000200020002000200
688020002000200020002000200020002000200020002000200020002000200020002000200
689020002000200020002000200020002000200020002000200020002000200020002000200
690020002000200020002000200020002000200020002000200020002000200020002000200
691020002000200020002000200020002000200020002000200020002000200020002000200
692020002000200020002000200020002000200020002000200020002000200020002000200
693020002000200020002000200020002000200020002000200020002000200020002000200
694020002000200020002000200020002000200020002000200020002000200020002000200
695020002000200020002000200020002000200020002000200020002000200020002000200
696020002000200020002000200020002000200020002000200020002000200020002000200
697020002000200020002000200020002000200020002000200020002000200020002000200
698020002000200020002000200020002000200020002000200020002000200020002000200
699020002000200020002000200020002000200020002000200020002000200020002000200
700020002000200020002000200020002000200020002000200020002000200020002000200
701020002000200020002000200020002000200020002000200020002000200020002000200
702020002000200020002000200020002000200020002000200020002000200020002000200
703020002000200020002000200020002000200020002000200020002000200020002000200
704020002000200020002000200020002000200020002000200020002000200020002000200
705020002000200020002000200020002000200020002000200020002000200020002000200
706020002000200020002000200020002000200020002000200020002000200020002000200
707020002000200020002000200020002000200020002000200020002000200020002000200
708020002000200020002000200020002000200020002000200020002000200020002000200
709020002000200020002000200020002000200020002000200020002000200020002000200
710020002000200020002000200020002000200020002000200020002000200020002000200
711020002000200020002000200020002000200020002000200020002000200020002000200
712020002000200020002000200020002000200020002000200020002000200020002000200
713020002000200020002000200020002000200020002000200020002000200020002000200
714020002000200020002000200020002000200020002000200020002000200020002000200
715020002000200020002000200020002000200020002000200020002000200020002000200
716020002000200020002000200020002000200020002000200020002000200020002000200
717020002000200020002000200020002000200020002000200020002000200020002000200
718020002000200020002000200020002000200020002000200020002000200020002000200
719020002000200020002000200020002000200020002000200020002000200020002000200
720020002000200020002000200020002000200020002000200020002000200020002000200
721020002000200020002000200020002000200020002000200020002000200020002000200
722020002000200020002000200020002000200020002000200020002000200020002000200
723020002000200020002000200020002000200020002000200020002000200020002000200
724020002000200020002000200020002000200020002000200020002000200020002000200
725020002000200020002000200020002000200020002000200020002000200020002000200
726020002000200020002000200020002000200020002000200020002000200020002000200
727020002000200020002000200020002000200020002000200020002000200020002000200
728020002000200020002000200020002000200020002000200020002000200020002000200
729020002000200020002000200020002000200020002000200020002000200020002000200
730020003000100010000000000020002000200020002000200020002000200020002000200
731020002000200020002000200020002000200020002000200020002000200020002000200
732020002000200020002000200020002000200020002000200020002000200020002000200
733020002000200020002000200020002000200020002000200020002000200020002000200
734020002000200020002000200020002000200020002000200020002000200020002000200
735020002000200020002000200020002000200020002000200020002000200020002000200
736020002000200020002000200020002000200020002000200020002000200020002000200
737020002000200020002000200020002000200020002000200020002000200020002000200
738020002000200020002000200020002000200020002000200020002000200020002000200
739020002000200020002000200020002000200020002000200020002000200020002000200
740020002000200020002000200020002000200020002000200020002000200020002000200
741020002000200020002000200020002000200020002000200020002000200020002000200
742020002000200020002000200020002000200020002000200020002000200020002000200
743020002000200020002000200020002000200020002000200020002000200020002000200
744020002000200020002000200020002000200020002000200020002000200020002000200
745020002000200020002000200020002000200020002000200020002000200020002000200
746020002000200020002000200020002000200020002000200020002000200020002000200
747020002000200020002000200020002000200020002000200020002000200020002000200
748020002000200020002000200020002000200020002000200020002000200020002000200
749020002000200020002000200020002000200020002000200020002000200020002000200
750020002000200020002000200020002000200020002000200020002000200020002000200
751020002000200020002000200020002000200020002000200020002000200020002000200
752020002000200020002000200020002000200020002000200020002000200020002000200
753020002000200020002000200020002000200020002000200020002000200020002000200
754020002000200020002000200020002000200020002000200020002000200020002000200
755020002000200020002000200020002000200020002000200020002000200020002000200
756020002000200020002000200020002000200020002000200020002000200020002000200
757020002000200020002000200020002000200020002000200020002000200020002000200
758020002000200020002000200020002000200020002000200020002000200020002000200
759020002000200020002000200020002000200020002000200020002000200020002000200
760020002000200020002000200020002000200020002000200020002000200020002000200
761020002000200020002000200020002000200020002000200020002000200020002000200
762020002000200020002000200020002000200020002000200020002000200020002000200
763020002000200020002000200020002000200020002000200020002000200020002000200
764020002000200020002000200020002000200020002000200020002000200020002000200
765020002000200020002000200020002000200020002000200020002000200020002000200
766020002000200020002000200020002000200020002000200020002000200020002000200
767020002000200020002000200020002000200020002000200020002000200020002000200
768020002000200020002000200020002000200020002000200020002000200020002000200
769020002000200020002000200020002000200020002000200020002000200020002000200
770020002000200020002000200020002000200020002000200020002000200020002000200
771020002000200020002000200020002000200020002000200020002000200020002000200
772020002000200020002000200020002000200020002000200020002000200020002000200
773020002000200020002000200020002000200020002000200020002000200020002000200
774020002000200020002000300010001000000000002000200020002000200020002000200
775020002000200020002000200020002000200020002000200020002000200020002000200
776020002000200020002000200020002000200020002000200020002000200020002000200
777020002000200020002000200020002000200020002000200020002000200020002000200
778020002000200020002000200020002000200020002000200020002000200020002000200
779020002000200020002000200020002000200020002000200020002000200020002000200
780020002000200020002000200020002000200020002000200020002000200020002000200
781020002000200020002000200020002000200020002000200020002000200020002000200
782020002000200020002000200020002000200020002000200020002000200020002000200
783020002000200020002000200020002000200020002000200020002000200020002000200
784020002000200020002000200020002000200020002000200020002000200020002000200
785020002000200020002000200020002000200020002000200020002000200020002000200
786020002000200020002000200020002000200020002000200020002000200020002000200
787020002000200020002000200020002000200020002000200020002000200020002000200
788020002000200020002000200020002000200020002000200020002000200020002000200
789020002000200020002000200020002000200020002000200020002000200020002000200
790020002000200020002000200020002000200020002000200020002000200020002000200
791020002000200020002000200020002000200020002000200020002000200020002000200
792020002000200020002000200020002000200020002000200020002000200020002000200
793020002000200020002000200020002000200020002000200020002000200020002000200
794020002000200020002000200020002000200020002000200020002000200020002000200
795020002000200020002000200020002000200020002000200020002000200020002000200
796020002000200020002000200020002000200020002000200020002000200020002000200
797020002000200020002000200020002000200020002000200020002000200020002000200
798020002000200020002000200020002000200020002000200020002000200020002000200
799020002000200020002000200020002000200020002000200020002000200020002000200
800020002000200020002000200020002000200020002000200020002000200020002000200
801020002000200020002000200020002000200020002000200020002000200020002000200
802020002000200020002000200020002000200020002000200020002000200020002000200
803020002000200020002000200020002000200020002000200020002000200020002000200
804020002000200020002000200020002000200020002000200020002000200020002000200
805020002000200020002000200020002000200020002000200020002000200020002000200
806020002000200020002000200020002000200020002000200020002000200020002000200
807020002000200020002000200020002000200020002000200020002000200020002000200
808020002000200020002000200020002000200020002000200020002000200020002000200
809020002000200020002000200020002000200020002000200020002000200020002000200
810020002000200020002000200020002000200020002000200020002000200020002000200
811020002000200020002000200020002000200020002000200020002000200020002000200
812020002000200020002000200020002000200020002000200020002000200020002000200
813020002000200020002000200020002000200020002000200020002000200020002000200
814020002000200020002000200020002000200020002000200020002000200020002000200
815020002000200020002000200020002000200020002000200020002000200020002000200
816020002000200020002000200020002000200020002000200020002000200020002000200
817020002000200020002000200020002000200020002000200020002000200020002000200
818020002000200020002000200020002000200030001000100000000000200020002000200
819020002000200020002000200020002000200020002000200020002000200020002000200
820020002000200020002000200020002000200020002000200020002000200020002000200
821020002000200020002000200020002000200020002000200020002000200020002000200
822020002000200020002000200020002000200020002000200020002000200020002000200
823020002000200020002000200020002000200020002000200020002000200020002000200
824020002000200020002000200020002000200020002000200020002000200020002000200
825020002000200020002000200020002000200020002000200020002000200020002000200
826020002000200020002000200020002000200020002000200020002000200020002000200
827020002000200020002000200020002000200020002000200020002000200020002000200
828020002000200020002000200020002000200020002000200020002000200020002000200
829020002000200020002000200020002000200020002000200020002000200020002000200
830020002000200020002000200020002000200020002000200020002000200020002000200
831020002000200020002000200020002000200020002000200020002000200020002000200
832020002000200020002000200020002000200020002000200020002000200020002000200
833020002000200020002000200020002000200020002000200020002000200020002000200
834020002000200020002000200020002000200020002000200020002000200020002000200
835020002000200020002000200020002000200020002000200020002000200020002000200
836020002000200020002000200020002000200020002000200020002000200020002000200
837020002000200020002000200020002000200020002000200020002000200020002000200
838020002000200020002000200020002000200020002000200020002000200020002000200
839020002000200020002000200020002000200020002000200020002000200020002000200
840020002000200020002000200020002000200020002000200020002000200020002000200
841020002000200020002000200020002000200020002000200020002000200020002000200
842020002000200020002000200020002000200020002000200020002000200020002000200
843020002000200020002000200020002000200020002000200020002000200020002000200
844020002000200020002000200020002000200020002000200020002000200020002000200
845020002000200020002000200020002000200020002000200020002000200020002000200
846020002000200020002000200020002000200020002000200020002000200020002000200
847020002000200020002000200020002000200020002000200020002000200020002000200
848020002000200020002000200020002000200020002000200020002000200020002000200
849020002000200020002000200020002000200020002000200020002000200020002000200
850020002000200020002000200020002000200020002000200020002000200020002000200
851020002000200020002000200020002000200020002000200020002000200020002000200
852020002000200020002000200020002000200020002000200020002000200020002000200
853020002000200020002000200020002000200020002000200020002000200020002000200
854020002000200020002000200020002000200020002000200020002000200020002000200
855020002000200020002000200020002000200020002000200020002000200020002000200
856020002000200020002000200020002000200020002000200020002000200020002000200
857020002000200020002000200020002000200020002000200020002000200020002000200
858020002000200020002000200020002000200020002000200020002000200020002000200
859020002000200020002000200020002000200020002000200020002000200020002000200
860020002000200020002000200020002000200020002000200020002000200020002000200
861020002000200020002000200020002000200020002000200020002000200020002000200
862020002000200020002000200020002000200020002000200020003000100010000000000
863020002000200020002000200020002000200020002000200020002000200020002000200
864020002000200020002000200020002000200020002000200020002000200020002000200
865020002000200020002000200020002000200020002000200020002000200020002000200
866020002000200020002000200020002000200020002000200020002000200020002000200
867020002000200020002000200020002000200020002000200020002000200020002000200
868020002000200020002000200020002000200020002000200020002000200020002000200
869020002000200020002000200020002000200020002000200020002000200020002000200
870020002000200020002000200020002000200020002000200020002000200020002000200
871020002000200020002000200020002000200020002000200020002000200020002000200
872020002000200020002000200020002000200020002000200020002000200020002000200
873020002000200020002000200020002000200020002000200020002000200020002000200
874020002000200020002000200020002000200020002000200020002000200020002000200
875020002000200020002000200020002000200020002000200020002000200020002000200
876020002000200020002000200020002000200020002000200020002000200020002000200
877020002000200020002000200020002000200020002000200020002000200020002000200
878020002000200020002000200020002000200020002000200020002000200020002000200
879020002000200020002000200020002000200020002000200020002000200020002000200
880020002000200020002000200020002000200020002000200020002000200020002000200
881020002000200020002000200020002000200020002000200020002000200020002000200
882020002000200020002000200020002000200020002000200020002000200020002000200
883020002000200020002000200020002000200020002000200020002000200020002000200
884020002000200020002000200020002000200020002000200020002000200020002000200
885020002000200020002000200020002000200020002000200020002000200020002000200
886020002000200020002000200020002000200020002000200020002000200020002000200
887020002000200020002000200020002000200020002000200020002000200020002000200
888020002000200020002000200020002000200020002000200020002000200020002000200
889020002000200020002000200020002000200020002000200020002000200020002000200
890020002000200020002000200020002000200020002000200020002000200020002000200
891020002000200020002000200020002000200020002000200020002000200020002000200
892020002000200020002000200020002000200020002000200020002000200020002000200
893020002000200020002000200020002000200020002000200020002000200020002000200
894020002000200020002000200020002000200020002000200020002000200020002000200
895020002000200020002000200020002000200020002000200020002000200020002000200
896020002000200020002000200020002000200020002000200020002000200020002000200
897020002000200020002000200020002000200020002000200020002000200020002000200
898020002000200020002000200020002000200020002000200020002000200020002000200
899020002000200020002000200020002000200020002000200020002000200020002000200
900020002000200020002000200020002000200020002000200020002000200020002000200
901020002000200020002000200020002000200020002000200020002000200020002000200
902020002000200020002000200020002000200020002000200020002000200020002000200
903020002000200020002000200020002000200020002000200020002000200020002000200
904020002000200020002000200020002000200020002000200020002000200020002000200
905020002000200020002000200020002000200020002000200020002000200020002000200
906020002000200020002000200020002000200020002000200020002000200020002000300
907010001000000000002000200020002000200020002000200020002000200020002000200
908020002000200020002000200020002000200020002000200020002000200020002000200
909020002000200020002000200020002000200020002000200020002000200020002000200
910020002000200020002000200020002000200020002000200020002000200020002000200
911020002000200020002000200020002000200020002000200020002000200020002000200
912020002000200020002000200020002000200020002000200020002000200020002000200
913020002000200020002000200020002000200020002000200020002000200020002000200
914020002000200020002000200020002000200020002000200020002000200020002000200
915020002000200020002000200020002000200020002000200020002000200020002000200
916020002000200020002000200020002000200020002000200020002000200020002000200
917020002000200020002000200020002000200020002000200020002000200020002000200
918020002000200020002000200020002000200020002000200020002000200020002000200
919020002000200020002000200020002000200020002000200020002000200020002000200
920020002000200020002000200020002000200020002000200020002000200020002000200
921020002000200020002000200020002000200020002000200020002000200020002000200
922020002000200020002000200020002000200020002000200020002000200020002000200
923020002000200020002000200020002000200020002000200020002000200020002000200
924020002000200020002000200020002000200020002000200020002000200020002000200
925020002000200020002000200020002000200020002000200020002000200020002000200
926020002000200020002000200020002000200020002000200020002000200020002000200
927020002000200020002000200020002000200020002000200020002000200020002000200
928020002000200020002000200020002000200020002000200020002000200020002000200
929020002000200020002000200020002000200020002000200020002000200020002000200
930020002000200020002000200020002000200020002000200020002000200020002000200
931020002000200020002000200020002000200020002000200020002000200020002000200
932020002000200020002000200020002000200020002000200020002000200020002000200
933020002000200020002000200020002000200020002000200020002000200020002000200
934020002000200020002000200020002000200020002000200020002000200020002000200
935020002000200020002000200020002000200020002000200020002000200020002000200
936020002000200020002000200020002000200020002000200020002000200020002000200
937020002000200020002000200020002000200020002000200020002000200020002000200
938020002000200020002000200020002000200020002000200020002000200020002000200
939020002000200020002000200020002000200020002000200020002000200020002000200
940020002000200020002000200020002000200020002000200020002000200020002000200
941020002000200020002000200020002000200020002000200020002000200020002000200
942020002000200020002000200020002000200020002000200020002000200020002000200
943020002000200020002000200020002000200020002000200020002000200020002000200
944020002000200020002000200020002000200020002000200020002000200020002000200
945020002000200020002000200020002000200020002000200020002000200020002000200
946020002000200020002000200020002000200020002000200020002000200020002000200
947020002000200020002000200020002000200020002000200020002000200020002000200
948020002000200020002000200020002000200020002000200020002000200020002000200
949020002000200020002000200020002000200020002000200020002000200020002000200
950020002000200020002000200020002000200020002000200020002000200020002000200
951020002000200030001000100000000000200020002000200020002000200020002000200
952020002000200020002000200020002000200020002000200020002000200020002000200
953020002000200020002000200020002000200020002000200020002000200020002000200
954020002000200020002000200020002000200020002000200020002000200020002000200
955020002000200020002000200020002000200020002000200020002000200020002000200
956020002000200020002000200020002000200020002000200020002000200020002000200
957020002000200020002000200020002000200020002000200020002000200020002000200
958020002000200020002000200020002000200020002000200020002000200020002000200
959020002000200020002000200020002000200020002000200020002000200020002000200
960020002000200020002000200020002000200020002000200020002000200020002000200
961020002000200020002000200020002000200020002000200020002000200020002000200
962020002000200020002000200020002000200020002000200020002000200020002000200
963020002000200020002000200020002000200020002000200020002000200020002000200
964020002000200020002000200020002000200020002000200020002000200020002000200
965020002000200020002000200020002000200020002000200020002000200020002000200
966020002000200020002000200020002000200020002000200020002000200020002000200
967020002000200020002000200020002000200020002000200020002000200020002000200
968020002000200020002000200020002000200020002000200020002000200020002000200
969020002000200020002000200020002000200020002000200020002000200020002000200
970020002000200020002000200020002000200020002000200020002000200020002000200
971020002000200020002000200020002000200020002000200020002000200020002000200
972020002000200020002000200020002000200020002000200020002000200020002000200
973020002000200020002000200020002000200020002000200020002000200020002000200
974020002000200020002000200020002000200020002000200020002000200020002000200
975020002000200020002000200020002000200020002000200020002000200020002000200
976020002000200020002000200020002000200020002000200020002000200020002000200
977020002000200020002000200020002000200020002000200020002000200020002000200
978020002000200020002000200020002000200020002000200020002000200020002000200
979020002000200020002000200020002000200020002000200020002000200020002000200
980020002000200020002000200020002000200020002000200020002000200020002000200
981020002000200020002000200020002000200020002000200020002000200020002000200
982020002000200020002000200020002000200020002000200020002000200020002000200
983020002000200020002000200020002000200020002000200020002000200020002000200
984020002000200020002000200020002000200020002000200020002000200020002000200
985020002000200020002000200020002000200020002000200020002000200020002000200
986020002000200020002000200020002000200020002000200020002000200020002000200
987020002000200020002000200020002000200020002000200020002000200020002000200
988020002000200020002000200020002000200020002000200020002000200020002000200
989020002000200020002000200020002000200020002000200020002000200020002000200
990020002000200020002000200020002000200020002000200020002000200020002000200
991020002000200020002000200020002000200020002000200020002000200020002000200
992020002000200020002000200020002000200020002000200020002000200020002000200
993020002000200020002000200020002000200020002000200020002000200020002000200
994020002000200020002000200020002000200020002000200020002000200020002000200
995020002000200020002000200020003000100010000000000020002000200020002000200
996020002000200020002000200020002000200020002000200020002000200020002000200
997020002000200020002000200020002000200020002000200020002000200020002000200
998020002000200020002000200020002000200020002000200020002000200020002000200
999020002000200020002000200020002000200020002000200020002000200020002000200
1000020002000200020002000200020002000200020002000200020002000200020002000200
1001020002000200020002000200020002000200020002000200020002000200020002000200
1002020002000200020002000200020002000200020002000200020002000200020002000200
1003020002000200020002000200020002000200020002000200020002000200020002000200
1004020002000200020002000200020002000200020002000200020002000200020002000200
1005020002000200020002000200020002000200020002000200020002000200020002000200
1006020002000200020002000200020002000200020002000200020002000200020002000200
1007020002000200020002000200020002000200020002000200020002000200020002000200
1008020002000200020002000200020002000200020002000200020002000200020002000200
1009020002000200020002000200020002000200020002000200020002000200020002000200
1010020002000200020002000200020002000200020002000200020002000200020002000200
1011020002000200020002000200020002000200020002000200020002000200020002000200
1012020002000200020002000200020002000200020002000200020002000200020002000200
1013020002000200020002000200020002000200020002000200020002000200020002000200
1014020002000200020002000200020002000200020002000200020002000200020002000200
1015020002000200020002000200020002000200020002000200020002000200020002000200
1016020002000200020002000200020002000200020002000200020002000200020002000200
1017020002000200020002000200020002000200020002000200020002000200020002000200
1018020002000200020002000200020002000200020002000200020002000200020002000200
1019020002000200020002000200020002000200020002000200020002000200020002000200
1020020002000200020002000200020002000200020002000200020002000200020002000200
1021020002000200020002000200020002000200020002000200020002000200020002000200
1022020002000200020002000200020002000200020002000200020002000200020002000200
1023020002000200020002000200020002000200020002000200020002000200020002000200
1024020002000200020002000200020002000200020002000200020002000200020002000200
1025020002000200020002000200020002000200020002000200020002000200020002000200
1026020002000200020002000200020002000200020002000200020002000200020002000200
1027020002000200020002000200020002000200020002000200020002000200020002000200
1028020002000200020002000200020002000200020002000200020002000200020002000200
1029020002000200020002000200020002000200020002000200020002000200020002000200
1030020002000200020002000200020002000200020002000200020002000200020002000200
1031020002000200020002000200020002000200020002000200020002000200020002000200
1032020002000200020002000200020002000200020002000200020002000200020002000200
1033020002000200020002000200020002000200020002000200020002000200020002000200
1034020002000200020002000200020002000200020002000200020002000200020002000200
1035020002000200020002000200020002000200020002000200020002000200020002000200
1036020002000200020002000200020002000200020002000200020002000200020002000200
1037020002000200020002000200020002000200020002000200020002000200020002000200
1038020002000200020002000200020002000200020002000200020002000200020002000200
1039020002000200020002000200020002000200020002000300010001000000000002000200
1040020002000200020002000200020002000200020002000200020002000200020002000200
1041020002000200020002000200020002000200020002000200020002000200020002000200
1042020002000200020002000200020002000200020002000200020002000200020002000200
1043020002000200020002000200020002000200020002000200020002000200020002000200
1044020002000200020002000200020002000200020002000200020002000200020002000200
1045020002000200020002000200020002000200020002000200020002000200020002000200
1046020002000200020002000200020002000200020002000200020002000200020002000200
1047020002000200020002000200020002000200020002000200020002000200020002000200
1048020002000200020002000200020002000200020002000200020002000200020002000200
1049020002000200020002000200020002000200020002000200020002000200020002000200
1050020002000200020002000200020002000200020002000200020002000200020002000200
1051020002000200020002000200020002000200020002000200020002000200020002000200
1052020002000200020002000200020002000200020002000200020002000200020002000200
1053020002000200020002000200020002000200020002000200020002000200020002000200
1054020002000200020002000200020002000200020002000200020002000200020002000200
1055020002000200020002000200020002000200020002000200020002000200020002000200
1056020002000200020002000200020002000200020002000200020002000200020002000200
1057020002000200020002000200020002000200020002000200020002000200020002000200
1058020002000200020002000200020002000200020002000200020002000200020002000200
1059020002000200020002000200020002000200020002000200020002000200020002000200
1060020002000200020002000200020002000200020002000200020002000200020002000200
1061020002000200020002000200020002000200020002000200020002000200020002000200
1062020002000200020002000200020002000200020002000200020002000200020002000200
1063020002000200020002000200020002000200020002000200020002000200020002000200
1064020002000200020002000200020002000200020002000200020002000200020002000200
1065020002000200020002000200020002000200020002000200020002000200020002000200
1066020002000200020002000200020002000200020002000200020002000200020002000200
1067020002000200020002000200020002000200020002000200020002000200020002000200
1068020002000200020002000200020002000200020002000200020002000200020002000200
1069020002000200020002000200020002000200020002000200020002000200020002000200
1070020002000200020002000200020002000200020002000200020002000200020002000200
1071020002000200020002000200020002000200020002000200020002000200020002000200
1072020002000200020002000200020002000200020002000200020002000200020002000200
1073020002000200020002000200020002000200020002000200020002000200020002000200
1074020002000200020002000200020002000200020002000200020002000200020002000200
1075020002000200020002000200020002000200020002000200020002000200020002000200
1076020002000200020002000200020002000200020002000200020002000200020002000200
1077020002000200020002000200020002000200020002000200020002000200020002000200
1078020002000200020002000200020002000200020002000200020002000200020002000200
1079020002000200020002000200020002000200020002000200020002000200020002000200
1080020002000200020002000200020002000200020002000200020002000200020002000200
1081020002000200020002000200020002000200020002000200020002000200020002000200
1082020002000200020002000200020002000200020002000200020002000200020002000200
1083020002000200020002000200020002000200020002000200020002000200030001000100
1084000000000200020002000200020002000200020002000200020002000200020002000200
1085020002000200020002000200020002000200020002000200020002000200020002000200
1086020002000200020002000200020002000200020002000200020002000200020002000200
1087020002000200020002000200020002000200020002000200020002000200020002000200
1088020002000200020002000200020002000200020002000200020002000200020002000200
1089020002000200020002000200020002000200020002000200020002000200020002000200
1090020002000200020002000200020002000200020002000200020002000200020002000200
1091020002000200020002000200020002000200020002000200020002000200020002000200
1092020002000200020002000200020002000200020002000200020002000200020002000200
1093020002000200020002000200020002000200020002000200020002000200020002000200
1094020002000200020002000200020002000200020002000200020002000200020002000200
1095020002000200020002000200020002000200020002000200020002000200020002000200
1096020002000200020002000200020002000200020002000200020002000200020002000200
1097020002000200020002000200020002000200020002000200020002000200020002000200
1098020002000200020002000200020002000200020002000200020002000200020002000200
1099020002000200020002000200020002000200020002000200020002000200020002000200
1100020002000200020002000200020002000200020002000200020002000200020002000200
1101020002000200020002000200020002000200020002000200020002000200020002000200
1102020002000200020002000200020002000200020002000200020002000200020002000200
1103020002000200020002000200020002000200020002000200020002000200020002000200
1104020002000200020002000200020002000200020002000200020002000200020002000200
1105020002000200020002000200020002000200020002000200020002000200020002000200
1106020002000200020002000200020002000200020002000200020002000200020002000200
1107020002000200020002000200020002000200020002000200020002000200020002000200
1108020002000200020002000200020002000200020002000200020002000200020002000200
1109020002000200020002000200020002000200020002000200020002000200020002000200
1110020002000200020002000200020002000200020002000200020002000200020002000200
1111020002000200020002000200020002000200020002000200020002000200020002000200
1112020002000200020002000200020002000200020002000200020002000200020002000200
1113020002000200020002000200020002000200020002000200020002000200020002000200
1114020002000200020002000200020002000200020002000200020002000200020002000200
1115020002000200020002000200020002000200020002000200020002000200020002000200
1116020002000200020002000200020002000200020002000200020002000200020002000200
1117020002000200020002000200020002000200020002000200020002000200020002000200
1118020002000200020002000200020002000200020002000200020002000200020002000200
1119020002000200020002000200020002000200020002000200020002000200020002000200
1120020002000200020002000200020002000200020002000200020002000200020002000200
1121020002000200020002000200020002000200020002000200020002000200020002000200
1122020002000200020002000200020002000200020002000200020002000200020002000200
1123020002000200020002000200020002000200020002000200020002000200020002000200
1124020002000200020002000200020002000200020002000200020002000200020002000200
1125020002000200020002000200020002000200020002000200020002000200020002000200
1126020002000200020002000200020002000200020002000200020002000200020002000200
1127020002000200020002000200020002000200020002000200020002000200020002000200
1128020003000100010000000000020002000200020002000200020002000200020002000200
1129020002000200020002000200020002000200020002000200020002000200020002000200
1130020002000200020002000200020002000200020002000200020002000200020002000200
1131020002000200020002000200020002000200020002000200020002000200020002000200
1132020002000200020002000200020002000200020002000200020002000200020002000200
1133020002000200020002000200020002000200020002000200020002000200020002000200
1134020002000200020002000200020002000200020002000200020002000200020002000200
1135020002000200020002000200020002000200020002000200020002000200020002000200
1136020002000200020002000200020002000200020002000200020002000200020002000200
1137020002000200020002000200020002000200020002000200020002000200020002000200
1138020002000200020002000200020002000200020002000200020002000200020002000200
1139020002000200020002000200020002000200020002000200020002000200020002000200
1140020002000200020002000200020002000200020002000200020002000200020002000200
1141020002000200020002000200020002000200020002000200020002000200020002000200
1142020002000200020002000200020002000200020002000200020002000200020002000200
1143020002000200020002000200020002000200020002000200020002000200020002000200
1144020002000200020002000200020002000200020002000200020002000200020002000200
1145020002000200020002000200020002000200020002000200020002000200020002000200
1146020002000200020002000200020002000200020002000200020002000200020002000200
1147020002000200020002000200020002000200020002000200020002000200020002000200
1148020002000200020002000200020002000200020002000200020002000200020002000200
1149020002000200020002000200020002000200020002000200020002000200020002000200
1150020002000200020002000200020002000200020002000200020002000200020002000200
1151020002000200020002000200020002000200020002000200020002000200020002000200
1152020002000200020002000200020002000200020002000200020002000200020002000200
1153020002000200020002000200020002000200020002000200020002000200020002000200
1154020002000200020002000200020002000200020002000200020002000200020002000200
1155020002000200020002000200020002000200020002000200020002000200020002000200
1156020002000200020002000200020002000200020002000200020002000200020002000200
1157020002000200020002000200020002000200020002000200020002000200020002000200
1158020002000200020002000200020002000200020002000200020002000200020002000200
1159020002000200020002000200020002000200020002000200020002000200020002000200
1160020002000200020002000200020002000200020002000200020002000200020002000200
1161020002000200020002000200020002000200020002000200020002000200020002000200
1162020002000200020002000200020002000200020002000200020002000200020002000200
1163020002000200020002000200020002000200020002000200020002000200020002000200
1164020002000200020002000200020002000200020002000200020002000200020002000200
1165020002000200020002000200020002000200020002000200020002000200020002000200
1166020002000200020002000200020002000200020002000200020002000200020002000200
1167020002000200020002000200020002000200020002000200020002000200020002000200
1168020002000200020002000200020002000200020002000200020002000200020002000200
1169020002000200020002000200020002000200020002000200020002000200020002000200
1170020002000200020002000200020002000200020002000200020002000200020002000200
1171020002000200020002000200020002000200020002000200020002000200020002000200
1172020002000200020002000300010001000000000002000200020002000200020002000200
1173020002000200020002000200020002000200020002000200020002000200020002000200
1174020002000200020002000200020002000200020002000200020002000200020002000200
1175020002000200020002000200020002000200020002000200020002000200020002000200
1176020002000200020002000200020002000200020002000200020002000200020002000200
1177020002000200020002000200020002000200020002000200020002000200020002000200
1178020002000200020002000200020002000200020002000200020002000200020002000200
1179020002000200020002000200020002000200020002000200020002000200020002000200
1180020002000200020002000200020002000200020002000200020002000200020002000200
1181020002000200020002000200020002000200020002000200020002000200020002000200
1182020002000200020002000200020002000200020002000200020002000200020002000200
1183020002000200020002000200020002000200020002000200020002000200020002000200
1184020002000200020002000200020002000200020002000200020002000200020002000200
1185020002000200020002000200020002000200020002000200020002000200020002000200
1186020002000200020002000200020002000200020002000200020002000200020002000200
1187020002000200020002000200020002000200020002000200020002000200020002000200
1188020002000200020002000200020002000200020002000200020002000200020002000200
1189020002000200020002000200020002000200020002000200020002000200020002000200
1190020002000200020002000200020002000200020002000200020002000200020002000200
1191020002000200020002000200020002000200020002000200020002000200020002000200
1192020002000200020002000200020002000200020002000200020002000200020002000200
1193020002000200020002000200020002000200020002000200020002000200020002000200
1194020002000200020002000200020002000200020002000200020002000200020002000200
1195020002000200020002000200020002000200020002000200020002000200020002000200
1196020002000200020002000200020002000200020002000200020002000200020002000200
1197020002000200020002000200020002000200020002000200020002000200020002000200
1198020002000200020002000200020002000200020002000200020002000200020002000200
1199020002000200020002000200020002000200020002000200020002000200020002000200
1200020002000200020002000200020002000200020002000200020002000200020002000200
1201020002000200020002000200020002000200020002000200020002000200020002000200
1202020002000200020002000200020002000200020002000200020002000200020002000200
1203020002000200020002000200020002000200020002000200020002000200020002000200
1204020002000200020002000200020002000200020002000200020002000200020002000200
1205020002000200020002000200020002000200020002000200020002000200020002000200
1206020002000200020002000200020002000200020002000200020002000200020002000200
1207020002000200020002000200020002000200020002000200020002000200020002000200
1208020002000200020002000200020002000200020002000200020002000200020002000200
1209020002000200020002000200020002000200020002000200020002000200020002000200
1210020002000200020002000200020002000200020002000200020002000200020002000200
1211020002000200020002000200020002000200020002000200020002000200020002000200
1212020002000200020002000200020002000200020002000200020002000200020002000200
1213020002000200020002000200020002000200020002000200020002000200020002000200
1214020002000200020002000200020002000200020002000200020002000200020002000200
1215020002000200020002000200020002000200020002000200020002000200020002000200
1216020002000200020002000200020002000200030001000100000000000200020002000200
1217020002000200020002000200020002000200020002000200020002000200020002000200
1218020002000200020002000200020002000200020002000200020002000200020002000200
1219020002000200020002000200020002000200020002000200020002000200020002000200
1220020002000200020002000200020002000200020002000200020002000200020002000200
1221020002000200020002000200020002000200020002000200020002000200020002000200
1222020002000200020002000200020002000200020002000200020002000200020002000200
1223020002000200020002000200020002000200020002000200020002000200020002000200
1224020002000200020002000200020002000200020002000200020002000200020002000200
1225020002000200020002000200020002000200020002000200020002000200020002000200
1226020002000200020002000200020002000200020002000200020002000200020002000200
1227020002000200020002000200020002000200020002000200020002000200020002000200
1228020002000200020002000200020002000200020002000200020002000200020002000200
1229020002000200020002000200020002000200020002000200020002000200020002000200
1230020002000200020002000200020002000200020002000200020002000200020002000200
1231020002000200020002000200020002000200020002000200020002000200020002000200
1232020002000200020002000200020002000200020002000200020002000200020002000200
1233020002000200020002000200020002000200020002000200020002000200020002000200
1234020002000200020002000200020002000200020002000200020002000200020002000200
1235020002000200020002000200020002000200020002000200020002000200020002000200
1236020002000200020002000200020002000200020002000200020002000200020002000200
1237020002000200020002000200020002000200020002000200020002000200020002000200
1238020002000200020002000200020002000200020002000200020002000200020002000200
1239020002000200020002000200020002000200020002000200020002000200020002000200
1240020002000200020002000200020002000200020002000200020002000200020002000200
1241020002000200020002000200020002000200020002000200020002000200020002000200
1242020002000200020002000200020002000200020002000200020002000200020002000200
1243020002000200020002000200020002000200020002000200020002000200020002000200
1244020002000200020002000200020002000200020002000200020002000200020002000200
1245020002000200020002000200020002000200020002000200020002000200020002000200
1246020002000200020002000200020002000200020002000200020002000200020002000200
1247020002000200020002000200020002000200020002000200020002000200020002000200
1248020002000200020002000200020002000200020002000200020002000200020002000200
1249020002000200020002000200020002000200020002000200020002000200020002000200
1250020002000200020002000200020002000200020002000200020002000200020002000200
1251020002000200020002000200020002000200020002000200020002000200020002000200
1252020002000200020002000200020002000200020002000200020002000200020002000200
1253020002000200020002000200020002000200020002000200020002000200020002000200
1254020002000200020002000200020002000200020002000200020002000200020002000200
1255020002000200020002000200020002000200020002000200020002000200020002000200
1256020002000200020002000200020002000200020002000200020002000200020002000200
1257020002000200020002000200020002000200020002000200020002000200020002000200
1258020002000200020002000200020002000200020002000200020002000200020002000200
1259020002000200020002000200020002000200020002000200020002000200020002000200
1260020002000200020002000200020002000200020002000200020003000100010000000000
1261020002000200020002000200020002000200020002000200020002000200020002000200
1262020002000200020002000200020002000200020002000200020002000200020002000200
1263020002000200020002000200020002000200020002000200020002000200020002000200
1264020002000200020002000200020002000200020002000200020002000200020002000200
1265020002000200020002000200020002000200020002000200020002000200020002000200
1266020002000200020002000200020002000200020002000200020002000200020002000200
1267020002000200020002000200020002000200020002000200020002000200020002000200
1268020002000200020002000200020002000200020002000200020002000200020002000200
1269020002000200020002000200020002000200020002000200020002000200020002000200
1270020002000200020002000200020002000200020002000200020002000200020002000200
1271020002000200020002000200020002000200020002000200020002000200020002000200
1272020002000200020002000200020002000200020002000200020002000200020002000200
1273020002000200020002000200020002000200020002000200020002000200020002000200
1274020002000200020002000200020002000200020002000200020002000200020002000200
1275020002000200020002000200020002000200020002000200020002000200020002000200
1276020002000200020002000200020002000200020002000200020002000200020002000200
1277020002000200020002000200020002000200020002000200020002000200020002000200
1278020002000200020002000200020002000200020002000200020002000200020002000200
1279020002000200020002000200020002000200020002000200020002000200020002000200
1280020002000200020002000200020002000200020002000200020002000200020002000200
1281020002000200020002000200020002000200020002000200020002000200020002000200
1282020002000200020002000200020002000200020002000200020002000200020002000200
1283020002000200020002000200020002000200020002000200020002000200020002000200
1284020002000200020002000200020002000200020002000200020002000200020002000200
1285020002000200020002000200020002000200020002000200020002000200020002000200
1286020002000200020002000200020002000200020002000200020002000200020002000200
1287020002000200020002000200020002000200020002000200020002000200020002000200
1288020002000200020002000200020002000200020002000200020002000200020002000200
1289020002000200020002000200020002000200020002000200020002000200020002000200
1290020002000200020002000200020002000200020002000200020002000200020002000200
1291020002000200020002000200020002000200020002000200020002000200020002000200
1292020002000200020002000200020002000200020002000200020002000200020002000200
1293020002000200020002000200020002000200020002000200020002000200020002000200
1294020002000200020002000200020002000200020002000200020002000200020002000200
1295020002000200020002000200020002000200020002000200020002000200020002000200
1296020002000200020002000200020002000200020002000200020002000200020002000200
1297020002000200020002000200020002000200020002000200020002000200020002000200
1298020002000200020002000200020002000200020002000200020002000200020002000200
1299020002000200020002000200020002000200020002000200020002000200020002000200
1300020002000200020002000200020002000200020002000200020002000200020002000200
1301020002000200020002000200020002000200020002000200020002000200020002000200
1302020002000200020002000200020002000200020002000200020002000200020002000200
1303020002000200020002000200020002000200020002000200020002000200020002000200
1304020002000200020002000200020002000200020002000200020002000200020002000300
1305010001000000000002000200020002000200020002000200020002000200020002000200
1306020002000200020002000200020002000200020002000200020002000200020002000200
1307020002000200020002000200020002000200020002000200020002000200020002000200
1308020002000200020002000200020002000200020002000200020002000200020002000200
1309020002000200020002000200020002000200020002000200020002000200020002000200
1310020002000200020002000200020002000200020002000200020002000200020002000200
1311020002000200020002000200020002000200020002000200020002000200020002000200
1312020002000200020002000200020002000200020002000200020002000200020002000200
1313020002000200020002000200020002000200020002000200020002000200020002000200
1314020002000200020002000200020002000200020002000200020002000200020002000200
1315020002000200020002000200020002000200020002000200020002000200020002000200
1316020002000200020002000200020002000200020002000200020002000200020002000200
1317020002000200020002000200020002000200020002000200020002000200020002000200
1318020002000200020002000200020002000200020002000200020002000200020002000200
1319020002000200020002000200020002000200020002000200020002000200020002000200
1320020002000200020002000200020002000200020002000200020002000200020002000200
1321020002000200020002000200020002000200020002000200020002000200020002000200
1322020002000200020002000200020002000200020002000200020002000200020002000200
1323020002000200020002000200020002000200020002000200020002000200020002000200
1324020002000200020002000200020002000200020002000200020002000200020002000200
1325020002000200020002000200020002000200020002000200020002000200020002000200
1326020002000200020002000200020002000200020002000200020002000200020002000200
1327020002000200020002000200020002000200020002000200020002000200020002000200
1328020002000200020002000200020002000200020002000200020002000200020002000200
1329020002000200020002000200020002000200020002000200020002000200020002000200
1330020002000200020002000200020002000200020002000200020002000200020002000200
1331020002000200020002000200020002000200020002000200020002000200020002000200
1332020002000200020002000200020002000200020002000200020002000200020002000200
1333020002000200020002000200020002000200020002000200020002000200020002000200
1334020002000200020002000200020002000200020002000200020002000200020002000200
1335020002000200020002000200020002000200020002000200020002000200020002000200
1336020002000200020002000200020002000200020002000200020002000200020002000200
1337020002000200020002000200020002000200020002000200020002000200020002000200
1338020002000200020002000200020002000200020002000200020002000200020002000200
1339020002000200020002000200020002000200020002000200020002000200020002000200
1340020002000200020002000200020002000200020002000200020002000200020002000200
1341020002000200020002000200020002000200020002000200020002000200020002000200
1342020002000200020002000200020002000200020002000200020002000200020002000200
1343020002000200020002000200020002000200020002000200020002000200020002000200
1344020002000200020002000200020002000200020002000200020002000200020002000200
1345020002000200020002000200020002000200020002000200020002000200020002000200
1346020002000200020002000200020002000200020002000200020002000200020002000200
1347020002000200020002000200020002000200020002000200020002000200020002000200
1348020002000200020002000200020002000200020002000200020002000200020002000200
1349020002000200030001000100000000000200020002000200020002000200020002000200
1350020002000200020002000200020002000200020002000200020002000200020002000200
1351020002000200020002000200020002000200020002000200020002000200020002000200
1352020002000200020002000200020002000200020002000200020002000200020002000200
1353020002000200020002000200020002000200020002000200020002000200020002000200
1354020002000200020002000200020002000200020002000200020002000200020002000200
1355020002000200020002000200020002000200020002000200020002000200020002000200
1356020002000200020002000200020002000200020002000200020002000200020002000200
1357020002000200020002000200020002000200020002000200020002000200020002000200
1358020002000200020002000200020002000200020002000200020002000200020002000200
1359020002000200020002000200020002000200020002000200020002000200020002000200
1360020002000200020002000200020002000200020002000200020002000200020002000200
1361020002000200020002000200020002000200020002000200020002000200020002000200
1362020002000200020002000200020002000200020002000200020002000200020002000200
1363020002000200020002000200020002000200020002000200020002000200020002000200
1364020002000200020002000200020002000200020002000200020002000200020002000200
1365020002000200020002000200020002000200020002000200020002000200020002000200
1366020002000200020002000200020002000200020002000200020002000200020002000200
1367020002000200020002000200020002000200020002000200020002000200020002000200
1368020002000200020002000200020002000200020002000200020002000200020002000200
1369020002000200020002000200020002000200020002000200020002000200020002000200
1370020002000200020002000200020002000200020002000200020002000200020002000200
1371020002000200020002000200020002000200020002000200020002000200020002000200
1372020002000200020002000200020002000200020002000200020002000200020002000200
1373020002000200020002000200020002000200020002000200020002000200020002000200
1374020002000200020002000200020002000200020002000200020002000200020002000200
1375020002000200020002000200020002000200020002000200020002000200020002000200
1376020002000200020002000200020002000200020002000200020002000200020002000200
1377020002000200020002000200020002000200020002000200020002000200020002000200
1378020002000200020002000200020002000200020002000200020002000200020002000200
1379020002000200020002000200020002000200020002000200020002000200020002000200
1380020002000200020002000200020002000200020002000200020002000200020002000200
1381020002000200020002000200020002000200020002000200020002000200020002000200
1382020002000200020002000200020002000200020002000200020002000200020002000200
1383020002000200020002000200020002000200020002000200020002000200020002000200
1384020002000200020002000200020002000200020002000200020002000200020002000200
1385020002000200020002000200020002000200020002000200020002000200020002000200
1386020002000200020002000200020002000200020002000200020002000200020002000200
1387020002000200020002000200020002000200020002000200020002000200020002000200
1388020002000200020002000200020002000200020002000200020002000200020002000200
1389020002000200020002000200020002000200020002000200020002000200020002000200
1390020002000200020002000200020002000200020002000200020002000200020002000200
1391020002000200020002000200020002000200020002000200020002000200020002000200
1392020002000200020002000200020002000200020002000200020002000200020002000200
1393020002000200020002000200020003000100010000000000020002000200020002000200
1394020002000200020002000200020002000200020002000200020002000200020002000200
1395020002000200020002000200020002000200020002000200020002000200020002000200
1396020002000200020002000200020002000200020002000200020002000200020002000200
1397020002000200020002000200020002000200020002000200020002000200020002000200
1398020002000200020002000200020002000200020002000200020002000200020002000200
1399020002000200020002000200020002000200020002000200020002000200020002000200
1400020002000200020002000200020002000200020002000200020002000200020002000200
1401020002000200020002000200020002000200020002000200020002000200020002000200
1402020002000200020002000200020002000200020002000200020002000200020002000200
1403020002000200020002000200020002000200020002000200020002000200020002000200
1404020002000200020002000200020002000200020002000200020002000200020002000200
1405020002000200020002000200020002000200020002000200020002000200020002000200
1406020002000200020002000200020002000200020002000200020002000200020002000200
1407020002000200020002000200020002000200020002000200020002000200020002000200
1408020002000200020002000200020002000200020002000200020002000200020002000200
1409020002000200020002000200020002000200020002000200020002000200020002000200
1410020002000200020002000200020002000200020002000200020002000200020002000200
1411020002000200020002000200020002000200020002000200020002000200020002000200
1412020002000200020002000200020002000200020002000200020002000200020002000200
1413020002000200020002000200020002000200020002000200020002000200020002000200
1414020002000200020002000200020002000200020002000200020002000200020002000200
1415020002000200020002000200020002000200020002000200020002000200020002000200
1416020002000200020002000200020002000200020002000200020002000200020002000200
1417020002000200020002000200020002000200020002000200020002000200020002000200
1418020002000200020002000200020002000200020002000200020002000200020002000200
1419020002000200020002000200020002000200020002000200020002000200020002000200
1420020002000200020002000200020002000200020002000200020002000200020002000200
1421020002000200020002000200020002000200020002000200020002000200020002000200
1422020002000200020002000200020002000200020002000200020002000200020002000200
1423020002000200020002000200020002000200020002000200020002000200020002000200
1424020002000200020002000200020002000200020002000200020002000200020002000200
1425020002000200020002000200020002000200020002000200020002000200020002000200
1426020002000200020002000200020002000200020002000200020002000200020002000200
1427020002000200020002000200020002000200020002000200020002000200020002000200
1428020002000200020002000200020002000200020002000200020002000200020002000200
1429020002000200020002000200020002000200020002000200020002000200020002000200
1430020002000200020002000200020002000200020002000200020002000200020002000200
1431020002000200020002000200020002000200020002000200020002000200020002000200
1432020002000200020002000200020002000200020002000200020002000200020002000200
1433020002000200020002000200020002000200020002000200020002000200020002000200
1434020002000200020002000200020002000200020002000200020002000200020002000200
1435020002000200020002000200020002000200020002000200020002000200020002000200
1436020002000200020002000200020002000200020002000200020002000200020002000200
1437020002000200020002000200020002000200020002000300010001000000000002000200
1438020002000200020002000200020002000200020002000200020002000200020002000200
1439020002000200020002000200020002000200020002000200020002000200020002000200
1440020002000200020002000200020002000200020002000200020002000200020002000200
1441020002000200020002000200020002000200020002000200020002000200020002000200
1442020002000200020002000200020002000200020002000200020002000200020002000200
1443020002000200020002000200020002000200020002000200020002000200020002000200
1444020002000200020002000200020002000200020002000200020002000200020002000200
1445020002000200020002000200020002000200020002000200020002000200020002000200
1446020002000200020002000200020002000200020002000200020002000200020002000200
1447020002000200020002000200020002000200020002000200020002000200020002000200
1448020002000200020002000200020002000200020002000200020002000200020002000200
1449020002000200020002000200020002000200020002000200020002000200020002000200
1450020002000200020002000200020002000200020002000200020002000200020002000200
1451020002000200020002000200020002000200020002000200020002000200020002000200
1452020002000200020002000200020002000200020002000200020002000200020002000200
1453020002000200020002000200020002000200020002000200020002000200020002000200
1454020002000200020002000200020002000200020002000200020002000200020002000200
1455020002000200020002000200020002000200020002000200020002000200020002000200
1456020002000200020002000200020002000200020002000200020002000200020002000200
1457020002000200020002000200020002000200020002000200020002000200020002000200
1458020002000200020002000200020002000200020002000200020002000200020002000200
1459020002000200020002000200020002000200020002000200020002000200020002000200
1460020002000200020002000200020002000200020002000200020002000200020002000200
1461020002000200020002000200020002000200020002000200020002000200020002000200
1462020002000200020002000200020002000200020002000200020002000200020002000200
1463020002000200020002000200020002000200020002000200020002000200020002000200
1464020002000200020002000200020002000200020002000200020002000200020002000200
1465020002000200020002000200020002000200020002000200020002000200020002000200
1466020002000200020002000200020002000200020002000200020002000200020002000200
1467020002000200020002000200020002000200020002000200020002000200020002000200
1468020002000200020002000200020002000200020002000200020002000200020002000200
1469020002000200020002000200020002000200020002000200020002000200020002000200
1470020002000200020002000200020002000200020002000200020002000200020002000200
1471020002000200020002000200020002000200020002000200020002000200020002000200
1472020002000200020002000200020002000200020002000200020002000200020002000200
1473020002000200020002000200020002000200020002000200020002000200020002000200
1474020002000200020002000200020002000200020002000200020002000200020002000200
1475020002000200020002000200020002000200020002000200020002000200020002000200
1476020002000200020002000200020002000200020002000200020002000200020002000200
1477020002000200020002000200020002000200020002000200020002000200020002000200
1478020002000200020002000200020002000200020002000200020002000200020002000200
1479020002000200020002000200020002000200020002000200020002000200020002000200
1480020002000200020002000200020002000200020002000200020002000200020002000200
1481020002000200020002000200020002000200020002000200020002000200030001000100
1482000000000200020002000200020002000200020002000200020002000200020002000200
1483020002000200020002000200020002000200020002000200020002000200020002000200
1484020002000200020002000200020002000200020002000200020002000200020002000200
1485020002000200020002000200020002000200020002000200020002000200020002000200
1486020002000200020002000200020002000200020002000200020002000200020002000200
1487020002000200020002000200020002000200020002000200020002000200020002000200
1488020002000200020002000200020002000200020002000200020002000200020002000200
1489020002000200020002000200020002000200020002000200020002000200020002000200
1490020002000200020002000200020002000200020002000200020002000200020002000200
1491020002000200020002000200020002000200020002000200020002000200020002000200
1492020002000200020002000200020002000200020002000200020002000200020002000200
1493020002000200020002000200020002000200020002000200020002000200020002000200
1494020002000200020002000200020002000200020002000200020002000200020002000200
1495020002000200020002000200020002000200020002000200020002000200020002000200
1496020002000200020002000200020002000200020002000200020002000200020002000200
1497020002000200020002000200020002000200020002000200020002000200020002000200
1498020002000200020002000200020002000200020002000200020002000200020002000200
1499020002000200020002000200020002000200020002000200020002000200020002000200
1500020002000200020002000200020002000200020002000200020002000200020002000200
1501020002000200020002000200020002000200020002000200020002000200020002000200
1502020002000200020002000200020002000200020002000200020002000200020002000200
1503020002000200020002000200020002000200020002000200020002000200020002000200
1504020002000200020002000200020002000200020002000200020002000200020002000200
1505020002000200020002000200020002000200020002000200020002000200020002000200
1506020002000200020002000200020002000200020002000200020002000200020002000200
1507020002000200020002000200020002000200020002000200020002000200020002000200
1508020002000200020002000200020002000200020002000200020002000200020002000200
1509020002000200020002000200020002000200020002000200020002000200020002000200
1510020002000200020002000200020002000200020002000200020002000200020002000200
1511020002000200020002000200020002000200020002000200020002000200020002000200
1512020002000200020002000200020002000200020002000200020002000200020002000200
1513020002000200020002000200020002000200020002000200020002000200020002000200
1514020002000200020002000200020002000200020002000200020002000200020002000200
1515020002000200020002000200020002000200020002000200020002000200020002000200
1516020002000200020002000200020002000200020002000200020002000200020002000200
1517020002000200020002000200020002000200020002000200020002000200020002000200
1518020002000200020002000200020002000200020002000200020002000200020002000200
1519020002000200020002000200020002000200020002000200020002000200020002000200
1520020002000200020002000200020002000200020002000200020002000200020002000200
1521020002000200020002000200020002000200020002000200020002000200020002000200
1522020002000200020002000200020002000200020002000200020002000200020002000200
1523020002000200020002000200020002000200020002000200020002000200020002000200
1524020002000200020002000200020002000200020002000200020002000200020002000200
1525020002000200020002000200020002000200020002000200020002000200020002000200
1526020003000100010000000000020002000200020002000200020002000200020002000200
1527020002000200020002000200020002000200020002000200020002000200020002000200
1528020002000200020002000200020002000200020002000200020002000200020002000200
1529020002000200020002000200020002000200020002000200020002000200020002000200
1530020002000200020002000200020002000200020002000200020002000200020002000200
1531020002000200020002000200020002000200020002000200020002000200020002000200
1532020002000200020002000200020002000200020002000200020002000200020002000200
1533020002000200020002000200020002000200020002000200020002000200020002000200
1534020002000200020002000200020002000200020002000200020002000200020002000200
1535020002000200020002000200020002000200020002000200020002000200020002000200
1536020002000200020002000200020002000200020002000200020002000200020002000200
1537020002000200020002000200020002000200020002000200020002000200020002000200
1538020002000200020002000200020002000200020002000200020002000200020002000200
1539020002000200020002000200020002000200020002000200020002000200020002000200
1540020002000200020002000200020002000200020002000200020002000200020002000200
1541020002000200020002000200020002000200020002000200020002000200020002000200
1542020002000200020002000200020002000200020002000200020002000200020002000200
1543020002000200020002000200020002000200020002000200020002000200020002000200
1544020002000200020002000200020002000200020002000200020002000200020002000200
1545020002000200020002000200020002000200020002000200020002000200020002000200
1546020002000200020002000200020002000200020002000200020002000200020002000200
1547020002000200020002000200020002000200020002000200020002000200020002000200
1548020002000200020002000200020002000200020002000200020002000200020002000200
1549020002000200020002000200020002000200020002000200020002000200020002000200
1550020002000200020002000200020002000200020002000200020002000200020002000200
1551020002000200020002000200020002000200020002000200020002000200020002000200
1552020002000200020002000200020002000200020002000200020002000200020002000200
1553020002000200020002000200020002000200020002000200020002000200020002000200
1554020002000200020002000200020002000200020002000200020002000200020002000200
1555020002000200020002000200020002000200020002000200020002000200020002000200
1556020002000200020002000200020002000200020002000200020002000200020002000200
1557020002000200020002000200020002000200020002000200020002000200020002000200
1558020002000200020002000200020002000200020002000200020002000200020002000200
1559020002000200020002000200020002000200020002000200020002000200020002000200
1560020002000200020002000200020002000200020002000200020002000200020002000200
1561020002000200020002000200020002000200020002000200020002000200020002000200
1562020002000200020002000200020002000200020002000200020002000200020002000200
1563020002000200020002000200020002000200020002000200020002000200020002000200
1564020002000200020002000200020002000200020002000200020002000200020002000200
1565020002000200020002000200020002000200020002000200020002000200020002000200
1566020002000200020002000200020002000200020002000200020002000200020002000200
1567020002000200020002000200020002000200020002000200020002000200020002000200
1568020002000200020002000200020002000200020002000200020002000200020002000200
1569020002000200020002000200020002000200020002000200020002000200020002000200
1570020002000200020002000300010001000000000002000200020002000200020002000200
1571020002000200020002000200020002000200020002000200020002000200020002000200
1572020002000200020002000200020002000200020002000200020002000200020002000200
1573020002000200020002000200020002000200020002000200020002000200020002000200
1574020002000200020002000200020002000200020002000200020002000200020002000200
1575020002000200020002000200020002000200020002000200020002000200020002000200
1576020002000200020002000200020002000200020002000200020002000200020002000200
1577020002000200020002000200020002000200020002000200020002000200020002000200
1578020002000200020002000200020002000200020002000200020002000200020002000200
1579020002000200020002000200020002000200020002000200020002000200020002000200
1580020002000200020002000200020002000200020002000200020002000200020002000200
1581020002000200020002000200020002000200020002000200020002000200020002000200
1582020002000200020002000200020002000200020002000200020002000200020002000200
1583020002000200020002000200020002000200020002000200020002000200020002000200
1584020002000200020002000200020002000200020002000200020002000200020002000200
1585020002000200020002000200020002000200020002000200020002000200020002000200
1586020002000200020002000200020002000200020002000200020002000200020002000200
1587020002000200020002000200020002000200020002000200020002000200020002000200
1588020002000200020002000200020002000200020002000200020002000200020002000200
1589020002000200020002000200020002000200020002000200020002000200020002000200
1590020002000200020002000200020002000200020002000200020002000200020002000200
1591020002000200020002000200020002000200020002000200020002000200020002000200
1592020002000200020002000200020002000200020002000200020002000200020002000200
1593020002000200020002000200020002000200020002000200020002000200020002000200
1594020002000200020002000200020002000200020002000200020002000200020002000200
1595020002000200020002000200020002000200020002000200020002000200020002000200
1596020002000200020002000200020002000200020002000200020002000200020002000200
1597020002000200020002000200020002000200020002000200020002000200020002000200
1598020002000200020002000200020002000200020002000200020002000200020002000200
1599020002000200020002000200020002000200020002000200020002000200020002000200
1600020002000200020002000200020002000200020002000200020002000200020002000200
1601020002000200020002000200020002000200020002000200020002000200020002000200
1602020002000200020002000200020002000200020002000200020002000200020002000200
1603020002000200020002000200020002000200020002000200020002000200020002000200
1604020002000200020002000200020002000200020002000200020002000200020002000200
1605020002000200020002000200020002000200020002000200020002000200020002000200
1606020002000200020002000200020002000200020002000200020002000200020002000200
1607020002000200020002000200020002000200020002000200020002000200020002000200
1608020002000200020002000200020002000200020002000200020002000200020002000200
1609020002000200020002000200020002000200020002000200020002000200020002000200
1610020002000200020002000200020002000200020002000200020002000200020002000200
1611020002000200020002000200020002000200020002000200020002000200020002000200
1612020002000200020002000200020002000200020002000200020002000200020002000200
1613020002000200020002000200020002000200020002000200020002000200020002000200
1614020002000200020002000200020002000200030001000100000000000200020002000200
1615020002000200020002000200020002000200020002000200020002000200020002000200
1616020002000200020002000200020002000200020002000200020002000200020002000200
1617020002000200020002000200020002000200020002000200020002000200020002000200
1618020002000200020002000200020002000200020002000200020002000200020002000200
1619020002000200020002000200020002000200020002000200020002000200020002000200
1620020002000200020002000200020002000200020002000200020002000200020002000200
1621020002000200020002000200020002000200020002000200020002000200020002000200
1622020002000200020002000200020002000200020002000200020002000200020002000200
1623020002000200020002000200020002000200020002000200020002000200020002000200
1624020002000200020002000200020002000200020002000200020002000200020002000200
1625020002000200020002000200020002000200020002000200020002000200020002000200
1626020002000200020002000200020002000200020002000200020002000200020002000200
1627020002000200020002000200020002000200020002000200020002000200020002000200
1628020002000200020002000200020002000200020002000200020002000200020002000200
1629020002000200020002000200020002000200020002000200020002000200020002000200
1630020002000200020002000200020002000200020002000200020002000200020002000200
1631020002000200020002000200020002000200020002000200020002000200020002000200
1632020002000200020002000200020002000200020002000200020002000200020002000200
1633020002000200020002000200020002000200020002000200020002000200020002000200
1634020002000200020002000200020002000200020002000200020002000200020002000200
1635020002000200020002000200020002000200020002000200020002000200020002000200
1636020002000200020002000200020002000200020002000200020002000200020002000200
1637020002000200020002000200020002000200020002000200020002000200020002000200
1638020002000200020002000200020002000200020002000200020002000200020002000200
1639020002000200020002000200020002000200020002000200020002000200020002000200
1640020002000200020002000200020002000200020002000200020002000200020002000200
1641020002000200020002000200020002000200020002000200020002000200020002000200
1642020002000200020002000200020002000200020002000200020002000200020002000200
1643020002000200020002000200020002000200020002000200020002000200020002000200
1644020002000200020002000200020002000200020002000200020002000200020002000200
1645020002000200020002000200020002000200020002000200020002000200020002000200
1646020002000200020002000200020002000200020002000200020002000200020002000200
1647020002000200020002000200020002000200020002000200020002000200020002000200
1648020002000200020002000200020002000200020002000200020002000200020002000200
1649020002000200020002000200020002000200020002000200020002000200020002000200
1650020002000200020002000200020002000200020002000200020002000200020002000200
1651020002000200020002000200020002000200020002000200020002000200020002000200
1652020002000200020002000200020002000200020002000200020002000200020002000200
1653020002000200020002000200020002000200020002000200020002000200020002000200
1654020002000200020002000200020002000200020002000200020002000200020002000200
1655020002000200020002000200020002000200020002000200020002000200020002000200
1656020002000200020002000200020002000200020002000200020002000200020002000200
1657020002000200020002000200020002000200020002000200020002000200020002000200
1658020002000200020002000200020002000200020002000200020003000100010000000000
1659020002000200020002000200020002000200020002000200020002000200020002000200
1660020002000200020002000200020002000200020002000200020002000200020002000200
1661020002000200020002000200020002000200020002000200020002000200020002000200
1662020002000200020002000200020002000200020002000200020002000200020002000200
1663020002000200020002000200020002000200020002000200020002000200020002000200
1664020002000200020002000200020002000200020002000200020002000200020002000200
1665020002000200020002000200020002000200020002000200020002000200020002000200
1666020002000200020002000200020002000200020002000200020002000200020002000200
1667020002000200020002000200020002000200020002000200020002000200020002000200
1668020002000200020002000200020002000200020002000200020002000200020002000200
1669020002000200020002000200020002000200020002000200020002000200020002000200
1670020002000200020002000200020002000200020002000200020002000200020002000200
1671020002000200020002000200020002000200020002000200020002000200020002000200
1672020002000200020002000200020002000200020002000200020002000200020002000200
1673020002000200020002000200020002000200020002000200020002000200020002000200
1674020002000200020002000200020002000200020002000200020002000200020002000200
1675020002000200020002000200020002000200020002000200020002000200020002000200
1676020002000200020002000200020002000200020002000200020002000200020002000200
1677020002000200020002000200020002000200020002000200020002000200020002000200
1678020002000200020002000200020002000200020002000200020002000200020002000200
1679020002000200020002000200020002000200020002000200020002000200020002000200
1680020002000200020002000200020002000200020002000200020002000200020002000200
1681020002000200020002000200020002000200020002000200020002000200020002000200
1682020002000200020002000200020002000200020002000200020002000200020002000200
1683020002000200020002000200020002000200020002000200020002000200020002000200
1684020002000200020002000200020002000200020002000200020002000200020002000200
1685020002000200020002000200020002000200020002000200020002000200020002000200
1686020002000200020002000200020002000200020002000200020002000200020002000200
1687020002000200020002000200020002000200020002000200020002000200020002000200
1688020002000200020002000200020002000200020002000200020002000200020002000200
1689020002000200020002000200020002000200020002000200020002000200020002000200
1690020002000200020002000200020002000200020002000200020002000200020002000200
1691020002000200020002000200020002000200020002000200020002000200020002000200
1692020002000200020002000200020002000200020002000200020002000200020002000200
1693020002000200020002000200020002000200020002000200020002000200020002000200
1694020002000200020002000200020002000200020002000200020002000200020002000200
1695020002000200020002000200020002000200020002000200020002000200020002000200
1696020002000200020002000200020002000200020002000200020002000200020002000200
1697020002000200020002000200020002000200020002000200020002000200020002000200
1698020002000200020002000200020002000200020002000200020002000200020002000200
1699020002000200020002000200020002000200020002000200020002000200020002000200
1700020002000200020002000200020002000200020002000200020002000200020002000200
1701020002000200020002000200020002000200020002000200020002000200020002000200
1702020002000200020002000200020002000200020002000200020002000200020002000300
1703010001000000000002000200020002000200020002000200020002000200020002000200
1704020002000200020002000200020002000200020002000200020002000200020002000200
1705020002000200020002000200020002000200020002000200020002000200020002000200
1706020002000200020002000200020002000200020002000200020002000200020002000200
1707020002000200020002000200020002000200020002000200020002000200020002000200
1708020002000200020002000200020002000200020002000200020002000200020002000200
1709020002000200020002000200020002000200020002000200020002000200020002000200
1710020002000200020002000200020002000200020002000200020002000200020002000200
1711020002000200020002000200020002000200020002000200020002000200020002000200
1712020002000200020002000200020002000200020002000200020002000200020002000200
1713020002000200020002000200020002000200020002000200020002000200020002000200
1714020002000200020002000200020002000200020002000200020002000200020002000200
1715020002000200020002000200020002000200020002000200020002000200020002000200
1716020002000200020002000200020002000200020002000200020002000200020002000200
1717020002000200020002000200020002000200020002000200020002000200020002000200
1718020002000200020002000200020002000200020002000200020002000200020002000200
1719020002000200020002000200020002000200020002000200020002000200020002000200
1720020002000200020002000200020002000200020002000200020002000200020002000200
1721020002000200020002000200020002000200020002000200020002000200020002000200
1722020002000200020002000200020002000200020002000200020002000200020002000200
1723020002000200020002000200020002000200020002000200020002000200020002000200
1724020002000200020002000200020002000200020002000200020002000200020002000200
1725020002000200020002000200020002000200020002000200020002000200020002000200
1726020002000200020002000200020002000200020002000200020002000200020002000200
1727020002000200020002000200020002000200020002000200020002000200020002000200
1728020002000200020002000200020002000200020002000200020002000200020002000200
1729020002000200020002000200020002000200020002000200020002000200020002000200
1730020002000200020002000200020002000200020002000200020002000200020002000200
1731020002000200020002000200020002000200020002000200020002000200020002000200
1732020002000200020002000200020002000200020002000200020002000200020002000200
1733020002000200020002000200020002000200020002000200020002000200020002000200
1734020002000200020002000200020002000200020002000200020002000200020002000200
1735020002000200020002000200020002000200020002000200020002000200020002000200
1736020002000200020002000200020002000200020002000200020002000200020002000200
1737020002000200020002000200020002000200020002000200020002000200020002000200
1738020002000200020002000200020002000200020002000200020002000200020002000200
1739020002000200020002000200020002000200020002000200020002000200020002000200
1740020002000200020002000200020002000200020002000200020002000200020002000200
1741020002000200020002000200020002000200020002000200020002000200020002000200
1742020002000200020002000200020002000200020002000200020002000200020002000200
1743020002000200020002000200020002000200020002000200020002000200020002000200
1744020002000200020002000200020002000200020002000200020002000200020002000200
1745020002000200020002000200020002000200020002000200020002000200020002000200
1746020002000200020002000200020002000200020002000200020002000200020002000200
1747020002000200030001000100000000000200020002000200020002000200020002000200
1748020002000200020002000200020002000200020002000200020002000200020002000200
1749020002000200020002000200020002000200020002000200020002000200020002000200
1750020002000200020002000200020002000200020002000200020002000200020002000200
1751020002000200020002000200020002000200020002000200020002000200020002000200
1752020002000200020002000200020002000200020002000200020002000200020002000200
1753020002000200020002000200020002000200020002000200020002000200020002000200
1754020002000200020002000200020002000200020002000200020002000200020002000200
1755020002000200020002000200020002000200020002000200020002000200020002000200
1756020002000200020002000200020002000200020002000200020002000200020002000200
1757020002000200020002000200020002000200020002000200020002000200020002000200
1758020002000200020002000200020002000200020002000200020002000200020002000200
1759020002000200020002000200020002000200020002000200020002000200020002000200
1760020002000200020002000200020002000200020002000200020002000200020002000200
1761020002000200020002000200020002000200020002000200020002000200020002000200
1762020002000200020002000200020002000200020002000200020002000200020002000200
1763020002000200020002000200020002000200020002000200020002000200020002000200
1764020002000200020002000200020002000200020002000200020002000200020002000200
1765020002000200020002000200020002000200020002000200020002000200020002000200
1766020002000200020002000200020002000200020002000200020002000200020002000200
1767020002000200020002000200020002000200020002000200020002000200020002000200
1768020002000200020002000200020002000200020002000200020002000200020002000200
1769020002000200020002000200020002000200020002000200020002000200020002000200
1770020002000200020002000200020002000200020002000200020002000200020002000200
1771020002000200020002000200020002000200020002000200020002000200020002000200
1772020002000200020002000200020002000200020002000200020002000200020002000200
1773020002000200020002000200020002000200020002000200020002000200020002000200
1774020002000200020002000200020002000200020002000200020002000200020002000200
1775020002000200020002000200020002000200020002000200020002000200020002000200
1776020002000200020002000200020002000200020002000200020002000200020002000200
1777020002000200020002000200020002000200020002000200020002000200020002000200
1778020002000200020002000200020002000200020002000200020002000200020002000200
1779020002000200020002000200020002000200020002000200020002000200020002000200
1780020002000200020002000200020002000200020002000200020002000200020002000200
1781020002000200020002000200020002000200020002000200020002000200020002000200
1782020002000200020002000200020002000200020002000200020002000200020002000200
1783020002000200020002000200020002000200020002000200020002000200020002000200
1784020002000200020002000200020002000200020002000200020002000200020002000200
1785020002000200020002000200020002000200020002000200020002000200020002000200
1786020002000200020002000200020002000200020002000200020002000200020002000200
1787020002000200020002000200020002000200020002000200020002000200020002000200
1788020002000200020002000200020002000200020002000200020002000200020002000200
1789020002000200020002000200020002000200020002000200020002000200020002000200
1790020002000200020002000200020002000200020002000200020002000200020002000200
1791020002000200020002000200020003000100010000000000020002000200020002000200
1792020002000200020002000200020002000200020002000200020002000200020002000200
1793020002000200020002000200020002000200020002000200020002000200020002000200
1794020002000200020002000200020002000200020002000200020002000200020002000200
1795020002000200020002000200020002000200020002000200020002000200020002000200
1796020002000200020002000200020002000200020002000200020002000200020002000200
1797020002000200020002000200020002000200020002000200020002000200020002000200
1798020002000200020002000200020002000200020002000200020002000200020002000200
1799020002000200020002000200020002000200020002000200020002000200020002000200
1800020002000200020002000200020002000200020002000200020002000200020002000200
1801020002000200020002000200020002000200020002000200020002000200020002000200
1802020002000200020002000200020002000200020002000200020002000200020002000200
1803020002000200020002000200020002000200020002000200020002000200020002000200
1804020002000200020002000200020002000200020002000200020002000200020002000200
1805020002000200020002000200020002000200020002000200020002000200020002000200
1806020002000200020002000200020002000200020002000200020002000200020002000200
1807020002000200020002000200020002000200020002000200020002000200020002000200
1808020002000200020002000200020002000200020002000200020002000200020002000200
1809020002000200020002000200020002000200020002000200020002000200020002000200
1810020002000200020002000200020002000200020002000200020002000200020002000200
1811020002000200020002000200020002000200020002000200020002000200020002000200
1812020002000200020002000200020002000200020002000200020002000200020002000200
1813020002000200020002000200020002000200020002000200020002000200020002000200
1814020002000200020002000200020002000200020002000200020002000200020002000200
1815020002000200020002000200020002000200020002000200020002000200020002000200
1816020002000200020002000200020002000200020002000200020002000200020002000200
1817020002000200020002000200020002000200020002000200020002000200020002000200
1818020002000200020002000200020002000200020002000200020002000200020002000200
1819020002000200020002000200020002000200020002000200020002000200020002000200
1820020002000200020002000200020002000200020002000200020002000200020002000200
1821020002000200020002000200020002000200020002000200020002000200020002000200
1822020002000200020002000200020002000200020002000200020002000200020002000200
1823020002000200020002000200020002000200020002000200020002000200020002000200
1824020002000200020002000200020002000200020002000200020002000200020002000200
1825020002000200020002000200020002000200020002000200020002000200020002000200
1826020002000200020002000200020002000200020002000200020002000200020002000200
1827020002000200020002000200020002000200020002000200020002000200020002000200
1828020002000200020002000200020002000200020002000200020002000200020002000200
1829020002000200020002000200020002000200020002000200020002000200020002000200
1830020002000200020002000200020002000200020002000200020002000200020002000200
1831020002000200020002000200020002000200020002000200020002000200020002000200
1832020002000200020002000200020002000200020002000200020002000200020002000200
1833020002000200020002000200020002000200020002000200020002000200020002000200
1834020002000200020002000200020002000200020002000200020002000200020002000200
1835020002000200020002000200020002000200020002000300010001000000000002000200
1836020002000200020002000200020002000200020002000200020002000200020002000200
1837020002000200020002000200020002000200020002000200020002000200020002000200
1838020002000200020002000200020002000200020002000200020002000200020002000200
1839020002000200020002000200020002000200020002000200020002000200020002000200
1840020002000200020002000200020002000200020002000200020002000200020002000200
1841020002000200020002000200020002000200020002000200020002000200020002000200
1842020002000200020002000200020002000200020002000200020002000200020002000200
1843020002000200020002000200020002000200020002000200020002000200020002000200
1844020002000200020002000200020002000200020002000200020002000200020002000200
1845020002000200020002000200020002000200020002000200020002000200020002000200
1846020002000200020002000200020002000200020002000200020002000200020002000200
1847020002000200020002000200020002000200020002000200020002000200020002000200
1848020002000200020002000200020002000200020002000200020002000200020002000200
1849020002000200020002000200020002000200020002000200020002000200020002000200
1850020002000200020002000200020002000200020002000200020002000200020002000200
1851020002000200020002000200020002000200020002000200020002000200020002000200
1852020002000200020002000200020002000200020002000200020002000200020002000200
1853020002000200020002000200020002000200020002000200020002000200020002000200
1854020002000200020002000200020002000200020002000200020002000200020002000200
1855020002000200020002000200020002000200020002000200020002000200020002000200
1856020002000200020002000200020002000200020002000200020002000200020002000200
1857020002000200020002000200020002000200020002000200020002000200020002000200
1858020002000200020002000200020002000200020002000200020002000200020002000200
1859020002000200020002000200020002000200020002000200020002000200020002000200
1860020002000200020002000200020002000200020002000200020002000200020002000200
1861020002000200020002000200020002000200020002000200020002000200020002000200
1862020002000200020002000200020002000200020002000200020002000200020002000200
1863020002000200020002000200020002000200020002000200020002000200020002000200
1864020002000200020002000200020002000200020002000200020002000200020002000200
1865020002000200020002000200020002000200020002000200020002000200020002000200
1866020002000200020002000200020002000200020002000200020002000200020002000200
1867020002000200020002000200020002000200020002000200020002000200020002000200
1868020002000200020002000200020002000200020002000200020002000200020002000200
1869020002000200020002000200020002000200020002000200020002000200020002000200
1870020002000200020002000200020002000200020002000200020002000200020002000200
1871020002000200020002000200020002000200020002000200020002000200020002000200
1872020002000200020002000200020002000200020002000200020002000200020002000200
1873020002000200020002000200020002000200020002000200020002000200020002000200
1874020002000200020002000200020002000200020002000200020002000200020002000200
1875020002000200020002000200020002000200020002000200020002000200020002000200
1876020002000200020002000200020002000200020002000200020002000200020002000200
1877020002000200020002000200020002000200020002000200020002000200020002000200
1878020002000200020002000200020002000200020002000200020002000200020002000200
1879020002000200020002000200020002000200020002000200020002000200030001000100
1880000000000200020002000200020002000200020002000200020002000200020002000200
1881020002000200020002000200020002000200020002000200020002000200020002000200
1882020002000200020002000200020002000200020002000200020002000200020002000200
1883020002000200020002000200020002000200020002000200020002000200020002000200
1884020002000200020002000200020002000200020002000200020002000200020002000200
1885020002000200020002000200020002000200020002000200020002000200020002000200
1886020002000200020002000200020002000200020002000200020002000200020002000200
1887020002000200020002000200020002000200020002000200020002000200020002000200
1888020002000200020002000200020002000200020002000200020002000200020002000200
1889020002000200020002000200020002000200020002000200020002000200020002000200
1890020002000200020002000200020002000200020002000200020002000200020002000200
1891020002000200020002000200020002000200020002000200020002000200020002000200
1892020002000200020002000200020002000200020002000200020002000200020002000200
1893020002000200020002000200020002000200020002000200020002000200020002000200
1894020002000200020002000200020002000200020002000200020002000200020002000200
1895020002000200020002000200020002000200020002000200020002000200020002000200
1896020002000200020002000200020002000200020002000200020002000200020002000200
1897020002000200020002000200020002000200020002000200020002000200020002000200
1898020002000200020002000200020002000200020002000200020002000200020002000200
1899020002000200020002000200020002000200020002000200020002000200020002000200
1900020002000200020002000200020002000200020002000200020002000200020002000200
1901020002000200020002000200020002000200020002000200020002000200020002000200
1902020002000200020002000200020002000200020002000200020002000200020002000200
1903020002000200020002000200020002000200020002000200020002000200020002000200
1904020002000200020002000200020002000200020002000200020002000200020002000200
1905020002000200020002000200020002000200020002000200020002000200020002000200
1906020002000200020002000200020002000200020002000200020002000200020002000200
1907020002000200020002000200020002000200020002000200020002000200020002000200
1908020002000200020002000200020002000200020002000200020002000200020002000200
1909020002000200020002000200020002000200020002000200020002000200020002000200
1910020002000200020002000200020002000200020002000200020002000200020002000200
1911020002000200020002000200020002000200020002000200020002000200020002000200
1912020002000200020002000200020002000200020002000200020002000200020002000200
1913020002000200020002000200020002000200020002000200020002000200020002000200
1914020002000200020002000200020002000200020002000200020002000200020002000200
1915020002000200020002000200020002000200020002000200020002000200020002000200
1916020002000200020002000200020002000200020002000200020002000200020002000200
1917020002000200020002000200020002000200020002000200020002000200020002000200
1918020002000200020002000200020002000200020002000200020002000200020002000200
1919020002000200020002000200020002000200020002000200020002000200020002000200
1920020002000200020002000200020002000200020002000200020002000200020002000200
1921020002000200020002000200020002000200020002000200020002000200020002000200
1922020002000200020002000200020002000200020002000200020002000200020002000200
1923020002000200020002000200020002000200020002000200020002000200020002000200
1924020003000100010000000000020002000200020002000200020002000200020002000200
1925020002000200020002000200020002000200020002000200020002000200020002000200
1926020002000200020002000200020002000200020002000200020002000200020002000200
1927020002000200020002000200020002000200020002000200020002000200020002000200
1928020002000200020002000200020002000200020002000200020002000200020002000200
1929020002000200020002000200020002000200020002000200020002000200020002000200
1930020002000200020002000200020002000200020002000200020002000200020002000200
1931020002000200020002000200020002000200020002000200020002000200020002000200
1932020002000200020002000200020002000200020002000200020002000200020002000200
1933020002000200020002000200020002000200020002000200020002000200020002000200
1934020002000200020002000200020002000200020002000200020002000200020002000200
1935020002000200020002000200020002000200020002000200020002000200020002000200
1936020002000200020002000200020002000200020002000200020002000200020002000200
1937020002000200020002000200020002000200020002000200020002000200020002000200
1938020002000200020002000200020002000200020002000200020002000200020002000200
1939020002000200020002000200020002000200020002000200020002000200020002000200
1940020002000200020002000200020002000200020002000200020002000200020002000200
1941020002000200020002000200020002000200020002000200020002000200020002000200
1942020002000200020002000200020002000200020002000200020002000200020002000200
1943020002000200020002000200020002000200020002000200020002000200020002000200
1944020002000200020002000200020002000200020002000200020002000200020002000200
1945020002000200020002000200020002000200020002000200020002000200020002000200
1946020002000200020002000200020002000200020002000200020002000200020002000200
1947020002000200020002000200020002000200020002000200020002000200020002000200
1948020002000200020002000200020002000200020002000200020002000200020002000200
1949020002000200020002000200020002000200020002000200020002000200020002000200
1950020002000200020002000200020002000200020002000200020002000200020002000200
1951020002000200020002000200020002000200020002000200020002000200020002000200
1952020002000200020002000200020002000200020002000200020002000200020002000200
1953020002000200020002000200020002000200020002000200020002000200020002000200
1954020002000200020002000200020002000200020002000200020002000200020002000200
1955020002000200020002000200020002000200020002000200020002000200020002000200
1956020002000200020002000200020002000200020002000200020002000200020002000200
1957020002000200020002000200020002000200020002000200020002000200020002000200
1958020002000200020002000200020002000200020002000200020002000200020002000200
1959020002000200020002000200020002000200020002000200020002000200020002000200
1960020002000200020002000200020002000200020002000200020002000200020002000200
1961020002000200020002000200020002000200020002000200020002000200020002000200
1962020002000200020002000200020002000200020002000200020002000200020002000200
1963020002000200020002000200020002000200020002000200020002000200020002000200
1964020002000200020002000200020002000200020002000200020002000200020002000200
1965020002000200020002000200020002000200020002000200020002000200020002000200
1966020002000200020002000200020002000200020002000200020002000200020002000200
1967020002000200020002000200020002000200020002000200020002000200020002000200
1968020002000200020002000300010001000000000002000200020002000200020002000200
1969020002000200020002000200020002000200020002000200020002000200020002000200
1970020002000200020002000200020002000200020002000200020002000200020002000200
1971020002000200020002000200020002000200020002000200020002000200020002000200
1972020002000200020002000200020002000200020002000200020002000200020002000200
1973020002000200020002000200020002000200020002000200020002000200020002000200
1974020002000200020002000200020002000200020002000200020002000200020002000200
1975020002000200020002000200020002000200020002000200020002000200020002000200
1976020002000200020002000200020002000200020002000200020002000200020002000200
1977020002000200020002000200020002000200020002000200020002000200020002000200
1978020002000200020002000200020002000200020002000200020002000200020002000200
1979020002000200020002000200020002000200020002000200020002000200020002000200
1980020002000200020002000200020002000200020002000200020002000200020002000200
1981020002000200020002000200020002000200020002000200020002000200020002000200
1982020002000200020002000200020002000200020002000200020002000200020002000200
1983020002000200020002000200020002000200020002000200020002000200020002000200
1984020002000200020002000200020002000200020002000200020002000200020002000200
1985020002000200020002000200020002000200020002000200020002000200020002000200
1986020002000200020002000200020002000200020002000200020002000200020002000200
1987020002000200020002000200020002000200020002000200020002000200020002000200
1988020002000200020002000200020002000200020002000200020002000200020002000200
1989020002000200020002000200020002000200020002000200020002000200020002000200
1990020002000200020002000200020002000200020002000200020002000200020002000200
1991020002000200020002000200020002000200020002000200020002000200020002000200
1992020002000200020002000200020002000200020002000200020002000200020002000200
1993020002000200020002000200020002000200020002000200020002000200020002000200
1994020002000200020002000200020002000200020002000200020002000200020002000200
1995020002000200020002000200020002000200020002000200020002000200020002000200
1996020002000200020002000200020002000200020002000200020002000200020002000200
1997020002000200020002000200020002000200020002000200020002000200020002000200
1998020002000200020002000200020002000200020002000200020002000200020002000200
1999020002000200020002000200020002000200020002000200020002000200020002000200
2000020002000200020002000200020002000200020002000200020002000200020002000200
2001020002000200020002000200020002000200020002000200020002000200020002000200
2002020002000200020002000200020002000200020002000200020002000200020002000200
2003020002000200020002000200020002000200020002000200020002000200020002000200
2004020002000200020002000200020002000200020002000200020002000200020002000200
2005020002000200020002000200020002000200020002000200020002000200020002000200
2006020002000200020002000200020002000200020002000200020002000200020002000200
2007020002000200020002000200020002000200020002000200020002000200020002000200
2008020002000200020002000200020002000200020002000200020002000200020002000200
2009020002000200020002000200020002000200020002000200020002000200020002000200
2010020002000200020002000200020002000200020002000200020002000200020002000200
2011020002000200020002000200020002000200020002000200020002000200020002000200
2012020002000200020002000200020002000200030001000100000000000200020002000200
2013020002000200020002000200020002000200020002000200020002000200020002000200
2014020002000200020002000200020002000200020002000200020002000200020002000200
2015020002000200020002000200020002000200020002000200020002000200020002000200
2016020002000200020002000200020002000200020002000200020002000200020002000200
2017020002000200020002000200020002000200020002000200020002000200020002000200
2018020002000200020002000200020002000200020002000200020002000200020002000200
2019020002000200020002000200020002000200020002000200020002000200020002000200
2020020002000200020002000200020002000200020002000200020002000200020002000200
2021020002000200020002000200020002000200020002000200020002000200020002000200
2022020002000200020002000200020002000200020002000200020002000200020002000200
2023020002000200020002000200020002000200020002000200020002000200020002000200
2024020002000200020002000200020002000200020002000200020002000200020002000200
2025020002000200020002000200020002000200020002000200020002000200020002000200
2026020002000200020002000200020002000200020002000200020002000200020002000200
2027020002000200020002000200020002000200020002000200020002000200020002000200
2028020002000200020002000200020002000200020002000200020002000200020002000200
2029020002000200020002000200020002000200020002000200020002000200020002000200
2030020002000200020002000200020002000200020002000200020002000200020002000200
2031020002000200020002000200020002000200020002000200020002000200020002000200
2032020002000200020002000200020002000200020002000200020002000200020002000200
2033020002000200020002000200020002000200020002000200020002000200020002000200
2034020002000200020002000200020002000200020002000200020002000200020002000200
2035020002000200020002000200020002000200020002000200020002000200020002000200
2036020002000200020002000200020002000200020002000200020002000200020002000200
2037020002000200020002000200020002000200020002000200020002000200020002000200
2038020002000200020002000200020002000200020002000200020002000200020002000200
2039020002000200020002000200020002000200020002000200020002000200020002000200
2040020002000200020002000200020002000200020002000200020002000200020002000200
2041020002000200020002000200020002000200020002000200020002000200020002000200
2042020002000200020002000200020002000200020002000200020002000200020002000200
2043020002000200020002000200020002000200020002000200020002000200020002000200
2044020002000200020002000200020002000200020002000200020002000200020002000200
2045020002000200020002000200020002000200020002000200020002000200020002000200
2046020002000200020002000200020002000200020002000200020002000200020002000200
2047020002000200020002000200020002000200020002000200020002000200020002000200
2048020002000200020002000200020002000200020002000200020002000200020002000200
2049020002000200020002000200020002000200020002000200020002000200020002000200
2050020002000200020002000200020002000200020002000200020002000200020002000200
2051020002000200020002000200020002000200020002000200020002000200020002000200
2052020002000200020002000200020002000200020002000200020002000200020002000200
2053020002000200020002000200020002000200020002000200020002000200020002000200
2054020002000200020002000200020002000200020002000200020002000200020002000200
2055020002000200020002000200020002000200020002000200020002000200020002000200
2056020002000200020002000200020002000200020002000200020003000100010000000000
2057020002000200020002000200020002000200020002000200020002000200020002000200
2058020002000200020002000200020002000200020002000200020002000200020002000200
2059020002000200020002000200020002000200020002000200020002000200020002000200
2060020002000200020002000200020002000200020002000200020002000200020002000200
2061020002000200020002000200020002000200020002000200020002000200020002000200
2062020002000200020002000200020002000200020002000200020002000200020002000200
2063020002000200020002000200020002000200020002000200020002000200020002000200
2064020002000200020002000200020002000200020002000200020002000200020002000200
2065020002000200020002000200020002000200020002000200020002000200020002000200
2066020002000200020002000200020002000200020002000200020002000200020002000200
2067020002000200020002000200020002000200020002000200020002000200020002000200
2068020002000200020002000200020002000200020002000200020002000200020002000200
2069020002000200020002000200020002000200020002000200020002000200020002000200
2070020002000200020002000200020002000200020002000200020002000200020002000200
2071020002000200020002000200020002000200020002000200020002000200020002000200
2072020002000200020002000200020002000200020002000200020002000200020002000200
2073020002000200020002000200020002000200020002000200020002000200020002000200
2074020002000200020002000200020002000200020002000200020002000200020002000200
2075020002000200020002000200020002000200020002000200020002000200020002000200
2076020002000200020002000200020002000200020002000200020002000200020002000200
2077020002000200020002000200020002000200020002000200020002000200020002000200
2078020002000200020002000200020002000200020002000200020002000200020002000200
2079020002000200020002000200020002000200020002000200020002000200020002000200
2080020002000200020002000200020002000200020002000200020002000200020002000200
2081020002000200020002000200020002000200020002000200020002000200020002000200
2082020002000200020002000200020002000200020002000200020002000200020002000200
2083020002000200020002000200020002000200020002000200020002000200020002000200
2084020002000200020002000200020002000200020002000200020002000200020002000200
2085020002000200020002000200020002000200020002000200020002000200020002000200
2086020002000200020002000200020002000200020002000200020002000200020002000200
2087020002000200020002000200020002000200020002000200020002000200020002000200
2088020002000200020002000200020002000200020002000200020002000200020002000200
2089020002000200020002000200020002000200020002000200020002000200020002000200
2090020002000200020002000200020002000200020002000200020002000200020002000200
2091020002000200020002000200020002000200020002000200020002000200020002000200
2092020002000200020002000200020002000200020002000200020002000200020002000200
2093020002000200020002000200020002000200020002000200020002000200020002000200
2094020002000200020002000200020002000200020002000200020002000200020002000200
2095020002000200020002000200020002000200020002000200020002000200020002000200
2096020002000200020002000200020002000200020002000200020002000200020002000200
2097020002000200020002000200020002000200020002000200020002000200020002000200
2098020002000200020002000200020002000200020002000200020002000200020002000200
2099020002000200020002000200020002000200020002000200020002000200020002000200
2100020002000200020002000200020002000200020002000200020002000200020002000300
2101010001000000000002000200020002000200020002000200020002000200020002000200
2102020002000200020002000200020002000200020002000200020002000200020002000200
2103020002000200020002000200020002000200020002000200020002000200020002000200
2104020002000200020002000200020002000200020002000200020002000200020002000200
2105020002000200020002000200020002000200020002000200020002000200020002000200
2106020002000200020002000200020002000200020002000200020002000200020002000200
2107020002000200020002000200020002000200020002000200020002000200020002000200
2108020002000200020002000200020002000200020002000200020002000200020002000200
2109020002000200020002000200020002000200020002000200020002000200020002000200
2110020002000200020002000200020002000200020002000200020002000200020002000200
2111020002000200020002000200020002000200020002000200020002000200020002000200
2112020002000200020002000200020002000200020002000200020002000200020002000200
2113020002000200020002000200020002000200020002000200020002000200020002000200
2114020002000200020002000200020002000200020002000200020002000200020002000200
2115020002000200020002000200020002000200020002000200020002000200020002000200
2116020002000200020002000200020002000200020002000200020002000200020002000200
2117020002000200020002000200020002000200020002000200020002000200020002000200
2118020002000200020002000200020002000200020002000200020002000200020002000200
2119020002000200020002000200020002000200020002000200020002000200020002000200
2120020002000200020002000200020002000200020002000200020002000200020002000200
2121020002000200020002000200020002000200020002000200020002000200020002000200
2122020002000200020002000200020002000200020002000200020002000200020002000200
2123020002000200020002000200020002000200020002000200020002000200020002000200
2124020002000200020002000200020002000200020002000200020002000200020002000200
2125020002000200020002000200020002000200020002000200020002000200020002000200
2126020002000200020002000200020002000200020002000200020002000200020002000200
2127020002000200020002000200020002000200020002000200020002000200020002000200
2128020002000200020002000200020002000200020002000200020002000200020002000200
2129020002000200020002000200020002000200020002000200020002000200020002000200
2130020002000200020002000200020002000200020002000200020002000200020002000200
2131020002000200020002000200020002000200020002000200020002000200020002000200
2132020002000200020002000200020002000200020002000200020002000200020002000200
2133020002000200020002000200020002000200020002000200020002000200020002000200
2134020002000200020002000200020002000200020002000200020002000200020002000200
2135020002000200020002000200020002000200020002000200020002000200020002000200
2136020002000200020002000200020002000200020002000200020002000200020002000200
2137020002000200020002000200020002000200020002000200020002000200020002000200
2138020002000200020002000200020002000200020002000200020002000200020002000200
2139020002000200020002000200020002000200020002000200020002000200020002000200
2140020002000200020002000200020002000200020002000200020002000200020002000200
2141020002000200020002000200020002000200020002000200020002000200020002000200
2142020002000200020002000200020002000200020002000200020002000200020002000200
2143020002000200020002000200020002000200020002000200020002000200020002000200
2144020002000200020002000200020002000200020002000200020002000200020002000200
2145020002000200030001000100000000000200020002000200020002000200020002000200
2146020002000200020002000200020002000200020002000200020002000200020002000200
2147020002000200020002000200020002000200020002000200020002000200020002000200
2148020002000200020002000200020002000200020002000200020002000200020002000200
2149020002000200020002000200020002000200020002000200020002000200020002000200
2150020002000200020002000200020002000200020002000200020002000200020002000200
2151020002000200020002000200020002000200020002000200020002000200020002000200
2152020002000200020002000200020002000200020002000200020002000200020002000200
2153020002000200020002000200020002000200020002000200020002000200020002000200
2154020002000200020002000200020002000200020002000200020002000200020002000200
2155020002000200020002000200020002000200020002000200020002000200020002000200
2156020002000200020002000200020002000200020002000200020002000200020002000200
2157020002000200020002000200020002000200020002000200020002000200020002000200
2158020002000200020002000200020002000200020002000200020002000200020002000200
2159020002000200020002000200020002000200020002000200020002000200020002000200
2160020002000200020002000200020002000200020002000200020002000200020002000200
2161020002000200020002000200020002000200020002000200020002000200020002000200
2162020002000200020002000200020002000200020002000200020002000200020002000200
2163020002000200020002000200020002000200020002000200020002000200020002000200
2164020002000200020002000200020002000200020002000200020002000200020002000200
2165020002000200020002000200020002000200020002000200020002000200020002000200
2166020002000200020002000200020002000200020002000200020002000200020002000200
2167020002000200020002000200020002000200020002000200020002000200020002000200
2168020002000200020002000200020002000200020002000200020002000200020002000200
2169020002000200020002000200020002000200020002000200020002000200020002000200
2170020002000200020002000200020002000200020002000200020002000200020002000200
2171020002000200020002000200020002000200020002000200020002000200020002000200
2172020002000200020002000200020002000200020002000200020002000200020002000200
2173020002000200020002000200020002000200020002000200020002000200020002000200
2174020002000200020002000200020002000200020002000200020002000200020002000200
2175020002000200020002000200020002000200020002000200020002000200020002000200
2176020002000200020002000200020002000200020002000200020002000200020002000200
2177020002000200020002000200020002000200020002000200020002000200020002000200
2178020002000200020002000200020002000200020004000400040004000400040004000400
2179040002000200020002000200020002000200020002000200020002000200020002000200
2180020002000200020002000200020002000200020002000200020002000200020002000200
2181020002000200020002000200020002000200020002000200020002000200020002000200
2182020002000200020002000200020002000200020002000200020002000200020002000200
2183020002000200020002000200020002000200020002000200020002000200020002000200
2184020002000200020002000200020002000200020002000200020002000200020002000200
2185020002000200020002000200020002000200020002000200020002000200020002000200
2186020002000200020002000200020002000200020002000200020002000200020002000200
2187020002000200020002000200020002000200020002000200020002000200020002000200
2188020002000200020002000200020002000200020002000200020002000200020002000200
2189020002000200020002000200020003000100010000000000020002000200020002000200
2190020002000200020002000200020002000200020002000200020002000200020002000200
2191020002000200020002000200020002000200020002000200020002000200020002000200
2192020002000200020002000200020002000200020002000200020002000200020002000200
2193020002000200020002000200020002000200020002000200020002000200020002000200
2194020002000200020002000200020002000200020002000200020002000200020002000200
2195020002000200020002000200020002000200020002000200020002000200020002000200
2196020002000200020002000200020002000200020002000200020002000200020002000200
2197020002000200020002000200020002000200020002000200020002000200020002000200
2198020002000200020002000200020002000200020002000200020002000200020002000200
2199020002000200020002000200020002000200020002000200020002000200020002000200
2200020002000200020002000200020002000200020002000200020002000200020002000200
2201020002000200020002000200020002000200020002000200020002000200020002000200
2202020002000200020002000200020002000200020002000200020002000200020002000200
2203020002000200020002000200020002000200020002000200020002000200020002000200
2204020002000200020002000200020002000200020002000200020002000200020002000200
2205020002000200020002000200020002000200020002000200020002000200020002000200
2206020002000200020002000200020002000200020002000200020002000200020002000200
2207020002000200020002000200020002000200020002000200020002000200020002000200
2208020002000200020002000200020002000200020002000200020002000200020002000200
2209020002000200020002000200020002000200020002000200020002000200020002000200
2210020002000200020002000200020002000200020002000200020002000200020002000200
2211020002000200020002000200020002000200020002000200020002000200020002000200
2212020002000200020002000200020002000200020002000200020002000200020002000200
2213020002000200020002000200020002000200020002000200020002000200020002000200
2214020002000200020002000200020002000200020002000200020002000200020002000200
2215020002000200020002000200020002000200020002000200020002000200020002000200
2216020002000200020002000200020002000200020002000200020002000200020002000200
2217020002000200020002000200020002000200020002000200020002000200020002000200
2218020002000200020002000200020002000200020002000200020002000200020002000200
2219020002000200020002000200020002000200020002000200020002000200020002000200
2220020002000200020002000200020002000200020002000200020002000200020002000200
2221020002000200020002000200020002000200020002000200020002000400040004000400
2222040004000400040004000400040004000400040004000400040004000200020002000200
2223020004000400020004000200020002000200040004000400040004000400020002000200
2224020002000200020002000200020002000200020002000200020002000200020002000200
2225020002000200020002000200020002000200020002000200020002000200020002000200
2226020002000200020002000200020002000200020002000200020002000200020002000200
2227020002000200020002000200020002000200020002000200020002000200020002000200
2228020002000200020002000200020002000200020002000200020002000200020002000200
2229020002000200020002000200020002000200020002000200020002000200020002000200
2230020002000200020002000200020002000200020002000200020002000200020002000200
2231020002000200020002000200020002000200020002000200020002000200020002000200
2232020002000200020002000200020002000200020002000200020002000200020002000200
2233020002000200020002000200020002000200020002000300010001000000000002000200
2234020002000200020002000200020002000200020002000200020002000200020002000200
2235020002000200020002000200020002000200020002000200020002000200020002000200
2236020002000200020002000200020002000200020002000200020002000200020002000200
2237020002000200020002000200020002000200020002000200020002000200020002000200
2238020002000200020002000200020002000200020002000200020002000200020002000200
2239020002000200020002000200020002000200020002000200020002000200020002000200
2240020002000200020002000200020002000200020002000200020002000200020002000200
2241020002000200020002000200020002000200020002000200020002000200020002000200
2242020002000200020002000200020002000200020002000200020002000200020002000200
2243020002000200020002000200020002000200020002000200020002000200020002000200
2244020002000200020002000200020002000200020002000200020002000200020002000200
2245020002000200020002000200020002000200020002000200020002000200020002000200
2246020002000200020002000200020002000200020002000200020002000200020002000200
2247020002000200020002000200020002000200020002000200020002000200020002000200
2248020002000200020002000200020002000200020002000200020002000200020002000200
2249020002000200020002000200020002000200020002000200020002000200020002000200
2250020002000200020002000200020002000200020002000200020002000200020002000200
2251020002000200020002000200020002000200020002000200020002000200020002000200
2252020002000200020002000200020002000200020002000200020002000200020002000200
2253020002000200020002000200020002000200020002000200020002000200020002000200
2254020002000200020002000200020002000200020002000200020002000200020002000200
2255020002000200020002000200020002000200020002000200020002000200020002000200
2256020002000200020002000200020002000200020002000200020002000200020002000200
2257020002000200020002000200020002000200020002000200020002000200020002000200
2258020002000200020002000200020002000200020002000200020002000200020002000200
2259020002000200020002000200020002000200020002000200020002000200020002000200
2260020002000200020002000200020002000200020002000200020002000200020002000200
2261020002000200020002000200020002000200020002000200020002000200020002000200
2262020002000200020002000200020002000200020002000200020002000200020002000200
2263020002000200020002000200020002000200020002000200020002000200020002000200
2264020002000200020002000200020002000200020002000200020002000200020002000200
2265020002000200020002000200020002000400040004000400040004000400040004000400
2266020002000200020002000200020002000200020002000200020002000200020002000200
2267020002000200040004000200020002000200040002000400040002000200020002000200
2268020004000400040004000400040004000400040002000200020002000200020002000200
2269020002000200020002000200020002000200020002000200020002000200020002000200
2270020002000200020002000200020002000200020002000200020002000200020002000200
2271020002000200020002000200020002000200020002000200020002000200020002000200
2272020002000200020002000200020002000200020002000200020002000200020002000200
2273020002000200020002000200020002000200020002000200020002000200020002000200
2274020002000200020002000200020002000200020002000200020002000200020002000200
2275020002000200020002000200020002000200020002000200020002000200020002000200
2276020002000200020002000200020002000200020002000200020002000200020002000200
2277020002000200020002000200020002000200020002000200020002000200030001000100
2278000000000200020002000200020002000200020002000200020002000200020002000200
2279020002000200020002000200020002000200020002000200020002000200020002000200
2280020002000200020002000200020002000200020002000200020002000200020002000200
2281020002000200020002000200020002000200020002000200020002000200020002000200
2282020002000200020002000200020002000200020002000200020002000200020002000200
2283020002000200020002000200020002000200020002000200020002000200020002000200
2284020002000200020002000200020002000200020002000200020002000200020002000200
2285020002000200020002000200020002000200020002000200020002000200020002000200
2286020002000200020002000200020002000200020002000200020002000200020002000200
2287020002000200020002000200020002000200020002000200020002000200020002000200
2288020002000200020002000200020002000200020002000200020002000200020002000200
2289020002000200020002000200020002000200020002000200020002000200020002000200
2290020002000200020002000200020002000200020002000200020002000200020002000200
2291020002000200020002000200020002000200020002000200020002000200020002000200
2292020002000200020002000200020002000200020002000200020002000200020002000200
2293020002000200020002000200020002000200020002000200020002000200020002000200
2294020002000200020002000200020002000200020002000200020002000200020002000200
2295020002000200020002000200020002000200020002000200020002000200020002000200
2296020002000200020002000200020002000200020002000200020002000200020002000200
2297020002000200020002000200020002000200020002000200020002000200020002000200
2298020002000200020002000200020002000200020002000200020002000200020002000200
2299020002000200020002000200020002000200020002000200020002000200020002000200
2300020002000200020002000200020002000200020002000200020002000200020002000200
2301020002000200020002000200020002000200020002000200020002000200020002000200
2302020002000200020002000200020002000200020002000200020002000200020002000200
2303020002000200020002000200020002000200020002000200020002000200020002000200
2304020002000200020002000200020002000200020002000200020002000200020002000200
2305020002000200020002000200020002000200020002000200020002000200020002000200
2306020002000200020002000200020002000200020002000200020002000200020002000200
2307020002000200020002000200020002000200020002000200020002000200020002000200
2308020002000200020002000200020002000200020002000200020002000200020002000200
2309020002000200020002000400040004000200020004000400020002000200020002000200
2310020002000200020002000200020002000200020002000200020002000200020002000200
2311020002000200020002000400040002000200020002000200020004000400020002000200
2312020002000200020002000200020002000200020002000200020002000400040004000500
2313050002000200020002000200020002000200020002000200020002000200020002000200
2314020002000200020002000200020002000200020002000200020002000200020002000200
2315020002000200020002000200020002000200020002000200020002000200020002000200
2316020002000200020002000200020002000200020002000200020002000200020002000200
2317020002000200020002000200020002000200020002000200020002000200020002000200
2318020002000200020002000200020002000200020002000200020002000200020002000200
2319020002000200020002000200020002000200020002000200020002000200020002000200
2320020002000200020002000200020002000200020002000200020002000200020002000200
2321020002000200020002000200020002000200020002000200020002000200020002000200
2322020003000100010000000000020002000200020002000200020002000200020002000200
2323020002000200020002000200020002000200020002000200020002000200020002000200
2324020002000200020002000200020002000200020002000200020002000200020002000200
2325020002000200020002000200020002000200020002000200020002000200020002000200
2326020002000200020002000200020002000200020002000200020002000200020002000200
2327020002000200020002000200020002000200020002000200020002000200020002000200
2328020002000200020002000200020002000200020002000200020002000200020002000200
2329020002000200020002000200020002000200020002000200020002000200020002000200
2330020002000200020002000200020002000200020002000200020002000200020002000200
2331020002000200020002000200020002000200020002000200020002000200020002000200
2332020002000200020002000200020002000200020002000200020002000200020002000200
2333020002000200020002000200020002000200020002000200020002000200020002000200
2334020002000200020002000200020002000200020002000200020002000200020002000200
2335020002000200020002000200020002000200020002000200020002000200020002000200
2336020002000200020002000200020002000200020002000200020002000200020002000200
2337020002000200020002000200020002000200020002000200020002000200020002000200
2338020002000200020002000200020002000200020002000200020002000200020002000200
2339020002000200020002000200020002000200020002000200020002000200020002000200
2340020002000200020002000200020002000200020002000200020002000200020002000200
2341020002000200020002000200020002000200020002000200020002000200020002000200
2342020002000200020002000200020002000200020002000200020002000200020002000200
2343020002000200020002000200020002000200020002000200020002000200020002000200
2344020002000200020002000200020002000200020002000200020002000200020002000200
2345020002000200020002000200020002000200020002000200020002000200020002000200
2346020002000200020002000200020002000200020002000200020002000200020002000200
2347020002000200020002000200020002000200020002000200020002000200020002000200
2348020002000200020002000200020002000200020002000200020002000200020002000200
2349020002000200020002000200020002000200020002000200020002000200020002000200
2350020002000200020002000200020002000200020002000200020002000200020002000200
2351020002000200020002000200020002000200020002000200020002000200020002000200
2352020002000200020002000200020002000200020002000200020002000200020002000200
2353020002000200020002000400040004000400040002000400040004000200020002000200
2354020002000200020002000200020002000200020002000200020002000200020002000200
2355020002000200020002000200020004000400020002000200020002000200040004000200
2356020002000200020002000200020002000200020002000200020002000200020002000200
2357020005000500050005000200020002000200020002000200020002000200020002000200
2358020002000200020002000200020002000200020002000200020002000200020002000200
2359020002000200020002000200020002000200020002000200020002000200020002000200
2360020002000200020002000200020002000200020002000200020002000200020002000200
2361020002000200020002000200020002000200020002000200020002000200020002000200
2362020002000200020002000200020002000200020002000200020002000200020002000200
2363020002000200020002000200020002000200020002000200020002000200020002000200
2364020002000200020002000200020002000200020002000200020002000200020002000200
2365020002000200020002000200020002000200020002000200020002000200020002000200
2366020002000200020002000300010001000000000002000200020002000200020002000200
2367020002000200020002000200020002000200020002000200020002000200020002000200
2368020002000200020002000200020002000200020002000200020002000200020002000200
2369020002000200020002000200020002000200020002000200020002000200020002000200
2370020002000200020002000200020002000200020002000200020002000200020002000200
2371020002000200020002000200020002000200020002000200020002000200020002000200
2372020002000200020002000200020002000200020002000200020002000200020002000200
2373020002000200020002000200020002000200020002000200020002000200020002000200
2374020002000200020002000200020002000200020002000200020002000200020002000200
2375020002000200020002000200020002000200020002000200020002000200020002000200
2376020002000200020002000200020002000200020002000200020002000200020002000200
2377020002000200020002000200020002000200020002000200020002000200020002000200
2378020002000200020002000200020002000200020002000200020002000200020002000200
2379020002000200020002000200020002000200020002000200020002000200020002000200
2380020002000200020002000200020002000200020002000200020002000200020002000200
2381020002000200020002000200020002000200020002000200020002000200020002000200
2382020002000200020002000200020002000200020002000200020002000200020002000200
2383020002000200020002000200020002000200020002000200020002000200020002000200
2384020002000200020002000200020002000200020002000200020002000200020002000200
2385020002000200020002000200020002000200020002000200020002000200020002000200
2386020002000200020002000200020002000200020002000200020002000200020002000200
2387020002000200020002000200020002000200020002000200020002000200020002000200
2388020002000200020002000200020002000200020002000200020002000200020002000200
2389020002000200020002000200020002000200020002000200020002000200020002000200
2390020002000200020002000200020002000200020002000200020002000200020002000200
2391020002000200020002000200020002000200020002000200020002000200020002000200
2392020002000200020002000200020002000200020002000200020002000200020002000200
2393020002000200020002000200020002000200020002000200020002000200020002000200
2394020002000200020002000200020002000200020002000200020002000200020002000200
2395020002000200020002000200020002000200020002000200020002000200020002000200
2396020002000200020002000200020002000200020002000200020002000200020002000200
2397020002000200020002000400040004000400020004000400020002000400040002000200
2398020002000200020002000200020002000200020002000200020002000200020002000200
2399020002000200020002000200020002000200040004000200020002000200020002000400
2400040002000200020002000200020002000200020002000200020002000200020002000200
2401020002000200050005000500050002000400020002000200020002000200020002000200
2402020002000200020002000200020002000200020002000200020002000200020002000200
2403020002000200020002000200020002000200020002000200020002000200020002000200
2404020002000200020002000200020002000200020002000200020002000200020002000200
2405020002000200020002000200020002000200020002000200020002000200020002000200
2406020002000200020002000200020002000200020002000200020002000200020002000200
2407020002000200020002000200020002000200020002000200020002000200020002000200
2408020002000200020002000200020002000200020002000200020002000200020002000200
2409020002000200020002000200020002000200020002000200020002000200020002000200
2410020002000200020002000200020002000200030001000100000000000200020002000200
2411020002000200020002000200020002000200020002000200020002000200020002000200
2412020002000200020002000200020002000200020002000200020002000200020002000200
2413020002000200020002000200020002000200020002000200020002000200020002000200
2414020002000200020002000200020002000200020002000200020002000200020002000200
2415020002000200020002000200020002000200020002000200020002000200020002000200
2416020002000200020002000200020002000200020002000200020002000200020002000200
2417020002000200020002000200020002000200020002000200020002000200020002000200
2418020002000200020002000200020002000200020002000200020002000200020002000200
2419020002000200020002000200020002000200020002000200020002000200020002000200
2420020002000200020002000200020002000200020002000200020002000200020002000200
2421020002000200020002000200020002000200020002000200020002000200020002000200
2422020002000200020002000200020002000200020002000200020002000200020002000200
2423020002000200020002000200020002000200020002000200020002000200020002000200
2424020002000200020002000200020002000200020002000200020002000200020002000200
2425020002000200020002000200020002000200020002000200020002000200020002000200
2426020002000200020002000200020002000200020002000200020002000200020002000200
2427020002000200020002000200020002000200020002000200020002000200020002000200
2428020002000200020002000200020002000200020002000200020002000200020002000200
2429020002000200020002000200020002000200020002000200020002000200020002000200
2430020002000200020002000200020002000200020002000200020002000200020002000200
2431020002000200020002000200020002000200020002000200020002000200020002000200
2432020002000200020002000200020002000200020002000200020002000200020002000200
2433020002000200020002000200020002000200020002000200020002000200020002000200
2434020002000200020002000200020002000200020002000200020002000200020002000200
2435020002000200020002000200020002000200020002000200020002000200020002000200
2436020002000200020002000200020002000200020002000200020002000200020002000200
2437020002000200020002000200020002000200020002000200020002000200020002000200
2438020002000200020002000200020002000200020002000200020002000200020002000200
2439020002000200020002000200020002000200020002000200020002000200020002000200
2440020002000200020002000200020002000200020002000200020002000200020002000200
2441020002000200020002000400040004000400020002000200040004000200020004000400
2442020002000200020002000200020002000200020002000200020002000200020002000200
2443020002000200020002000200020002000200020002000400040002000200020002000200
2444020004000400020002000200020002000200020002000200020002000200020002000200
2445020002000200020002000500050005000500020002000200040002000200020002000200
2446020002000200020002000200020002000200020002000200020002000200020002000200
2447020002000200020002000200020002000200020002000200020002000200020002000200
2448020002000200020002000200020002000200020002000200020002000200020002000200
2449020002000200020002000200020002000200020002000200020002000200020002000200
2450020002000200020002000200020002000200020002000200020002000200020002000200
2451020002000200020002000200020002000200020002000200020002000200020002000200
2452020002000200020002000200020002000200020002000200020002000200020002000200
2453020002000200020002000200020002000200020002000200020002000200020002000200
2454020002000200020002000200020002000200020002000200020003000100010000000000
2455020002000200020002000200020002000200020002000200020002000200020002000200
2456020002000200020002000200020002000200020002000200020002000200020002000200
2457020002000200020002000200020002000200020002000200020002000200020002000200
2458020002000200020002000200020002000200020002000200020002000200020002000200
2459020002000200020002000200020002000200020002000200020002000200020002000200
2460020002000200020002000200020002000200020002000200020002000200020002000200
2461020002000200020002000200020002000200020002000200020002000200020002000200
2462020002000200020002000200020002000200020002000200020002000200020002000200
2463020002000200020002000200020002000200020002000200020002000200020002000200
2464020002000200020002000200020002000200020002000200020002000200020002000200
2465020002000200020002000200020002000200020002000200020002000200020002000200
2466020002000200020002000200020002000200020002000200020002000200020002000200
2467020002000200020002000200020002000200020002000200020002000200020002000200
2468020002000200020002000200020002000200020002000200020002000200020002000200
2469020002000200020002000200020002000200020002000200020002000200020002000200
2470020002000200020002000200020002000200020002000200020002000200020002000200
2471020002000200020002000200020002000200020002000200020002000200020002000200
2472020002000200020002000200020002000200020002000200020002000200020002000200
2473020002000200020002000200020002000200020002000200020002000200020002000200
2474020002000200020002000200020002000200020002000200020002000200020002000200
2475020002000200020002000200020002000200020002000200020002000200020002000200
2476020002000200020002000200020002000200020002000200020002000200020002000200
2477020002000200020002000200020002000200020002000200020002000200020002000200
2478020002000200020002000200020002000200020002000200020002000200020002000200
2479020002000200020002000200020002000200020002000200020002000200020002000200
2480020002000200020002000200020002000200020002000200020002000200020002000200
2481020002000200020002000200020002000200020002000200020002000200020002000200
2482020002000200020002000200020002000200020002000200020002000200020002000200
2483020002000200020002000200020002000200020002000200020002000200020002000200
2484020002000200020002000200020002000200020002000200020002000200020002000200
2485020002000200020004000400040004000400020002000200020002000400040002000200
2486040004000200020002000200020002000200020002000200020002000200020002000200
2487020002000200020002000200020002000200020002000200020004000400020002000200
2488020002000200040004000200020002000200020002000200020002000200020002000200
2489020002000200020002000200020005000500050005000200020002000200020004000200
2490020002000200020002000200020002000200020002000200020002000200020002000200
2491020002000200020002000200020002000200020002000200020002000200020002000200
2492020002000200020002000200020002000200020002000200020002000200020002000200
2493020002000200020002000200020002000200020002000200020002000200020002000200
2494020002000200020002000200020002000200020002000200020002000200020002000200
2495020002000200020002000200020002000200020002000200020002000200020002000200
2496020002000200020002000200020002000200020002000200020002000200020002000200
2497020002000200020002000200020002000200020002000200020002000200020002000200
2498020002000200020002000200020002000200020002000200020002000200020002000300
2499010001000000000002000200020002000200020002000200020002000200020002000200
2500020002000200020002000200020002000200020002000200020002000200020002000200
2501020002000200020002000200020002000200020002000200020002000200020002000200
2502020002000200020002000200020002000200020002000200020002000200020002000200
2503020002000200020002000200020002000200020002000200020002000200020002000200
2504020002000200020002000200020002000200020002000200020002000200020002000200
2505020002000200020002000200020002000200020002000200020002000200020002000200
2506020002000200020002000200020002000200020002000200020002000200020002000200
2507020002000200020002000200020002000200020002000200020002000200020002000200
2508020002000200020002000200020002000200020002000200020002000200020002000200
2509020002000200020002000200020002000200020002000200020002000200020002000200
2510020002000200020002000200020002000200020002000200020002000200020002000200
2511020002000200020002000200020002000200020002000200020002000200020002000200
2512020002000200020002000200020002000200020002000200020002000200020002000200
2513020002000200020002000200020002000200020002000200020002000200020002000200
2514020002000200020002000200020002000200020002000200020002000200020002000200
2515020002000200020002000200020002000200020002000200020002000200020002000200
2516020002000200020002000200020002000200020002000200020002000200020002000200
2517020002000200020002000200020002000200020002000200020002000200020002000200
2518020002000200020002000200020002000200020002000200020002000200020002000200
2519020002000200020002000200020002000200020002000200020002000200020002000200
2520020002000200020002000200020002000200020002000200020002000200020002000200
2521020002000200020002000200020002000200020002000200020002000200020002000200
2522020002000200020002000200020002000200020002000200020002000200020002000200
2523020002000200020002000200020002000200020002000200020002000200020002000200
2524020002000200020002000200020002000200020002000200020002000200020002000200
2525020002000200020002000200020002000200020002000200020002000200020002000200
2526020002000200020002000200020002000200020002000200020002000200020002000200
2527020002000200020002000200020002000200020002000200020002000200020002000200
2528020002000200020002000200020002000200020002000200020002000200020002000200
2529020002000200020004000400040004000200020002000200020002000200020004000400
2530020002000400040002000200020002000200020002000200020002000200020002000200
2531020002000200020002000200020004000400040004000400040004000400040004000200
2532020002000200020002000400040002000200020002000200020002000200020002000200
2533020002000200020002000200020002000200050005000500050002000200020002000200
2534020002000400020002000200020002000200020002000200020002000200020002000200
2535020002000200020002000200020002000200020002000200020002000200020002000200
2536020002000200020002000200020002000200020002000200020002000200020002000200
2537020002000200020002000200020002000200020002000200020002000200020002000200
2538020002000200020002000200020002000200020002000200020002000200020002000200
2539020002000200020002000200020002000200020002000200020002000200020002000200
2540020002000200020002000200020002000200020002000200020002000200020002000200
2541020002000200020002000200020002000200020002000200020002000200020002000200
2542020002000200020002000200020002000200020002000200020002000200020002000200
2543020002000200030001000100000000000200020002000200020002000200020002000200
2544020002000200020002000200020002000200020002000200020002000200020002000200
2545020002000200020002000200020002000200020002000200020002000200020002000200
2546020002000200020002000200020002000200020002000200020002000200020002000200
2547020002000200020002000200020002000200020002000200020002000200020002000200
2548020002000200020002000200020002000200020002000200020002000200020002000200
2549020002000200020002000200020002000200020002000200020002000200020002000200
2550020002000200020002000200020002000200020002000200020002000200020002000200
2551020002000200020002000200020002000200020002000200020002000200020002000200
2552020002000200020002000200020002000200020002000200020002000200020002000200
2553020002000200020002000200020002000200020002000200020002000200020002000200
2554020002000200020002000200020002000200020002000200020002000200020002000200
2555020002000200020002000200020002000200020002000200020002000200020002000200
2556020002000200020002000200020002000200020002000200020002000200020002000200
2557020002000200020002000200020002000200020002000200020002000200020002000200
2558020002000200020002000200020002000200020002000200020002000200020002000200
2559020002000200020002000200020002000200020002000200020002000200020002000200
2560020002000200020002000200020002000200020002000200020002000200020002000200
2561020002000200020002000200020002000200020002000200020002000200020002000200
2562020002000200020002000200020002000200020002000200020002000200020002000200
2563020002000200020002000200020002000200020002000200020002000200020002000200
2564020002000200020002000200020002000200020002000200020002000200020002000200
2565020002000200020002000200020002000200020002000200020002000200020002000200
2566020002000200020002000200020002000200020002000200020002000200020002000200
2567020002000200020002000200020002000200020002000200020002000200020002000200
2568020002000200020002000200020002000200020002000200020002000200020002000200
2569020002000200020002000200020002000200020002000200020002000200020002000200
2570020002000200020002000200020002000200020002000200020002000200020002000200
2571020002000200020002000200020002000200020002000200020002000200020002000200
2572020002000200020002000200020002000200020002000200020002000200020002000200
2573020002000200020004000400040004000200020002000200020002000200020002000200
2574040004000200020004000400020002000200020002000400040004000400040004000400
2575040004000400040004000400040004000400040004000200020002000200020002000400
2576040002000400020002000200040004000400040004000400020002000200020002000200
2577020002000200020002000200020002000200020002000500050005000500020002000200
2578020002000200020002000200040002000200020002000200020002000200020002000200
2579020002000200020002000200020002000200020002000200020002000200020002000200
2580020002000200020002000200020002000200020002000200020002000200020002000200
2581020002000200020002000200020002000200020002000200020002000200020002000200
2582020002000200020002000200020002000200020002000200020002000200020002000200
2583020002000200020002000200020002000200020002000200020002000200020002000200
2584020002000200020002000200020002000200020002000200020002000200020002000200
2585020002000200020002000200020002000200020002000200020002000200020002000200
2586020002000200020002000200020002000200020002000200020002000200020002000200
2587020002000200020002000200020003000100010000000000020002000200020002000200
2588020002000200020002000200020002000200020002000200020002000200020002000200
2589020002000200020002000200020002000200020002000200020002000200020002000200
2590020002000200020002000200020002000200020002000200020002000200020002000200
2591020002000200020002000200020002000200020002000200020002000200020002000200
2592020002000200020002000200020002000200020002000200020002000200020002000200
2593020002000200020002000200020002000200020002000200020002000200020002000200
2594020002000200020002000200020002000200020002000200020002000200020002000200
2595020002000200020002000200020002000200020002000200020002000200020002000200
2596020002000200020002000200020002000200020002000200020002000200020002000200
2597020002000200020002000200020002000200020002000200020002000200020002000200
2598020002000200020002000200020002000200020002000200020002000200020002000200
2599020002000200020002000200020002000200020002000200020002000200020002000200
2600020002000200020002000200020002000200020002000200020002000200020002000200
2601020002000200020002000200020002000200020002000200020002000200020002000200
2602020002000200020002000200020002000200020002000200020002000200020002000200
2603020002000200020002000200020002000200020002000200020002000200020002000200
2604020002000200020002000200020002000200020002000200020002000200020002000200
2605020002000200020002000200020002000200020002000200020002000200020002000200
2606020002000200020002000200020002000200020002000200020002000200020002000200
2607020002000200020002000200020002000200020002000200020002000200020002000200
2608020002000200020002000200020002000200020002000200020002000200020002000200
2609020002000200020002000200020002000200020002000200020002000200020002000200
2610020002000200020002000200020002000200020002000200020002000200020002000200
2611020002000200020002000200020002000200020002000200020002000200020002000200
2612020002000200020002000200020002000200020002000200020002000200020002000200
2613020002000200020002000200020002000200020002000200020002000200020002000200
2614020002000200020002000200020002000200020002000200020002000200020002000200
2615020002000200020002000200020002000200020002000200020002000200020002000200
2616020002000200020002000200020002000200020002000200020002000200020002000200
2617020002000200020004000400040004000200020002000200020002000200020002000200
2618020002000400040002000400040004000400040004000400040004000400020002000200
2619020002000200020002000200020002000200020002000200020002000200020002000200
2620020004000400020002000200040002000400040004000200020002000200020004000400
2621040004000400040004000400040004000200020002000200020005000500050005000200
2622020002000200020002000200020002000200020004000200020002000200020002000200
2623020002000200020002000200020002000200020002000200020002000200020002000200
2624020002000200020002000200020002000200020002000200020002000200020002000200
2625020002000200020002000200020002000200020002000200020002000200020002000200
2626020002000200020002000200020002000200020002000200020002000200020002000200
2627020002000200020002000200020002000200020002000200020002000200020002000200
2628020002000200020002000200020002000200020002000200020002000200020002000200
2629020002000200020002000200020002000200020002000200020002000200020002000200
2630020002000200020002000200020002000200020002000200020002000200020002000200
2631020002000200020002000200020002000200020002000300010001000000000002000200
2632020002000200020002000200020002000200020002000200020002000200020002000200
2633020002000200020002000200020002000200020002000200020002000200020002000200
2634020002000200020002000200020002000200020002000200020002000200020002000200
2635020002000200020002000200020002000200020002000200020002000200020002000200
2636020002000200020002000200020002000200020002000200020002000200020002000200
2637020002000200020002000200020002000200020002000200020002000200020002000200
2638020002000200020002000200020002000200020002000200020002000200020002000200
2639020002000200020002000200020002000200020002000200020002000200020002000200
2640020002000200020002000200020002000200020002000200020002000200020002000200
2641020002000200020002000200020002000200020002000200020002000200020002000200
2642020002000200020002000200020002000200020002000200020002000200020002000200
2643020002000200020002000200020002000200020002000200020002000200020002000200
2644020002000200020002000200020002000200020002000200020002000200020002000200
2645020002000200020002000200020002000200020002000200020002000200020002000200
2646020002000200020002000200020002000200020002000200020002000200020002000200
2647020002000200020002000200020002000200020002000200020002000200020002000200
2648020002000200020002000200020002000200020002000200020002000200020002000200
2649020002000200020002000200020002000200020002000200020002000200020002000200
2650020002000200020002000200020002000200020002000200020002000200020002000200
2651020002000200020002000200020002000200020002000200020002000200020002000200
2652020002000200020002000200020002000200020002000200020002000200020002000200
2653020002000200020002000200020002000200020002000200020002000200020002000200
2654020002000200020002000200020002000200020002000200020002000200020002000200
2655020002000200020002000200020002000200020002000200020002000200020002000200
2656020002000200020002000200020002000200020002000200020002000200020002000200
2657020002000200020002000200020002000200020002000200020002000200020002000200
2658020002000200020002000200020002000200020002000200020002000200020002000200
2659020002000200020002000200020002000200020002000200020002000200020002000200
2660020002000200020002000200020002000200020002000200020002000200020002000200
2661020002000200020004000400040004000200020002000200020002000200020002000200
2662020002000200040004000400020004000400040002000200020002000200020002000200
2663020002000200020002000200020002000200020002000200020002000200020002000200
2664020002000200040004000200020002000200020004000400040002000200020002000200
2665020002000200020002000200020002000200020002000200040004000400050005000500
2666050002000200020002000200020002000200020002000200020002000400020002000200
2667020002000200020002000200020002000200020002000200020002000200020002000200
2668020002000200020002000200020002000200020002000200020002000200020002000200
2669020002000200020002000200020002000200020002000200020002000200020002000200
2670020002000200020002000200020002000200020002000200020002000200020002000200
2671020002000200020002000200020002000200020002000200020002000200020002000200
2672020002000200020002000200020002000200020002000200020002000200020002000200
2673020002000200020002000200020002000200020002000200020002000200020002000200
2674020002000200020002000200020002000200020002000200020002000200020002000200
2675020002000200020002000200020002000200020002000200020002000200030001000100
2676000000000200020002000200020002000200020002000200020002000200020002000200
2677020002000200020002000200020002000200020002000200020002000200020002000200
2678020002000200020002000200020002000200020002000200020002000200020002000200
2679020002000200020002000200020002000200020002000200020002000200020002000200
2680020002000200020002000200020002000200020002000200020002000200020002000200
2681020002000200020002000200020002000200020002000200020002000200020002000200
2682020002000200020002000200020002000200020002000200020002000200020002000200
2683020002000200020002000200020002000200020002000200020002000200020002000200
2684020002000200020002000200020002000200020002000200020002000200020002000200
2685020002000200020002000200020002000200020002000200020002000200020002000200
2686020002000200020002000200020002000200020002000200020002000200020002000200
2687020002000200020002000200020002000200020002000200020002000200020002000200
2688020002000200020002000200020002000200020002000200020002000200020002000200
2689020002000200020002000200020002000200020002000200020002000200020002000200
2690020002000200020002000200020002000200020002000200020002000200020002000200
2691020002000200020002000200020002000200020002000200020002000200020002000200
2692020002000200020002000200020002000200020002000200020002000200020002000200
2693020002000200020002000200020002000200020002000200020002000200020002000200
2694020002000200020002000200020002000200020002000200020002000200020002000200
2695020002000200020002000200020002000200020002000200020002000200020002000200
2696020002000200020002000200020002000200020002000200020002000200020002000200
2697020002000200020002000200020002000200020002000200020002000200020002000200
2698020002000200020002000200020002000200020002000200020002000200020002000200
2699020002000200020002000200020002000200020002000200020002000200020002000200
2700020002000200020002000200020002000200020002000200020002000200020002000200
2701020002000200020002000200020002000200020002000200020002000200020002000200
2702020002000200020002000200020002000200020002000200020002000200020002000200
2703020002000200020002000200020002000200020002000200020002000200020002000200
2704020002000200020002000200020002000200020002000200020002000200020002000200
2705020002000400040002000200040004000400020002000200020002000200020002000200
2706020002000200040004000400040004000200040004000400020002000200020002000200
2707020002000200020002000200020002000200020002000200020002000200020002000200
2708020002000200020002000400040002000200020002000200040004000400020002000200
2709020002000200020002000200020002000200020002000200020002000200020002000500
2710050005000500020002000200020002000200020002000200020002000200020002000200
2711040002000200020002000200020002000200020002000200020002000200020002000200
2712020002000200020002000200020002000200020002000200020002000200020002000200
2713020002000200020002000200020002000200020002000200020002000200020002000200
2714020002000200020002000200020002000200020002000200020002000200020002000200
2715020002000200020002000200020002000200020002000200020002000200020002000200
2716020002000200020002000200020002000200020002000200020002000200020002000200
2717020002000200020002000200020002000200020002000200020002000200020002000200
2718020002000200020002000200020002000200020002000200020002000200020002000200
2719020002000200020002000200020002000200020002000200020002000200020002000200
2720020003000100010000000000020002000200020002000200020002000200020002000200
2721020002000200020002000200020002000200020002000200020002000200020002000200
2722020002000200020002000200020002000200020002000200020002000200020002000200
2723020002000200020002000200020002000200020002000200020002000200020002000200
2724020002000200020002000200020002000200020002000200020002000200020002000200
2725020002000200020002000200020002000200020002000200020002000200020002000200
2726020002000200020002000200020002000200020002000200020002000200020002000200
2727020002000200020002000200020002000200020002000200020002000200020002000200
2728020002000200020002000200020002000200020002000200020002000200020002000200
2729020002000200020002000200020002000200020002000200020002000200020002000200
2730020002000200020002000200020002000200020002000200020002000200020002000200
2731020002000200020002000200020002000200020002000200020002000200020002000200
2732020002000200020002000200020002000200020002000200020002000200020002000200
2733020002000200020002000200020002000200020002000200020002000200020002000200
2734020002000200020002000200020002000200020002000200020002000200020002000200
2735020002000200020002000200020002000200020002000200020002000200020002000200
2736020002000200020002000200020002000200020002000200020002000200020002000200
2737020002000200020002000200020002000200020002000200020002000200020002000200
2738020002000200020002000200020002000200020002000200020002000200020002000200
2739020002000200020002000200020002000200020002000200020002000200020002000200
2740020002000200020002000200020002000200020002000200020002000200020002000200
2741020002000200020002000200020002000200020002000200020002000200020002000200
2742020002000200020002000200020002000200020002000200020002000200020002000200
2743020002000200020002000200020002000200020002000200020002000200020002000200
2744020002000200020002000200020002000200020002000200020002000200020002000200
2745020002000200020002000200020002000200020002000200020002000200020002000200
2746020002000200020002000200020002000200020002000200020002000200020002000200
2747020002000200020002000200020002000200020002000200020002000200020002000200
2748020002000200020002000200020002000200020002000200020002000200020002000200
2749020002000200020004000400040002000400040004000200020002000200020002000200
2750020002000200040004000400040004000400040002000400040004000200020002000200
2751020002000200020002000200020002000200020002000200020002000200020004000400
2752040004000400040004000400040004000400020002000200020002000400040004000200
2753020002000200020002000200020002000200020002000200020002000200020002000200
2754020005000500050005000200040002000200020002000200020002000200020002000200
2755020002000200020004000200020002000200020002000200020002000200020002000200
2756020002000200020002000200020002000200020002000200020002000200020002000200
2757020002000200020002000200020002000200020002000200020002000200020002000200
2758020002000200020002000200020002000200020002000200020002000200020002000200
2759020002000200020002000200020002000200020002000200020002000200020002000200
2760020002000200020002000200020002000200020002000200020002000200020002000200
2761020002000200020002000200020002000200020002000200020002000200020002000200
2762020002000200020002000200020002000200020002000200020002000200020002000200
2763020002000200020002000200020002000200020002000200020002000200020002000200
2764020002000200020002000300010001000000000002000200020002000200020002000200
2765020002000200020002000200020002000200020002000200020002000200020002000200
2766020002000200020002000200020002000200020002000200020002000200020002000200
2767020002000200020002000200020002000200020002000200020002000200020002000200
2768020002000200020002000200020002000200020002000200020002000200020002000200
2769020002000200020002000200020002000200020002000200020002000200020002000200
2770020002000200020002000200020002000200020002000200020002000200020002000200
2771020002000200020002000200020002000200020002000200020002000200020002000200
2772020002000200020002000200020002000200020002000200020002000200020002000200
2773020002000200020002000200020002000200020002000200020002000200020002000200
2774020002000200020002000200020002000200020002000200020002000200020002000200
2775020002000200020002000200020002000200020002000200020002000200020002000200
2776020002000200020002000200020002000200020002000200020002000200020002000200
2777020002000200020002000200020002000200020002000200020002000200020002000200
2778020002000200020002000200020002000200020002000200020002000200020002000200
2779020002000200020002000200020002000200020002000200020002000200020002000200
2780020002000200020002000200020002000200020002000200020002000200020002000200
2781020002000200020002000200020002000200020002000200020002000200020002000200
2782020002000200020002000200020002000200020002000200020002000200020002000200
2783020002000200020002000200020002000200020002000200020002000200020002000200
2784020002000200020002000200020002000200020002000200020002000200020002000200
2785020002000200020002000200020002000200020002000200020002000200020002000200
2786020002000200020002000200020002000200020002000200020002000200020002000200
2787020002000200020002000200020002000200020002000200020002000200020002000200
2788020002000200020002000200020002000200020002000200020002000200020002000200
2789020002000200020002000200020002000200020002000200020002000200020002000200
2790020002000200020002000200020002000200020002000200020002000200020002000200
2791020002000200020002000200020002000200020002000200020002000200020002000200
2792020002000200020002000200020002000200020002000200020002000200020002000200
2793020002000200020002000200040004000400020004000400040002000200020002000200
2794020002000200040004000400040002000200040004000400020004000400040002000200
2795020002000400040004000400040004000400040004000400040004000400040004000400
2796040004000200020002000200020002000400040002000400020002000200020004000400
2797040004000400040002000200020002000200020002000200020002000200020002000200
2798020002000200050005000500050002000200020004000200020002000200020002000200
2799020002000200020002000200020002000400020002000200020002000200020002000200
2800020002000200020002000200020002000200020002000200020002000200020002000200
2801020002000200020002000200020002000200020002000200020002000200020002000200
2802020002000200020002000200020002000200020002000200020002000200020002000200
2803020002000200020002000200020002000200020002000200020002000200020002000200
2804020002000200020002000200020002000200020002000200020002000200020002000200
2805020002000200020002000200020002000200020002000200020002000200020002000200
2806020002000200020002000200020002000200020002000200020002000200020002000200
2807020002000200020002000200020002000200020002000200020002000200020002000200
2808020002000200020002000200020002000200030001000100000000000200020002000200
2809020002000200020002000200020002000200020002000200020002000200020002000200
2810020002000200020002000200020002000200020002000200020002000200020002000200
2811020002000200020002000200020002000200020002000200020002000200020002000200
2812020002000200020002000200020002000200020002000200020002000200020002000200
2813020002000200020002000200020002000200020002000200020002000200020002000200
2814020002000200020002000200020002000200020002000200020002000200020002000200
2815020002000200020002000200020002000200020002000200020002000200020002000200
2816020002000200020002000200020002000200020002000200020002000200020002000200
2817020002000200020002000200020002000200020002000200020002000200020002000200
2818020002000200020002000200020002000200020002000200020002000200020002000200
2819020002000200020002000200020002000200020002000200020002000200020002000200
2820020002000200020002000200020002000200020002000200020002000200020002000200
2821020002000200020002000200020002000200020002000200020002000200020002000200
2822020002000200020002000200020002000200020002000200020002000200020002000200
2823020002000200020002000200020002000200020002000200020002000200020002000200
2824020002000200020002000200020002000200020002000200020002000200020002000200
2825020002000200020002000200020002000200020002000200020002000200020002000200
2826020002000200020002000200020002000200020002000200020002000200020002000200
2827020002000200020002000200020002000200020002000200020002000200020002000200
2828020002000200020002000200020002000200020002000200020002000200020002000200
2829020002000200020002000200020002000200020002000200020002000200020002000200
2830020002000200020002000200020002000200020002000200020002000200020002000200
2831020002000200020002000200020002000200020002000200020002000200020002000200
2832020002000200020002000200020002000200020002000200020002000200020002000200
2833020002000200020002000200020002000200020002000200020002000200020002000200
2834020002000200020002000200020002000200020002000200020002000200020002000200
2835020002000200020002000200020002000200020002000200020002000200020002000200
2836020002000200020002000200020002000200020002000200020002000200020002000200
2837020002000200020002000200020002000400040004000200040004000400020002000200
2838020002000200040004000400040002000200020002000400040004000400040004000400
2839040004000400040004000400020002000200020002000200020002000200020002000200
2840020002000200020002000200020002000200020004000400020002000200020004000200
2841040004000400020002000200020002000400040004000400040004000400040004000200
2842020002000200020002000500050005000500020002000200020002000400020002000200
2843020002000200020002000200020002000200020002000200040002000200020002000200
2844020002000200020002000200020002000200020002000200020002000200020002000200
2845020002000200020002000200020002000200020002000200020002000200020002000200
2846020002000200020002000200020002000200020002000200020002000200020002000200
2847020002000200020002000200020002000200020002000200020002000200020002000200
2848020002000200020002000200020002000200020002000200020002000200020002000200
2849020002000200020002000200020002000200020002000200020002000200020002000200
2850020002000200020002000200020002000200020002000200020002000200020002000200
2851020002000200020002000200020002000200020002000200020002000200020002000200
2852020002000200020002000200020002000200020002000200020003000100010000000000
2853020002000200020002000200020002000200020002000200020002000200020002000200
2854020002000200020002000200020002000200020002000200020002000200020002000200
2855020002000200020002000200020002000200020002000200020002000200020002000200
2856020002000200020002000200020002000200020002000200020002000200020002000200
2857020002000200020002000200020002000200020002000200020002000200020002000200
2858020002000200020002000200020002000200020002000200020002000200020002000200
2859020002000200020002000200020002000200020002000200020002000200020002000200
2860020002000200020002000200020002000200020002000200020002000200020002000200
2861020002000200020002000200020002000200020002000200020002000200020002000200
2862020002000200020002000200020002000200020002000200020002000200020002000200
2863020002000200020002000200020002000200020002000200020002000200020002000200
2864020002000200020002000200020002000200020002000200020002000200020002000200
2865020002000200020002000200020002000200020002000200020002000200020002000200
2866020002000200020002000200020002000200020002000200020002000200020002000200
2867020002000200020002000200020002000200020002000200020002000200020002000200
2868020002000200020002000200020002000200020002000200020002000200020002000200
2869020002000200020002000200020002000200020002000200020002000200020002000200
2870020002000200020002000200020002000200020002000200020002000200020002000200
2871020002000200020002000200020002000200020002000200020002000200020002000200
2872020002000200020002000200020002000200020002000200020002000200020002000200
2873020002000200020002000200020002000200020002000200020002000200020002000200
2874020002000200020002000200020002000200020002000200020002000200020002000200
2875020002000200020002000200020002000200020002000200020002000200020002000200
2876020002000200020002000200020002000200020002000200020002000200020002000200
2877020002000200020002000200020002000200020002000200020002000200020002000200
2878020002000200020002000200020002000200020002000200020002000200020002000200
2879020002000200020002000200020002000200020002000200020002000200020002000200
2880020002000200020002000200020002000200020002000200020002000200020002000200
2881020002000200020002000200020002000200020004000400040002000400040004000200
2882020002000200020004000400040002000200020002000200020004000400040004000400
2883040002000200020002000200020002000200020002000200020002000200020002000200
2884020002000200020002000200020002000200020002000200040004000200020002000200
2885020002000400040004000200020002000200020002000200020002000200020002000200
2886020002000200040004000400040005000500050005000200020002000200020002000200
2887040002000200020002000200020002000200020002000200020002000200020004000200
2888020002000200020002000200020002000200020002000200020002000200020002000200
2889020002000200020002000200020002000200020002000200020002000200020002000200
2890020002000200020002000200020002000200020002000200020002000200020002000200
2891020002000200020002000200020002000200020002000200020002000200020002000200
2892020002000200020002000200020002000200020002000200020002000200020002000200
2893020002000200020002000200020002000200020002000200020002000200020002000200
2894020002000200020002000200020002000200020002000200020002000200020002000200
2895020002000200020002000200020002000200020002000200020002000200020002000200
2896020002000200020002000200020002000200020002000200020002000200020002000300
2897010001000000000002000200020002000200020002000200020002000200020002000200
2898020002000200020002000200020002000200020002000200020002000200020002000200
2899020002000200020002000200020002000200020002000200020002000200020002000200
2900020002000200020002000200020002000200020002000200020002000200020002000200
2901020002000200020002000200020002000200020002000200020002000200020002000200
2902020002000200020002000200020002000200020002000200020002000200020002000200
2903020002000200020002000200020002000200020002000200020002000200020002000200
2904020002000200020002000200020002000200020002000200020002000200020002000200
2905020002000200020002000200020002000200020002000200020002000200020002000200
2906020002000200020002000200020002000200020002000200020002000200020002000200
2907020002000200020002000200020002000200020002000200020002000200020002000200
2908020002000200020002000200020002000200020002000200020002000200020002000200
2909020002000200020002000200020002000200020002000200020002000200020002000200
2910020002000200020002000200020002000200020002000200020002000200020002000200
2911020002000200020002000200020002000200020002000200020002000200020002000200
2912020002000200020002000200020002000200020002000200020002000200020002000200
2913020002000200020002000200020002000200020002000200020002000200020002000200
2914020002000200020002000200020002000200020002000200020002000200020002000200
2915020002000200020002000200020002000200020002000200020002000200020002000200
2916020002000200020002000200020002000200020002000200020002000200020002000200
2917020002000200020002000200020002000200020002000200020002000200020002000200
2918020002000200020002000200020002000200020002000200020002000200020002000200
2919020002000200020002000200020002000200020002000200020002000200020002000200
2920020002000200020002000200020002000200020002000200020002000200020002000200
2921020002000200020002000200020002000200020002000200020002000200020002000200
2922020002000200020002000200020002000200020002000200020002000200020002000200
2923020002000200020002000200020002000200020002000200020002000200020002000200
2924020002000200020002000200020002000200020002000200020002000200020002000200
2925020002000200020002000200020002000200020002000200040004000400020004000400
2926040002000200020004000400040004000200020002000200020004000400040004000400
2927040004000400020002000200020002000200020002000200020002000200020002000200
2928020002000200020002000200020002000200020002000200020002000400040002000200
2929020002000200020004000400040002000200020002000200020002000200020002000200
2930020002000200020002000200020002000500050005000500050002000200020002000200
2931020002000200020004000200020002000200020002000200020002000200020002000200
2932020002000400020002000200020002000200020002000200020002000200020002000200
2933020002000200020002000200020002000200020002000200020002000200020002000200
2934020002000200020002000200020002000200020002000200020002000200020002000200
2935020002000200020002000200020002000200020002000200020002000200020002000200
2936020002000200020002000200020002000200020002000200020002000200020002000200
2937020002000200020002000200020002000200020002000200020002000200020002000200
2938020002000200020002000200020002000200020002000200020002000200020002000200
2939020002000200020002000200020002000200020002000200020002000200020002000200
2940020002000200020002000200020002000200020002000200020002000200020002000200
2941020002000200030001000100000000000200020002000200020002000200020002000200
2942020002000200020002000200020002000200020002000200020002000200020002000200
2943020002000200020002000200020002000200020002000200020002000200020002000200
2944020002000200020002000200020002000200020002000200020002000200020002000200
2945020002000200020002000200020002000200020002000200020002000200020002000200
2946020002000200020002000200020002000200020002000200020002000200020002000200
2947020002000200020002000200020002000200020002000200020002000200020002000200
2948020002000200020002000200020002000200020002000200020002000200020002000200
2949020002000200020002000200020002000200020002000200020002000200020002000200
2950020002000200020002000200020002000200020002000200020002000200020002000200
2951020002000200020002000200020002000200020002000200020002000200020002000200
2952020002000200020002000200020002000200020002000200020002000200020002000200
2953020002000200020002000200020002000200020002000200020002000200020002000200
2954020002000200020002000200020002000200020002000200020002000200020002000200
2955020002000200020002000200020002000200020002000200020002000200020002000200
2956020002000200020002000200020002000200020002000200020002000200020002000200
2957020002000200020002000200020002000200020002000200020002000200020002000200
2958020002000200020002000200020002000200020002000200020002000200020002000200
2959020002000200020002000200020002000200020002000200020002000200020002000200
2960020002000200020002000200020002000200020002000200020002000200020002000200
2961020002000200020002000200020002000200020002000200020002000200020002000200
2962020002000200020002000200020002000200020002000200020002000200020002000200
2963020002000200020002000200020002000200020002000200020002000200020002000200
2964020002000200020002000200020002000200020002000200020002000200020002000200
2965020002000200020002000200020002000200020002000200020002000200020002000200
2966020002000200020002000200020002000200020002000200020002000200020002000200
2967020002000200020002000200020002000200020002000200020002000200020002000200
2968020002000200020002000200020002000200020002000200020002000200020002000200
2969020002000200020002000200020002000200020002000200020002000400040004000200
2970040004000400020004000400040004000200020002000200020004000400040004000400
2971040004000400040004000200020002000200020002000200020002000200020002000200
2972020002000200020002000200020002000400040004000400040004000400040004000400
2973020002000200020002000200040004000200020002000200020002000200020002000200
2974020002000200020002000200020002000200020005000500050005000200040002000200
2975020002000200020002000200020002000400020002000200020002000200020002000200
2976020002000200020002000200040002000200020002000200020002000200020002000200
2977020002000200020002000200020002000200020002000200020002000200020002000200
2978020002000200020002000200020002000200020002000200020002000200020002000200
2979020002000200020002000200020002000200020002000200020002000200020002000200
2980020002000200020002000200020002000200020002000200020002000200020002000200
2981020002000200020002000200020002000200020002000200020002000200020002000200
2982020002000200020002000200020002000200020002000200020002000200020002000200
2983020002000200020002000200020002000200020002000200020002000200020002000200
2984020002000200020002000200020002000200020002000200020002000200020002000200
2985020002000200020002000200020003000100010000000000020002000200020002000200
2986020002000200020002000200020002000200020002000200020002000200020002000200
2987020002000200020002000200020002000200020002000200020002000200020002000200
2988020002000200020002000200020002000200020002000200020002000200020002000200
2989020002000200020002000200020002000200020002000200020002000200020002000200
2990020002000200020002000200020002000200020002000200020002000200020002000200
2991020002000200020002000200020002000200020002000200020002000200020002000200
2992020002000200020002000200020002000200020002000200020002000200020002000200
2993020002000200020002000200020002000200020002000200020002000200020002000200
2994020002000200020002000200020002000200020002000200020002000200020002000200
2995020002000200020002000200020002000200020002000200020002000200020002000200
2996020002000200020002000200020002000200020002000200020002000200020002000200
2997020002000200020002000200020002000200020002000200020002000200020002000200
2998020002000200020002000200020002000200020002000200020002000200020002000200
2999020002000200020002000200020002000200020002000200020002000200020002000200
3000020002000200020002000200020002000200020002000200020002000200020002000200
3001020002000200020002000200020002000200020002000200020002000200020002000200
3002020002000200020002000200020002000200020002000200020002000200020002000200
3003020002000200020002000200020002000200020002000200020002000200020002000200
3004020002000200020002000200020002000200020002000200020002000200020002000200
3005020002000200020002000200020002000200020002000200020002000200020002000200
3006020002000200020002000200020002000200020002000200020002000200020002000200
3007020002000200020002000200020002000200020002000200020002000200020002000200
3008020002000200020002000200020002000200020002000200020002000200020002000200
3009020002000200020002000200020002000200020002000200020002000200020002000200
3010020002000200020002000200020002000200020002000200020002000200020002000200
3011020002000200020002000200020002000200020002000200020002000200020002000200
3012020002000200020002000200020002000200020002000200020002000200020002000200
3013020002000200020002000200020002000200020002000200020002000200040004000400
3014040002000400040004000400040004000200020002000200020004000400040004000200
3015020004000400040004000400040002000200020002000200040004000400040004000400
3016040004000400040004000400040004000400040004000400020002000200020002000200
3017040004000200040002000200020004000400040004000400040002000200020002000200
3018020002000200020002000200020002000200020002000200050005000500050002000200
3019020004000200020006000600060006000200020002000200040006000600060002000200
3020020002000200020002000200020002000200020004000200020002000200020002000200
3021020002000200020002000200020002000200020002000200020002000200020002000200
3022020002000200020002000200020002000200020002000200020002000200020002000200
3023020002000200020002000200020002000200020002000200020002000200020002000200
3024020002000200020002000200020002000200020002000200020002000200020002000200
3025020002000200020002000200020002000200020002000200020002000200020002000200
3026020002000200020002000200020002000200020002000200020002000200020002000200
3027020002000200020002000200020002000200020002000200020002000200020002000200
3028020002000200020002000200020002000200020002000200020002000200020002000200
3029020002000200020002000200020002000200020002000300010001000000000002000200
3030020002000200020002000200020002000200020002000200020002000200020002000200
3031020002000200020002000200020002000200020002000200020002000200020002000200
3032020002000200020002000200020002000200020002000200020002000200020002000200
3033020002000200020002000200020002000200020002000200020002000200020002000200
3034020002000200020002000200020002000200020002000200020002000200020002000200
3035020002000200020002000200020002000200020002000200020002000200020002000200
3036020002000200020002000200020002000200020002000200020002000200020002000200
3037020002000200020002000200020002000200020002000200020002000200020002000200
3038020002000200020002000200020002000200020002000200020002000200020002000200
3039020002000200020002000200020002000200020002000200020002000200020002000200
3040020002000200020002000200020002000200020002000200020002000200020002000200
3041020002000200020002000200020002000200020002000200020002000200020002000200
3042020002000200020002000200020002000200020002000200020002000200020002000200
3043020002000200020002000200020002000200020002000200020002000200020002000200
3044020002000200020002000200020002000200020002000200020002000200020002000200
3045020002000200020002000200020002000200020002000200020002000200020002000200
3046020002000200020002000200020002000200020002000200020002000200020002000200
3047020002000200020002000200020002000200020002000200020002000200020002000200
3048020002000200020002000200020002000200020002000200020002000200020002000200
3049020002000200020002000200020002000200020002000200020002000200020002000200
3050020002000200020002000200020002000200020002000200020002000200020002000200
3051020002000200020002000200020002000200020002000200020002000200020002000200
3052020002000200020002000200020002000200020002000200020002000200020002000200
3053020002000200020002000200020002000200020002000200020002000200020002000200
3054020002000200020002000200020002000200020002000200020002000200020002000200
3055020002000200020002000200020002000200020002000200020002000200020002000200
3056020002000200020002000200020002000200020002000200020002000200020002000200
3057020002000200020002000200020002000200020002000200020002000200020002000400
3058040004000400020004000400040004000200020002000200020004000400040004000200
3059020002000200040004000400040004000400040004000400040004000400040002000200
3060020002000200020002000200020002000200020002000200020002000200020002000200
3061020002000400040002000200020004000200040004000400020002000200020002000400
3062040004000400040004000400040004000400020002000200020002000500050005000500
3063020002000200020002000400020006000600020002000600060002000200020006000600
3064020002000200020002000200020002000200020002000200020002000400020002000200
3065020002000200020002000200020002000200020002000200020002000200020002000200
3066020002000200020002000200020002000200020002000200020002000200020002000200
3067020002000200020002000200020002000200020002000200020002000200020002000200
3068020002000200020002000200020002000200020002000200020002000200020002000200
3069020002000200020002000200020002000200020002000200020002000200020002000200
3070020002000200020002000200020002000200020002000200020002000200020002000200
3071020002000200020002000200020002000200020002000200020002000200020002000200
3072020002000200020002000200020002000200020002000200020002000200020002000200
3073020002000200020002000200020002000200020002000200020002000200030001000100
3074000000000200020002000200020002000200020002000200020002000200020002000200
3075020002000200020002000200020002000200020002000200020002000200020002000200
3076020002000200020002000200020002000200020002000200020002000200020002000200
3077020002000200020002000200020002000200020002000200020002000200020002000200
3078020002000200020002000200020002000200020002000200020002000200020002000200
3079020002000200020002000200020002000200020002000200020002000200020002000200
3080020002000200020002000200020002000200020002000200020002000200020002000200
3081020002000200020002000200020002000200020002000200020002000200020002000200
3082020002000200020002000200020002000200020002000200020002000200020002000200
3083020002000200020002000200020002000200020002000200020002000200020002000200
3084020002000200020002000200020002000200020002000200020002000200020002000200
3085020002000200020002000200020002000200020002000200020002000200020002000200
3086020002000200020002000200020002000200020002000200020002000200020002000200
3087020002000200020002000200020002000200020002000200020002000200020002000200
3088020002000200020002000200020002000200020002000200020002000200020002000200
3089020002000200020002000200020002000200020002000200020002000200020002000200
3090020002000200020002000200020002000200020002000200020002000200020002000200
3091020002000200020002000200020002000200020002000200020002000200020002000200
3092020002000200020002000200020002000200020002000200020002000200020002000200
3093020002000200020002000200020002000200020002000200020002000200020002000200
3094020002000200020002000200020002000200020002000200020002000200020002000200
3095020002000200020002000200020002000200020002000200020002000200020002000200
3096020002000200020002000200020002000200020002000200020002000200020002000200
3097020002000200020002000200020002000200020002000200020002000200020002000200
3098020002000200020002000200020002000200020002000200020002000200020002000200
3099020002000200020002000200020002000200020002000200020002000200020002000200
3100020002000200020002000200020002000200020002000200020002000200020002000200
3101020002000200020002000200020002000200020002000200020002000200020002000200
3102020004000400040004000200040004000400020002000200020002000400040004000200
3103020002000200020002000400040004000400040004000200020002000200020002000200
3104020002000200020002000200020002000200020002000200020002000200020002000200
3105020002000200020004000400020002000200020002000400040004000200020002000200
3106020002000200020002000200020002000200020002000200020004000400040005000500
3107050005000200020002000200020002000200040002000200020002000200060006000200
3108020006000600020002000200020002000200020002000200020002000200020002000200
3109040002000200020002000200020002000200020002000200020002000200020002000200
3110020002000200020002000200020002000200020002000200020002000200020002000200
3111020002000200020002000200020002000200020002000200020002000200020002000200
3112020002000200020002000200020002000200020002000200020002000200020002000200
3113020002000200020002000200020002000200020002000200020002000200020002000200
3114020002000200020002000200020002000200020002000200020002000200020002000200
3115020002000200020002000200020002000200020002000200020002000200020002000200
3116020002000200020002000200020002000200020002000200020002000200020002000200
3117020002000200020002000200020002000200020002000200020002000200020002000200
3118020003000100010000000000020002000200020002000200020002000200020002000200
3119020002000200020002000200020002000200020002000200020002000200020002000200
3120020002000200020002000200020002000200020002000200020002000200020002000200
3121020002000200020002000200020002000200020002000200020002000200020002000200
3122020002000200020002000200020002000200020002000200020002000200020002000200
3123020002000200020002000200020002000200020002000200020002000200020002000200
3124020002000200020002000200020002000200020002000200020002000200020002000200
3125020002000200020002000200020002000200020002000200020002000200020002000200
3126020002000200020002000200020002000200020002000200020002000200020002000200
3127020002000200020002000200020002000200020002000200020002000200020002000200
3128020002000200020002000200020002000200020002000200020002000200020002000200
3129020002000200020002000200020002000200020002000200020002000200020002000200
3130020002000200020002000200020002000200020002000200020002000200020002000200
3131020002000200020002000200020002000200020002000200020002000200020002000200
3132020002000200020002000200020002000200020002000200020002000200020002000200
3133020002000200020002000200020002000200020002000200020002000200020002000200
3134020002000200020002000200020002000200020002000200020002000200020002000200
3135020002000200020002000200020002000200020002000200020002000200020002000200
3136020002000200020002000200020002000200020002000200020002000200020002000200
3137020002000200020002000200020002000200020002000200020002000200020002000200
3138020002000200020002000200020002000200020002000200020002000200020002000200
3139020002000200020002000200020002000200020002000200020002000200020002000200
3140020002000200020002000200020002000200020002000200020002000200020002000200
3141020002000200020002000200020002000200020002000200020002000200020002000200
3142020002000200020002000200020002000200020002000200020002000200020002000200
3143020002000200020002000200020002000200020002000200020002000200020002000200
3144020002000200020002000200020002000200020002000200020002000200020002000200
3145020002000200020002000200020002000200020002000200020002000200020002000200
3146020002000200040004000400040002000400040004000200020002000400040004000400
3147020002000200020002000200020004000400040004000400040002000200020002000200
3148020002000200020002000200020002000200020002000200020002000200020002000200
3149020002000200020002000200040004000200020002000200020004000400040002000200
3150020002000200020002000200020002000200020002000200020002000200020002000200
3151050005000500050002000200020002000200020002000200020004000200020002000200
3152020006000600020002000600060002000200020002000200020002000200020002000200
3153020002000200020004000200020002000200020002000200020002000200020002000200
3154020002000200020002000200020002000200020002000200020002000200020002000200
3155020002000200020002000200020002000200020002000200020002000200020002000200
3156020002000200020002000200020002000200020002000200020002000200020002000200
3157020002000200020002000200020002000200020002000200020002000200020002000200
3158020002000200020002000200020002000200020002000200020002000200020002000200
3159020002000200020002000200020002000200020002000200020002000200020002000200
3160020002000200020002000200020002000200020002000200020002000200020002000200
3161020002000200020002000200020002000200020002000200020002000200020002000200
3162020002000200020002000300010001000000000002000200020002000200020002000200
3163020002000200020002000200020002000200020002000200020002000200020002000200
3164020002000200020002000200020002000200020002000200020002000200020002000200
3165020002000200020002000200020002000200020002000200020002000200020002000200
3166020002000200020002000200020002000200020002000200020002000200020002000200
3167020002000200020002000200020002000200020002000200020002000200020002000200
3168020002000200020002000200020002000200020002000200020002000200020002000200
3169020002000200020002000200020002000200020002000200020002000200020002000200
3170020002000200020002000200020002000200020002000200020002000200020002000200
3171020002000200020002000200020002000200020002000200020002000200020002000200
3172020002000200020002000200020002000200020002000200020002000200020002000200
3173020002000200020002000200020002000200020002000200020002000200020002000200
3174020002000200020002000200020002000200020002000200020002000200020002000200
3175020002000200020002000200020002000200020002000200020002000200020002000200
3176020002000200020002000200020002000200020002000200020002000200020002000200
3177020002000200020002000200020002000200020002000200020002000200020002000200
3178020002000200020002000200020002000200020002000200020002000200020002000200
3179020002000200020002000200020002000200020002000200020002000200020002000200
3180020002000200020002000200020002000200020002000200020002000200020002000200
3181020002000200020002000200020002000200020002000200020002000200020002000200
3182020002000200020002000200020002000200020002000200020002000200020002000200
3183020002000200020002000200020002000200020002000200020002000200020002000200
3184020002000200020002000200020002000200020002000200020002000200020002000200
3185020002000200020002000200020002000200020002000200020002000200020002000200
3186020002000200020002000200020002000200020002000200020002000200020002000200
3187020002000200020002000200020002000200020002000200020002000200020002000200
3188020002000200020002000200020002000200020002000200020002000200020002000200
3189020002000200020002000200020002000200020002000200020002000200020002000200
3190020002000200020002000400040004000400020004000400040002000400040004000400
3191020002000200020002000200020004000400040004000400040004000400020002000200
3192020002000200020002000200020002000200020002000200020002000200020002000400
3193040004000400040004000400040004000400040002000200020002000200040004000400
3194020002000200020002000200020002000200020002000200020002000200020002000200
3195020002000500050005000500020004000200020002000200020002000200020002000400
3196020002000200020006000600020002000200060006000600060006000200020002000200
3197020002000200020002000200020002000400020002000200020002000200020002000200
3198020002000200020002000200020002000200020002000200020002000200020002000200
3199020002000200020002000200020002000200020002000200020002000200020002000200
3200020002000200020002000200020002000200020002000200020002000200020002000200
3201020002000200020002000200020002000200020002000200020002000200020002000200
3202020002000200020002000200020002000200020002000200020002000200020002000200
3203020002000200020002000200020002000200020002000200020002000200020002000200
3204020002000200020002000200020002000200020002000200020002000200020002000200
3205020002000200020002000200020002000200020002000200020002000200020002000200
3206020002000200020002000200020002000200030001000100000000000200020002000200
3207020002000200020002000200020002000200020002000200020002000200020002000200
3208020002000200020002000200020002000200020002000200020002000200020002000200
3209020002000200020002000200020002000200020002000200020002000200020002000200
3210020002000200020002000200020002000200020002000200020002000200020002000200
3211020002000200020002000200020002000200020002000200020002000200020002000200
3212020002000200020002000200020002000200020002000200020002000200020002000200
3213020002000200020002000200020002000200020002000200020002000200020002000200
3214020002000200020002000200020002000200020002000200020002000200020002000200
3215020002000200020002000200020002000200020002000200020002000200020002000200
3216020002000200020002000200020002000200020002000200020002000200020002000200
3217020002000200020002000200020002000200020002000200020002000200020002000200
3218020002000200020002000200020002000200020002000200020002000200020002000200
3219020002000200020002000200020002000200020002000200020002000200020002000200
3220020002000200020002000200020002000200020002000200020002000200020002000200
3221020002000200020002000200020002000200020002000200020002000200020002000200
3222020002000200020002000200020002000200020002000200020002000200020002000200
3223020002000200020002000200020002000200020002000200020002000200020002000200
3224020002000200020002000200020002000200020002000200020002000200020002000200
3225020002000200020002000200020002000200020002000200020002000200020002000200
3226020002000200020002000200020002000200020002000200020002000200020002000200
3227020002000200020002000200020002000200020002000200020002000200020002000200
3228020002000200020002000200020002000200020002000200020002000200020002000200
3229020002000200020002000200020002000200020002000200020002000200020002000200
3230020002000200020002000200020002000200020002000200020002000200020002000200
3231020002000200020002000200020002000200020002000200020002000200020002000200
3232020002000200020002000200020002000200020002000200020002000200020002000200
3233020002000200020002000200020002000200020002000200020002000200020002000200
3234020002000200020002000200020004000400040004000200040004000400040004000400
3235020002000200020002000200020004000400040004000200040004000400040004000200
3236020002000200040004000400040004000400040004000400040004000400040004000400
3237040004000400020002000200020002000200040004000200040002000200020002000400
3238040004000400040004000200020002000200020002000200020002000200020002000200
3239020002000200020005000500050005000200020002000400020002000200020002000200
3240020002000200040002000200020006000600020002000200020006000600020002000600
3241060002000200020002000200020002000200020002000200040002000200020002000200
3242020002000200020002000200020002000200020002000200020002000200020002000200
3243020002000200020002000200020002000200020002000200020002000200020002000200
3244020002000200020002000200020002000200020002000200020002000200020002000200
3245020002000200020002000200020002000200020002000200020002000200020002000200
3246020002000200020002000200020002000200020002000200020002000200020002000200
3247020002000200020002000200020002000200020002000200020002000200020002000200
3248020002000200020002000200020002000200020002000200020002000200020002000200
3249020002000200020002000200020002000200020002000200020002000200020002000200
3250020002000200020002000200020002000200020002000200020003000100010000000000
3251020002000200020002000200020002000200020002000200020002000200020002000200
3252020002000200020002000200020002000200020002000200020002000200020002000200
3253020002000200020002000200020002000200020002000200020002000200020002000200
3254020002000200020002000200020002000200020002000200020002000200020002000200
3255020002000200020002000200020002000200020002000200020002000200020002000200
3256020002000200020002000200020002000200020002000200020002000200020002000200
3257020002000200020002000200020002000200020002000200020002000200020002000200
3258020002000200020002000200020002000200020002000200020002000200020002000200
3259020002000200020002000200020002000200020002000200020002000200020002000200
3260020002000200020002000200020002000200020002000200020002000200020002000200
3261020002000200020002000200020002000200020002000200020002000200020002000200
3262020002000200020002000200020002000200020002000200020002000200020002000200
3263020002000200020002000200020002000200020002000200020002000200020002000200
3264020002000200020002000200020002000200020002000200020002000200020002000200
3265020002000200020002000200020002000200020002000200020002000200020002000200
3266020002000200020002000200020002000200020002000200020002000200020002000200
3267020002000200020002000200020002000200020002000200020002000200020002000200
3268020002000200020002000200020002000200020002000200020002000200020002000200
3269020002000200020002000200020002000200020002000200020002000200020002000200
3270020002000200020002000200020002000200020002000200020002000200020002000200
3271020002000200020002000200020002000200020002000200020002000200020002000200
3272020002000200020002000200020002000200020002000200020002000200020002000200
3273020002000200020002000200020002000200020002000200020002000200020002000200
3274020002000200020002000200020002000200020002000200020002000200020002000200
3275020002000200020002000200020002000200020002000200020002000200020002000200
3276020002000200020002000200020002000200020002000200020002000200020002000200
3277020002000200020002000200020002000200020002000200020002000200020002000200
3278020002000200020002000200020002000200040004000400040002000400040004000400
3279020002000200020002000200020004000400040004000200020002000400040004000400
3280040004000400040004000400040002000200020002000200020002000200020002000200
3281020002000200020002000200020002000200020002000400040002000200020002000400
3282020004000400040002000200020002000200040004000400040004000400040004000400
3283020002000200020002000200050005000500050002000200020002000200040002000200
3284020002000200020002000200020004000200020006000600020002000200020002000600
3285060002000200060006000200020002000200020002000200020002000200040004000200
3286020002000200020002000200020002000200020002000200020002000200020002000200
3287020002000200020002000200020002000200020002000200020002000200020002000200
3288020002000200020002000200020002000200020002000200020002000200020002000200
3289020002000200020002000200020002000200020002000200020002000200020002000200
3290020002000200020002000200020002000200020002000200020002000200020002000200
3291020002000200020002000200020002000200020002000200020002000200020002000200
3292020002000200020002000200020002000200020002000200020002000200020002000200
3293020002000200020002000200020002000200020002000200020002000200020002000200
3294020002000200020002000200020002000200020002000200020002000200020002000300
3295010001000000000002000200020002000200020002000200020002000200020002000200
3296020002000200020002000200020002000200020002000200020002000200020002000200
3297020002000200020002000200020002000200020002000200020002000200020002000200
3298020002000200020002000200020002000200020002000200020002000200020002000200
3299020002000200020002000200020002000200020002000200020002000200020002000200
3300020002000200020002000200020002000200020002000200020002000200020002000200
3301020002000200020002000200020002000200020002000200020002000200020002000200
3302020002000200020002000200020002000200020002000200020002000200020002000200
3303020002000200020002000200020002000200020002000200020002000200020002000200
3304020002000200020002000200020002000200020002000200020002000200020002000200
3305020002000200020002000200020002000200020002000200020002000200020002000200
3306020002000200020002000200020002000200020002000200020002000200020002000200
3307020002000200020002000200020002000200020002000200020002000200020002000200
3308020002000200020002000200020002000200020002000200020002000200020002000200
3309020002000200020002000200020002000200020002000200020002000200020002000200
3310020002000200020002000200020002000200020002000200020002000200020002000200
3311020002000200020002000200020002000200020002000200020002000200020002000200
3312020002000200020002000200020002000200020002000200020002000200020002000200
3313020002000200020002000200020002000200020002000200020002000200020002000200
3314020002000200020002000200020002000200020002000200020002000200020002000200
3315020002000200020002000200020002000200020002000200020002000200020002000200
3316020002000200020002000200020002000200020002000200020002000200020002000200
3317020002000200020002000200020002000200020002000200020002000200020002000200
3318020002000200020002000200020002000200020002000200020002000200020002000200
3319020002000200020002000200020002000200020002000200020002000200020002000200
3320020002000200020002000200020002000200020002000200020002000200020002000200
3321020002000200020002000200020002000200020002000200020002000200020002000200
3322020002000200020002000200020002000200020002000400040004000400020004000400
3323040002000200020002000200040004000400040004000200020002000200020004000400
3324040004000400020002000200020002000200020002000200020002000200020002000200
3325020002000200020002000200020002000200020002000200020004000400020002000200
3326020002000200040004000400020002000200020002000200020002000200020002000200
3327020002000200020004000400040004000500050005000500020002000200020002000200
3328020004000200020002000200020002000200020002000400020006000600020002000200
3329020002000200060006000200020006000600020002000200020002000500020002000400
3330040002000200020002000200020002000200020002000200020002000200020002000200
3331020002000200020002000200020002000200020002000200020002000200020002000200
3332020002000200020002000200020002000200020002000200020002000200020002000200
3333020002000200020002000200020002000200020002000200020002000200020002000200
3334020002000200020002000200020002000200020002000200020002000200020002000200
3335020002000200020002000200020002000200020002000200020002000200020002000200
3336020002000200020002000200020002000200020002000200020002000200020002000200
3337020002000200020002000200020002000200020002000200020002000200020002000200
3338020002000200020002000200020002000200020002000200020002000200020002000200
3339020002000200030001000100000000000200020002000200020002000200020002000200
3340020002000200020002000200020002000200020002000200020002000200020002000200
3341020002000200020002000200020002000200020002000200020002000200020002000200
3342020002000200020002000200020002000200020002000200020002000200020002000200
3343020002000200020002000200020002000200020002000200020002000200020002000200
3344020002000200020002000200020002000200020002000200020002000200020002000200
3345020002000200020002000200020002000200020002000200020002000200020002000200
3346020002000200020002000200020002000200020002000200020002000200020002000200
3347020002000200020002000200020002000200020002000200020002000200020002000200
3348020002000200020002000200020002000200020002000200020002000200020002000200
3349020002000200020002000200020002000200020002000200020002000200020002000200
3350020002000200020002000200020002000200020002000200020002000200020002000200
3351020002000200020002000200020002000200020002000200020002000200020002000200
3352020002000200020002000200020002000200020002000200020002000200020002000200
3353020002000200020002000200020002000200020002000200020002000200020002000200
3354020002000200020002000200020002000200020002000200020002000200020002000200
3355020002000200020002000200020002000200020002000200020002000200020002000200
3356020002000200020002000200020002000200020002000200020002000200020002000200
3357020002000200020002000200020002000200020002000200020002000200020002000200
3358020002000200020002000200020002000200020002000200020002000200020002000200
3359020002000200020002000200020002000200020002000200020002000200020002000200
3360020002000200020002000200020002000200020002000200020002000200020002000200
3361020002000200020002000200020002000200020002000200020002000200020002000200
3362020002000200020002000200020002000200020002000200020002000200020002000200
3363020002000200020002000200020002000200020002000200020002000200020002000200
3364020002000200020002000200020002000200020002000200020002000200020002000200
3365020002000200020002000200020002000200020002000200020002000200020002000200
3366020002000200020002000200020002000200020002000200040004000400040004000400
3367040004000400020002000200040004000400040002000200020002000200020002000400
3368040004000400040004000200020002000200020002000200020002000200020002000200
3369020002000200020002000200020002000200020002000200020002000200040004000200
3370020002000200020002000400040004000200020002000200020002000200020002000200
3371020002000200020002000200020002000200040005000500050005000200020002000200
3372020002000200020002000400020002000200020002000200020002000200040002000600
3373060002000200020002000200020006000600020002000600060002000200020002000200
3374020004000400020002000200020002000200020002000200020002000200020002000200
3375020002000200020002000200020002000200020002000200020002000200020002000200
3376020002000200020002000200020002000200020002000200020002000200020002000200
3377020002000200020002000200020002000200020002000200020002000200020002000200
3378020002000200020002000200020002000200020002000200020002000200020002000200
3379020002000200020002000200020002000200020002000200020002000200020002000200
3380020002000200020002000200020002000200020002000200020002000200020002000200
3381020002000200020002000200020002000200020002000200020002000200020002000200
3382020002000200020002000200020002000200020002000200020002000200020002000200
3383020002000200020002000200020003000100010000000000020002000200020002000200
3384020002000200020002000200020002000200020002000200020002000200020002000200
3385020002000200020002000200020002000200020002000200020002000200020002000200
3386020002000200020002000200020002000200020002000200020002000200020002000200
3387020002000200020002000200020002000200020002000200020002000200020002000200
3388020002000200020002000200020002000200020002000200020002000200020002000200
3389020002000200020002000200020002000200020002000200020002000200020002000200
3390020002000200020002000200020002000200020002000200020002000200020002000200
3391020002000200020002000200020002000200020002000200020002000200020002000200
3392020002000200020002000200020002000200020002000200020002000200020002000200
3393020002000200020002000200020002000200020002000200020002000200020002000200