Unix Technical Forum

SEO

vBulletin Search Engine Optimization


Go Back   Unix Technical Forum > Unix Operating Systems > Slackware Linux Support

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 02-18-2008, 11:42 AM
Mike
 
Posts: n/a
Default Compiling Problems - Vn9.0

When I tried rebuilding a package under Slackware Vn9.0 it failed with
loads of errors. Just as a quick test, I tried compiling "Hello World"
but that failed too reporting syntax errors in
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h

It worked OK on another machine with Vn8.1 so I'm wondering if there's a
known problem with Vn9.0 or if I've just screwed something up on the
install.

Any ideas, anyone?
--
Mike
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 02-18-2008, 11:43 AM
Merlin
 
Posts: n/a
Default Re: Compiling Problems - Vn9.0

Mike wrote:

> When I tried rebuilding a package under Slackware Vn9.0 it failed with
> loads of errors. Just as a quick test, I tried compiling "Hello World"
> but that failed too reporting syntax errors in
> /usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h
>
> It worked OK on another machine with Vn8.1 so I'm wondering if there's a
> known problem with Vn9.0 or if I've just screwed something up on the
> install.
>
> Any ideas, anyone?


Hm... Could you show us the program you're trying to compile and the errors
your compilation produces? I compiled a LOT of programs on Slack 9.0, C and
C++, written by other people and written by me. Never had a problem. There
are a few gotchas in gcc 3.2 though. If you wanna get to the bottom of it,
post your code and the error messages.

Best,
Merl
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 02-18-2008, 11:43 AM
Mike
 
Posts: n/a
Default Re: Compiling Problems - Vn9.0

In message <4X1db.5039679$cI2.715818@news.easynews.com>, Merlin
<merlin_the_wizzard@camelot.com> writes
>Mike wrote:
>
>> When I tried rebuilding a package under Slackware Vn9.0 it failed with
>> loads of errors. Just as a quick test, I tried compiling "Hello World"
>> but that failed too reporting syntax errors in
>> /usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h
>>
>> It worked OK on another machine with Vn8.1 so I'm wondering if there's a
>> known problem with Vn9.0 or if I've just screwed something up on the
>> install.
>>
>> Any ideas, anyone?

>
>Hm... Could you show us the program you're trying to compile and the errors
>your compilation produces? I compiled a LOT of programs on Slack 9.0, C and
>C++, written by other people and written by me. Never had a problem. There
>are a few gotchas in gcc 3.2 though. If you wanna get to the bottom of it,
>post your code and the error messages.
>

I tried rebuilding the apmd package, just as an experiment really, but
it failed with various errors. I couldn't see what was wrong so I
quickly tried out the "Hello World" program -

#include<stdio.h>
main()
{
printf("Hello World\n");
}

I just used "gcc hello.c" to compile it but the output was -

In file included from hello.c:1:
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:37:23: features.h: No such file or directory
In file included from /usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:43,
from hello.c:1:
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stddef.h:213: syntax error before "typedef"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:45:25: bits/types.h: No such file or directory
In file included from hello.c:1:
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:55: syntax error before "typedef"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:71: syntax error before "typedef"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:81:19: libio.h: No such file or directory
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:97: syntax error before "typedef"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:147:28: bits/stdio_lim.h: No such file or directory
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:151: syntax error before "extern"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:161: syntax error before "extern"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:161: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:163: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:167: parse error before "__BEGIN_NAMESPACE_STD"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:170: syntax error before "extern"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:170: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:180: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:207: parse error before "__BEGIN_NAMESPACE_STD"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:209: syntax error before "extern"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:209: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:211: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:225: parse error before "__BEGIN_NAMESPACE_STD"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:228: syntax error before "extern"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:229: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:233: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:280: parse error before "__BEGIN_NAMESPACE_STD"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:283: syntax error before "extern"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:283: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:288: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:302: parse error before "__BEGIN_NAMESPACE_STD"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:304: syntax error before "extern"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:305: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:307: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:310: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:314: parse error before "_G_va_list"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:316: parse error before "_G_va_list"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:320: parse error before "_G_va_list"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:358: parse error before "__BEGIN_NAMESPACE_STD"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:360: syntax error before "extern"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:361: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:363: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:366: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:388: parse error before "__BEGIN_NAMESPACE_STD"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:390: syntax error before "extern"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:390: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:391: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:394: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:413: parse error before "__BEGIN_NAMESPACE_STD"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:415: syntax error before "extern"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:415: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:416: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:419: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:447: parse error before "__BEGIN_NAMESPACE_STD"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:449: syntax error before "extern"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:450: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:454: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:484: parse error before "__BEGIN_NAMESPACE_STD"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:486: syntax error before "extern"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:487: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:490: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:494: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:499: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:502: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:520: parse error before "__BEGIN_NAMESPACE_STD"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:522: syntax error before "extern"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:522: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:524: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:526: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:553: parse error before "__BEGIN_NAMESPACE_STD"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:556: syntax error before "extern"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:556: parse error before "fpos_t"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:559: parse error before '*' token
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:582: parse error before "__BEGIN_NAMESPACE_STD"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:584: syntax error before "extern"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:584: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:586: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:588: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:599: parse error before "__BEGIN_NAMESPACE_STD"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:601: syntax error before "extern"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:601: parse error before "__THROW"
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:608:30: bits/sys_errlist.h: No such file or directory
/usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:686: parse error before "__END_DECLS"


These might not be individual errors - I know a single error in a file
can give rise to hundreds of reported errors - but there's something
wrong somewhere. What are the gotchas you mentioned?
--
Mike
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 02-18-2008, 11:43 AM
Simon
 
Posts: n/a
Default Re: Compiling Problems - Vn9.0

On Fri, 26 Sep 2003 23:35:47 +0100, Mike <spamdump@fensoft.co.uk> wrote:
> #include<stdio.h>
> main()


main() should return int; I don't know if gcc fills that in for you, if
you don't specify it.

> I just used "gcc hello.c" to compile it but the output was -
>
> In file included from hello.c:1:
> /usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:37:23:
> features.h: No such file or directory


I'd tackle this one first. Do you have the glibc package installed?


--
Simon <simon@no-dns-yet.org.uk> **** GPG: F4A23C69
"We demand rigidly defined areas of doubt and uncertainty."
- Douglas Adams

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 02-18-2008, 11:43 AM
Merlin
 
Posts: n/a
Default Re: Compiling Problems - Vn9.0

Mike wrote:
<>

merl@18:16:49~$ cat hello.c
#include<stdio.h>
main()
{
printf("Helo World\n");
}
merl@18:16:54~$ gcc hello.c
merl@18:17:04~$ ./a.out
Helo World
merl@18:17:07~$ cat /etc/slackware-version
Slackware 9.0.0
merl@18:17:40~$ gcc --version
gcc (GCC) 3.2.2
Copyright (C) 2002 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.



Hm... something seems to be seriously wrong with your installation... I
honestly have no idea at the moment...

Best,
Merl
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 02-18-2008, 11:43 AM
Mike
 
Posts: n/a
Default Re: Compiling Problems - Vn9.0

In message <slrnbn9hqc.od1.usenet@dustpuppy.no-dns-yet.org.uk>, Simon
<usenet@no-dns-yet.org.uk> writes
>On Fri, 26 Sep 2003 23:35:47 +0100, Mike <spamdump@fensoft.co.uk> wrote:
>> #include<stdio.h>
>> main()

>
>main() should return int; I don't know if gcc fills that in for you, if
>you don't specify it.
>

I think it's OK, it worked on another machine with Vn8.1 installed.

>> I just used "gcc hello.c" to compile it but the output was -
>>
>> In file included from hello.c:1:
>> /usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:37:23:
>> features.h: No such file or directory

>
>I'd tackle this one first. Do you have the glibc package installed?
>

What a silly question, of course I ..... Oh S**T!! I hereby nominate
myself for "Prat of The Year" award - I should win it easily (might
manage Prat of the Century too.

I'll install the 'l' series and try again. Thanks for the tip.

--
Mike
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 02-18-2008, 11:43 AM
Mike
 
Posts: n/a
Default Re: Compiling Problems - Vn9.0

In message <SV3db.5041896$mA4.714207@news.easynews.com>, Merlin
<merlin_the_wizzard@camelot.com> writes
>Mike wrote:
><>
>
>merl@18:16:49~$ cat hello.c
>#include<stdio.h>
>main()
>{
>printf("Helo World\n");
>}
>merl@18:16:54~$ gcc hello.c
>merl@18:17:04~$ ./a.out
>Helo World
>merl@18:17:07~$ cat /etc/slackware-version
>Slackware 9.0.0
>merl@18:17:40~$ gcc --version
>gcc (GCC) 3.2.2
>Copyright (C) 2002 Free Software Foundation, Inc.
>This is free software; see the source for copying conditions. There is NO
>warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
>
>
>
>Hm... something seems to be seriously wrong with your installation... I
>honestly have no idea at the moment...
>

Er, yes. Seems I hadn't installed the 'l' series I'm doing it now
so, hopefully, all will be well soon. Thanks for the help.

--
Mike
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 02-18-2008, 11:44 AM
Simon
 
Posts: n/a
Default Re: Compiling Problems - Vn9.0

On Sat, 27 Sep 2003 10:25:47 +0100, Mike <spamdump@fensoft.co.uk> wrote:
> In message <slrnbn9hqc.od1.usenet@dustpuppy.no-dns-yet.org.uk>, Simon
><usenet@no-dns-yet.org.uk> writes
>>On Fri, 26 Sep 2003 23:35:47 +0100, Mike <spamdump@fensoft.co.uk> wrote:
>>> In file included from hello.c:1:
>>> /usr/lib/gcc-lib/i386-slackware-linux/3.2.2/include/stdio.h:37:23:
>>> features.h: No such file or directory

>>
>>I'd tackle this one first. Do you have the glibc package installed?
>>

> What a silly question, of course I ..... Oh S**T!! I hereby nominate
> myself for "Prat of The Year" award - I should win it easily (might
> manage Prat of the Century too.


I've done similar things. Once thing you might want to look at is one
of the entries in our FAQ - "Which package contains <insert filename
here>?": <URL:http://wombat.san-francisco.ca.us/cgi-bin/fom?file=14>.

> I'll install the 'l' series and try again. Thanks for the tip.


No problem.


--
Simon <simon@no-dns-yet.org.uk> **** GPG: F4A23C69
"We demand rigidly defined areas of doubt and uncertainty."
- Douglas Adams

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 02-18-2008, 11:58 AM
Mike
 
Posts: n/a
Default Re: Compiling Problems - Vn9.0

In message <slrnbnbk3t.v29.usenet@dustpuppy.no-dns-yet.org.uk>, Simon
<usenet@no-dns-yet.org.uk> writes
>On Sat, 27 Sep 2003 10:25:47 +0100, Mike <spamdump@fensoft.co.uk> wrote:
>> I'll install the 'l' series and try again. Thanks for the tip.

>
>No problem.
>

With the 'l' series installed I can compile stuff now. I've noticed
something strange though. Just as an experiment, I rebuilt some of the
packages without changing anything but the output .tgz files I produced
had different sizes from the originals. For example the
cpio-2.5-i386-1.tgz on the installation disks is 75494 but when I
rebuilt it I got 70686. Comparing the sizes of the individual programs,
I found these differences-

file original rebuild

bin/cpio 52764 52568
bin/mt-GNU 10772 10752
info/cpio.info.gz 6084 6083

The compile seems OK. I'm not that familiar with this but I copied the
source into /tmp and used SlackBuild >mike 2>mike2 (yeah, I know, very
original filenames <g>) to rebuild the package. Afterwards, mike2 had
one line saying "tar-1.13: cpio-2.5-i386-1.tar is the archive; not
dumped". I presume this is OK but I'm a bit new to Slackware and,
especially, rebuilding packages - up to now I've just been using Linux
as an OS.

--
Mike
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 02-18-2008, 11:58 AM
Simon
 
Posts: n/a
Default Re: Compiling Problems - Vn9.0

On Thu, 2 Oct 2003 18:54:33 +0100, Mike <spamdump@fensoft.co.uk> wrote:
> For example the
> cpio-2.5-i386-1.tgz on the installation disks is 75494 but when I
> rebuilt it I got 70686.


I've not tried rebuilding without changing anything (either the version
or ./configure arguments), so I don't know what's causing that.

> Afterwards, mike2 had
> one line saying "tar-1.13: cpio-2.5-i386-1.tar is the archive; not
> dumped". I presume this is OK


That's fine. tar is just refusing to put the tar archive inside
itself.


--
Simon <simon@no-dns-yet.org.uk> **** GPG: F4A23C69
"We demand rigidly defined areas of doubt and uncertainty."
- Douglas Adams

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 01:14 PM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
UnixAdminTalk.com

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553