Unix Technical Forum

SEO

vBulletin Search Engine Optimization


Go Back   Unix Technical Forum > Database Server Software > MySQL

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 02-28-2008, 08:15 AM
Tom
 
Posts: n/a
Default Delaying indexing

Hi all!

In mysql 4.0.24 on debian sarge (Hardware:Pentuim4 2.8MHz, RAM: 2GB),
I have a table with 4GB. One of the 3 fields is of type text, and, of
course, when I make
select * from <table> where <textfield> like '%keyword%';
I have to wait too much, sometimes 10 minutes!
Well, like good friends you are, you will say, "index it!". Yes, I
will, but on the same server run several other services, so I cannot
permit the indexing take much more resources.

I searched google, mysql.org, googlegroups and others and read about
"delay insert", "--delay-key-write" and others good tools, but I didnt
answer myself a simple question, and I hope you can:
Can mysql only make inserts without indexing, and after (with cron,
maybe at 3am) do the indexing of inserted rows? So I enjoy speed when
select'ing with no performance drawbacks when insert'ing.



Any hint is welcome.
Sorry my bad english.



Thank you
Tom Lobato

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 02-28-2008, 08:15 AM
Axel Schwenke
 
Posts: n/a
Default Re: Delaying indexing

"Tom" <tomlobato@gmail.com> wrote:

> I have a table with 4GB. One of the 3 fields is of type text, and, of
> course, when I make
> select * from <table> where <textfield> like '%keyword%';
> I have to wait too much, sometimes 10 minutes!


This query is doing a full table scan. If it takes 10 minutes to scan
4GB, your disk is rather slow at 6.8MB/s.

> Well, like good friends you are, you will say, "index it!".


No. WHERE <column> LIKE '%keyword%' will never use an index. You may
want to have a look at MySQLs FULLTEXT indexing:

http://dev.mysql.com/doc/refman/5.0/...xt-search.html

> on the same server run several other services, so I cannot
> permit the indexing take much more resources.


Indexing is not *that* expensive. In fact creating the initial index
will take some time. But updating the index for INSERT/UPDATE/DELETE
operations is pretty fast.

> Can mysql only make inserts without indexing, and after (with cron,
> maybe at 3am) do the indexing of inserted rows? So I enjoy speed when
> select'ing with no performance drawbacks when insert'ing.


No. Also this would have some interesting consequences: if you search
the table by index but do not update the index for new records, such
records will not be found. OTOH DELETED records will still show up if
you don't update the index immediately.

A combined search (once with the index and once without it) will take
longer than not using an index at all.


XL
--
Axel Schwenke, Senior Software Developer, MySQL AB

Online User Manual: http://dev.mysql.com/doc/refman/5.0/en/
MySQL User Forums: http://forums.mysql.com/
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 02-28-2008, 08:16 AM
Tom
 
Posts: n/a
Default Re: Delaying indexing

Hello Axel!
Thank you for answer.


Axel Schwenke escreveu:

> "Tom" <tomlobato@gmail.com> wrote:
>
> > I have a table with 4GB. One of the 3 fields is of type text, and, of
> > course, when I make
> > select * from <table> where <textfield> like '%keyword%';
> > I have to wait too much, sometimes 10 minutes!

>
> This query is doing a full table scan. If it takes 10 minutes to scan
> 4GB, your disk is rather slow at 6.8MB/s.


'hdparm -tT /dev/hda' gave me 34.91 MB/sec. I don't know why such
slowness for mysql.

>
> > Well, like good friends you are, you will say, "index it!".

>
> No. WHERE <column> LIKE '%keyword%' will never use an index. You may
> want to have a look at MySQLs FULLTEXT indexing:


maybe I was not so clear. I didn't say "WHERE <column> LIKE '%keyword%"
uses index, I know we have to use match/against (I made a big search
before post first mail here). The above command is what I'm using now,
the slow way, the no-index way. Sure, if I index it, I have to change
the command for using match and against.

>
> http://dev.mysql.com/doc/refman/5.0/...xt-search.html
>
> > on the same server run several other services, so I cannot
> > permit the indexing take much more resources.

>
> Indexing is not *that* expensive. In fact creating the initial index
> will take some time. But updating the index for INSERT/UPDATE/DELETE
> operations is pretty fast.


ok, so I will test index it.

>
> > Can mysql only make inserts without indexing, and after (with cron,
> > maybe at 3am) do the indexing of inserted rows? So I enjoy speed when
> > select'ing with no performance drawbacks when insert'ing.

>
> No. Also this would have some interesting consequences: if you search
> the table by index but do not update the index for new records, such
> records will not be found.


oh yes, as match/agaisnt looks for only in the index.
But If I still run "where column like <pattern>" it will do the normal
search? Although slow, search all, no?

> OTOH DELETED records will still show up if
> you don't update the index immediately.
> A combined search (once with the index and once without it) will take
> longer than not using an index at all.


please, give a example of such combined search. I didn`t understand
well.

>
>
> XL
> --
> Axel Schwenke, Senior Software Developer, MySQL AB
>
> Online User Manual: http://dev.mysql.com/doc/refman/5.0/en/
> MySQL User Forums: http://forums.mysql.com/


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 02-28-2008, 08:16 AM
Tom
 
Posts: n/a
Default Re: Delaying indexing


Hello Axel!
Thank you for answer.


Axel Schwenke escreveu:

> "Tom" <tomlobato@gmail.com> wrote:
>
> > I have a table with 4GB. One of the 3 fields is of type text, and, of
> > course, when I make
> > select * from <table> where <textfield> like '%keyword%';
> > I have to wait too much, sometimes 10 minutes!

>
> This query is doing a full table scan. If it takes 10 minutes to scan
> 4GB, your disk is rather slow at 6.8MB/s.


'hdparm -tT /dev/hda' gave me 34.91 MB/sec. I don't know why such
slowness for mysql.

>
> > Well, like good friends you are, you will say, "index it!".

>
> No. WHERE <column> LIKE '%keyword%' will never use an index. You may
> want to have a look at MySQLs FULLTEXT indexing:


maybe I was not so clear. I didn't say "WHERE <column> LIKE '%keyword%"
uses index, I know we have to use match/against (I made a big search
before post first mail here). The above command is what I'm using now,
the slow way, the no-index way. Sure, if I index it, I have to change
the command for using match and against.

>
> http://dev.mysql.com/doc/refman/5.0/...xt-search.html
>
> > on the same server run several other services, so I cannot
> > permit the indexing take much more resources.

>
> Indexing is not *that* expensive. In fact creating the initial index
> will take some time. But updating the index for INSERT/UPDATE/DELETE
> operations is pretty fast.


ok, so I will test index it.

>
> > Can mysql only make inserts without indexing, and after (with cron,
> > maybe at 3am) do the indexing of inserted rows? So I enjoy speed when
> > select'ing with no performance drawbacks when insert'ing.

>
> No. Also this would have some interesting consequences: if you search
> the table by index but do not update the index for new records, such
> records will not be found.


oh yes, as match/agaisnt looks for only in the index.
But If I still run "where column like <pattern>" it will do the normal
search? Although slow, search all, no?

> OTOH DELETED records will still show up if
> you don't update the index immediately.
> A combined search (once with the index and once without it) will take
> longer than not using an index at all.


please, give a example of such combined search. I didn`t understand
well.

>
>
> XL
> --
> Axel Schwenke, Senior Software Developer, MySQL AB
>
> Online User Manual: http://dev.mysql.com/doc/refman/5.0/en/
> MySQL User Forums: http://forums.mysql.com/


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 02-28-2008, 08:16 AM
Tom
 
Posts: n/a
Default Re: Delaying indexing

Hello Axel!
Thank you for answer.


Axel Schwenke escreveu:

> "Tom" <tomlobato@gmail.com> wrote:
>
> > I have a table with 4GB. One of the 3 fields is of type text, and, of
> > course, when I make
> > select * from <table> where <textfield> like '%keyword%';
> > I have to wait too much, sometimes 10 minutes!

>
> This query is doing a full table scan. If it takes 10 minutes to scan
> 4GB, your disk is rather slow at 6.8MB/s.


'hdparm -tT /dev/hda' gave me 34.91 MB/sec. I don't know why such
slowness for mysql.

>
> > Well, like good friends you are, you will say, "index it!".

>
> No. WHERE <column> LIKE '%keyword%' will never use an index. You may
> want to have a look at MySQLs FULLTEXT indexing:


maybe I was not so clear. I didn't say "WHERE <column> LIKE '%keyword%"
uses index, I know we have to use match/against (I made a big search
before post first mail here). The above command is what I'm using now,
the slow way, the no-index way. Sure, if I index it, I have to change
the command for using match and against.

>
> http://dev.mysql.com/doc/refman/5.0/...xt-search.html
>
> > on the same server run several other services, so I cannot
> > permit the indexing take much more resources.

>
> Indexing is not *that* expensive. In fact creating the initial index
> will take some time. But updating the index for INSERT/UPDATE/DELETE
> operations is pretty fast.


ok, so I will test index it.

>
> > Can mysql only make inserts without indexing, and after (with cron,
> > maybe at 3am) do the indexing of inserted rows? So I enjoy speed when
> > select'ing with no performance drawbacks when insert'ing.

>
> No. Also this would have some interesting consequences: if you search
> the table by index but do not update the index for new records, such
> records will not be found.


oh yes, as match/agaisnt looks for only in the index.
But If I still run "where column like <pattern>" it will do the normal
search? Although slow, search all, no?

> OTOH DELETED records will still show up if
> you don't update the index immediately.
> A combined search (once with the index and once without it) will take
> longer than not using an index at all.


please, give a example of such combined search. I didn`t understand
well.

>
>
> XL
> --
> Axel Schwenke, Senior Software Developer, MySQL AB
>
> Online User Manual: http://dev.mysql.com/doc/refman/5.0/en/
> MySQL User Forums: http://forums.mysql.com/


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 02-28-2008, 08:16 AM
Tom
 
Posts: n/a
Default Re: Delaying indexing


Hello Axel!
Thank you for answer.


Axel Schwenke escreveu:

> "Tom" <tomlobato@gmail.com> wrote:
>
> > I have a table with 4GB. One of the 3 fields is of type text, and, of
> > course, when I make
> > select * from <table> where <textfield> like '%keyword%';
> > I have to wait too much, sometimes 10 minutes!

>
> This query is doing a full table scan. If it takes 10 minutes to scan
> 4GB, your disk is rather slow at 6.8MB/s.


'hdparm -tT /dev/hda' gave me 34.91 MB/sec. I don't know why such
slowness for mysql.

>
> > Well, like good friends you are, you will say, "index it!".

>
> No. WHERE <column> LIKE '%keyword%' will never use an index. You may
> want to have a look at MySQLs FULLTEXT indexing:


maybe I was not so clear. I didn't say "WHERE <column> LIKE '%keyword%"
uses index, I know we have to use match/against (I made a big search
before post first mail here). The above command is what I'm using now,
the slow way, the no-index way. Sure, if I index it, I have to change
the command for using match and against.

>
> http://dev.mysql.com/doc/refman/5.0/...xt-search.html
>
> > on the same server run several other services, so I cannot
> > permit the indexing take much more resources.

>
> Indexing is not *that* expensive. In fact creating the initial index
> will take some time. But updating the index for INSERT/UPDATE/DELETE
> operations is pretty fast.


ok, so I will test index it.

>
> > Can mysql only make inserts without indexing, and after (with cron,
> > maybe at 3am) do the indexing of inserted rows? So I enjoy speed when
> > select'ing with no performance drawbacks when insert'ing.

>
> No. Also this would have some interesting consequences: if you search
> the table by index but do not update the index for new records, such
> records will not be found.


oh yes, as match/agaisnt looks for only in the index.
But If I still run "where column like <pattern>" it will do the normal
search? Although slow, search all, no?

> OTOH DELETED records will still show up if
> you don't update the index immediately.
> A combined search (once with the index and once without it) will take
> longer than not using an index at all.


please, give a example of such combined search. I didn`t understand
well.

>
>
> XL
> --
> Axel Schwenke, Senior Software Developer, MySQL AB
>
> Online User Manual: http://dev.mysql.com/doc/refman/5.0/en/
> MySQL User Forums: http://forums.mysql.com/


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 02-28-2008, 08:16 AM
Tom
 
Posts: n/a
Default Re: Delaying indexing


Hello Axel!
Thank you for answer.


Axel Schwenke escreveu:

> "Tom" <tomlobato@gmail.com> wrote:
>
> > I have a table with 4GB. One of the 3 fields is of type text, and, of
> > course, when I make
> > select * from <table> where <textfield> like '%keyword%';
> > I have to wait too much, sometimes 10 minutes!

>
> This query is doing a full table scan. If it takes 10 minutes to scan
> 4GB, your disk is rather slow at 6.8MB/s.


'hdparm -tT /dev/hda' gave me 34.91 MB/sec. I don't know why such
slowness for mysql.

>
> > Well, like good friends you are, you will say, "index it!".

>
> No. WHERE <column> LIKE '%keyword%' will never use an index. You may
> want to have a look at MySQLs FULLTEXT indexing:


maybe I was not so clear. I didn't say "WHERE <column> LIKE '%keyword%"
uses index, I know we have to use match/against (I made a big search
before post first mail here). The above command is what I'm using now,
the slow way, the no-index way. Sure, if I index it, I have to change
the command for using match and against.

>
> http://dev.mysql.com/doc/refman/5.0/...xt-search.html
>
> > on the same server run several other services, so I cannot
> > permit the indexing take much more resources.

>
> Indexing is not *that* expensive. In fact creating the initial index
> will take some time. But updating the index for INSERT/UPDATE/DELETE
> operations is pretty fast.


ok, so I will test index it.

>
> > Can mysql only make inserts without indexing, and after (with cron,
> > maybe at 3am) do the indexing of inserted rows? So I enjoy speed when
> > select'ing with no performance drawbacks when insert'ing.

>
> No. Also this would have some interesting consequences: if you search
> the table by index but do not update the index for new records, such
> records will not be found.


oh yes, as match/agaisnt looks for only in the index.
But If I still run "where column like <pattern>" it will do the normal
search? Although slow, search all, no?

> OTOH DELETED records will still show up if
> you don't update the index immediately.
> A combined search (once with the index and once without it) will take
> longer than not using an index at all.


please, give a example of such combined search. I didn`t understand
well.

>
>
> XL
> --
> Axel Schwenke, Senior Software Developer, MySQL AB
>
> Online User Manual: http://dev.mysql.com/doc/refman/5.0/en/
> MySQL User Forums: http://forums.mysql.com/


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 02-28-2008, 08:16 AM
Axel Schwenke
 
Posts: n/a
Default Re: Delaying indexing

Hi Tom,

Google seems to be seriously broken. You're the second guy with
5 copies of the same posting. Or did you send it 5 times?

"Tom" <tomlobato@gmail.com> wrote:
> Axel Schwenke escreveu:
>
>> WHERE <column> LIKE '%keyword%' will never use an index. You may
>> want to have a look at MySQLs FULLTEXT indexing:

>
> maybe I was not so clear. I didn't say "WHERE <column> LIKE '%keyword%"
> uses index, I know we have to use match/against (I made a big search
> before post first mail here). The above command is what I'm using now,
> the slow way, the no-index way. Sure, if I index it, I have to change
> the command for using match and against.


OK. That was a mistake then.

>> > Can mysql only make inserts without indexing, and after (with cron,
>> > maybe at 3am) do the indexing of inserted rows? So I enjoy speed when
>> > select'ing with no performance drawbacks when insert'ing.

>>
>> No. Also this would have some interesting consequences: if you search
>> the table by index but do not update the index for new records, such
>> records will not be found.

>
> oh yes, as match/agaisnt looks for only in the index.


Not only MATCH AGAINST. Every action on a table that can use an index
will use it. Having an index with different content than the table will
produce a lot of unpleasent results.

OK, that's a bad example since FULLTEXT indexes are special and not
being used internally.

> But If I still run "where column like <pattern>" it will do the normal
> search? Although slow, search all, no?
>
>> OTOH DELETED records will still show up if
>> you don't update the index immediately.
>> A combined search (once with the index and once without it) will take
>> longer than not using an index at all.

>
> please, give a example of such combined search. I didn`t understand
> well.


You can't do such a thing.

I spoke hypothetically (to explain why it's not implemented that way).
If MySQL could do such a thing, it had to do each search twice: once
using the index and once not using the index, then combining the
results. But the same could be done by just ignoring the index and
scanning the datafile (the second part of the first approach).
The index would be completely useless.

Of course you can do something similar above database level: have a
readonly table with proper indexes and another one without indexes (but
fast INSERTs). Every once in a while you combine a new read only table
from both of them. However, all the logic (lookup both tables, combine
results) has to be done in your application. And still there is no easy
solution for DELETE and UPDATE.


XL
--
Axel Schwenke, Senior Software Developer, MySQL AB

Online User Manual: http://dev.mysql.com/doc/refman/5.0/en/
MySQL User Forums: http://forums.mysql.com/
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 02-28-2008, 08:16 AM
Tom
 
Posts: n/a
Default Re: Delaying indexing


Hello Axel!
Thank you for answer.


Axel Schwenke escreveu:

> "Tom" <tomlobato@gmail.com> wrote:
>
> > I have a table with 4GB. One of the 3 fields is of type text, and, of
> > course, when I make
> > select * from <table> where <textfield> like '%keyword%';
> > I have to wait too much, sometimes 10 minutes!

>
> This query is doing a full table scan. If it takes 10 minutes to scan
> 4GB, your disk is rather slow at 6.8MB/s.


'hdparm -tT /dev/hda' gave me 34.91 MB/sec. I don't know why such
slowness for mysql.

>
> > Well, like good friends you are, you will say, "index it!".

>
> No. WHERE <column> LIKE '%keyword%' will never use an index. You may
> want to have a look at MySQLs FULLTEXT indexing:


maybe I was not so clear. I didn't say "WHERE <column> LIKE '%keyword%"
uses index, I know we have to use match/against (I made a big search
before post first mail here). The above command is what I'm using now,
the slow way, the no-index way. Sure, if I index it, I have to change
the command for using match and against.

>
> http://dev.mysql.com/doc/refman/5.0/...xt-search.html
>
> > on the same server run several other services, so I cannot
> > permit the indexing take much more resources.

>
> Indexing is not *that* expensive. In fact creating the initial index
> will take some time. But updating the index for INSERT/UPDATE/DELETE
> operations is pretty fast.


ok, so I will test index it.

>
> > Can mysql only make inserts without indexing, and after (with cron,
> > maybe at 3am) do the indexing of inserted rows? So I enjoy speed when
> > select'ing with no performance drawbacks when insert'ing.

>
> No. Also this would have some interesting consequences: if you search
> the table by index but do not update the index for new records, such
> records will not be found.


oh yes, as match/agaisnt looks for only in the index.
But If I still run "where column like <pattern>" it will do the normal
search? Although slow, search all, no?

> OTOH DELETED records will still show up if
> you don't update the index immediately.
> A combined search (once with the index and once without it) will take
> longer than not using an index at all.


please, give a example of such combined search. I didn`t understand
well.


Tom lobato

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 02-28-2008, 08:16 AM
Tom
 
Posts: n/a
Default Re: Delaying indexing

hi!

Axel Schwenke escreveu:
> Hi Tom,
>
> Google seems to be seriously broken. You're the second guy with
> 5 copies of the same posting. Or did you send it 5 times?


In really, google returned errors telling me it could not post, so I
posted more than on time, but now I see each time I tryed, It posted.

> "Tom" <tomlobato@gmail.com> wrote:
> > Axel Schwenke escreveu:
> >
> >> WHERE <column> LIKE '%keyword%' will never use an index. You may
> >> want to have a look at MySQLs FULLTEXT indexing:

> >
> > maybe I was not so clear. I didn't say "WHERE <column> LIKE '%keyword%"
> > uses index, I know we have to use match/against (I made a big search
> > before post first mail here). The above command is what I'm using now,
> > the slow way, the no-index way. Sure, if I index it, I have to change
> > the command for using match and against.

>
> OK. That was a mistake then.
>
> >> > Can mysql only make inserts without indexing, and after (with cron,
> >> > maybe at 3am) do the indexing of inserted rows? So I enjoy speed when
> >> > select'ing with no performance drawbacks when insert'ing.
> >>
> >> No. Also this would have some interesting consequences: if you search
> >> the table by index but do not update the index for new records, such
> >> records will not be found.

> >
> > oh yes, as match/agaisnt looks for only in the index.

>
> Not only MATCH AGAINST. Every action on a table that can use an index
> will use it. Having an index with different content than the table will
> produce a lot of unpleasent results.
>
> OK, that's a bad example since FULLTEXT indexes are special and not
> being used internally.
>
> > But If I still run "where column like <pattern>" it will do the normal
> > search? Although slow, search all, no?
> >
> >> OTOH DELETED records will still show up if
> >> you don't update the index immediately.
> >> A combined search (once with the index and once without it) will take
> >> longer than not using an index at all.

> >
> > please, give a example of such combined search. I didn`t understand
> > well.

>
> You can't do such a thing.
>
> I spoke hypothetically (to explain why it's not implemented that way).
> If MySQL could do such a thing, it had to do each search twice: once
> using the index and once not using the index, then combining the
> results. But the same could be done by just ignoring the index and
> scanning the datafile (the second part of the first approach).
> The index would be completely useless.
>
> Of course you can do something similar above database level: have a
> readonly table with proper indexes and another one without indexes (but
> fast INSERTs). Every once in a while you combine a new read only table
> from both of them. However, all the logic (lookup both tables, combine
> results) has to be done in your application. And still there is no easy
> solution for DELETE and UPDATE.
>
>
> XL
> --
> Axel Schwenke, Senior Software Developer, MySQL AB


well, I will digest it all =)
but I understood your point.

Thank you



Tom lobato

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 07:56 AM.


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