Query:	SELECT COUNT(user_id) AS total
	FROM phpbb_users
	WHERE user_id <> -1

Time before:  0.4201500415802
Time after:   0.42231702804565
Elapsed time: 0.0021669864654541
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  range  PRIMARY  PRIMARY    1016  Using where; Using index 


Query:	SELECT SUM(forum_topics) AS topic_total, SUM(forum_posts) AS post_total
	FROM phpbb_forums

Time before:  0.42342305183411
Time after:   0.42423009872437
Elapsed time: 0.00080704689025879
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_forums  ALL          18   


Query:	SELECT user_id, username
	FROM phpbb_users
	WHERE user_id <> -1
	ORDER BY user_id DESC
	LIMIT 1

Time before:  0.42506194114685
Time after:   0.42563009262085
Elapsed time: 0.00056815147399902
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  range  PRIMARY  PRIMARY    1016  Using where 


Query:	SELECT user_regdate
	FROM phpbb_users
	WHERE user_id = 1029
	LIMIT 1

Time before:  0.84657502174377
Time after:   0.84709095954895
Elapsed time: 0.00051593780517578
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  const  PRIMARY  PRIMARY  const   


Query:	SELECT *
	FROM phpbb_config
	WHERE config_name = 'record_online_users' OR config_name = 'record_online_date'

Time before:  0.84772706031799
Time after:   0.84815192222595
Elapsed time: 0.00042486190795898
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_config  range  PRIMARY  PRIMARY  255    Using where 


Query:	SELECT f.forum_id, f.cat_id, f.forum_name, f.forum_desc, f.forum_posts, f.forum_topics, c.cat_title
	FROM phpbb_forums f, phpbb_categories c
	WHERE f.forum_status <> 1
	AND f.cat_id = c.cat_id
	AND (f.auth_view <> 2)
	AND (f.auth_read <> 2)
	ORDER BY f.forum_posts DESC
	LIMIT 10

Time before:  0.98444104194641
Time after:   0.98879098892212
Elapsed time: 0.004349946975708
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL  cat_id        18  10  Using where; Using temporary; Using filesort 
SIMPLE  ALL  PRIMARY          Using where 


Query:	SELECT t.topic_id, t.topic_title, t.topic_replies
	FROM phpbb_topics t, phpbb_forums f
	WHERE (t.topic_status <> 2)
	AND (t.topic_time < 1188468255)
	AND (t.topic_replies > 0)
	AND (t.forum_id = f.forum_id)
	AND (f.auth_view <> 2)
	AND (f.auth_read <> 2)
	ORDER BY t.topic_replies DESC
	LIMIT 10

Time before:  1.0209040641785
Time after:   1.0901958942413
Elapsed time: 0.069291830062866
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL  PRIMARY        18  10  Using where; Using temporary; Using filesort 
SIMPLE  ref  forum_id,topic_status  forum_id  stevew_phpb2.f.forum_id  68    Using where 


Query:	SELECT t.topic_id, t.topic_title, t.topic_views
	FROM phpbb_topics t, phpbb_forums f
	WHERE (t.topic_status <> 2)
	AND (t.topic_time < 1188468255)
	AND (t.topic_replies > 0)
	AND (t.forum_id = f.forum_id)
	AND (f.auth_view <> 2)
	AND (f.auth_read <> 2)
	ORDER BY t.topic_views DESC
	LIMIT 10

Time before:  1.1059861183167
Time after:   1.1157710552216
Elapsed time: 0.0097849369049072
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL  PRIMARY        18  10  Using where; Using temporary; Using filesort 
SIMPLE  ref  forum_id,topic_status  forum_id  stevew_phpb2.f.forum_id  68    Using where 


Query:	SELECT COUNT(topic_id) as total_topics FROM phpbb_topics WHERE topic_status <> 2

Time before:  1.1342680454254
Time after:   1.136176109314
Elapsed time: 0.0019080638885498
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_topics  ALL  topic_status        2261  Using where 


Query:	SELECT u.user_id, u.username, COUNT(t.topic_poster) num_topics
	FROM phpbb_users u, phpbb_topics t
	WHERE (t.topic_poster <> -1) AND (u.user_posts > 0) AND (u.user_id = t.topic_poster)
	GROUP BY t.topic_poster ORDER BY num_topics DESC
	LIMIT 10

Time before:  1.1373829841614
Time after:   1.2057650089264
Elapsed time: 0.068382024765015
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL          2261  10  Using where; Using temporary; Using filesort 
SIMPLE  eq_ref  PRIMARY  PRIMARY  stevew_phpb2.t.topic_poster    Using where 


Query:	SELECT t.topic_id, t.forum_id, t.topic_title, t.topic_replies, t.topic_views, round(t.topic_views/(t.topic_replies + 1),2) AS k
	FROM phpbb_topics t, phpbb_forums f
	WHERE (t.topic_status <> 2)
	AND (t.topic_time < 1188468255)
	AND (t.topic_replies > 0)
	AND (t.forum_id = f.forum_id)
	AND (f.auth_view <> 2)
	AND (f.auth_read <> 2)
	ORDER BY k DESC
	LIMIT 10

Time before:  1.2476980686188
Time after:   1.261020898819
Elapsed time: 0.013322830200195
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL  PRIMARY        18  10  Using where; Using temporary; Using filesort 
SIMPLE  ref  forum_id,topic_status  forum_id  stevew_phpb2.f.forum_id  68    Using where 


Query:	SELECT t.topic_id, t.forum_id, t.topic_title, t.topic_replies, t.topic_views, t.topic_views/(t.topic_replies + 1) AS k
	FROM phpbb_topics t, phpbb_forums f
	WHERE (t.topic_status <> 2)
	AND (t.topic_time < 1188468255)
	AND (t.topic_replies > 0)
	AND (t.forum_id = f.forum_id)
	AND (f.auth_view <> 2)
	AND (f.auth_read <> 2)
	ORDER BY k ASC
	LIMIT 10

Time before:  1.2789149284363
Time after:   1.2900290489197
Elapsed time: 0.011114120483398
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL  PRIMARY        18  10  Using where; Using temporary; Using filesort 
SIMPLE  ref  forum_id,topic_status  forum_id  stevew_phpb2.f.forum_id  68    Using where 


Query:	SELECT t.topic_id, t.forum_id, t.topic_title, t.topic_replies, t.topic_views, round(t.topic_views/(t.topic_replies + 1),2) AS k
	FROM phpbb_topics t, phpbb_forums f
	WHERE (t.topic_status <> 2)
	AND (t.topic_time < 1188468255)
	AND (t.topic_replies > 0)
	AND (t.forum_id = f.forum_id)
	AND (f.auth_view <> 2)
	AND (f.auth_read <> 2)
	ORDER BY k DESC
	LIMIT 10

Time before:  1.3128910064697
Time after:   1.3325018882751
Elapsed time: 0.01961088180542
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL  PRIMARY        18  10  Using where; Using temporary; Using filesort 
SIMPLE  ref  forum_id,topic_status  forum_id  stevew_phpb2.f.forum_id  68    Using where 


Query:	SELECT t.topic_id, t.forum_id, t.topic_title, t.topic_replies, t.topic_views, t.topic_views/(t.topic_replies + 1) AS k
	FROM phpbb_topics t, phpbb_forums f
	WHERE (t.topic_status <> 2)
	AND (t.topic_time < 1188468255)
	AND (t.topic_replies > 0)
	AND (t.forum_id = f.forum_id)
	AND (f.auth_view <> 2)
	AND (f.auth_read <> 2)
	ORDER BY k ASC
	LIMIT 10

Time before:  1.3347899913788
Time after:   1.3505520820618
Elapsed time: 0.015762090682983
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL  PRIMARY        18  10  Using where; Using temporary; Using filesort 
SIMPLE  ref  forum_id,topic_status  forum_id  stevew_phpb2.f.forum_id  68    Using where 


Query:	SELECT SUM(user_posts) as total_posts FROM phpbb_users WHERE user_id <> -1

Time before:  1.3736410140991
Time after:   1.3815200328827
Elapsed time: 0.0078790187835693
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  ALL  PRIMARY        1016  Using where 


Query:	SELECT user_id, username, user_posts
	FROM phpbb_users
	WHERE (user_id <> -1 ) AND (user_posts > 0)
	ORDER BY user_posts DESC
	LIMIT 10

Time before:  1.3824360370636
Time after:   1.3959019184113
Elapsed time: 0.013465881347656
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  range  PRIMARY  PRIMARY    1016  10  Using where; Using filesort 


Query:	SELECT SUM(user_posts) as total_posts FROM phpbb_users WHERE user_id <> -1

Time before:  1.4172949790955
Time after:   1.4270489215851
Elapsed time: 0.009753942489624
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  ALL  PRIMARY        1016  Using where 


Query:	SELECT user_id, username, user_posts, user_regdate,
	(user_posts/((1188468256 - user_regdate)/ 86400)) rate,
	ROUND((1188468256 - user_regdate)/ 86400) time_on_forum
	FROM phpbb_users WHERE (user_id <> -1 ) AND (user_posts > 0) ORDER BY rate DESC LIMIT 10

Time before:  1.4277670383453
Time after:   1.4417870044708
Elapsed time: 0.014019966125488
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  range  PRIMARY  PRIMARY    1016  10  Using where; Using filesort 


Query:	SELECT u.user_id, u.username, count(u.user_id) as user_posts
	FROM phpbb_users u, phpbb_posts p
	WHERE (u.user_id = p.poster_id) AND (p.post_time > '1185944400') AND (u.user_id <> -1)
	GROUP BY u.user_id, u.username
	ORDER BY user_posts DESC
	LIMIT 10

Time before:  1.4730350971222
Time after:   1.5476291179657
Elapsed time: 0.074594020843506
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  range  poster_id,post_time  post_time    964  10  Using where; Using temporary; Using filesort 
SIMPLE  eq_ref  PRIMARY  PRIMARY  stevew_phpb2.p.poster_id    Using where 


Query:	SELECT YEAR(FROM_UNIXTIME(user_regdate)) as year_regdate, MONTH(FROM_UNIXTIME(user_regdate)) as month_regdate, COUNT(*) AS num_user
	FROM phpbb_users
	WHERE (user_id <> -1 )
	GROUP BY YEAR(FROM_UNIXTIME(user_regdate)), MONTH(FROM_UNIXTIME(user_regdate))
	ORDER BY user_regdate

Time before:  1.5647010803223
Time after:   1.5760099887848
Elapsed time: 0.011308908462524
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  ALL  PRIMARY        1016  13  Using where; Using temporary; Using filesort 


Query:	SELECT u.user_id, u.username, count(u.user_id) as user_posts
	FROM phpbb_users u, phpbb_posts p
	WHERE (u.user_id = p.poster_id) AND (p.post_time > '1188187200') AND (u.user_id <> -1)
	GROUP BY u.user_id, u.username
	ORDER BY user_posts DESC
	LIMIT 10

Time before:  1.5964629650116
Time after:   1.6016120910645
Elapsed time: 0.0051491260528564
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  range  poster_id,post_time  post_time    137  10  Using where; Using temporary; Using filesort 
SIMPLE  eq_ref  PRIMARY  PRIMARY  stevew_phpb2.p.poster_id    Using where 


Query:	SELECT SUM(a.vote_result) AS num_votes, b.topic_id, t.forum_id, t.topic_title
	FROM phpbb_vote_results a, phpbb_vote_desc b, phpbb_topics t, phpbb_forums f
	WHERE (t.forum_id = f.forum_id)
	AND (t.topic_id = b.topic_id)
	AND (t.topic_status <> 2)
	AND (t.topic_time < 1188468256)
	AND (f.auth_view <> 2)
	AND (f.auth_read <> 2)
	AND (a.vote_id = b.vote_id)
	GROUP BY a.vote_id
	ORDER BY num_votes DESC
	LIMIT 10

Time before:  1.6215229034424
Time after:   1.6239540576935
Elapsed time: 0.0024311542510986
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  index  vote_id  vote_id    131  10  Using temporary; Using filesort 
SIMPLE  eq_ref  PRIMARY,topic_id  PRIMARY  stevew_phpb2.a.vote_id     
SIMPLE  eq_ref  PRIMARY,forum_id,topic_status  PRIMARY  stevew_phpb2.b.topic_id    Using where 
SIMPLE  eq_ref  PRIMARY  PRIMARY  stevew_phpb2.t.forum_id    Using where 


Query:	SELECT COUNT(topic_id) as total_polls FROM phpbb_topics WHERE topic_vote = 1 AND topic_status <> 2

Time before:  1.6591958999634
Time after:   1.6608009338379
Elapsed time: 0.0016050338745117
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_topics  ALL  topic_status        2261  Using where 


Query:	SELECT u.user_id, u.username, COUNT(t.topic_poster) num_topics
	FROM phpbb_users u, phpbb_topics t
	WHERE (t.topic_poster <> -1) AND (u.user_posts > 0) AND (u.user_id = t.topic_poster) AND (t.topic_vote = 1)
	GROUP BY t.topic_poster ORDER BY num_topics DESC
	LIMIT 10

Time before:  1.6615810394287
Time after:   1.6642339229584
Elapsed time: 0.0026528835296631
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL          2261  10  Using where; Using temporary; Using filesort 
SIMPLE  eq_ref  PRIMARY  PRIMARY  stevew_phpb2.t.topic_poster    Using where 


Query:	SELECT t.topic_id, t.topic_title, p.post_id, p.post_time, pt.post_subject, u.username, u.user_timezone, u.user_dateformat
	FROM phpbb_topics t, phpbb_posts p, phpbb_posts_text pt, phpbb_forums f, phpbb_users u
	WHERE p.post_id = topic_last_post_id
	AND p.poster_id = u.user_id
	AND pt.post_id = p.post_id
	AND (t.topic_status <> 2)
	AND (t.topic_time < 1188468256)
	AND (t.forum_id = f.forum_id)
	AND (f.auth_view <> 2)
	AND (f.auth_read <> 2)
	ORDER BY p.post_time DESC
	LIMIT 10

Time before:  1.6856889724731
Time after:   5.2333960533142
Elapsed time: 3.5477070808411
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL  PRIMARY        18  10  Using where; Using temporary; Using filesort 
SIMPLE  ref  forum_id,topic_status  forum_id  stevew_phpb2.f.forum_id  68    Using where 
SIMPLE  eq_ref  PRIMARY,poster_id  PRIMARY  stevew_phpb2.t.topic_last_post_id     
SIMPLE  pt  eq_ref  PRIMARY  PRIMARY  stevew_phpb2.p.post_id     
SIMPLE  eq_ref  PRIMARY  PRIMARY  stevew_phpb2.p.poster_id     


Query:	SELECT t.topic_id, t.topic_title, t.topic_replies, t.topic_time, u.user_timezone, u.user_dateformat
	FROM phpbb_topics t, phpbb_users u, phpbb_forums f
	WHERE (t.topic_status <> 2)
	AND (t.topic_time < 1188468259)
	AND (f.auth_view <> 2)
	AND (f.auth_read <> 2)
	AND (t.forum_id = f.forum_id)
	AND u.user_id = 83
	ORDER BY t.topic_time DESC
	LIMIT 10

Time before:  5.286376953125
Time after:   5.3013799190521
Elapsed time: 0.015002965927124
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  const  PRIMARY  PRIMARY  const  10  Using temporary; Using filesort 
SIMPLE  ALL  PRIMARY        18    Using where 
SIMPLE  ref  forum_id,topic_status  forum_id  stevew_phpb2.f.forum_id  68    Using where 


Query:	SELECT YEAR(FROM_UNIXTIME(post_time)) as year_post, MONTH(FROM_UNIXTIME(post_time)) as month_post, COUNT(*) AS num_posts
	FROM phpbb_posts
	GROUP BY YEAR(FROM_UNIXTIME(post_time)), MONTH(FROM_UNIXTIME(post_time))
	ORDER BY post_time

Time before:  5.3270859718323
Time after:   5.5745921134949
Elapsed time: 0.2475061416626
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts  index    post_time    24022  14  Using index; Using temporary; Using filesort 


Query:	SELECT YEAR(FROM_UNIXTIME(topic_time)) as year_topic, MONTH(FROM_UNIXTIME(topic_time)) as month_topic, COUNT(*) AS num_topics
	FROM phpbb_topics
	GROUP BY YEAR(FROM_UNIXTIME(topic_time)), MONTH(FROM_UNIXTIME(topic_time))
	ORDER BY topic_time

Time before:  5.5941638946533
Time after:   5.6047019958496
Elapsed time: 0.010538101196289
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_topics  ALL          2261  20  Using temporary; Using filesort 


Query:	SELECT SUM(user_avatar) as total_avatar_users FROM phpbb_users
	WHERE user_avatar <> ''
	AND user_avatar_type = 3

Time before:  5.6395390033722
Time after:   5.6469180583954
Elapsed time: 0.0073790550231934
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  ALL          1016  Using where 


Query:	SELECT user_avatar, user_avatar_type, COUNT( * ) AS avatarCount
	FROM phpbb_users
	WHERE (user_avatar <> '')
	AND user_avatar_type = 3
	AND user_id <> -1
	GROUP BY user_avatar
	ORDER BY avatarCount DESC
	LIMIT 10

Time before:  5.6477179527283
Time after:   5.6609261035919
Elapsed time: 0.013208150863647
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  range  PRIMARY  PRIMARY    1016  10  Using where; Using temporary; Using filesort 


Query:	SELECT * FROM stats_smilies_info

Time before:  5.7127320766449
Time after:   5.7218809127808
Elapsed time: 0.0091488361358643
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  stats_smilies_info  system           


Query:	SELECT * FROM stats_smilies_index

Time before:  5.7228219509125
Time after:   5.7377769947052
Elapsed time: 0.014955043792725
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  stats_smilies_index  ALL          360  360   


Query:	SELECT max(post_id) as total FROM phpbb_posts

Time before:  5.7521729469299
Time after:   5.7526040077209
Elapsed time: 0.00043106079101562
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE                Select tables optimized away 


Query:	SELECT COUNT(post_id) as total FROM phpbb_posts

Time before:  5.753438949585
Time after:   5.7537109851837
Elapsed time: 0.00027203559875488
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE                Select tables optimized away 


Query:	SELECT smile_url FROM phpbb_smilies GROUP BY smile_url

Time before:  5.7544000148773
Time after:   5.7611689567566
Elapsed time: 0.0067689418792725
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  360  Using temporary; Using filesort 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = '005.gif'

Time before:  5.767970085144
Time after:   5.76948595047
Elapsed time: 0.0015158653259277
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:o:%' AND post_id > 25843

Time before:  5.7704420089722
Time after:   5.7715590000153
Elapsed time: 0.0011169910430908
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = '007.gif'

Time before:  5.7724280357361
Time after:   5.7737929821014
Elapsed time: 0.0013649463653564
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%0o0%' AND post_id > 25843

Time before:  5.7746660709381
Time after:   5.7784030437469
Elapsed time: 0.0037369728088379
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = '014.gif'

Time before:  5.7794449329376
Time after:   5.7807910442352
Elapsed time: 0.0013461112976074
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%o!o%' AND post_id > 25843

Time before:  5.7817180156708
Time after:   5.7830638885498
Elapsed time: 0.0013458728790283
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = '015.gif'

Time before:  5.7841300964355
Time after:   5.785453081131
Elapsed time: 0.0013229846954346
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%zzz%' AND post_id > 25843

Time before:  5.7865080833435
Time after:   5.7877969741821
Elapsed time: 0.001288890838623
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = '026.gif'

Time before:  5.7888081073761
Time after:   5.790069103241
Elapsed time: 0.0012609958648682
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%jmp%' AND post_id > 25843

Time before:  5.7909140586853
Time after:   5.7920711040497
Elapsed time: 0.0011570453643799
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = '033.gif'

Time before:  5.7930469512939
Time after:   5.7942819595337
Elapsed time: 0.0012350082397461
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%rfer%' AND post_id > 25843

Time before:  5.7952229976654
Time after:   5.7964589595795
Elapsed time: 0.0012359619140625
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = '041.gif'

Time before:  5.7974169254303
Time after:   5.798751115799
Elapsed time: 0.0013341903686523
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%aplse%' AND post_id > 25843

Time before:  5.7996349334717
Time after:   5.8008120059967
Elapsed time: 0.0011770725250244
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = '3some.gif'

Time before:  5.8017840385437
Time after:   5.8030140399933
Elapsed time: 0.001230001449585
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:3some:%' AND post_id > 25843

Time before:  5.8039689064026
Time after:   5.8051431179047
Elapsed time: 0.0011742115020752
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'alien.gif'

Time before:  5.8061230182648
Time after:   5.8073499202728
Elapsed time: 0.0012269020080566
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:alien:%' AND post_id > 25843

Time before:  5.8081510066986
Time after:   5.8092839717865
Elapsed time: 0.0011329650878906
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angel1.gif'

Time before:  5.8102810382843
Time after:   5.811548948288
Elapsed time: 0.0012679100036621
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angel1:%' AND post_id > 25843

Time before:  5.8125510215759
Time after:   5.8137331008911
Elapsed time: 0.0011820793151855
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angel10.gif'

Time before:  5.8146879673004
Time after:   5.8159220218658
Elapsed time: 0.0012340545654297
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angel10:%' AND post_id > 25843

Time before:  5.8167290687561
Time after:   5.817850112915
Elapsed time: 0.0011210441589355
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angel11.gif'

Time before:  5.818785905838
Time after:   5.8200149536133
Elapsed time: 0.0012290477752686
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angel11:%' AND post_id > 25843

Time before:  5.8209660053253
Time after:   5.822144985199
Elapsed time: 0.0011789798736572
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angel12.gif'

Time before:  5.8231160640717
Time after:   5.8243589401245
Elapsed time: 0.0012428760528564
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angel12:%' AND post_id > 25843

Time before:  5.8251740932465
Time after:   5.8263010978699
Elapsed time: 0.0011270046234131
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angel13.gif'

Time before:  5.8273000717163
Time after:   5.8285870552063
Elapsed time: 0.0012869834899902
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angel13:%' AND post_id > 25843

Time before:  5.8294899463654
Time after:   5.8306789398193
Elapsed time: 0.0011889934539795
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angel2.gif'

Time before:  5.8319098949432
Time after:   5.8332688808441
Elapsed time: 0.0013589859008789
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angel2:%' AND post_id > 25843

Time before:  5.8341619968414
Time after:   5.8354089260101
Elapsed time: 0.0012469291687012
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angel3.gif'

Time before:  5.8365070819855
Time after:   5.8379120826721
Elapsed time: 0.0014050006866455
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angel3:%' AND post_id > 25843

Time before:  5.8387920856476
Time after:   5.8399839401245
Elapsed time: 0.0011918544769287
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angel4.gif'

Time before:  5.8410129547119
Time after:   5.8425590991974
Elapsed time: 0.0015461444854736
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angel4:%' AND post_id > 25843

Time before:  5.8436460494995
Time after:   5.8448278903961
Elapsed time: 0.0011818408966064
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angel5.gif'

Time before:  5.8458330631256
Time after:   5.8472681045532
Elapsed time: 0.0014350414276123
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angel5:%' AND post_id > 25843

Time before:  5.8481740951538
Time after:   5.8493781089783
Elapsed time: 0.0012040138244629
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angel7.gif'

Time before:  5.8504440784454
Time after:   5.8518309593201
Elapsed time: 0.0013868808746338
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angel7:%' AND post_id > 25843

Time before:  5.8527150154114
Time after:   5.853903055191
Elapsed time: 0.0011880397796631
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angel8.gif'

Time before:  5.8549358844757
Time after:   5.8563408851624
Elapsed time: 0.0014050006866455
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angel8:%' AND post_id > 25843

Time before:  5.8574359416962
Time after:   5.8586330413818
Elapsed time: 0.0011970996856689
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angel9.gif'

Time before:  5.8597400188446
Time after:   5.86119389534
Elapsed time: 0.0014538764953613
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angel9:%' AND post_id > 25843

Time before:  5.8620719909668
Time after:   5.8632609844208
Elapsed time: 0.0011889934539795
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angry1.gif'

Time before:  5.8642768859863
Time after:   5.8656480312347
Elapsed time: 0.0013711452484131
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angry1:%' AND post_id > 25843

Time before:  5.8665111064911
Time after:   5.8676979541779
Elapsed time: 0.0011868476867676
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angry2.gif'

Time before:  5.8687539100647
Time after:   5.8701570034027
Elapsed time: 0.0014030933380127
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angry2:%' AND post_id > 25843

Time before:  5.8712720870972
Time after:   5.8724670410156
Elapsed time: 0.001194953918457
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angry3.gif'

Time before:  5.8734970092773
Time after:   5.8749680519104
Elapsed time: 0.0014710426330566
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angry3:%' AND post_id > 25843

Time before:  5.8758111000061
Time after:   5.8769950866699
Elapsed time: 0.0011839866638184
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angry4.gif'

Time before:  5.8780429363251
Time after:   5.8792450428009
Elapsed time: 0.0012021064758301
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angry4:%' AND post_id > 25843

Time before:  5.8801639080048
Time after:   5.8812220096588
Elapsed time: 0.0010581016540527
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angry5.gif'

Time before:  5.882395029068
Time after:   5.8837740421295
Elapsed time: 0.0013790130615234
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angry5:%' AND post_id > 25843

Time before:  5.8846468925476
Time after:   5.8859310150146
Elapsed time: 0.001284122467041
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angry6.gif'

Time before:  5.8868811130524
Time after:   5.8882060050964
Elapsed time: 0.0013248920440674
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angry6:%' AND post_id > 25843

Time before:  5.8888471126556
Time after:   5.8901810646057
Elapsed time: 0.0013339519500732
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angry7.gif'

Time before:  5.8909630775452
Time after:   5.8924310207367
Elapsed time: 0.0014679431915283
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angry7:%' AND post_id > 25843

Time before:  5.8933548927307
Time after:   5.8997390270233
Elapsed time: 0.0063841342926025
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angry8.gif'

Time before:  5.9004819393158
Time after:   5.9016981124878
Elapsed time: 0.0012161731719971
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angry8:%' AND post_id > 25843

Time before:  5.9023079872131
Time after:   5.9033570289612
Elapsed time: 0.0010490417480469
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angry9.gif'

Time before:  5.9041459560394
Time after:   5.9056360721588
Elapsed time: 0.0014901161193848
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%angry9:%' AND post_id > 25843

Time before:  5.9064080715179
Time after:   5.9074590206146
Elapsed time: 0.0010509490966797
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'angryfire.gif'

Time before:  5.9082190990448
Time after:   5.9095070362091
Elapsed time: 0.0012879371643066
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:angryfire:%' AND post_id > 25843

Time before:  5.9105041027069
Time after:   5.9116189479828
Elapsed time: 0.0011148452758789
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'argue.gif'

Time before:  5.9123809337616
Time after:   5.9135971069336
Elapsed time: 0.0012161731719971
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:argue:%' AND post_id > 25843

Time before:  5.9141891002655
Time after:   5.915237903595
Elapsed time: 0.0010488033294678
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'BangHead.gif'

Time before:  5.9179539680481
Time after:   5.9192728996277
Elapsed time: 0.0013189315795898
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:banghead:%' AND post_id > 25843

Time before:  5.9199120998383
Time after:   5.9209449291229
Elapsed time: 0.001032829284668
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'binkybaby.gif'

Time before:  5.9216849803925
Time after:   5.9229559898376
Elapsed time: 0.0012710094451904
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:binky:%' AND post_id > 25843

Time before:  5.9236180782318
Time after:   5.9246430397034
Elapsed time: 0.0010249614715576
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'black_knight_standing.gif'

Time before:  5.9256279468536
Time after:   5.9269669055939
Elapsed time: 0.0013389587402344
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:blackknight:%' AND post_id > 25843

Time before:  5.9276239871979
Time after:   5.9286170005798
Elapsed time: 0.00099301338195801
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'blob1.gif'

Time before:  5.9294180870056
Time after:   5.9308700561523
Elapsed time: 0.0014519691467285
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:blob:%' AND post_id > 25843

Time before:  5.9316370487213
Time after:   5.9326798915863
Elapsed time: 0.0010428428649902
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'blob10.gif'

Time before:  5.9334080219269
Time after:   5.9346599578857
Elapsed time: 0.0012519359588623
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:blob8:%' AND post_id > 25843

Time before:  5.935250043869
Time after:   5.9364171028137
Elapsed time: 0.0011670589447021
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'blob3.gif'

Time before:  5.9379289150238
Time after:   5.9390349388123
Elapsed time: 0.0011060237884521
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:blob2:%' AND post_id > 25843

Time before:  5.9399049282074
Time after:   5.9408490657806
Elapsed time: 0.00094413757324219
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'blob5.gif'

Time before:  5.9415669441223
Time after:   5.9426610469818
Elapsed time: 0.0010941028594971
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:blob3:%' AND post_id > 25843

Time before:  5.9437720775604
Time after:   5.9455010890961
Elapsed time: 0.0017290115356445
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'blob6.gif'

Time before:  5.9470419883728
Time after:   5.9481830596924
Elapsed time: 0.0011410713195801
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:blob4:%' AND post_id > 25843

Time before:  5.9490230083466
Time after:   5.9501559734344
Elapsed time: 0.0011329650878906
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'blob7.gif'

Time before:  5.9509909152985
Time after:   5.9521880149841
Elapsed time: 0.0011970996856689
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:blob5:%' AND post_id > 25843

Time before:  5.9537110328674
Time after:   5.9552938938141
Elapsed time: 0.0015828609466553
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'blob8.gif'

Time before:  5.9566659927368
Time after:   5.9578499794006
Elapsed time: 0.0011839866638184
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:blob6:%' AND post_id > 25843

Time before:  5.9593830108643
Time after:   5.9604170322418
Elapsed time: 0.0010340213775635
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'blob9.gif'

Time before:  5.9615890979767
Time after:   5.96275806427
Elapsed time: 0.001168966293335
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:blob7:%' AND post_id > 25843

Time before:  5.9663119316101
Time after:   5.9675381183624
Elapsed time: 0.0012261867523193
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'bom.gif'

Time before:  5.9686329364777
Time after:   5.9699840545654
Elapsed time: 0.0013511180877686
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:bom:%' AND post_id > 25843

Time before:  5.9709379673004
Time after:   5.9721710681915
Elapsed time: 0.0012331008911133
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'bonedemon.gif'

Time before:  5.9731819629669
Time after:   5.9745109081268
Elapsed time: 0.0013289451599121
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:bonedemon:%' AND post_id > 25843

Time before:  5.9752418994904
Time after:   5.9762508869171
Elapsed time: 0.0010089874267578
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'book1.gif'

Time before:  5.9770259857178
Time after:   5.978157043457
Elapsed time: 0.0011310577392578
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:book:%' AND post_id > 25843

Time before:  5.9791190624237
Time after:   5.9802138805389
Elapsed time: 0.0010948181152344
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'booty.gif'

Time before:  5.9874351024628
Time after:   5.9885809421539
Elapsed time: 0.0011458396911621
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:booty:%' AND post_id > 25843

Time before:  5.9892060756683
Time after:   5.9902589321136
Elapsed time: 0.0010528564453125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'bootyshake.gif'

Time before:  5.9910180568695
Time after:   5.9921450614929
Elapsed time: 0.0011270046234131
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:bootyshake:%' AND post_id > 25843

Time before:  5.9928050041199
Time after:   5.9938468933105
Elapsed time: 0.0010418891906738
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'boxing.gif'

Time before:  5.9946529865265
Time after:   5.9958100318909
Elapsed time: 0.0011570453643799
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:boxing:%' AND post_id > 25843

Time before:  5.9964261054993
Time after:   5.9974439144135
Elapsed time: 0.0010178089141846
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'brave.gif'

Time before:  5.998202085495
Time after:   5.9993290901184
Elapsed time: 0.0011270046234131
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:brave:%' AND post_id > 25843

Time before:  6.0002670288086
Time after:   6.0013380050659
Elapsed time: 0.0010709762573242
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'brushteeth.gif'

Time before:  6.0021440982819
Time after:   6.0033090114594
Elapsed time: 0.0011649131774902
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%brushteeth%' AND post_id > 25843

Time before:  6.0039520263672
Time after:   6.0049779415131
Elapsed time: 0.001025915145874
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:brushteeth:%' AND post_id > 25843

Time before:  6.0056641101837
Time after:   6.00665807724
Elapsed time: 0.00099396705627441
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'bs.gif'

Time before:  6.0073969364166
Time after:   6.008533000946
Elapsed time: 0.0011360645294189
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:bs:%' AND post_id > 25843

Time before:  6.0091419219971
Time after:   6.0102269649506
Elapsed time: 0.0010850429534912
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'bunny.gif'

Time before:  6.0109651088715
Time after:   6.0120990276337
Elapsed time: 0.001133918762207
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:bunny:%' AND post_id > 25843

Time before:  6.0127060413361
Time after:   6.0137479305267
Elapsed time: 0.0010418891906738
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'cat.gif'

Time before:  6.0145099163055
Time after:   6.0156478881836
Elapsed time: 0.0011379718780518
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:cat:%' AND post_id > 25843

Time before:  6.016587972641
Time after:   6.0177040100098
Elapsed time: 0.0011160373687744
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'clock.gif'

Time before:  6.0184869766235
Time after:   6.0196270942688
Elapsed time: 0.0011401176452637
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:clock:%' AND post_id > 25843

Time before:  6.0202550888062
Time after:   6.0213060379028
Elapsed time: 0.0010509490966797
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'coffee.gif'

Time before:  6.0220680236816
Time after:   6.0232040882111
Elapsed time: 0.0011360645294189
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:coffee:%' AND post_id > 25843

Time before:  6.0238149166107
Time after:   6.0248410701752
Elapsed time: 0.0010261535644531
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'coffee2.gif'

Time before:  6.0255808830261
Time after:   6.0267040729523
Elapsed time: 0.0011231899261475
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:coffee2:%' AND post_id > 25843

Time before:  6.0273160934448
Time after:   6.0283401012421
Elapsed time: 0.0010240077972412
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'color.gif'

Time before:  6.0290739536285
Time after:   6.0302319526672
Elapsed time: 0.0011579990386963
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:color:%' AND post_id > 25843

Time before:  6.0309131145477
Time after:   6.0319681167603
Elapsed time: 0.0010550022125244
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'computer.gif'

Time before:  6.0327839851379
Time after:   6.0337738990784
Elapsed time: 0.00098991394042969
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:computer:%' AND post_id > 25843

Time before:  6.0348129272461
Time after:   6.0358250141144
Elapsed time: 0.0010120868682861
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'confused1.gif'

Time before:  6.0366439819336
Time after:   6.0378110408783
Elapsed time: 0.0011670589447021
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:confused1:%' AND post_id > 25843

Time before:  6.0384929180145
Time after:   6.0392320156097
Elapsed time: 0.00073909759521484
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'confused2.gif'

Time before:  6.0400149822235
Time after:   6.040894985199
Elapsed time: 0.00088000297546387
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:confused2:%' AND post_id > 25843

Time before:  6.0414979457855
Time after:   6.0425629615784
Elapsed time: 0.0010650157928467
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'confused3.gif'

Time before:  6.0434110164642
Time after:   6.0445721149445
Elapsed time: 0.0011610984802246
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:confused3:%' AND post_id > 25843

Time before:  6.0452768802643
Time after:   6.0463900566101
Elapsed time: 0.0011131763458252
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'confused4.gif'

Time before:  6.0471611022949
Time after:   6.0480329990387
Elapsed time: 0.00087189674377441
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:confused4:%' AND post_id > 25843

Time before:  6.0486431121826
Time after:   6.0495729446411
Elapsed time: 0.00092983245849609
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'confused5.gif'

Time before:  6.050304889679
Time after:   6.0514500141144
Elapsed time: 0.0011451244354248
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:confused5:%' AND post_id > 25843

Time before:  6.0526099205017
Time after:   6.0535769462585
Elapsed time: 0.00096702575683594
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'crybaby2.gif'

Time before:  6.0543620586395
Time after:   6.0554919242859
Elapsed time: 0.0011298656463623
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:crybaby:%' AND post_id > 25843

Time before:  6.0561499595642
Time after:   6.0572180747986
Elapsed time: 0.001068115234375
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'cussing.gif'

Time before:  6.0579979419708
Time after:   6.0592160224915
Elapsed time: 0.0012180805206299
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:cussing:%' AND post_id > 25843

Time before:  6.0599670410156
Time after:   6.061047077179
Elapsed time: 0.0010800361633301
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'cwm10.gif'

Time before:  6.0617649555206
Time after:   6.0629029273987
Elapsed time: 0.0011379718780518
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:cwm10:%' AND post_id > 25843

Time before:  6.0635550022125
Time after:   6.0643200874329
Elapsed time: 0.00076508522033691
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'cwm21.gif'

Time before:  6.0650560855865
Time after:   6.0660860538483
Elapsed time: 0.0010299682617188
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:cwm21:%' AND post_id > 25843

Time before:  6.0666890144348
Time after:   6.0677139759064
Elapsed time: 0.0010249614715576
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'cya.gif'

Time before:  6.068589925766
Time after:   6.0694200992584
Elapsed time: 0.00083017349243164
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:cya:%' AND post_id > 25843

Time before:  6.0700380802155
Time after:   6.0710461139679
Elapsed time: 0.0010080337524414
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'dark1.gif'

Time before:  6.0717480182648
Time after:   6.0728650093079
Elapsed time: 0.0011169910430908
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:dark1:%' AND post_id > 25843

Time before:  6.0735549926758
Time after:   6.0746409893036
Elapsed time: 0.0010859966278076
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'diablo_ani_fire.gif'

Time before:  6.0754590034485
Time after:   6.0763099193573
Elapsed time: 0.00085091590881348
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:diabloanifire:%' AND post_id > 25843

Time before:  6.077054977417
Time after:   6.0779349803925
Elapsed time: 0.00088000297546387
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'dink.gif'

Time before:  6.0788478851318
Time after:   6.0796821117401
Elapsed time: 0.00083422660827637
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%dink%' AND post_id > 25843

Time before:  6.0803270339966
Time after:   6.0814740657806
Elapsed time: 0.0011470317840576
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:dink:%' AND post_id > 25843

Time before:  6.0822060108185
Time after:   6.082906961441
Elapsed time: 0.00070095062255859
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'director.gif'

Time before:  6.0836930274963
Time after:   6.0845549106598
Elapsed time: 0.00086188316345215
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:director:%' AND post_id > 25843

Time before:  6.0852210521698
Time after:   6.0862770080566
Elapsed time: 0.0010559558868408
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'director2.gif'

Time before:  6.0871300697327
Time after:   6.0881900787354
Elapsed time: 0.0010600090026855
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:director2:%' AND post_id > 25843

Time before:  6.0887799263
Time after:   6.0895080566406
Elapsed time: 0.00072813034057617
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'disgust.gif'

Time before:  6.0903029441833
Time after:   6.091276884079
Elapsed time: 0.00097393989562988
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%disgust%' AND post_id > 25843

Time before:  6.0921230316162
Time after:   6.0932269096375
Elapsed time: 0.0011038780212402
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:disgust:%' AND post_id > 25843

Time before:  6.0940580368042
Time after:   6.0947580337524
Elapsed time: 0.00069999694824219
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'DMAGE.gif'

Time before:  6.0956559181213
Time after:   6.0964739322662
Elapsed time: 0.00081801414489746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:dmage:%' AND post_id > 25843

Time before:  6.097158908844
Time after:   6.0982599258423
Elapsed time: 0.001101016998291
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'dog.gif'

Time before:  6.0991539955139
Time after:   6.1004190444946
Elapsed time: 0.0012650489807129
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:dog:%' AND post_id > 25843

Time before:  6.1011190414429
Time after:   6.1022779941559
Elapsed time: 0.0011589527130127
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'dontknow.gif'

Time before:  6.1030819416046
Time after:   6.1042430400848
Elapsed time: 0.0011610984802246
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:dontknow:%' AND post_id > 25843

Time before:  6.1050128936768
Time after:   6.1061520576477
Elapsed time: 0.0011391639709473
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'downtown.gif'

Time before:  6.1070809364319
Time after:   6.108323097229
Elapsed time: 0.0012421607971191
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:downtown:%' AND post_id > 25843

Time before:  6.1091148853302
Time after:   6.1143090724945
Elapsed time: 0.0051941871643066
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'DRUIDD.gif'

Time before:  6.1151549816132
Time after:   6.1159830093384
Elapsed time: 0.00082802772521973
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:druid:%' AND post_id > 25843

Time before:  6.1165421009064
Time after:   6.1172020435333
Elapsed time: 0.00065994262695312
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'drunken_smilie.gif'

Time before:  6.1178359985352
Time after:   6.1185710430145
Elapsed time: 0.00073504447937012
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:drunken:%' AND post_id > 25843

Time before:  6.1191449165344
Time after:   6.1197679042816
Elapsed time: 0.00062298774719238
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'duckie.gif'

Time before:  6.1204159259796
Time after:   6.1211619377136
Elapsed time: 0.00074601173400879
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:duckie:%' AND post_id > 25843

Time before:  6.1216659545898
Time after:   6.1222879886627
Elapsed time: 0.00062203407287598
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'Edfirst.gif'

Time before:  6.1229169368744
Time after:   6.1236550807953
Elapsed time: 0.00073814392089844
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:edfirst:%' AND post_id > 25843

Time before:  6.1242210865021
Time after:   6.1248400211334
Elapsed time: 0.00061893463134766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'evil1.gif'

Time before:  6.1254730224609
Time after:   6.1262340545654
Elapsed time: 0.00076103210449219
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:evil1:%' AND post_id > 25843

Time before:  6.1267719268799
Time after:   6.1273910999298
Elapsed time: 0.00061917304992676
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'evil3.gif'

Time before:  6.1280300617218
Time after:   6.128760099411
Elapsed time: 0.00073003768920898
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:evil3:%' AND post_id > 25843

Time before:  6.1292850971222
Time after:   6.1299240589142
Elapsed time: 0.00063896179199219
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'evil4.gif'

Time before:  6.1305890083313
Time after:   6.1313309669495
Elapsed time: 0.00074195861816406
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:evil2:%' AND post_id > 25843

Time before:  6.1319150924683
Time after:   6.1325340270996
Elapsed time: 0.00061893463134766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'evil5.gif'

Time before:  6.1331770420074
Time after:   6.1339190006256
Elapsed time: 0.00074195861816406
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:evil3:%' AND post_id > 25843

Time before:  6.1344540119171
Time after:   6.1350769996643
Elapsed time: 0.00062298774719238
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'evil6.gif'

Time before:  6.1357440948486
Time after:   6.1364829540253
Elapsed time: 0.00073885917663574
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:evil4:%' AND post_id > 25843

Time before:  6.1370339393616
Time after:   6.1376709938049
Elapsed time: 0.00063705444335938
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'evil7.gif'

Time before:  6.1383600234985
Time after:   6.13933801651
Elapsed time: 0.00097799301147461
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:evil5:%' AND post_id > 25843

Time before:  6.1400310993195
Time after:   6.1409780979156
Elapsed time: 0.00094699859619141
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'fart.gif'

Time before:  6.141676902771
Time after:   6.1427330970764
Elapsed time: 0.0010561943054199
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:fart:%' AND post_id > 25843

Time before:  6.1433808803558
Time after:   6.1442461013794
Elapsed time: 0.00086522102355957
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'female.gif'

Time before:  6.1449398994446
Time after:   6.1457180976868
Elapsed time: 0.0007781982421875
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:female:%' AND post_id > 25843

Time before:  6.146301984787
Time after:   6.1469349861145
Elapsed time: 0.00063300132751465
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'fenforcer.gif'

Time before:  6.1475830078125
Time after:   6.1483869552612
Elapsed time: 0.00080394744873047
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:enforcer:%' AND post_id > 25843

Time before:  6.1489279270172
Time after:   6.1495580673218
Elapsed time: 0.00063014030456543
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'fflak.gif'

Time before:  6.1501650810242
Time after:   6.1509199142456
Elapsed time: 0.00075483322143555
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:flak:%' AND post_id > 25843

Time before:  6.1514480113983
Time after:   6.1520719528198
Elapsed time: 0.00062394142150879
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'fglob.gif'

Time before:  6.1527519226074
Time after:   6.1534860134125
Elapsed time: 0.00073409080505371
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:bio:%' AND post_id > 25843

Time before:  6.1540141105652
Time after:   6.1546490192413
Elapsed time: 0.00063490867614746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'fimpact.gif'

Time before:  6.1553039550781
Time after:   6.1560409069061
Elapsed time: 0.00073695182800293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:impact:%' AND post_id > 25843

Time before:  6.156564950943
Time after:   6.1571819782257
Elapsed time: 0.00061702728271484
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'fish.gif'

Time before:  6.1577479839325
Time after:   6.1584820747375
Elapsed time: 0.00073409080505371
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:fish:%' AND post_id > 25843

Time before:  6.1590149402618
Time after:   6.1596419811249
Elapsed time: 0.00062704086303711
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'fplasma.gif'

Time before:  6.1603560447693
Time after:   6.1611039638519
Elapsed time: 0.0007479190826416
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:plasma:%' AND post_id > 25843

Time before:  6.1616339683533
Time after:   6.1624660491943
Elapsed time: 0.00083208084106445
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'fripper.gif'

Time before:  6.1630239486694
Time after:   6.163978099823
Elapsed time: 0.00095415115356445
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:rip:%' AND post_id > 25843

Time before:  6.1644370555878
Time after:   6.1652801036835
Elapsed time: 0.00084304809570312
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'fsniper.gif'

Time before:  6.1658411026001
Time after:   6.1667990684509
Elapsed time: 0.00095796585083008
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:snipe:%' AND post_id > 25843

Time before:  6.1673130989075
Time after:   6.1681590080261
Elapsed time: 0.00084590911865234
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'fucyc.gif'

Time before:  6.1687169075012
Time after:   6.1696479320526
Elapsed time: 0.0009310245513916
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:fucyc:%' AND post_id > 25843

Time before:  6.1701190471649
Time after:   6.1709361076355
Elapsed time: 0.00081706047058105
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'fxloc.gif'

Time before:  6.1714820861816
Time after:   6.172434091568
Elapsed time: 0.00095200538635254
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:trans:%' AND post_id > 25843

Time before:  6.1728730201721
Time after:   6.1736669540405
Elapsed time: 0.0007939338684082
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'glasses1.gif'

Time before:  6.1742670536041
Time after:   6.1752269268036
Elapsed time: 0.00095987319946289
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:glasses1:%' AND post_id > 25843

Time before:  6.1756830215454
Time after:   6.1764860153198
Elapsed time: 0.00080299377441406
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'glasses10.gif'

Time before:  6.1770269870758
Time after:   6.1779029369354
Elapsed time: 0.00087594985961914
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:glasses8:%' AND post_id > 25843

Time before:  6.1784610748291
Time after:   6.1790790557861
Elapsed time: 0.00061798095703125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'glasses11.gif'

Time before:  6.1797521114349
Time after:   6.1804950237274
Elapsed time: 0.00074291229248047
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:glasses9:%' AND post_id > 25843

Time before:  6.18106508255
Time after:   6.1816930770874
Elapsed time: 0.00062799453735352
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'glasses12.gif'

Time before:  6.1823499202728
Time after:   6.1830990314484
Elapsed time: 0.00074911117553711
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:glasses10:%' AND post_id > 25843

Time before:  6.1836500167847
Time after:   6.1842548847198
Elapsed time: 0.00060486793518066
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'glasses13.gif'

Time before:  6.1849141120911
Time after:   6.1856610774994
Elapsed time: 0.0007469654083252
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:glasses11:%' AND post_id > 25843

Time before:  6.1862089633942
Time after:   6.1869580745697
Elapsed time: 0.00074911117553711
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'glasses2.gif'

Time before:  6.1876699924469
Time after:   6.1884329319
Elapsed time: 0.000762939453125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:glasses2:%' AND post_id > 25843

Time before:  6.1890380382538
Time after:   6.1896729469299
Elapsed time: 0.00063490867614746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'glasses3.gif'

Time before:  6.1903541088104
Time after:   6.1911010742188
Elapsed time: 0.0007469654083252
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:glasses3:%' AND post_id > 25843

Time before:  6.1916670799255
Time after:   6.1922800540924
Elapsed time: 0.00061297416687012
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'glasses6.gif'

Time before:  6.1929359436035
Time after:   6.1936841011047
Elapsed time: 0.0007481575012207
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:glasses4:%' AND post_id > 25843

Time before:  6.1942191123962
Time after:   6.1948320865631
Elapsed time: 0.00061297416687012
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'glasses7.gif'

Time before:  6.19553399086
Time after:   6.1962790489197
Elapsed time: 0.00074505805969238
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:glasses5:%' AND post_id > 25843

Time before:  6.1968140602112
Time after:   6.1974239349365
Elapsed time: 0.0006098747253418
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'glasses8.gif'

Time before:  6.1980800628662
Time after:   6.1988229751587
Elapsed time: 0.00074291229248047
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:glasses6:%' AND post_id > 25843

Time before:  6.1993680000305
Time after:   6.1999769210815
Elapsed time: 0.00060892105102539
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'glasses9.gif'

Time before:  6.2006349563599
Time after:   6.201376914978
Elapsed time: 0.00074195861816406
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:glasses7:%' AND post_id > 25843

Time before:  6.2019739151001
Time after:   6.2025918960571
Elapsed time: 0.00061798095703125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'grommit.gif'

Time before:  6.2032709121704
Time after:   6.2040159702301
Elapsed time: 0.00074505805969238
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:grommit:%' AND post_id > 25843

Time before:  6.2045500278473
Time after:   6.2051661014557
Elapsed time: 0.00061607360839844
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'hal.gif'

Time before:  6.2057499885559
Time after:   6.2064800262451
Elapsed time: 0.00073003768920898
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:hal%' AND post_id > 25843

Time before:  6.2070400714874
Time after:   6.2077009677887
Elapsed time: 0.00066089630126953
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'happy1.gif'

Time before:  6.2084050178528
Time after:   6.2091479301453
Elapsed time: 0.00074291229248047
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:happy1:%' AND post_id > 25843

Time before:  6.2096490859985
Time after:   6.2102560997009
Elapsed time: 0.00060701370239258
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'happy10.gif'

Time before:  6.2109129428864
Time after:   6.2116560935974
Elapsed time: 0.00074315071105957
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:happy10:%' AND post_id > 25843

Time before:  6.2122039794922
Time after:   6.2128129005432
Elapsed time: 0.00060892105102539
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'happy11.gif'

Time before:  6.213476896286
Time after:   6.214231967926
Elapsed time: 0.00075507164001465
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:happy11:%' AND post_id > 25843

Time before:  6.2147989273071
Time after:   6.2154169082642
Elapsed time: 0.00061798095703125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'happy2.gif'

Time before:  6.2161300182343
Time after:   6.2168700695038
Elapsed time: 0.00074005126953125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:happy2:%' AND post_id > 25843

Time before:  6.2174029350281
Time after:   6.218024969101
Elapsed time: 0.00062203407287598
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'happy3.gif'

Time before:  6.2186770439148
Time after:   6.2194159030914
Elapsed time: 0.00073885917663574
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:happy3:%' AND post_id > 25843

Time before:  6.2199399471283
Time after:   6.2205491065979
Elapsed time: 0.00060915946960449
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'happy4.gif'

Time before:  6.2211918830872
Time after:   6.2219278812408
Elapsed time: 0.00073599815368652
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:happy4:%' AND post_id > 25843

Time before:  6.222510099411
Time after:   6.2231299877167
Elapsed time: 0.00061988830566406
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'happy5.gif'

Time before:  6.2238008975983
Time after:   6.2245450019836
Elapsed time: 0.00074410438537598
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:happy5:%' AND post_id > 25843

Time before:  6.2250759601593
Time after:   6.2257089614868
Elapsed time: 0.00063300132751465
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'happy6.gif'

Time before:  6.226499080658
Time after:   6.2272629737854
Elapsed time: 0.00076389312744141
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:happy6:%' AND post_id > 25843

Time before:  6.2277960777283
Time after:   6.2284231185913
Elapsed time: 0.00062704086303711
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'happy7.gif'

Time before:  6.2291378974915
Time after:   6.229896068573
Elapsed time: 0.00075817108154297
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:happy7:%' AND post_id > 25843

Time before:  6.2304658889771
Time after:   6.2310960292816
Elapsed time: 0.00063014030456543
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'happy8.gif'

Time before:  6.2318329811096
Time after:   6.2325870990753
Elapsed time: 0.00075411796569824
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:happy8:%' AND post_id > 25843

Time before:  6.2331140041351
Time after:   6.2337400913239
Elapsed time: 0.0006260871887207
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'happy9.gif'

Time before:  6.2344009876251
Time after:   6.2351410388947
Elapsed time: 0.00074005126953125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:happy9:%' AND post_id > 25843

Time before:  6.2357399463654
Time after:   6.2363600730896
Elapsed time: 0.00062012672424316
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'headbang.gif'

Time before:  6.2371020317078
Time after:   6.2378630638123
Elapsed time: 0.00076103210449219
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:headbang:%' AND post_id > 25843

Time before:  6.2384309768677
Time after:   6.2390449047089
Elapsed time: 0.00061392784118652
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'hello.gif'

Time before:  6.2397060394287
Time after:   6.2404460906982
Elapsed time: 0.00074005126953125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:hello2:%' AND post_id > 25843

Time before:  6.2410039901733
Time after:   6.2416350841522
Elapsed time: 0.00063109397888184
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'hello2.gif'

Time before:  6.2423000335693
Time after:   6.2430410385132
Elapsed time: 0.00074100494384766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:hello1:%' AND post_id > 25843

Time before:  6.2436320781708
Time after:   6.2442619800568
Elapsed time: 0.00062990188598633
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'help.gif'

Time before:  6.2449328899384
Time after:   6.2456760406494
Elapsed time: 0.00074315071105957
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:help:%' AND post_id > 25843

Time before:  6.2462089061737
Time after:   6.2468349933624
Elapsed time: 0.0006260871887207
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'hiding.gif'

Time before:  6.2475318908691
Time after:   6.2482769489288
Elapsed time: 0.00074505805969238
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:hiding:%' AND post_id > 25843

Time before:  6.2488059997559
Time after:   6.2494220733643
Elapsed time: 0.00061607360839844
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'hippy2.gif'

Time before:  6.2501389980316
Time after:   6.2508919239044
Elapsed time: 0.00075292587280273
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:hippy2:%' AND post_id > 25843

Time before:  6.2514679431915
Time after:   6.2520949840546
Elapsed time: 0.00062704086303711
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'hmh.gif'

Time before:  6.252760887146
Time after:   6.2534899711609
Elapsed time: 0.00072908401489258
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:hmph:%' AND post_id > 25843

Time before:  6.254007101059
Time after:   6.2546339035034
Elapsed time: 0.00062680244445801
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'home.gif'

Time before:  6.2552900314331
Time after:   6.2560288906097
Elapsed time: 0.00073885917663574
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:home:%' AND post_id > 25843

Time before:  6.256609916687
Time after:   6.2572460174561
Elapsed time: 0.00063610076904297
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'homework.gif'

Time before:  6.2578229904175
Time after:   6.2585589885712
Elapsed time: 0.00073599815368652
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:homework:%' AND post_id > 25843

Time before:  6.2591021060944
Time after:   6.259712934494
Elapsed time: 0.0006108283996582
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'iamwithstupid.gif'

Time before:  6.2603750228882
Time after:   6.2611179351807
Elapsed time: 0.00074291229248047
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:withstupid:%' AND post_id > 25843

Time before:  6.2616260051727
Time after:   6.2622311115265
Elapsed time: 0.00060510635375977
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icescream.gif'

Time before:  6.2629680633545
Time after:   6.2637169361115
Elapsed time: 0.00074887275695801
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:icescream:%' AND post_id > 25843

Time before:  6.2642509937286
Time after:   6.2648611068726
Elapsed time: 0.0006101131439209
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_albino.gif'

Time before:  6.2655320167542
Time after:   6.2662699222565
Elapsed time: 0.00073790550231934
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:albino:%' AND post_id > 25843

Time before:  6.2668190002441
Time after:   6.267450094223
Elapsed time: 0.00063109397888184
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_anal.gif'

Time before:  6.2681410312653
Time after:   6.2688729763031
Elapsed time: 0.0007319450378418
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:ANAL:%' AND post_id > 25843

Time before:  6.2694129943848
Time after:   6.2700490951538
Elapsed time: 0.00063610076904297
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_arrow.gif'

Time before:  6.2707829475403
Time after:   6.2715148925781
Elapsed time: 0.0007319450378418
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:arrow:%' AND post_id > 25843

Time before:  6.2720520496368
Time after:   6.2726719379425
Elapsed time: 0.00061988830566406
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_axe.gif'

Time before:  6.2733409404755
Time after:   6.2740750312805
Elapsed time: 0.00073409080505371
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:axe:%' AND post_id > 25843

Time before:  6.2746610641479
Time after:   6.2753119468689
Elapsed time: 0.00065088272094727
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_biggrin.gif'

Time before:  6.275995016098
Time after:   6.2770090103149
Elapsed time: 0.0010139942169189
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:D%' AND post_id > 25843

Time before:  6.2776989936829
Time after:   6.2785170078278
Elapsed time: 0.00081801414489746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:-D%' AND post_id > 25843

Time before:  6.2791380882263
Time after:   6.2797629833221
Elapsed time: 0.0006248950958252
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:grin:%' AND post_id > 25843

Time before:  6.280298948288
Time after:   6.2809159755707
Elapsed time: 0.00061702728271484
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:iconbiggrin:%' AND post_id > 25843

Time before:  6.2814509868622
Time after:   6.2820689678192
Elapsed time: 0.00061798095703125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_bigsmurf.gif'

Time before:  6.2827351093292
Time after:   6.2834830284119
Elapsed time: 0.0007479190826416
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:bigsmurf:%' AND post_id > 25843

Time before:  6.2840321063995
Time after:   6.2846438884735
Elapsed time: 0.00061178207397461
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_blackeye.gif'

Time before:  6.2853140830994
Time after:   6.286052942276
Elapsed time: 0.00073885917663574
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:blackeye:%' AND post_id > 25843

Time before:  6.286612033844
Time after:   6.2872319221497
Elapsed time: 0.00061988830566406
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_bounce.gif'

Time before:  6.2879040241241
Time after:   6.288633108139
Elapsed time: 0.00072908401489258
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:bounce:%' AND post_id > 25843

Time before:  6.2891709804535
Time after:   6.2898058891296
Elapsed time: 0.00063490867614746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_brilsmurf.gif'

Time before:  6.2904999256134
Time after:   6.2912330627441
Elapsed time: 0.0007331371307373
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:brilsmurf:%' AND post_id > 25843

Time before:  6.2917759418488
Time after:   6.292387008667
Elapsed time: 0.0006110668182373
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_butt.gif'

Time before:  6.2930529117584
Time after:   6.2937920093536
Elapsed time: 0.00073909759521484
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:butthead:%' AND post_id > 25843

Time before:  6.2943270206451
Time after:   6.2949380874634
Elapsed time: 0.0006110668182373
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_cat.gif'

Time before:  6.295608997345
Time after:   6.2963390350342
Elapsed time: 0.00073003768920898
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:cat:%' AND post_id > 25843

Time before:  6.2968759536743
Time after:   6.2975060939789
Elapsed time: 0.00063014030456543
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_cheers.gif'

Time before:  6.2982029914856
Time after:   6.2989449501038
Elapsed time: 0.00074195861816406
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:cheers:%' AND post_id > 25843

Time before:  6.2994959354401
Time after:   6.3001170158386
Elapsed time: 0.00062108039855957
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_cheese.gif'

Time before:  6.3007929325104
Time after:   6.3015320301056
Elapsed time: 0.00073909759521484
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:cheese:%' AND post_id > 25843

Time before:  6.3020479679108
Time after:   6.3026690483093
Elapsed time: 0.00062108039855957
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_cherry.gif'

Time before:  6.3033521175385
Time after:   6.3040859699249
Elapsed time: 0.00073385238647461
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:cherry:%' AND post_id > 25843

Time before:  6.3046588897705
Time after:   6.3054130077362
Elapsed time: 0.00075411796569824
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_clown.gif'

Time before:  6.3061530590057
Time after:   6.3069140911102
Elapsed time: 0.00076103210449219
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:clown:%' AND post_id > 25843

Time before:  6.3074479103088
Time after:   6.3080730438232
Elapsed time: 0.0006251335144043
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_colors.gif'

Time before:  6.3087389469147
Time after:   6.3094749450684
Elapsed time: 0.00073599815368652
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:colors:%' AND post_id > 25843

Time before:  6.3100259304047
Time after:   6.3107309341431
Elapsed time: 0.00070500373840332
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_compress.gif'

Time before:  6.3114631175995
Time after:   6.3122110366821
Elapsed time: 0.0007479190826416
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:compress:%' AND post_id > 25843

Time before:  6.3127601146698
Time after:   6.3133759498596
Elapsed time: 0.00061583518981934
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_confused.gif'

Time before:  6.3140749931335
Time after:   6.3148210048676
Elapsed time: 0.00074601173400879
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:?%' AND post_id > 25843

Time before:  6.3154029846191
Time after:   6.3160490989685
Elapsed time: 0.00064611434936523
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:-?%' AND post_id > 25843

Time before:  6.3166160583496
Time after:   6.3172209262848
Elapsed time: 0.00060486793518066
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:???:%' AND post_id > 25843

Time before:  6.3177719116211
Time after:   6.3185679912567
Elapsed time: 0.00079607963562012
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_cool.gif'

Time before:  6.3192958831787
Time after:   6.3200569152832
Elapsed time: 0.00076103210449219
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%8)%' AND post_id > 25843

Time before:  6.3206260204315
Time after:   6.3212530612946
Elapsed time: 0.00062704086303711
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%8-)%' AND post_id > 25843

Time before:  6.3218350410461
Time after:   6.3224530220032
Elapsed time: 0.00061798095703125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:cool:%' AND post_id > 25843

Time before:  6.3229990005493
Time after:   6.3236169815063
Elapsed time: 0.00061798095703125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_cry.gif'

Time before:  6.3242900371552
Time after:   6.3250269889832
Elapsed time: 0.00073695182800293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:cry:%' AND post_id > 25843

Time before:  6.325560092926
Time after:   6.3262190818787
Elapsed time: 0.00065898895263672
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_cyclops.gif'

Time before:  6.3269228935242
Time after:   6.327663898468
Elapsed time: 0.00074100494384766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:cyclops:%' AND post_id > 25843

Time before:  6.328192949295
Time after:   6.3288071155548
Elapsed time: 0.00061416625976562
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_cyclops_ani.gif'

Time before:  6.3294711112976
Time after:   6.3304750919342
Elapsed time: 0.0010039806365967
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:cyclopsani:%' AND post_id > 25843

Time before:  6.3311159610748
Time after:   6.3318569660187
Elapsed time: 0.00074100494384766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_evil.gif'

Time before:  6.3325910568237
Time after:   6.3333361148834
Elapsed time: 0.00074505805969238
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:evil:%' AND post_id > 25843

Time before:  6.333918094635
Time after:   6.3345589637756
Elapsed time: 0.000640869140625
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_exclaim.gif'

Time before:  6.3352689743042
Time after:   6.3360071182251
Elapsed time: 0.00073814392089844
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:!:%' AND post_id > 25843

Time before:  6.3365440368652
Time after:   6.3371770381927
Elapsed time: 0.00063300132751465
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_eyes.gif'

Time before:  6.3377869129181
Time after:   6.338515996933
Elapsed time: 0.00072908401489258
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:rolleyes:%' AND post_id > 25843

Time before:  6.3390738964081
Time after:   6.3396909236908
Elapsed time: 0.00061702728271484
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_farao.gif'

Time before:  6.3403759002686
Time after:   6.341108083725
Elapsed time: 0.0007321834564209
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:faroah:%' AND post_id > 25843

Time before:  6.3416340351105
Time after:   6.3422660827637
Elapsed time: 0.00063204765319824
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_flower.gif'

Time before:  6.342964887619
Time after:   6.3437020778656
Elapsed time: 0.00073719024658203
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:flower:%' AND post_id > 25843

Time before:  6.3442571163177
Time after:   6.3450009822845
Elapsed time: 0.00074386596679688
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_fU.gif'

Time before:  6.3456969261169
Time after:   6.3465509414673
Elapsed time: 0.0008540153503418
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:finga:%' AND post_id > 25843

Time before:  6.3472290039062
Time after:   6.3482809066772
Elapsed time: 0.0010519027709961
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_geek.gif'

Time before:  6.3490788936615
Time after:   6.350203037262
Elapsed time: 0.0011241436004639
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:geek:%' AND post_id > 25843

Time before:  6.3509840965271
Time after:   6.3518960475922
Elapsed time: 0.00091195106506348
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_joker.gif'

Time before:  6.3527019023895
Time after:   6.3534610271454
Elapsed time: 0.00075912475585938
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:joker:%' AND post_id > 25843

Time before:  6.3539929389954
Time after:   6.3549089431763
Elapsed time: 0.0009160041809082
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_jook.gif'

Time before:  6.3555150032043
Time after:   6.3564829826355
Elapsed time: 0.00096797943115234
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:drinkers:%' AND post_id > 25843

Time before:  6.3569331169128
Time after:   6.3577120304108
Elapsed time: 0.0007789134979248
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_karu.gif'

Time before:  6.3582990169525
Time after:   6.3592619895935
Elapsed time: 0.00096297264099121
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:bear:%' AND post_id > 25843

Time before:  6.3597390651703
Time after:   6.3605790138245
Elapsed time: 0.0008399486541748
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_keel.gif'

Time before:  6.3611779212952
Time after:   6.3619780540466
Elapsed time: 0.00080013275146484
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tonqe:%' AND post_id > 25843

Time before:  6.3624470233917
Time after:   6.3632779121399
Elapsed time: 0.00083088874816895
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_kidra.gif'

Time before:  6.3638660907745
Time after:   6.3648200035095
Elapsed time: 0.00095391273498535
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:rock:%' AND post_id > 25843

Time before:  6.3652739524841
Time after:   6.3661150932312
Elapsed time: 0.00084114074707031
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_king.gif'

Time before:  6.3667190074921
Time after:   6.3676810264587
Elapsed time: 0.0009620189666748
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:king:%' AND post_id > 25843

Time before:  6.3681480884552
Time after:   6.3689849376678
Elapsed time: 0.00083684921264648
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_lol.gif'

Time before:  6.3695869445801
Time after:   6.3705520629883
Elapsed time: 0.00096511840820312
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:lol:%' AND post_id > 25843

Time before:  6.3710289001465
Time after:   6.3719029426575
Elapsed time: 0.00087404251098633
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_mad.gif'

Time before:  6.3724980354309
Time after:   6.3734600543976
Elapsed time: 0.0009620189666748
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:x%' AND post_id > 25843

Time before:  6.3739430904388
Time after:   6.3747560977936
Elapsed time: 0.00081300735473633
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:-x%' AND post_id > 25843

Time before:  6.3752501010895
Time after:   6.3760509490967
Elapsed time: 0.00080084800720215
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:mad:%' AND post_id > 25843

Time before:  6.3765289783478
Time after:   6.3773651123047
Elapsed time: 0.00083613395690918
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_madu.gif'

Time before:  6.3780419826508
Time after:   6.3788039684296
Elapsed time: 0.00076198577880859
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:snakeman:%' AND post_id > 25843

Time before:  6.3793489933014
Time after:   6.3800940513611
Elapsed time: 0.00074505805969238
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_monkey.gif'

Time before:  6.3808190822601
Time after:   6.3815801143646
Elapsed time: 0.00076103210449219
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:monkey:%' AND post_id > 25843

Time before:  6.3820888996124
Time after:   6.3827159404755
Elapsed time: 0.00062704086303711
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_mrgreen.gif'

Time before:  6.383446931839
Time after:   6.3841829299927
Elapsed time: 0.00073599815368652
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:mrgreen:%' AND post_id > 25843

Time before:  6.3847210407257
Time after:   6.3853371143341
Elapsed time: 0.00061607360839844
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_neutral.gif'

Time before:  6.386048078537
Time after:   6.3868079185486
Elapsed time: 0.00075984001159668
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:|%' AND post_id > 25843

Time before:  6.3873879909515
Time after:   6.3880059719086
Elapsed time: 0.00061798095703125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:-|%' AND post_id > 25843

Time before:  6.388561964035
Time after:   6.3891689777374
Elapsed time: 0.00060701370239258
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:neutral:%' AND post_id > 25843

Time before:  6.3897140026093
Time after:   6.3903210163116
Elapsed time: 0.00060701370239258
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_oak.gif'

Time before:  6.3910241127014
Time after:   6.3917601108551
Elapsed time: 0.00073599815368652
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:vom:%' AND post_id > 25843

Time before:  6.3922960758209
Time after:   6.3929250240326
Elapsed time: 0.00062894821166992
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_pai.gif'

Time before:  6.3935930728912
Time after:   6.3943390846252
Elapsed time: 0.00074601173400879
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:goodman:%' AND post_id > 25843

Time before:  6.394907951355
Time after:   6.3955380916595
Elapsed time: 0.00063014030456543
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_pale.gif'

Time before:  6.3962609767914
Time after:   6.3970000743866
Elapsed time: 0.00073909759521484
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pale:%' AND post_id > 25843

Time before:  6.3975729942322
Time after:   6.3985190391541
Elapsed time: 0.000946044921875
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_pall.gif'

Time before:  6.3995659351349
Time after:   6.4005799293518
Elapsed time: 0.0010139942169189
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:fball:%' AND post_id > 25843

Time before:  6.4010760784149
Time after:   6.4018249511719
Elapsed time: 0.00074887275695801
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_pidu.gif'

Time before:  6.402440071106
Time after:   6.4033980369568
Elapsed time: 0.00095796585083008
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:partyman:%' AND post_id > 25843

Time before:  6.4038569927216
Time after:   6.4046590328217
Elapsed time: 0.00080204010009766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_pirat.gif'

Time before:  6.4052510261536
Time after:   6.4060299396515
Elapsed time: 0.0007789134979248
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pirate:%' AND post_id > 25843

Time before:  6.4064939022064
Time after:   6.4073269367218
Elapsed time: 0.00083303451538086
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_pray.gif'

Time before:  6.4079060554504
Time after:   6.4088609218597
Elapsed time: 0.00095486640930176
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:prayer:%' AND post_id > 25843

Time before:  6.4093039035797
Time after:   6.4099628925323
Elapsed time: 0.00065898895263672
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_profileleft.gif'

Time before:  6.4105589389801
Time after:   6.4115130901337
Elapsed time: 0.00095415115356445
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:profileleft:%' AND post_id > 25843

Time before:  6.4119870662689
Time after:   6.4128160476685
Elapsed time: 0.00082898139953613
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_profileright.gif'

Time before:  6.4134531021118
Time after:   6.4143559932709
Elapsed time: 0.00090289115905762
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:profileright:%' AND post_id > 25843

Time before:  6.4148709774017
Time after:   6.4157090187073
Elapsed time: 0.00083804130554199
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_puke_l.gif'

Time before:  6.4163091182709
Time after:   6.4172699451447
Elapsed time: 0.0009608268737793
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pukeleft:%' AND post_id > 25843

Time before:  6.4177370071411
Time after:   6.4185490608215
Elapsed time: 0.00081205368041992
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_puke_r.gif'

Time before:  6.4191670417786
Time after:   6.4201300144196
Elapsed time: 0.00096297264099121
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pukeright:%' AND post_id > 25843

Time before:  6.4206008911133
Time after:   6.4214179515839
Elapsed time: 0.00081706047058105
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_queen.gif'

Time before:  6.4219861030579
Time after:   6.4229469299316
Elapsed time: 0.0009608268737793
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:queen:%' AND post_id > 25843

Time before:  6.4234189987183
Time after:   6.4242379665375
Elapsed time: 0.00081896781921387
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_question.gif'

Time before:  6.4248239994049
Time after:   6.4257490634918
Elapsed time: 0.00092506408691406
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:?:%' AND post_id > 25843

Time before:  6.4262969493866
Time after:   6.42693400383
Elapsed time: 0.00063705444335938
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_rabbit.gif'

Time before:  6.4276540279388
Time after:   6.4283909797668
Elapsed time: 0.00073695182800293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:rabbit:%' AND post_id > 25843

Time before:  6.4289269447327
Time after:   6.4295630455017
Elapsed time: 0.00063610076904297
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_razz.gif'

Time before:  6.4302489757538
Time after:   6.430999994278
Elapsed time: 0.00075101852416992
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:P%' AND post_id > 25843

Time before:  6.4315690994263
Time after:   6.4321870803833
Elapsed time: 0.00061798095703125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:-P%' AND post_id > 25843

Time before:  6.4327359199524
Time after:   6.4333379268646
Elapsed time: 0.00060200691223145
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:razz:%' AND post_id > 25843

Time before:  6.4338929653168
Time after:   6.4345200061798
Elapsed time: 0.00062704086303711
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_redface.gif'

Time before:  6.4352350234985
Time after:   6.4359900951385
Elapsed time: 0.00075507164001465
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:oops:%' AND post_id > 25843

Time before:  6.4365289211273
Time after:   6.4371778964996
Elapsed time: 0.00064897537231445
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_rendeer.gif'

Time before:  6.4378230571747
Time after:   6.4386329650879
Elapsed time: 0.00080990791320801
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:reindeer:%' AND post_id > 25843

Time before:  6.439178943634
Time after:   6.4398250579834
Elapsed time: 0.00064611434936523
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_rolleyes.gif'

Time before:  6.4405341148376
Time after:   6.4412710666656
Elapsed time: 0.00073695182800293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:roll:%' AND post_id > 25843

Time before:  6.4417519569397
Time after:   6.4424049854279
Elapsed time: 0.00065302848815918
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_rr.gif'

Time before:  6.4431309700012
Time after:   6.4438729286194
Elapsed time: 0.00074195861816406
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:rr:%' AND post_id > 25843

Time before:  6.4444110393524
Time after:   6.4450531005859
Elapsed time: 0.00064206123352051
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_sad.gif'

Time before:  6.4457020759583
Time after:   6.4464409351349
Elapsed time: 0.00073885917663574
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:(%' AND post_id > 25843

Time before:  6.4470489025116
Time after:   6.4476730823517
Elapsed time: 0.00062417984008789
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:-(%' AND post_id > 25843

Time before:  6.4482469558716
Time after:   6.4488561153412
Elapsed time: 0.00060915946960449
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad:%' AND post_id > 25843

Time before:  6.449385881424
Time after:   6.4500210285187
Elapsed time: 0.00063514709472656
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_salut.gif'

Time before:  6.4507100582123
Time after:   6.4515180587769
Elapsed time: 0.0008080005645752
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:salute:%' AND post_id > 25843

Time before:  6.4520900249481
Time after:   6.452742099762
Elapsed time: 0.00065207481384277
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_santa.gif'

Time before:  6.4534409046173
Time after:   6.454197883606
Elapsed time: 0.00075697898864746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:santa:%' AND post_id > 25843

Time before:  6.4547460079193
Time after:   6.4553871154785
Elapsed time: 0.0006411075592041
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_scratch.gif'

Time before:  6.4560918807983
Time after:   6.4568428993225
Elapsed time: 0.00075101852416992
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:scratch:%' AND post_id > 25843

Time before:  6.4573900699615
Time after:   6.4580121040344
Elapsed time: 0.00062203407287598
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_shaking.gif'

Time before:  6.4587171077728
Time after:   6.4594600200653
Elapsed time: 0.00074291229248047
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:shaking:%' AND post_id > 25843

Time before:  6.4600160121918
Time after:   6.46062707901
Elapsed time: 0.0006110668182373
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_shaking2.gif'

Time before:  6.4613420963287
Time after:   6.4620890617371
Elapsed time: 0.0007469654083252
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:shaking2:%' AND post_id > 25843

Time before:  6.4626400470734
Time after:   6.4632511138916
Elapsed time: 0.0006110668182373
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_silent.gif'

Time before:  6.4639599323273
Time after:   6.4646968841553
Elapsed time: 0.00073695182800293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:silent:%' AND post_id > 25843

Time before:  6.4652280807495
Time after:   6.4658560752869
Elapsed time: 0.00062799453735352
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_smile.gif'

Time before:  6.4665660858154
Time after:   6.4674360752106
Elapsed time: 0.0008699893951416
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:)%' AND post_id > 25843

Time before:  6.4680750370026
Time after:   6.4687819480896
Elapsed time: 0.00070691108703613
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:-)%' AND post_id > 25843

Time before:  6.4693789482117
Time after:   6.4699990749359
Elapsed time: 0.00062012672424316
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:smile:%' AND post_id > 25843

Time before:  6.4705491065979
Time after:   6.4711699485779
Elapsed time: 0.00062084197998047
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:icon_smile:%' AND post_id > 25843

Time before:  6.471745967865
Time after:   6.4723579883575
Elapsed time: 0.00061202049255371
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_smurf.gif'

Time before:  6.4730670452118
Time after:   6.4738299846649
Elapsed time: 0.000762939453125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:smurf:%' AND post_id > 25843

Time before:  6.4744050502777
Time after:   6.4750308990479
Elapsed time: 0.0006258487701416
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_smurfin.gif'

Time before:  6.4757609367371
Time after:   6.4765110015869
Elapsed time: 0.00075006484985352
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:smurfin:%' AND post_id > 25843

Time before:  6.4770750999451
Time after:   6.4777081012726
Elapsed time: 0.00063300132751465
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_spiderman.gif'

Time before:  6.4784290790558
Time after:   6.4791629314423
Elapsed time: 0.00073385238647461
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:spiderman:%' AND post_id > 25843

Time before:  6.4797010421753
Time after:   6.4803109169006
Elapsed time: 0.0006098747253418
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_study.gif'

Time before:  6.4810431003571
Time after:   6.4822199344635
Elapsed time: 0.0011768341064453
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:study:%' AND post_id > 25843

Time before:  6.4828400611877
Time after:   6.4835228919983
Elapsed time: 0.00068283081054688
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_sunny.gif'

Time before:  6.4842400550842
Time after:   6.4849889278412
Elapsed time: 0.00074887275695801
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sunny:%' AND post_id > 25843

Time before:  6.4855558872223
Time after:   6.486181974411
Elapsed time: 0.0006260871887207
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_super.gif'

Time before:  6.4869110584259
Time after:   6.4876689910889
Elapsed time: 0.00075793266296387
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:supz:%' AND post_id > 25843

Time before:  6.488214969635
Time after:   6.4888389110565
Elapsed time: 0.00062394142150879
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_surprised.gif'

Time before:  6.4895548820496
Time after:   6.4902799129486
Elapsed time: 0.00072503089904785
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:-o%' AND post_id > 25843

Time before:  6.490816116333
Time after:   6.4914429187775
Elapsed time: 0.00062680244445801
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_syda.gif'

Time before:  6.4921441078186
Time after:   6.4928889274597
Elapsed time: 0.00074481964111328
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:heart:%' AND post_id > 25843

Time before:  6.4934289455414
Time after:   6.4940700531006
Elapsed time: 0.0006411075592041
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_thumleft.gif'

Time before:  6.4948000907898
Time after:   6.4955539703369
Elapsed time: 0.00075387954711914
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:thumbright:%' AND post_id > 25843

Time before:  6.4961090087891
Time after:   6.4967210292816
Elapsed time: 0.00061202049255371
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_thumright.gif'

Time before:  6.4974570274353
Time after:   6.4982080459595
Elapsed time: 0.00075101852416992
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:thumbleft:%' AND post_id > 25843

Time before:  6.4987549781799
Time after:   6.499461889267
Elapsed time: 0.00070691108703613
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_toilet.gif'

Time before:  6.5002129077911
Time after:   6.5009748935699
Elapsed time: 0.00076198577880859
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toimonster:%' AND post_id > 25843

Time before:  6.5015358924866
Time after:   6.502161026001
Elapsed time: 0.0006251335144043
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_tongue.gif'

Time before:  6.5029029846191
Time after:   6.5036420822144
Elapsed time: 0.00073909759521484
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue:%' AND post_id > 25843

Time before:  6.5041890144348
Time after:   6.5048089027405
Elapsed time: 0.00061988830566406
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_twisted.gif'

Time before:  6.505518913269
Time after:   6.5062599182129
Elapsed time: 0.00074100494384766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:twisted:%' AND post_id > 25843

Time before:  6.5067970752716
Time after:   6.5074119567871
Elapsed time: 0.00061488151550293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_weed.gif'

Time before:  6.5081191062927
Time after:   6.5088539123535
Elapsed time: 0.00073480606079102
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:weedman:%' AND post_id > 25843

Time before:  6.5094239711761
Time after:   6.5100519657135
Elapsed time: 0.00062799453735352
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_wink.gif'

Time before:  6.5107839107513
Time after:   6.5115489959717
Elapsed time: 0.00076508522033691
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:wink:%' AND post_id > 25843

Time before:  6.5121169090271
Time after:   6.5128679275513
Elapsed time: 0.00075101852416992
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%;)%' AND post_id > 25843

Time before:  6.5134990215302
Time after:   6.5141339302063
Elapsed time: 0.00063490867614746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%;-)%' AND post_id > 25843

Time before:  6.5146670341492
Time after:   6.5152819156647
Elapsed time: 0.00061488151550293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'icon_winkle.gif'

Time before:  6.5159730911255
Time after:   6.5167179107666
Elapsed time: 0.00074481964111328
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:yawinkle:%' AND post_id > 25843

Time before:  6.5172629356384
Time after:   6.5178890228271
Elapsed time: 0.0006260871887207
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'idea1.gif'

Time before:  6.518620967865
Time after:   6.5193619728088
Elapsed time: 0.00074100494384766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:idea1:%' AND post_id > 25843

Time before:  6.5198938846588
Time after:   6.5205109119415
Elapsed time: 0.00061702728271484
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'iroc.gif'

Time before:  6.5212399959564
Time after:   6.521989107132
Elapsed time: 0.00074911117553711
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:iroc:%' AND post_id > 25843

Time before:  6.5225839614868
Time after:   6.523246049881
Elapsed time: 0.00066208839416504
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'jerk.gif'

Time before:  6.5240030288696
Time after:   6.5247490406036
Elapsed time: 0.00074601173400879
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:jerk:%' AND post_id > 25843

Time before:  6.525279045105
Time after:   6.5259189605713
Elapsed time: 0.00063991546630859
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'kermit.gif'

Time before:  6.5266358852386
Time after:   6.5273818969727
Elapsed time: 0.00074601173400879
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:kermit:%' AND post_id > 25843

Time before:  6.5279130935669
Time after:   6.5285320281982
Elapsed time: 0.00061893463134766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'knob.gif'

Time before:  6.5292448997498
Time after:   6.529983997345
Elapsed time: 0.00073909759521484
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:knob:%' AND post_id > 25843

Time before:  6.5305409431458
Time after:   6.5311698913574
Elapsed time: 0.00062894821166992
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'ky.gif'

Time before:  6.5319008827209
Time after:   6.5326390266418
Elapsed time: 0.00073814392089844
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:ky:%' AND post_id > 25843

Time before:  6.5331959724426
Time after:   6.5338499546051
Elapsed time: 0.00065398216247559
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'la.gif'

Time before:  6.5345659255981
Time after:   6.535551071167
Elapsed time: 0.00098514556884766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:la:%' AND post_id > 25843

Time before:  6.5362949371338
Time after:   6.5371570587158
Elapsed time: 0.00086212158203125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'laughing1.gif'

Time before:  6.5378348827362
Time after:   6.5385971069336
Elapsed time: 0.0007622241973877
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing1:%' AND post_id > 25843

Time before:  6.5392339229584
Time after:   6.5398740768433
Elapsed time: 0.0006401538848877
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'laughing11.gif'

Time before:  6.5406060218811
Time after:   6.5413529872894
Elapsed time: 0.0007469654083252
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing9:%' AND post_id > 25843

Time before:  6.5419409275055
Time after:   6.5426239967346
Elapsed time: 0.00068306922912598
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'laughing3.gif'

Time before:  6.5434288978577
Time after:   6.5442299842834
Elapsed time: 0.00080108642578125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing2:%' AND post_id > 25843

Time before:  6.5448129177094
Time after:   6.5454499721527
Elapsed time: 0.00063705444335938
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'laughing4.gif'

Time before:  6.5462429523468
Time after:   6.5470290184021
Elapsed time: 0.00078606605529785
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing3:%' AND post_id > 25843

Time before:  6.5475800037384
Time after:   6.5482149124146
Elapsed time: 0.00063490867614746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'laughing5.gif'

Time before:  6.5489430427551
Time after:   6.5497920513153
Elapsed time: 0.00084900856018066
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing4:%' AND post_id > 25843

Time before:  6.5503749847412
Time after:   6.5510311126709
Elapsed time: 0.0006561279296875
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'laughing6.gif'

Time before:  6.5517709255219
Time after:   6.5525190830231
Elapsed time: 0.0007481575012207
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing5:%' AND post_id > 25843

Time before:  6.553071975708
Time after:   6.5536949634552
Elapsed time: 0.00062298774719238
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'laughing7.gif'

Time before:  6.5544910430908
Time after:   6.5552520751953
Elapsed time: 0.00076103210449219
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing6:%' AND post_id > 25843

Time before:  6.5558021068573
Time after:   6.5564110279083
Elapsed time: 0.00060892105102539
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'laughing8.gif'

Time before:  6.5571320056915
Time after:   6.55788397789
Elapsed time: 0.00075197219848633
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing7:%' AND post_id > 25843

Time before:  6.5585350990295
Time after:   6.559180021286
Elapsed time: 0.00064492225646973
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'laughing9.gif'

Time before:  6.559947013855
Time after:   6.5607008934021
Elapsed time: 0.00075387954711914
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing8:%' AND post_id > 25843

Time before:  6.5612509250641
Time after:   6.5618829727173
Elapsed time: 0.00063204765319824
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'love1.gif'

Time before:  6.5626270771027
Time after:   6.5634109973907
Elapsed time: 0.00078392028808594
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love1:%' AND post_id > 25843

Time before:  6.5639879703522
Time after:   6.564649105072
Elapsed time: 0.00066113471984863
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'love10.gif'

Time before:  6.5653901100159
Time after:   6.5661499500275
Elapsed time: 0.00075984001159668
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love10:%' AND post_id > 25843

Time before:  6.5667090415955
Time after:   6.5673320293427
Elapsed time: 0.00062298774719238
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'love2.gif'

Time before:  6.5680520534515
Time after:   6.5688009262085
Elapsed time: 0.00074887275695801
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love2:%' AND post_id > 25843

Time before:  6.5693559646606
Time after:   6.569993019104
Elapsed time: 0.00063705444335938
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'love3.gif'

Time before:  6.5707240104675
Time after:   6.5714728832245
Elapsed time: 0.00074887275695801
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love3:%' AND post_id > 25843

Time before:  6.5720069408417
Time after:   6.5726249217987
Elapsed time: 0.00061798095703125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'love4.gif'

Time before:  6.5733439922333
Time after:   6.5740840435028
Elapsed time: 0.00074005126953125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love4:%' AND post_id > 25843

Time before:  6.5746650695801
Time after:   6.5757019519806
Elapsed time: 0.0010368824005127
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'love5.gif'

Time before:  6.576817035675
Time after:   6.5779809951782
Elapsed time: 0.0011639595031738
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love5:%' AND post_id > 25843

Time before:  6.5786030292511
Time after:   6.5796389579773
Elapsed time: 0.0010359287261963
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'love6.gif'

Time before:  6.5805840492249
Time after:   6.5821800231934
Elapsed time: 0.0015959739685059
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love6:%' AND post_id > 25843

Time before:  6.5830481052399
Time after:   6.584125995636
Elapsed time: 0.0010778903961182
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'love7.gif'

Time before:  6.5850780010223
Time after:   6.5862979888916
Elapsed time: 0.0012199878692627
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love7:%' AND post_id > 25843

Time before:  6.5871040821075
Time after:   6.5881779193878
Elapsed time: 0.0010738372802734
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'love8.gif'

Time before:  6.5891580581665
Time after:   6.5903379917145
Elapsed time: 0.0011799335479736
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love8:%' AND post_id > 25843

Time before:  6.5910620689392
Time after:   6.5921070575714
Elapsed time: 0.0010449886322021
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'love9.gif'

Time before:  6.5930180549622
Time after:   6.5943050384521
Elapsed time: 0.0012869834899902
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love9:%' AND post_id > 25843

Time before:  6.59512591362
Time after:   6.5962209701538
Elapsed time: 0.0010950565338135
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'lovestory.gif'

Time before:  6.5972120761871
Time after:   6.5984449386597
Elapsed time: 0.0012328624725342
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:lovestory:%' AND post_id > 25843

Time before:  6.5991349220276
Time after:   6.6001861095428
Elapsed time: 0.0010511875152588
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'lurk.gif'

Time before:  6.6010699272156
Time after:   6.6022439002991
Elapsed time: 0.0011739730834961
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:lurk:%' AND post_id > 25843

Time before:  6.6029589176178
Time after:   6.6040680408478
Elapsed time: 0.0011091232299805
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'male.gif'

Time before:  6.6049709320068
Time after:   6.6061489582062
Elapsed time: 0.0011780261993408
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:male:%' AND post_id > 25843

Time before:  6.6067988872528
Time after:   6.6078469753265
Elapsed time: 0.0010480880737305
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'mblah05.gif'

Time before:  6.6087529659271
Time after:   6.6099820137024
Elapsed time: 0.0012290477752686
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:blah5:%' AND post_id > 25843

Time before:  6.6106588840485
Time after:   6.6116271018982
Elapsed time: 0.00096821784973145
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'merror.gif'

Time before:  6.6126079559326
Time after:   6.6136341094971
Elapsed time: 0.0010261535644531
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:error:%' AND post_id > 25843

Time before:  6.6142950057983
Time after:   6.6154019832611
Elapsed time: 0.0011069774627686
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'mumum.gif'

Time before:  6.616336107254
Time after:   6.6175470352173
Elapsed time: 0.0012109279632568
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:mumum:%' AND post_id > 25843

Time before:  6.6182470321655
Time after:   6.6193408966064
Elapsed time: 0.001093864440918
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'munky2.gif'

Time before:  6.6203019618988
Time after:   6.6214599609375
Elapsed time: 0.0011579990386963
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:munky2:%' AND post_id > 25843

Time before:  6.622181892395
Time after:   6.6230440139771
Elapsed time: 0.00086212158203125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'naka.gif'

Time before:  6.623939037323
Time after:   6.6247301101685
Elapsed time: 0.00079107284545898
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:naka:%' AND post_id > 25843

Time before:  6.6253209114075
Time after:   6.6262619495392
Elapsed time: 0.00094103813171387
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'newbie.gif'

Time before:  6.6272139549255
Time after:   6.6283559799194
Elapsed time: 0.0011420249938965
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:newb:%' AND post_id > 25843

Time before:  6.6290879249573
Time after:   6.6301300525665
Elapsed time: 0.0010421276092529
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'nike.gif'

Time before:  6.631031036377
Time after:   6.6319699287415
Elapsed time: 0.00093889236450195
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:nike:%' AND post_id > 25843

Time before:  6.6326100826263
Time after:   6.6335949897766
Elapsed time: 0.00098490715026855
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'notworthy.gif'

Time before:  6.6348969936371
Time after:   6.6357231140137
Elapsed time: 0.00082612037658691
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:notworthy:%' AND post_id > 25843

Time before:  6.6363430023193
Time after:   6.6369800567627
Elapsed time: 0.00063705444335938
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'occasion1.gif'

Time before:  6.6379170417786
Time after:   6.6392540931702
Elapsed time: 0.0013370513916016
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion1:%' AND post_id > 25843

Time before:  6.6420540809631
Time after:   6.6428179740906
Elapsed time: 0.00076389312744141
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'occasion13.gif'

Time before:  6.6436779499054
Time after:   6.6445429325104
Elapsed time: 0.00086498260498047
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion4:%' AND post_id > 25843

Time before:  6.6451768875122
Time after:   6.6460280418396
Elapsed time: 0.00085115432739258
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'occasion14.gif'

Time before:  6.6469810009003
Time after:   6.6479530334473
Elapsed time: 0.00097203254699707
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion5:%' AND post_id > 25843

Time before:  6.6486020088196
Time after:   6.6493489742279
Elapsed time: 0.0007469654083252
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'occasion15.gif'

Time before:  6.6502408981323
Time after:   6.6511330604553
Elapsed time: 0.00089216232299805
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion6:%' AND post_id > 25843

Time before:  6.6518070697784
Time after:   6.6525940895081
Elapsed time: 0.00078701972961426
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'occasion16.gif'

Time before:  6.6537909507751
Time after:   6.6547739505768
Elapsed time: 0.00098299980163574
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion7:%' AND post_id > 25843

Time before:  6.6555678844452
Time after:   6.6564309597015
Elapsed time: 0.00086307525634766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'occasion17.gif'

Time before:  6.6573390960693
Time after:   6.6582970619202
Elapsed time: 0.00095796585083008
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion8:%' AND post_id > 25843

Time before:  6.6588959693909
Time after:   6.65966796875
Elapsed time: 0.00077199935913086
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'occasion18.gif'

Time before:  6.6605761051178
Time after:   6.6614789962769
Elapsed time: 0.00090289115905762
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion9:%' AND post_id > 25843

Time before:  6.6621661186218
Time after:   6.6629490852356
Elapsed time: 0.00078296661376953
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'occasion5.gif'

Time before:  6.6638689041138
Time after:   6.6647729873657
Elapsed time: 0.00090408325195312
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion2:%' AND post_id > 25843

Time before:  6.6654388904572
Time after:   6.6664650440216
Elapsed time: 0.0010261535644531
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'offtheair.gif'

Time before:  6.6675269603729
Time after:   6.6689050197601
Elapsed time: 0.001378059387207
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:offtheair:%' AND post_id > 25843

Time before:  6.6697540283203
Time after:   6.670618057251
Elapsed time: 0.00086402893066406
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'ORGR.gif'

Time before:  6.6719200611115
Time after:   6.6728930473328
Elapsed time: 0.00097298622131348
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:ogre:%' AND post_id > 25843

Time before:  6.6738359928131
Time after:   6.6747190952301
Elapsed time: 0.00088310241699219
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'pain10.gif'

Time before:  6.6759610176086
Time after:   6.6769409179688
Elapsed time: 0.00097990036010742
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pain10:%' AND post_id > 25843

Time before:  6.677864074707
Time after:   6.678759098053
Elapsed time: 0.00089502334594727
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'pottytrain1.gif'

Time before:  6.6799941062927
Time after:   6.680967092514
Elapsed time: 0.00097298622131348
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pottytrain1:%' AND post_id > 25843

Time before:  6.6818499565125
Time after:   6.6827130317688
Elapsed time: 0.00086307525634766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'pottytrain2.gif'

Time before:  6.6840178966522
Time after:   6.6849958896637
Elapsed time: 0.00097799301147461
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pottytrain2:%' AND post_id > 25843

Time before:  6.6859660148621
Time after:   6.6868588924408
Elapsed time: 0.00089287757873535
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'pottytrain3.gif'

Time before:  6.6882390975952
Time after:   6.689591884613
Elapsed time: 0.0013527870178223
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pottytrain3:%' AND post_id > 25843

Time before:  6.6905949115753
Time after:   6.6918931007385
Elapsed time: 0.001298189163208
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'pottytrain4.gif'

Time before:  6.6932470798492
Time after:   6.6946949958801
Elapsed time: 0.0014479160308838
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pottytrain4:%' AND post_id > 25843

Time before:  6.6956720352173
Time after:   6.6968629360199
Elapsed time: 0.0011909008026123
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'pottytrain5.gif'

Time before:  6.6981699466705
Time after:   6.6995739936829
Elapsed time: 0.0014040470123291
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pottytrain5:%' AND post_id > 25843

Time before:  6.7005240917206
Time after:   6.7017390727997
Elapsed time: 0.0012149810791016
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'protest.gif'

Time before:  6.7031080722809
Time after:   6.7046020030975
Elapsed time: 0.0014939308166504
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:protest:%' AND post_id > 25843

Time before:  6.7056419849396
Time after:   6.7217700481415
Elapsed time: 0.016128063201904
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'puke.gif'

Time before:  6.723788022995
Time after:   6.7255599498749
Elapsed time: 0.0017719268798828
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:puke:%' AND post_id > 25843

Time before:  6.7270479202271
Time after:   6.7287130355835
Elapsed time: 0.0016651153564453
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'read.gif'

Time before:  6.7304139137268
Time after:   6.7318499088287
Elapsed time: 0.0014359951019287
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:read:%' AND post_id > 25843

Time before:  6.7327520847321
Time after:   6.7339940071106
Elapsed time: 0.00124192237854
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'read2.gif'

Time before:  6.735358953476
Time after:   6.7368021011353
Elapsed time: 0.0014431476593018
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:read2:%' AND post_id > 25843

Time before:  6.737832069397
Time after:   6.7391240596771
Elapsed time: 0.0012919902801514
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 's-bluecap.gif'

Time before:  6.7404749393463
Time after:   6.7419209480286
Elapsed time: 0.001446008682251
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:ctf2:%' AND post_id > 25843

Time before:  6.7429270744324
Time after:   6.7442109584808
Elapsed time: 0.0012838840484619
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 's-chainsaw.gif'

Time before:  6.7455849647522
Time after:   6.7470240592957
Elapsed time: 0.001439094543457
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:chain:%' AND post_id > 25843

Time before:  6.747997045517
Time after:   6.7492830753326
Elapsed time: 0.0012860298156738
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 's-ctf.gif'

Time before:  6.7506740093231
Time after:   6.7521090507507
Elapsed time: 0.0014350414276123
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:ctf:%' AND post_id > 25843

Time before:  6.7531359195709
Time after:   6.7544250488281
Elapsed time: 0.0012891292572021
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 's-instagib.gif'

Time before:  6.7557890415192
Time after:   6.7572460174561
Elapsed time: 0.0014569759368896
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:gib:%' AND post_id > 25843

Time before:  6.7583560943604
Time after:   6.7596509456635
Elapsed time: 0.0012948513031006
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 's-minigun.gif'

Time before:  6.7609329223633
Time after:   6.7623579502106
Elapsed time: 0.00142502784729
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:minigun:%' AND post_id > 25843

Time before:  6.7632880210876
Time after:   6.7644770145416
Elapsed time: 0.0011889934539795
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 's-shock.gif'

Time before:  6.7658309936523
Time after:   6.7672619819641
Elapsed time: 0.0014309883117676
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:shock:%' AND post_id > 25843

Time before:  6.7682890892029
Time after:   6.7695469856262
Elapsed time: 0.0012578964233398
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 's-telefrag.gif'

Time before:  6.7709500789642
Time after:   6.7724039554596
Elapsed time: 0.0014538764953613
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tfrag:%' AND post_id > 25843

Time before:  6.773444890976
Time after:   6.7747409343719
Elapsed time: 0.0012960433959961
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sad1.gif'

Time before:  6.7761371135712
Time after:   6.7776029109955
Elapsed time: 0.0014657974243164
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad1:%' AND post_id > 25843

Time before:  6.778608083725
Time after:   6.7798879146576
Elapsed time: 0.0012798309326172
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sad10.gif'

Time before:  6.7812740802765
Time after:   6.7827548980713
Elapsed time: 0.0014808177947998
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad10:%' AND post_id > 25843

Time before:  6.7837679386139
Time after:   6.7850298881531
Elapsed time: 0.0012619495391846
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sad11.gif'

Time before:  6.7863960266113
Time after:   6.7878329753876
Elapsed time: 0.0014369487762451
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad11:%' AND post_id > 25843

Time before:  6.7887940406799
Time after:   6.7900469303131
Elapsed time: 0.0012528896331787
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sad2.gif'

Time before:  6.7914080619812
Time after:   6.7928619384766
Elapsed time: 0.0014538764953613
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad2:%' AND post_id > 25843

Time before:  6.7939169406891
Time after:   6.7951619625092
Elapsed time: 0.0012450218200684
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sad3.gif'

Time before:  6.7965068817139
Time after:   6.7979829311371
Elapsed time: 0.0014760494232178
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad3:%' AND post_id > 25843

Time before:  6.7989981174469
Time after:   6.8002610206604
Elapsed time: 0.001262903213501
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sad4.gif'

Time before:  6.8016378879547
Time after:   6.8031010627747
Elapsed time: 0.0014631748199463
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad4:%' AND post_id > 25843

Time before:  6.8041360378265
Time after:   6.8054161071777
Elapsed time: 0.0012800693511963
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sad5.gif'

Time before:  6.806783914566
Time after:   6.8082630634308
Elapsed time: 0.0014791488647461
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad5:%' AND post_id > 25843

Time before:  6.8092811107635
Time after:   6.810576915741
Elapsed time: 0.001295804977417
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sad6.gif'

Time before:  6.8120460510254
Time after:   6.8135969638824
Elapsed time: 0.0015509128570557
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad6:%' AND post_id > 25843

Time before:  6.814649105072
Time after:   6.8160789012909
Elapsed time: 0.0014297962188721
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sad7.gif'

Time before:  6.8174889087677
Time after:   6.8190259933472
Elapsed time: 0.0015370845794678
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad7:%' AND post_id > 25843

Time before:  6.8200299739838
Time after:   6.8213160037994
Elapsed time: 0.0012860298156738
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sad8.gif'

Time before:  6.822802066803
Time after:   6.8242781162262
Elapsed time: 0.0014760494232178
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad8:%' AND post_id > 25843

Time before:  6.8253710269928
Time after:   6.8266549110413
Elapsed time: 0.0012838840484619
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sad9.gif'

Time before:  6.8281650543213
Time after:   6.8298060894012
Elapsed time: 0.0016410350799561
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad9:%' AND post_id > 25843

Time before:  6.8305730819702
Time after:   6.8318109512329
Elapsed time: 0.0012378692626953
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sex.gif'

Time before:  6.8328540325165
Time after:   6.8342730998993
Elapsed time: 0.0014190673828125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sex:%' AND post_id > 25843

Time before:  6.8350720405579
Time after:   6.836277961731
Elapsed time: 0.0012059211730957
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sign10.gif'

Time before:  6.8374300003052
Time after:   6.8389019966125
Elapsed time: 0.001471996307373
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign5:%' AND post_id > 25843

Time before:  6.8396348953247
Time after:   6.8408110141754
Elapsed time: 0.001176118850708
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sign12.gif'

Time before:  6.8421859741211
Time after:   6.8431639671326
Elapsed time: 0.00097799301147461
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign6:%' AND post_id > 25843

Time before:  6.8440730571747
Time after:   6.8448970317841
Elapsed time: 0.000823974609375
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sign13.gif'

Time before:  6.8462219238281
Time after:   6.8471789360046
Elapsed time: 0.00095701217651367
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign7:%' AND post_id > 25843

Time before:  6.8479959964752
Time after:   6.8489561080933
Elapsed time: 0.00096011161804199
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sign14.gif'

Time before:  6.8504400253296
Time after:   6.8518788814545
Elapsed time: 0.0014388561248779
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign8:%' AND post_id > 25843

Time before:  6.8527629375458
Time after:   6.8539559841156
Elapsed time: 0.0011930465698242
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sign16.gif'

Time before:  6.8553230762482
Time after:   6.8567419052124
Elapsed time: 0.0014188289642334
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign9:%' AND post_id > 25843

Time before:  6.85773396492
Time after:   6.8590149879456
Elapsed time: 0.0012810230255127
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sign17.gif'

Time before:  6.8603579998016
Time after:   6.8618290424347
Elapsed time: 0.0014710426330566
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign10:%' AND post_id > 25843

Time before:  6.862823009491
Time after:   6.864198923111
Elapsed time: 0.0013759136199951
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sign18.gif'

Time before:  6.8656599521637
Time after:   6.8671429157257
Elapsed time: 0.0014829635620117
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign11:%' AND post_id > 25843

Time before:  6.868145942688
Time after:   6.8693459033966
Elapsed time: 0.0011999607086182
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sign19.gif'

Time before:  6.8708169460297
Time after:   6.8722879886627
Elapsed time: 0.0014710426330566
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign12:%' AND post_id > 25843

Time before:  6.8732030391693
Time after:   6.874391078949
Elapsed time: 0.0011880397796631
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sign2.gif'

Time before:  6.8756890296936
Time after:   6.8771660327911
Elapsed time: 0.0014770030975342
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign1:%' AND post_id > 25843

Time before:  6.8781669139862
Time after:   6.8795421123505
Elapsed time: 0.0013751983642578
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sign4.gif'

Time before:  6.880716085434
Time after:   6.8819410800934
Elapsed time: 0.0012249946594238
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign2:%' AND post_id > 25843

Time before:  6.8827118873596
Time after:   6.8837440013885
Elapsed time: 0.0010321140289307
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sign5.gif'

Time before:  6.8848810195923
Time after:   6.8861660957336
Elapsed time: 0.0012850761413574
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign3:%' AND post_id > 25843

Time before:  6.8870439529419
Time after:   6.8881540298462
Elapsed time: 0.0011100769042969
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sign7.gif'

Time before:  6.8893420696259
Time after:   6.8906428813934
Elapsed time: 0.0013008117675781
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign4:%' AND post_id > 25843

Time before:  6.8915050029755
Time after:   6.8926830291748
Elapsed time: 0.0011780261993408
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sith.gif'

Time before:  6.8939399719238
Time after:   6.8952250480652
Elapsed time: 0.0012850761413574
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sith:%' AND post_id > 25843

Time before:  6.8960750102997
Time after:   6.8972220420837
Elapsed time: 0.0011470317840576
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sleepy1.gif'

Time before:  6.898442029953
Time after:   6.8997459411621
Elapsed time: 0.0013039112091064
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sleepy1:%' AND post_id > 25843

Time before:  6.9005808830261
Time after:   6.9017488956451
Elapsed time: 0.0011680126190186
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sleepy2.gif'

Time before:  6.903018951416
Time after:   6.9043309688568
Elapsed time: 0.0013120174407959
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sleepy2:%' AND post_id > 25843

Time before:  6.9051790237427
Time after:   6.906308889389
Elapsed time: 0.0011298656463623
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sleepy3.gif'

Time before:  6.9076919555664
Time after:   6.90873503685
Elapsed time: 0.0010430812835693
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sleepy3:%' AND post_id > 25843

Time before:  6.9094638824463
Time after:   6.9103229045868
Elapsed time: 0.00085902214050293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sleepy4.gif'

Time before:  6.9112770557404
Time after:   6.9122049808502
Elapsed time: 0.00092792510986328
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sleepy4:%' AND post_id > 25843

Time before:  6.9128179550171
Time after:   6.9136190414429
Elapsed time: 0.00080108642578125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sleepy5.gif'

Time before:  6.9145450592041
Time after:   6.9154388904572
Elapsed time: 0.00089383125305176
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sleepy5:%' AND post_id > 25843

Time before:  6.9160389900208
Time after:   6.9168019294739
Elapsed time: 0.000762939453125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'sleepy7.gif'

Time before:  6.9177250862122
Time after:   6.9186289310455
Elapsed time: 0.00090384483337402
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sleepy6:%' AND post_id > 25843

Time before:  6.9192359447479
Time after:   6.9200088977814
Elapsed time: 0.00077295303344727
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'smileinbox.gif'

Time before:  6.9209721088409
Time after:   6.9218759536743
Elapsed time: 0.00090384483337402
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:smilebox:%' AND post_id > 25843

Time before:  6.9225130081177
Time after:   6.9232959747314
Elapsed time: 0.00078296661376953
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'snorting.gif'

Time before:  6.9242219924927
Time after:   6.9251248836517
Elapsed time: 0.00090289115905762
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:snorting:%' AND post_id > 25843

Time before:  6.9257500171661
Time after:   6.9265639781952
Elapsed time: 0.00081396102905273
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'spam1.gif'

Time before:  6.9274809360504
Time after:   6.9283649921417
Elapsed time: 0.00088405609130859
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:spam1:%' AND post_id > 25843

Time before:  6.9289619922638
Time after:   6.9297890663147
Elapsed time: 0.00082707405090332
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'spam4.gif'

Time before:  6.930694103241
Time after:   6.9316110610962
Elapsed time: 0.00091695785522461
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:spam2:%' AND post_id > 25843

Time before:  6.9322149753571
Time after:   6.933021068573
Elapsed time: 0.00080609321594238
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'stfu.gif'

Time before:  6.9339590072632
Time after:   6.9348819255829
Elapsed time: 0.00092291831970215
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:stfu:%' AND post_id > 25843

Time before:  6.9354860782623
Time after:   6.9363050460815
Elapsed time: 0.00081896781921387
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'stop.gif'

Time before:  6.9372661113739
Time after:   6.9381821155548
Elapsed time: 0.0009160041809082
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:stop:%' AND post_id > 25843

Time before:  6.938805103302
Time after:   6.9396069049835
Elapsed time: 0.00080180168151855
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'tard.gif'

Time before:  6.9405090808868
Time after:   6.9414019584656
Elapsed time: 0.00089287757873535
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tard:%' AND post_id > 25843

Time before:  6.9420559406281
Time after:   6.9429221153259
Elapsed time: 0.00086617469787598
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'TheArchLitchMalignus.gif'

Time before:  6.9438600540161
Time after:   6.9447500705719
Elapsed time: 0.00089001655578613
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:lichmalignus:%' AND post_id > 25843

Time before:  6.9453508853912
Time after:   6.9461860656738
Elapsed time: 0.00083518028259277
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'thebirdman.gif'

Time before:  6.9470920562744
Time after:   6.9479959011078
Elapsed time: 0.00090384483337402
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:thebirdman:%' AND post_id > 25843

Time before:  6.9485969543457
Time after:   6.9494071006775
Elapsed time: 0.00081014633178711
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'thefinger.gif'

Time before:  6.9503450393677
Time after:   6.9512560367584
Elapsed time: 0.00091099739074707
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:thefinger:%' AND post_id > 25843

Time before:  6.9518840312958
Time after:   6.9526679515839
Elapsed time: 0.00078392028808594
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'Thin5.gif'

Time before:  6.9536139965057
Time after:   6.95450091362
Elapsed time: 0.00088691711425781
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:thin:%' AND post_id > 25843

Time before:  6.9551079273224
Time after:   6.9559059143066
Elapsed time: 0.00079798698425293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'thumbsup.gif'

Time before:  6.9568040370941
Time after:   6.9577219486237
Elapsed time: 0.00091791152954102
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:thumbup:%' AND post_id > 25843

Time before:  6.9583280086517
Time after:   6.9591310024261
Elapsed time: 0.00080299377441406
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'tongue1.gif'

Time before:  6.9600551128387
Time after:   6.960972070694
Elapsed time: 0.00091695785522461
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue1:%' AND post_id > 25843

Time before:  6.9615859985352
Time after:   6.9623520374298
Elapsed time: 0.00076603889465332
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'tongue11.gif'

Time before:  6.9632749557495
Time after:   6.9641740322113
Elapsed time: 0.00089907646179199
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue10:%' AND post_id > 25843

Time before:  6.9647800922394
Time after:   6.9656000137329
Elapsed time: 0.00081992149353027
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'tongue2.gif'

Time before:  6.9665939807892
Time after:   6.9675049781799
Elapsed time: 0.00091099739074707
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue2:%' AND post_id > 25843

Time before:  6.9681129455566
Time after:   6.9690320491791
Elapsed time: 0.00091910362243652
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'tongue3.gif'

Time before:  6.9700059890747
Time after:   6.9709129333496
Elapsed time: 0.00090694427490234
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue3:%' AND post_id > 25843

Time before:  6.9715399742126
Time after:   6.9723761081696
Elapsed time: 0.00083613395690918
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'tongue4.gif'

Time before:  6.9733080863953
Time after:   6.9742259979248
Elapsed time: 0.00091791152954102
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue4:%' AND post_id > 25843

Time before:  6.9748649597168
Time after:   6.9756898880005
Elapsed time: 0.00082492828369141
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'tongue5.gif'

Time before:  6.9765870571136
Time after:   6.9774720668793
Elapsed time: 0.000885009765625
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue5:%' AND post_id > 25843

Time before:  6.9781019687653
Time after:   6.9788539409637
Elapsed time: 0.00075197219848633
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'tongue6.gif'

Time before:  6.9798369407654
Time after:   6.9807589054108
Elapsed time: 0.00092196464538574
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue6:%' AND post_id > 25843

Time before:  6.9813830852509
Time after:   6.98224401474
Elapsed time: 0.00086092948913574
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'tongue7.gif'

Time before:  6.9831728935242
Time after:   6.9840750694275
Elapsed time: 0.00090217590332031
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue7:%' AND post_id > 25843

Time before:  6.984678030014
Time after:   6.9854469299316
Elapsed time: 0.00076889991760254
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'tongue8.gif'

Time before:  6.9864370822906
Time after:   6.9873430728912
Elapsed time: 0.00090599060058594
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue8:%' AND post_id > 25843

Time before:  6.9879479408264
Time after:   6.9887270927429
Elapsed time: 0.00077915191650391
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'tongue9.gif'

Time before:  6.9896929264069
Time after:   6.9906139373779
Elapsed time: 0.00092101097106934
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue9:%' AND post_id > 25843

Time before:  6.9914031028748
Time after:   6.9923329353333
Elapsed time: 0.00092983245849609
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'tool.gif'

Time before:  6.9934520721436
Time after:   6.9945850372314
Elapsed time: 0.0011329650878906
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tool:%' AND post_id > 25843

Time before:  6.9953289031982
Time after:   6.9962329864502
Elapsed time: 0.00090408325195312
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'toothy1.gif'

Time before:  6.9974880218506
Time after:   6.9985098838806
Elapsed time: 0.0010218620300293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy1:%' AND post_id > 25843

Time before:  6.9993009567261
Time after:   7.0002200603485
Elapsed time: 0.00091910362243652
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'toothy10.gif'

Time before:  7.0012369155884
Time after:   7.0021870136261
Elapsed time: 0.00095009803771973
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy8:%' AND post_id > 25843

Time before:  7.002837896347
Time after:   7.0036408901215
Elapsed time: 0.00080299377441406
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'toothy11.gif'

Time before:  7.0046350955963
Time after:   7.0058341026306
Elapsed time: 0.0011990070343018
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy9:%' AND post_id > 25843

Time before:  7.0065050125122
Time after:   7.0073409080505
Elapsed time: 0.00083589553833008
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'toothy12.gif'

Time before:  7.0085320472717
Time after:   7.0094809532166
Elapsed time: 0.00094890594482422
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy10:%' AND post_id > 25843

Time before:  7.0102438926697
Time after:   7.0111429691315
Elapsed time: 0.00089907646179199
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'toothy2.gif'

Time before:  7.0122499465942
Time after:   7.0132780075073
Elapsed time: 0.0010280609130859
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy2:%' AND post_id > 25843

Time before:  7.0140628814697
Time after:   7.0149760246277
Elapsed time: 0.00091314315795898
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'toothy3.gif'

Time before:  7.0160610675812
Time after:   7.0171139240265
Elapsed time: 0.0010528564453125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy3:%' AND post_id > 25843

Time before:  7.0177879333496
Time after:   7.0186030864716
Elapsed time: 0.00081515312194824
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'toothy4.gif'

Time before:  7.0195269584656
Time after:   7.0204091072083
Elapsed time: 0.00088214874267578
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy4:%' AND post_id > 25843

Time before:  7.0209939479828
Time after:   7.0217580795288
Elapsed time: 0.00076413154602051
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'toothy5.gif'

Time before:  7.0226390361786
Time after:   7.0236001014709
Elapsed time: 0.0009610652923584
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy5:%' AND post_id > 25843

Time before:  7.0261640548706
Time after:   7.0274510383606
Elapsed time: 0.0012869834899902
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'toothy6.gif'

Time before:  7.0288569927216
Time after:   7.0302550792694
Elapsed time: 0.0013980865478516
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy6:%' AND post_id > 25843

Time before:  7.0312058925629
Time after:   7.032438993454
Elapsed time: 0.0012331008911133
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'toothy9.gif'

Time before:  7.0338039398193
Time after:   7.0352079868317
Elapsed time: 0.0014040470123291
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy7:%' AND post_id > 25843

Time before:  7.0361320972443
Time after:   7.0374639034271
Elapsed time: 0.0013318061828613
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'triplets.gif'

Time before:  7.0388910770416
Time after:   7.0399799346924
Elapsed time: 0.0010888576507568
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:triplets:%' AND post_id > 25843

Time before:  7.0407600402832
Time after:   7.0417640209198
Elapsed time: 0.0010039806365967
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'tshirt.gif'

Time before:  7.0428628921509
Time after:   7.0437800884247
Elapsed time: 0.00091719627380371
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tshirt:%' AND post_id > 25843

Time before:  7.0443921089172
Time after:   7.0451910495758
Elapsed time: 0.00079894065856934
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'tweety.gif'

Time before:  7.0463719367981
Time after:   7.0474009513855
Elapsed time: 0.0010290145874023
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tweety:%' AND post_id > 25843

Time before:  7.0480868816376
Time after:   7.04891705513
Elapsed time: 0.00083017349243164
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'usa2.gif'

Time before:  7.0499119758606
Time after:   7.0509059429169
Elapsed time: 0.00099396705627441
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:usa2:%' AND post_id > 25843

Time before:  7.0517559051514
Time after:   7.0527079105377
Elapsed time: 0.00095200538635254
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'violent1.gif'

Time before:  7.0539200305939
Time after:   7.0549020767212
Elapsed time: 0.00098204612731934
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:violent1:%' AND post_id > 25843

Time before:  7.0555150508881
Time after:   7.0562870502472
Elapsed time: 0.00077199935913086
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'violent4.gif'

Time before:  7.057450056076
Time after:   7.0586559772491
Elapsed time: 0.0012059211730957
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:violent2:%' AND post_id > 25843

Time before:  7.0594589710236
Time after:   7.0603580474854
Elapsed time: 0.00089907646179199
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'violent5.gif'

Time before:  7.0614140033722
Time after:   7.0623281002045
Elapsed time: 0.00091409683227539
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:violent3:%' AND post_id > 25843

Time before:  7.0629699230194
Time after:   7.0639560222626
Elapsed time: 0.00098609924316406
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'walk.gif'

Time before:  7.0650351047516
Time after:   7.0661029815674
Elapsed time: 0.0010678768157959
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:walk:%' AND post_id > 25843

Time before:  7.0668880939484
Time after:   7.0677099227905
Elapsed time: 0.00082182884216309
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'wav.gif'

Time before:  7.0687010288239
Time after:   7.0697550773621
Elapsed time: 0.001054048538208
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:wav:%' AND post_id > 25843

Time before:  7.0705308914185
Time after:   7.0716071128845
Elapsed time: 0.0010762214660645
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'wave.gif'

Time before:  7.0726580619812
Time after:   7.0735991001129
Elapsed time: 0.00094103813171387
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:wave:%' AND post_id > 25843

Time before:  7.0742530822754
Time after:   7.0753910541534
Elapsed time: 0.0011379718780518
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'Whaxatk.gif'

Time before:  7.07643699646
Time after:   7.0774929523468
Elapsed time: 0.0010559558868408
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:whax:%' AND post_id > 25843

Time before:  7.0782809257507
Time after:   7.0791079998016
Elapsed time: 0.00082707405090332
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 'Whdatk.gif'

Time before:  7.0800530910492
Time after:   7.0809540748596
Elapsed time: 0.0009009838104248
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          383  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:whdat:%' AND post_id > 25843

Time before:  7.0815930366516
Time after:   7.0825080871582
Elapsed time: 0.0009150505065918
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    69  Using where 


Query:	UPDATE stats_smilies_index SET smile_count = 11 WHERE smile_url = '005.gif'

Time before:  7.0832350254059
Time after:   7.08518409729
Elapsed time: 0.0019490718841553

Query:	UPDATE stats_smilies_index SET smile_count = 6 WHERE smile_url = '007.gif'

Time before:  7.0853669643402
Time after:   7.0872609615326
Elapsed time: 0.0018939971923828

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = '014.gif'

Time before:  7.0874218940735
Time after:   7.0893120765686
Elapsed time: 0.0018901824951172

Query:	UPDATE stats_smilies_index SET smile_count = 21 WHERE smile_url = '015.gif'

Time before:  7.0894610881805
Time after:   7.0913689136505
Elapsed time: 0.0019078254699707

Query:	UPDATE stats_smilies_index SET smile_count = 9 WHERE smile_url = '026.gif'

Time before:  7.0915219783783
Time after:   7.0939218997955
Elapsed time: 0.0023999214172363

Query:	UPDATE stats_smilies_index SET smile_count = 20 WHERE smile_url = '033.gif'

Time before:  7.0941379070282
Time after:   7.0963931083679
Elapsed time: 0.0022552013397217

Query:	UPDATE stats_smilies_index SET smile_count = 36 WHERE smile_url = '041.gif'

Time before:  7.0966010093689
Time after:   7.0987319946289
Elapsed time: 0.0021309852600098

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = '3some.gif'

Time before:  7.0989329814911
Time after:   7.101203918457
Elapsed time: 0.0022709369659424

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'alien.gif'

Time before:  7.101448059082
Time after:   7.1034240722656
Elapsed time: 0.0019760131835938

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'angel1.gif'

Time before:  7.1035840511322
Time after:   7.1054770946503
Elapsed time: 0.0018930435180664

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'angel10.gif'

Time before:  7.1056458950043
Time after:   7.1075429916382
Elapsed time: 0.0018970966339111

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'angel11.gif'

Time before:  7.1076989173889
Time after:   7.109610080719
Elapsed time: 0.0019111633300781

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'angel12.gif'

Time before:  7.1097691059113
Time after:   7.1117460727692
Elapsed time: 0.0019769668579102

Query:	UPDATE stats_smilies_index SET smile_count = 9 WHERE smile_url = 'angel13.gif'

Time before:  7.1119089126587
Time after:   7.1138188838959
Elapsed time: 0.0019099712371826

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angel2.gif'

Time before:  7.1139810085297
Time after:   7.1158668994904
Elapsed time: 0.0018858909606934

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angel3.gif'

Time before:  7.1160089969635
Time after:   7.11789894104
Elapsed time: 0.0018899440765381

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'angel4.gif'

Time before:  7.1180460453033
Time after:   7.1199340820312
Elapsed time: 0.0018880367279053

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'angel5.gif'

Time before:  7.1200869083405
Time after:   7.1219780445099
Elapsed time: 0.0018911361694336

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'angel7.gif'

Time before:  7.1221261024475
Time after:   7.1240129470825
Elapsed time: 0.0018868446350098

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'angel8.gif'

Time before:  7.1241590976715
Time after:   7.1260380744934
Elapsed time: 0.0018789768218994

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'angel9.gif'

Time before:  7.1261820793152
Time after:   7.1280460357666
Elapsed time: 0.001863956451416

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angry1.gif'

Time before:  7.1281900405884
Time after:   7.1300768852234
Elapsed time: 0.0018868446350098

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angry2.gif'

Time before:  7.1302199363708
Time after:   7.1321001052856
Elapsed time: 0.0018801689147949

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angry3.gif'

Time before:  7.1322441101074
Time after:   7.1341390609741
Elapsed time: 0.0018949508666992

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'angry4.gif'

Time before:  7.1342868804932
Time after:   7.1361649036407
Elapsed time: 0.001878023147583

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angry5.gif'

Time before:  7.1363101005554
Time after:   7.1381869316101
Elapsed time: 0.0018768310546875

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angry6.gif'

Time before:  7.1383318901062
Time after:   7.1402111053467
Elapsed time: 0.0018792152404785

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angry7.gif'

Time before:  7.1403520107269
Time after:   7.1422328948975
Elapsed time: 0.0018808841705322

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angry8.gif'

Time before:  7.1423969268799
Time after:   7.1442921161652
Elapsed time: 0.0018951892852783

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angry9.gif'

Time before:  7.1444499492645
Time after:   7.1464450359344
Elapsed time: 0.0019950866699219

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'angryfire.gif'

Time before:  7.1466701030731
Time after:   7.1488919258118
Elapsed time: 0.0022218227386475

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'argue.gif'

Time before:  7.1490890979767
Time after:   7.1511380672455
Elapsed time: 0.0020489692687988

Query:	UPDATE stats_smilies_index SET smile_count = 10 WHERE smile_url = 'BangHead.gif'

Time before:  7.1513259410858
Time after:   7.1534550189972
Elapsed time: 0.002129077911377

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'binkybaby.gif'

Time before:  7.1536688804626
Time after:   7.1556029319763
Elapsed time: 0.0019340515136719

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'black_knight_standing.gif'

Time before:  7.1557650566101
Time after:   7.1576709747314
Elapsed time: 0.0019059181213379

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob1.gif'

Time before:  7.1578230857849
Time after:   7.1598629951477
Elapsed time: 0.002039909362793

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob10.gif'

Time before:  7.1601240634918
Time after:   7.1622478961945
Elapsed time: 0.0021238327026367

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob3.gif'

Time before:  7.1624391078949
Time after:   7.1646690368652
Elapsed time: 0.0022299289703369

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob5.gif'

Time before:  7.1648709774017
Time after:   7.1670200824738
Elapsed time: 0.0021491050720215

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob6.gif'

Time before:  7.1672060489655
Time after:   7.1692190170288
Elapsed time: 0.0020129680633545

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob7.gif'

Time before:  7.1693909168243
Time after:   7.1736180782318
Elapsed time: 0.0042271614074707

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob8.gif'

Time before:  7.1739020347595
Time after:   7.1760931015015
Elapsed time: 0.0021910667419434

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob9.gif'

Time before:  7.1762819290161
Time after:   7.1782178878784
Elapsed time: 0.0019359588623047

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'bom.gif'

Time before:  7.1783809661865
Time after:   7.1802659034729
Elapsed time: 0.001884937286377

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'bonedemon.gif'

Time before:  7.1804270744324
Time after:   7.1823270320892
Elapsed time: 0.0018999576568604

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'book1.gif'

Time before:  7.1824929714203
Time after:   7.1843800544739
Elapsed time: 0.0018870830535889

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'booty.gif'

Time before:  7.1845290660858
Time after:   7.1864318847656
Elapsed time: 0.0019028186798096

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'bootyshake.gif'

Time before:  7.1866009235382
Time after:   7.1885180473328
Elapsed time: 0.0019171237945557

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'boxing.gif'

Time before:  7.1886739730835
Time after:   7.1908140182495
Elapsed time: 0.0021400451660156

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'brave.gif'

Time before:  7.1910319328308
Time after:   7.1931900978088
Elapsed time: 0.0021581649780273

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'brushteeth.gif'

Time before:  7.193412065506
Time after:   7.1956069469452
Elapsed time: 0.002194881439209

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'bs.gif'

Time before:  7.1958639621735
Time after:   7.1978549957275
Elapsed time: 0.0019910335540771

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'bunny.gif'

Time before:  7.1980319023132
Time after:   7.2000460624695
Elapsed time: 0.00201416015625

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'cat.gif'

Time before:  7.2002379894257
Time after:   7.2025499343872
Elapsed time: 0.0023119449615479

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'clock.gif'

Time before:  7.2027530670166
Time after:   7.2048070430756
Elapsed time: 0.00205397605896

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'coffee.gif'

Time before:  7.2050828933716
Time after:   7.2072310447693
Elapsed time: 0.0021481513977051

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'coffee2.gif'

Time before:  7.2074320316315
Time after:   7.2095379829407
Elapsed time: 0.0021059513092041

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'color.gif'

Time before:  7.2097489833832
Time after:   7.212042093277
Elapsed time: 0.0022931098937988

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'computer.gif'

Time before:  7.2122259140015
Time after:   7.2142701148987
Elapsed time: 0.0020442008972168

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'confused1.gif'

Time before:  7.2145171165466
Time after:   7.2164530754089
Elapsed time: 0.0019359588623047

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'confused2.gif'

Time before:  7.2167220115662
Time after:   7.2187669277191
Elapsed time: 0.0020449161529541

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'confused3.gif'

Time before:  7.2189610004425
Time after:   7.2211558818817
Elapsed time: 0.002194881439209

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'confused4.gif'

Time before:  7.2213499546051
Time after:   7.2234530448914
Elapsed time: 0.0021030902862549

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'confused5.gif'

Time before:  7.223650932312
Time after:   7.2257499694824
Elapsed time: 0.0020990371704102

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'crybaby2.gif'

Time before:  7.22593998909
Time after:   7.2280149459839
Elapsed time: 0.0020749568939209

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'cussing.gif'

Time before:  7.2282090187073
Time after:   7.230376958847
Elapsed time: 0.0021679401397705

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'cwm10.gif'

Time before:  7.2305929660797
Time after:   7.2327671051025
Elapsed time: 0.0021741390228271

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'cwm21.gif'

Time before:  7.2329609394073
Time after:   7.2351050376892
Elapsed time: 0.0021440982818604

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'cya.gif'

Time before:  7.2352900505066
Time after:   7.2373991012573
Elapsed time: 0.0021090507507324

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'dark1.gif'

Time before:  7.2376220226288
Time after:   7.2396659851074
Elapsed time: 0.0020439624786377

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'diablo_ani_fire.gif'

Time before:  7.2398428916931
Time after:   7.242075920105
Elapsed time: 0.0022330284118652

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'dink.gif'

Time before:  7.2422769069672
Time after:   7.2444109916687
Elapsed time: 0.0021340847015381

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'director.gif'

Time before:  7.2446100711823
Time after:   7.2467269897461
Elapsed time: 0.0021169185638428

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'director2.gif'

Time before:  7.2469320297241
Time after:   7.2490179538727
Elapsed time: 0.0020859241485596

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 'disgust.gif'

Time before:  7.2492098808289
Time after:   7.2514469623566
Elapsed time: 0.00223708152771

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'DMAGE.gif'

Time before:  7.2516369819641
Time after:   7.2536709308624
Elapsed time: 0.0020339488983154

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'dog.gif'

Time before:  7.2539410591125
Time after:   7.2560560703278
Elapsed time: 0.00211501121521

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 'dontknow.gif'

Time before:  7.2562429904938
Time after:   7.2581880092621
Elapsed time: 0.0019450187683105

Query:	UPDATE stats_smilies_index SET smile_count = 6 WHERE smile_url = 'downtown.gif'

Time before:  7.2584280967712
Time after:   7.2611949443817
Elapsed time: 0.0027668476104736

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'DRUIDD.gif'

Time before:  7.2614030838013
Time after:   7.264594078064
Elapsed time: 0.0031909942626953

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'drunken_smilie.gif'

Time before:  7.264799118042
Time after:   7.2679810523987
Elapsed time: 0.0031819343566895

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'duckie.gif'

Time before:  7.2682089805603
Time after:   7.2715210914612
Elapsed time: 0.0033121109008789

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'Edfirst.gif'

Time before:  7.2718260288239
Time after:   7.2749528884888
Elapsed time: 0.003126859664917

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'evil1.gif'

Time before:  7.2752759456635
Time after:   7.2784008979797
Elapsed time: 0.0031249523162842

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'evil3.gif'

Time before:  7.2787001132965
Time after:   7.2818150520325
Elapsed time: 0.0031149387359619

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'evil4.gif'

Time before:  7.2821269035339
Time after:   7.2852330207825
Elapsed time: 0.0031061172485352

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'evil5.gif'

Time before:  7.2855560779572
Time after:   7.2887101173401
Elapsed time: 0.0031540393829346

Query:	UPDATE stats_smilies_index SET smile_count = 53 WHERE smile_url = 'evil6.gif'

Time before:  7.2890229225159
Time after:   7.2921888828278
Elapsed time: 0.0031659603118896

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'evil7.gif'

Time before:  7.2925000190735
Time after:   7.2956581115723
Elapsed time: 0.0031580924987793

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'fart.gif'

Time before:  7.2959799766541
Time after:   7.2991099357605
Elapsed time: 0.0031299591064453

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'female.gif'

Time before:  7.2994210720062
Time after:   7.302542924881
Elapsed time: 0.0031218528747559

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'fenforcer.gif'

Time before:  7.3028519153595
Time after:   7.3059511184692
Elapsed time: 0.0030992031097412

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'fflak.gif'

Time before:  7.3062689304352
Time after:   7.3094038963318
Elapsed time: 0.0031349658966064

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'fglob.gif'

Time before:  7.3097229003906
Time after:   7.3128590583801
Elapsed time: 0.003136157989502

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'fimpact.gif'

Time before:  7.3131759166718
Time after:   7.3163349628448
Elapsed time: 0.0031590461730957

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'fish.gif'

Time before:  7.3166460990906
Time after:   7.3198029994965
Elapsed time: 0.0031569004058838

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'fplasma.gif'

Time before:  7.3201150894165
Time after:   7.3232779502869
Elapsed time: 0.0031628608703613

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'fripper.gif'

Time before:  7.3235919475555
Time after:   7.3267500400543
Elapsed time: 0.0031580924987793

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 'fsniper.gif'

Time before:  7.3270809650421
Time after:   7.3305950164795
Elapsed time: 0.0035140514373779

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'fucyc.gif'

Time before:  7.330894947052
Time after:   7.3340249061584
Elapsed time: 0.0031299591064453

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'fxloc.gif'

Time before:  7.3343451023102
Time after:   7.3374829292297
Elapsed time: 0.0031378269195557

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses1.gif'

Time before:  7.3378100395203
Time after:   7.340961933136
Elapsed time: 0.0031518936157227

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses10.gif'

Time before:  7.3412759304047
Time after:   7.3444530963898
Elapsed time: 0.0031771659851074

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses11.gif'

Time before:  7.3447639942169
Time after:   7.3479270935059
Elapsed time: 0.0031630992889404

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses12.gif'

Time before:  7.3482460975647
Time after:   7.3514060974121
Elapsed time: 0.0031599998474121

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses13.gif'

Time before:  7.3517251014709
Time after:   7.3548629283905
Elapsed time: 0.0031378269195557

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses2.gif'

Time before:  7.3551828861237
Time after:   7.3583068847656
Elapsed time: 0.0031239986419678

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'glasses3.gif'

Time before:  7.3586220741272
Time after:   7.3618030548096
Elapsed time: 0.003180980682373

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses6.gif'

Time before:  7.3622059822083
Time after:   7.36456990242
Elapsed time: 0.002363920211792

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses7.gif'

Time before:  7.3647840023041
Time after:   7.3668649196625
Elapsed time: 0.0020809173583984

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses8.gif'

Time before:  7.3670539855957
Time after:   7.3693780899048
Elapsed time: 0.002324104309082

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses9.gif'

Time before:  7.3695828914642
Time after:   7.3717350959778
Elapsed time: 0.0021522045135498

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'grommit.gif'

Time before:  7.3719680309296
Time after:   7.3739340305328
Elapsed time: 0.0019659996032715

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'hal.gif'

Time before:  7.3741340637207
Time after:   7.3763799667358
Elapsed time: 0.0022459030151367

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'happy1.gif'

Time before:  7.3765690326691
Time after:   7.3786489963531
Elapsed time: 0.002079963684082

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'happy10.gif'

Time before:  7.378851890564
Time after:   7.3809590339661
Elapsed time: 0.0021071434020996

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'happy11.gif'

Time before:  7.3811430931091
Time after:   7.383337020874
Elapsed time: 0.0021939277648926

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'happy2.gif'

Time before:  7.3835890293121
Time after:   7.3856799602509
Elapsed time: 0.0020909309387207

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'happy3.gif'

Time before:  7.3858621120453
Time after:   7.3879160881042
Elapsed time: 0.00205397605896

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'happy4.gif'

Time before:  7.3880949020386
Time after:   7.3902359008789
Elapsed time: 0.002140998840332

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'happy5.gif'

Time before:  7.3904099464417
Time after:   7.3924949169159
Elapsed time: 0.0020849704742432

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'happy6.gif'

Time before:  7.3927640914917
Time after:   7.3976769447327
Elapsed time: 0.0049128532409668

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'happy7.gif'

Time before:  7.3979840278625
Time after:   7.4011609554291
Elapsed time: 0.0031769275665283

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'happy8.gif'

Time before:  7.4014658927917
Time after:   7.4046270847321
Elapsed time: 0.0031611919403076

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'happy9.gif'

Time before:  7.4048810005188
Time after:   7.4069039821625
Elapsed time: 0.0020229816436768

Query:	UPDATE stats_smilies_index SET smile_count = 6 WHERE smile_url = 'headbang.gif'

Time before:  7.407084941864
Time after:   7.4089961051941
Elapsed time: 0.0019111633300781

Query:	UPDATE stats_smilies_index SET smile_count = 26 WHERE smile_url = 'hello.gif'

Time before:  7.4091429710388
Time after:   7.4110729694366
Elapsed time: 0.0019299983978271

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'hello2.gif'

Time before:  7.411248922348
Time after:   7.4131391048431
Elapsed time: 0.0018901824951172

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'help.gif'

Time before:  7.4132800102234
Time after:   7.415139913559
Elapsed time: 0.0018599033355713

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'hiding.gif'

Time before:  7.4152839183807
Time after:   7.4171540737152
Elapsed time: 0.0018701553344727

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'hippy2.gif'

Time before:  7.4173109531403
Time after:   7.4191720485687
Elapsed time: 0.0018610954284668

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'hmh.gif'

Time before:  7.4193170070648
Time after:   7.4211909770966
Elapsed time: 0.0018739700317383

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'home.gif'

Time before:  7.4213280677795
Time after:   7.423182964325
Elapsed time: 0.0018548965454102

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'homework.gif'

Time before:  7.4233241081238
Time after:   7.425185918808
Elapsed time: 0.0018618106842041

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'iamwithstupid.gif'

Time before:  7.4253280162811
Time after:   7.4271759986877
Elapsed time: 0.0018479824066162

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icescream.gif'

Time before:  7.4273240566254
Time after:   7.4291980266571
Elapsed time: 0.0018739700317383

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_albino.gif'

Time before:  7.429356098175
Time after:   7.4312469959259
Elapsed time: 0.0018908977508545

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'icon_anal.gif'

Time before:  7.431401014328
Time after:   7.4332780838013
Elapsed time: 0.0018770694732666

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'icon_arrow.gif'

Time before:  7.433422088623
Time after:   7.4352970123291
Elapsed time: 0.0018749237060547

Query:	UPDATE stats_smilies_index SET smile_count = 13 WHERE smile_url = 'icon_axe.gif'

Time before:  7.4354441165924
Time after:   7.4373059272766
Elapsed time: 0.0018618106842041

Query:	UPDATE stats_smilies_index SET smile_count = 1948 WHERE smile_url = 'icon_biggrin.gif'

Time before:  7.4374480247498
Time after:   7.439376115799
Elapsed time: 0.0019280910491943

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_bigsmurf.gif'

Time before:  7.4395370483398
Time after:   7.4414119720459
Elapsed time: 0.0018749237060547

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_blackeye.gif'

Time before:  7.4415700435638
Time after:   7.4434421062469
Elapsed time: 0.0018720626831055

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_bounce.gif'

Time before:  7.443589925766
Time after:   7.4454538822174
Elapsed time: 0.001863956451416

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_brilsmurf.gif'

Time before:  7.4456079006195
Time after:   7.447478055954
Elapsed time: 0.0018701553344727

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_butt.gif'

Time before:  7.4476239681244
Time after:   7.449481010437
Elapsed time: 0.0018570423126221

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_cat.gif'

Time before:  7.4496309757233
Time after:   7.4514989852905
Elapsed time: 0.0018680095672607

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_cheers.gif'

Time before:  7.451642036438
Time after:   7.4535000324249
Elapsed time: 0.0018579959869385

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_cheese.gif'

Time before:  7.453654050827
Time after:   7.4555189609528
Elapsed time: 0.0018649101257324

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_cherry.gif'

Time before:  7.4556660652161
Time after:   7.4575099945068
Elapsed time: 0.0018439292907715

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_clown.gif'

Time before:  7.4576799869537
Time after:   7.4595439434052
Elapsed time: 0.001863956451416

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_colors.gif'

Time before:  7.4596910476685
Time after:   7.4615590572357
Elapsed time: 0.0018680095672607

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_compress.gif'

Time before:  7.4617040157318
Time after:   7.4635610580444
Elapsed time: 0.0018570423126221

Query:	UPDATE stats_smilies_index SET smile_count = 739 WHERE smile_url = 'icon_confused.gif'

Time before:  7.4637079238892
Time after:   7.4656050205231
Elapsed time: 0.0018970966339111

Query:	UPDATE stats_smilies_index SET smile_count = 387 WHERE smile_url = 'icon_cool.gif'

Time before:  7.465763092041
Time after:   7.4676289558411
Elapsed time: 0.0018658638000488

Query:	UPDATE stats_smilies_index SET smile_count = 226 WHERE smile_url = 'icon_cry.gif'

Time before:  7.4677760601044
Time after:   7.4696779251099
Elapsed time: 0.0019018650054932

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_cyclops.gif'

Time before:  7.4698350429535
Time after:   7.4717130661011
Elapsed time: 0.001878023147583

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_cyclops_ani.gif'

Time before:  7.4718599319458
Time after:   7.4737460613251
Elapsed time: 0.0018861293792725

Query:	UPDATE stats_smilies_index SET smile_count = 205 WHERE smile_url = 'icon_evil.gif'

Time before:  7.4738969802856
Time after:   7.4757668972015
Elapsed time: 0.0018699169158936

Query:	UPDATE stats_smilies_index SET smile_count = 289 WHERE smile_url = 'icon_exclaim.gif'

Time before:  7.4759159088135
Time after:   7.4778099060059
Elapsed time: 0.0018939971923828

Query:	UPDATE stats_smilies_index SET smile_count = 15 WHERE smile_url = 'icon_eyes.gif'

Time before:  7.4779660701752
Time after:   7.4798231124878
Elapsed time: 0.0018570423126221

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_farao.gif'

Time before:  7.4799699783325
Time after:   7.4818348884583
Elapsed time: 0.0018649101257324

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 'icon_flower.gif'

Time before:  7.4819819927216
Time after:   7.4838399887085
Elapsed time: 0.0018579959869385

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_fU.gif'

Time before:  7.4839859008789
Time after:   7.4858520030975
Elapsed time: 0.0018661022186279

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_geek.gif'

Time before:  7.4859941005707
Time after:   7.4878408908844
Elapsed time: 0.0018467903137207

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'icon_joker.gif'

Time before:  7.4879848957062
Time after:   7.4898600578308
Elapsed time: 0.0018751621246338

Query:	UPDATE stats_smilies_index SET smile_count = 20 WHERE smile_url = 'icon_jook.gif'

Time before:  7.4900019168854
Time after:   7.491856098175
Elapsed time: 0.0018541812896729

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_karu.gif'

Time before:  7.4920010566711
Time after:   7.4938669204712
Elapsed time: 0.0018658638000488

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_keel.gif'

Time before:  7.4940099716187
Time after:   7.4958651065826
Elapsed time: 0.0018551349639893

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_kidra.gif'

Time before:  7.4960238933563
Time after:   7.4978890419006
Elapsed time: 0.0018651485443115

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'icon_king.gif'

Time before:  7.4980320930481
Time after:   7.4998800754547
Elapsed time: 0.0018479824066162

Query:	UPDATE stats_smilies_index SET smile_count = 2237 WHERE smile_url = 'icon_lol.gif'

Time before:  7.5000228881836
Time after:   7.5019109249115
Elapsed time: 0.0018880367279053

Query:	UPDATE stats_smilies_index SET smile_count = 295 WHERE smile_url = 'icon_mad.gif'

Time before:  7.5020608901978
Time after:   7.5039219856262
Elapsed time: 0.0018610954284668

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_madu.gif'

Time before:  7.504065990448
Time after:   7.5059349536896
Elapsed time: 0.0018689632415771

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_monkey.gif'

Time before:  7.5060789585114
Time after:   7.5079350471497
Elapsed time: 0.0018560886383057

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_mrgreen.gif'

Time before:  7.5080780982971
Time after:   7.509938955307
Elapsed time: 0.0018608570098877

Query:	UPDATE stats_smilies_index SET smile_count = 106 WHERE smile_url = 'icon_neutral.gif'

Time before:  7.5100820064545
Time after:   7.5119318962097
Elapsed time: 0.001849889755249

Query:	UPDATE stats_smilies_index SET smile_count = 9 WHERE smile_url = 'icon_oak.gif'

Time before:  7.5120770931244
Time after:   7.5139389038086
Elapsed time: 0.0018618106842041

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'icon_pai.gif'

Time before:  7.5140800476074
Time after:   7.5159330368042
Elapsed time: 0.0018529891967773

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_pale.gif'

Time before:  7.5160729885101
Time after:   7.5179328918457
Elapsed time: 0.0018599033355713

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_pall.gif'

Time before:  7.5180749893188
Time after:   7.5199298858643
Elapsed time: 0.0018548965454102

Query:	UPDATE stats_smilies_index SET smile_count = 10 WHERE smile_url = 'icon_pidu.gif'

Time before:  7.5200719833374
Time after:   7.5221259593964
Elapsed time: 0.00205397605896

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_pirat.gif'

Time before:  7.5223100185394
Time after:   7.5242099761963
Elapsed time: 0.0018999576568604

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 'icon_pray.gif'

Time before:  7.5243608951569
Time after:   7.5262351036072
Elapsed time: 0.0018742084503174

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_profileleft.gif'

Time before:  7.5263819694519
Time after:   7.5282399654388
Elapsed time: 0.0018579959869385

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_profileright.gif'

Time before:  7.5283899307251
Time after:   7.5302579402924
Elapsed time: 0.0018680095672607

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_puke_l.gif'

Time before:  7.5304200649261
Time after:   7.5322759151459
Elapsed time: 0.0018558502197266

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_puke_r.gif'

Time before:  7.5324230194092
Time after:   7.534285068512
Elapsed time: 0.0018620491027832

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_queen.gif'

Time before:  7.5344300270081
Time after:   7.5362849235535
Elapsed time: 0.0018548965454102

Query:	UPDATE stats_smilies_index SET smile_count = 145 WHERE smile_url = 'icon_question.gif'

Time before:  7.5364489555359
Time after:   7.5383460521698
Elapsed time: 0.0018970966339111

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_rabbit.gif'

Time before:  7.5385019779205
Time after:   7.5403680801392
Elapsed time: 0.0018661022186279

Query:	UPDATE stats_smilies_index SET smile_count = 530 WHERE smile_url = 'icon_razz.gif'

Time before:  7.5405139923096
Time after:   7.5423810482025
Elapsed time: 0.0018670558929443

Query:	UPDATE stats_smilies_index SET smile_count = 665 WHERE smile_url = 'icon_redface.gif'

Time before:  7.5425269603729
Time after:   7.5444090366364
Elapsed time: 0.0018820762634277

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'icon_rendeer.gif'

Time before:  7.5445590019226
Time after:   7.5464179515839
Elapsed time: 0.0018589496612549

Query:	UPDATE stats_smilies_index SET smile_count = 1115 WHERE smile_url = 'icon_rolleyes.gif'

Time before:  7.5465660095215
Time after:   7.5484418869019
Elapsed time: 0.0018758773803711

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'icon_rr.gif'

Time before:  7.5485939979553
Time after:   7.550460100174
Elapsed time: 0.0018661022186279

Query:	UPDATE stats_smilies_index SET smile_count = 421 WHERE smile_url = 'icon_sad.gif'

Time before:  7.5506091117859
Time after:   7.5524530410767
Elapsed time: 0.0018439292907715

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'icon_salut.gif'

Time before:  7.5525979995728
Time after:   7.554456949234
Elapsed time: 0.0018589496612549

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_santa.gif'

Time before:  7.5545990467072
Time after:   7.5564460754395
Elapsed time: 0.0018470287322998

Query:	UPDATE stats_smilies_index SET smile_count = 12 WHERE smile_url = 'icon_scratch.gif'

Time before:  7.5565888881683
Time after:   7.558445930481
Elapsed time: 0.0018570423126221

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_shaking.gif'

Time before:  7.5585908889771
Time after:   7.5604350566864
Elapsed time: 0.0018441677093506

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_shaking2.gif'

Time before:  7.5605781078339
Time after:   7.5624310970306
Elapsed time: 0.0018529891967773

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_silent.gif'

Time before:  7.5625751018524
Time after:   7.5644249916077
Elapsed time: 0.001849889755249

Query:	UPDATE stats_smilies_index SET smile_count = 1341 WHERE smile_url = 'icon_smile.gif'

Time before:  7.5645709037781
Time after:   7.5664579868317
Elapsed time: 0.0018870830535889

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_smurf.gif'

Time before:  7.5666089057922
Time after:   7.5686769485474
Elapsed time: 0.002068042755127

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_smurfin.gif'

Time before:  7.5688679218292
Time after:   7.5707828998566
Elapsed time: 0.0019149780273438

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_spiderman.gif'

Time before:  7.5709381103516
Time after:   7.5728158950806
Elapsed time: 0.0018777847290039

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_study.gif'

Time before:  7.5729629993439
Time after:   7.5748190879822
Elapsed time: 0.0018560886383057

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_sunny.gif'

Time before:  7.5749859809875
Time after:   7.5768609046936
Elapsed time: 0.0018749237060547

Query:	UPDATE stats_smilies_index SET smile_count = 13 WHERE smile_url = 'icon_super.gif'

Time before:  7.5770220756531
Time after:   7.5788819789886
Elapsed time: 0.0018599033355713

Query:	UPDATE stats_smilies_index SET smile_count = 129 WHERE smile_url = 'icon_surprised.gif'

Time before:  7.5790350437164
Time after:   7.5808959007263
Elapsed time: 0.0018608570098877

Query:	UPDATE stats_smilies_index SET smile_count = 8 WHERE smile_url = 'icon_syda.gif'

Time before:  7.5810420513153
Time after:   7.5828940868378
Elapsed time: 0.0018520355224609

Query:	UPDATE stats_smilies_index SET smile_count = 9 WHERE smile_url = 'icon_thumleft.gif'

Time before:  7.5830430984497
Time after:   7.584911108017
Elapsed time: 0.0018680095672607

Query:	UPDATE stats_smilies_index SET smile_count = 8 WHERE smile_url = 'icon_thumright.gif'

Time before:  7.5850539207458
Time after:   7.5869109630585
Elapsed time: 0.0018570423126221

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'icon_toilet.gif'

Time before:  7.5870571136475
Time after:   7.5889160633087
Elapsed time: 0.0018589496612549

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_tongue.gif'

Time before:  7.5890579223633
Time after:   7.5909090042114
Elapsed time: 0.0018510818481445

Query:	UPDATE stats_smilies_index SET smile_count = 366 WHERE smile_url = 'icon_twisted.gif'

Time before:  7.5910539627075
Time after:   7.5929191112518
Elapsed time: 0.0018651485443115

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'icon_weed.gif'

Time before:  7.5930581092834
Time after:   7.5949139595032
Elapsed time: 0.0018558502197266

Query:	UPDATE stats_smilies_index SET smile_count = 1762 WHERE smile_url = 'icon_wink.gif'

Time before:  7.5950570106506
Time after:   7.5969491004944
Elapsed time: 0.00189208984375

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_winkle.gif'

Time before:  7.5970990657806
Time after:   7.5989611148834
Elapsed time: 0.0018620491027832

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'idea1.gif'

Time before:  7.5991060733795
Time after:   7.6009678840637
Elapsed time: 0.0018618106842041

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'iroc.gif'

Time before:  7.6011049747467
Time after:   7.6029660701752
Elapsed time: 0.0018610954284668

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'jerk.gif'

Time before:  7.6031069755554
Time after:   7.6049718856812
Elapsed time: 0.0018649101257324

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'kermit.gif'

Time before:  7.6051099300385
Time after:   7.6069719791412
Elapsed time: 0.0018620491027832

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'knob.gif'

Time before:  7.6071100234985
Time after:   7.6089699268341
Elapsed time: 0.0018599033355713

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'ky.gif'

Time before:  7.6091070175171
Time after:   7.6109690666199
Elapsed time: 0.0018620491027832

Query:	UPDATE stats_smilies_index SET smile_count = 10 WHERE smile_url = 'la.gif'

Time before:  7.6111080646515
Time after:   7.6129689216614
Elapsed time: 0.0018608570098877

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'laughing1.gif'

Time before:  7.6131069660187
Time after:   7.6149659156799
Elapsed time: 0.0018589496612549

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'laughing11.gif'

Time before:  7.6151111125946
Time after:   7.6169650554657
Elapsed time: 0.0018539428710938

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'laughing3.gif'

Time before:  7.6171200275421
Time after:   7.6189870834351
Elapsed time: 0.0018670558929443

Query:	UPDATE stats_smilies_index SET smile_count = 18 WHERE smile_url = 'laughing4.gif'

Time before:  7.6191320419312
Time after:   7.6209959983826
Elapsed time: 0.001863956451416

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'laughing5.gif'

Time before:  7.6211359500885
Time after:   7.6229910850525
Elapsed time: 0.0018551349639893

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'laughing6.gif'

Time before:  7.6231338977814
Time after:   7.6249890327454
Elapsed time: 0.0018551349639893

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 'laughing7.gif'

Time before:  7.6251289844513
Time after:   7.6269888877869
Elapsed time: 0.0018599033355713

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'laughing8.gif'

Time before:  7.6271340847015
Time after:   7.6289930343628
Elapsed time: 0.0018589496612549

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'laughing9.gif'

Time before:  7.6291320323944
Time after:   7.6309850215912
Elapsed time: 0.0018529891967773

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'love1.gif'

Time before:  7.6311399936676
Time after:   7.6330089569092
Elapsed time: 0.0018689632415771

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'love10.gif'

Time before:  7.6331479549408
Time after:   7.6350040435791
Elapsed time: 0.0018560886383057

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'love2.gif'

Time before:  7.6351449489594
Time after:   7.6370079517365
Elapsed time: 0.0018630027770996

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'love3.gif'

Time before:  7.6371459960938
Time after:   7.6390030384064
Elapsed time: 0.0018570423126221

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'love4.gif'

Time before:  7.6391439437866
Time after:   7.6410059928894
Elapsed time: 0.0018620491027832

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'love5.gif'

Time before:  7.6411409378052
Time after:   7.6430020332336
Elapsed time: 0.0018610954284668

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'love6.gif'

Time before:  7.6431419849396
Time after:   7.645003080368
Elapsed time: 0.0018610954284668

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'love7.gif'

Time before:  7.6451408863068
Time after:   7.6469988822937
Elapsed time: 0.0018579959869385

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'love8.gif'

Time before:  7.6471400260925
Time after:   7.6490039825439
Elapsed time: 0.001863956451416

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'love9.gif'

Time before:  7.6491410732269
Time after:   7.6509850025177
Elapsed time: 0.0018439292907715

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'lovestory.gif'

Time before:  7.6511280536652
Time after:   7.6529901027679
Elapsed time: 0.0018620491027832

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'lurk.gif'

Time before:  7.6531291007996
Time after:   7.6549859046936
Elapsed time: 0.001856803894043

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'male.gif'

Time before:  7.6551260948181
Time after:   7.6569890975952
Elapsed time: 0.0018630027770996

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'mblah05.gif'

Time before:  7.6571431159973
Time after:   7.659010887146
Elapsed time: 0.0018677711486816

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'merror.gif'

Time before:  7.6591560840607
Time after:   7.661022901535
Elapsed time: 0.0018668174743652

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'mumum.gif'

Time before:  7.6611609458923
Time after:   7.6630330085754
Elapsed time: 0.0018720626831055

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'munky2.gif'

Time before:  7.6631779670715
Time after:   7.6662399768829
Elapsed time: 0.0030620098114014

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'naka.gif'

Time before:  7.6664509773254
Time after:   7.6684029102325
Elapsed time: 0.0019519329071045

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'newbie.gif'

Time before:  7.6685519218445
Time after:   7.6704280376434
Elapsed time: 0.0018761157989502

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'nike.gif'

Time before:  7.6705710887909
Time after:   7.6724259853363
Elapsed time: 0.0018548965454102

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 'notworthy.gif'

Time before:  7.6725709438324
Time after:   7.6744439601898
Elapsed time: 0.0018730163574219

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'occasion1.gif'

Time before:  7.6745870113373
Time after:   7.6764390468597
Elapsed time: 0.0018520355224609

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'occasion13.gif'

Time before:  7.6765859127045
Time after:   7.6784470081329
Elapsed time: 0.0018610954284668

Query:	UPDATE stats_smilies_index SET smile_count = 10 WHERE smile_url = 'occasion14.gif'

Time before:  7.6785910129547
Time after:   7.680438041687
Elapsed time: 0.0018470287322998

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'occasion15.gif'

Time before:  7.6805839538574
Time after:   7.6824440956116
Elapsed time: 0.0018601417541504

Query:	UPDATE stats_smilies_index SET smile_count = 17 WHERE smile_url = 'occasion16.gif'

Time before:  7.6825890541077
Time after:   7.6844429969788
Elapsed time: 0.0018539428710938

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'occasion17.gif'

Time before:  7.6845901012421
Time after:   7.6864490509033
Elapsed time: 0.0018589496612549

Query:	UPDATE stats_smilies_index SET smile_count = 9 WHERE smile_url = 'occasion18.gif'

Time before:  7.6865949630737
Time after:   7.6884450912476
Elapsed time: 0.0018501281738281

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'occasion5.gif'

Time before:  7.6885900497437
Time after:   7.6904520988464
Elapsed time: 0.0018620491027832

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'offtheair.gif'

Time before:  7.6905949115753
Time after:   7.6924440860748
Elapsed time: 0.0018491744995117

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'ORGR.gif'

Time before:  7.6925880908966
Time after:   7.6944530010223
Elapsed time: 0.0018649101257324

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'pain10.gif'

Time before:  7.6945939064026
Time after:   7.6964440345764
Elapsed time: 0.0018501281738281

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'pottytrain1.gif'

Time before:  7.6965849399567
Time after:   7.6984429359436
Elapsed time: 0.0018579959869385

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'pottytrain2.gif'

Time before:  7.6986041069031
Time after:   7.7004599571228
Elapsed time: 0.0018558502197266

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'pottytrain3.gif'

Time before:  7.7006080150604
Time after:   7.7024629116058
Elapsed time: 0.0018548965454102

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'pottytrain4.gif'

Time before:  7.7026069164276
Time after:   7.7044529914856
Elapsed time: 0.0018460750579834

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'pottytrain5.gif'

Time before:  7.7045969963074
Time after:   7.7065269947052
Elapsed time: 0.0019299983978271

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'protest.gif'

Time before:  7.7067530155182
Time after:   7.7086489200592
Elapsed time: 0.0018959045410156

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'puke.gif'

Time before:  7.7087988853455
Time after:   7.7106680870056
Elapsed time: 0.0018692016601562

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'read.gif'

Time before:  7.7108130455017
Time after:   7.7126700878143
Elapsed time: 0.0018570423126221

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'read2.gif'

Time before:  7.7128129005432
Time after:   7.7146689891815
Elapsed time: 0.0018560886383057

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 's-bluecap.gif'

Time before:  7.7150011062622
Time after:   7.7169470787048
Elapsed time: 0.001945972442627

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 's-chainsaw.gif'

Time before:  7.7171111106873
Time after:   7.7189888954163
Elapsed time: 0.0018777847290039

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 's-ctf.gif'

Time before:  7.7191410064697
Time after:   7.721009016037
Elapsed time: 0.0018680095672607

Query:	UPDATE stats_smilies_index SET smile_count = 6 WHERE smile_url = 's-instagib.gif'

Time before:  7.7211539745331
Time after:   7.7230350971222
Elapsed time: 0.0018811225891113

Query:	UPDATE stats_smilies_index SET smile_count = 19 WHERE smile_url = 's-minigun.gif'

Time before:  7.7231879234314
Time after:   7.7250599861145
Elapsed time: 0.0018720626831055

Query:	UPDATE stats_smilies_index SET smile_count = 121 WHERE smile_url = 's-shock.gif'

Time before:  7.7252058982849
Time after:   7.7270679473877
Elapsed time: 0.0018620491027832

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 's-telefrag.gif'

Time before:  7.727217912674
Time after:   7.7290740013123
Elapsed time: 0.0018560886383057

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'sad1.gif'

Time before:  7.729218006134
Time after:   7.7310841083527
Elapsed time: 0.0018661022186279

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sad10.gif'

Time before:  7.7312269210815
Time after:   7.733097076416
Elapsed time: 0.0018701553344727

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'sad11.gif'

Time before:  7.7332379817963
Time after:   7.735100030899
Elapsed time: 0.0018620491027832

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sad2.gif'

Time before:  7.7352459430695
Time after:   7.737123966217
Elapsed time: 0.001878023147583

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'sad3.gif'

Time before:  7.7372660636902
Time after:   7.7391200065613
Elapsed time: 0.0018539428710938

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'sad4.gif'

Time before:  7.7392699718475
Time after:   7.7411379814148
Elapsed time: 0.0018680095672607

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'sad5.gif'

Time before:  7.7413010597229
Time after:   7.7432179450989
Elapsed time: 0.0019168853759766

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sad6.gif'

Time before:  7.7433760166168
Time after:   7.7461171150208
Elapsed time: 0.0027410984039307

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sad7.gif'

Time before:  7.746376991272
Time after:   7.7483859062195
Elapsed time: 0.0020089149475098

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sad8.gif'

Time before:  7.7485439777374
Time after:   7.7504320144653
Elapsed time: 0.0018880367279053

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sad9.gif'

Time before:  7.7505769729614
Time after:   7.7524399757385
Elapsed time: 0.0018630027770996

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'sex.gif'

Time before:  7.7525839805603
Time after:   7.7544479370117
Elapsed time: 0.001863956451416

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'sign10.gif'

Time before:  7.7545900344849
Time after:   7.7564470767975
Elapsed time: 0.0018570423126221

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'sign12.gif'

Time before:  7.7565898895264
Time after:   7.7584578990936
Elapsed time: 0.0018680095672607

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'sign13.gif'

Time before:  7.7586009502411
Time after:   7.7604598999023
Elapsed time: 0.0018589496612549

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign14.gif'

Time before:  7.7606029510498
Time after:   7.7624690532684
Elapsed time: 0.0018661022186279

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign16.gif'

Time before:  7.762610912323
Time after:   7.7644650936127
Elapsed time: 0.0018541812896729

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign17.gif'

Time before:  7.7646090984344
Time after:   7.7664759159088
Elapsed time: 0.0018668174743652

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign18.gif'

Time before:  7.766618013382
Time after:   7.7684619426727
Elapsed time: 0.0018439292907715

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign19.gif'

Time before:  7.7686059474945
Time after:   7.7704689502716
Elapsed time: 0.0018630027770996

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign2.gif'

Time before:  7.7706110477448
Time after:   7.7724559307098
Elapsed time: 0.0018448829650879

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign4.gif'

Time before:  7.7726020812988
Time after:   7.774463891983
Elapsed time: 0.0018618106842041

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'sign5.gif'

Time before:  7.7746059894562
Time after:   7.7764539718628
Elapsed time: 0.0018479824066162

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign7.gif'

Time before:  7.7765970230103
Time after:   7.7784540653229
Elapsed time: 0.0018570423126221

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'sith.gif'

Time before:  7.7785940170288
Time after:   7.7804639339447
Elapsed time: 0.0018699169158936

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sleepy1.gif'

Time before:  7.780611038208
Time after:   7.782634973526
Elapsed time: 0.0020239353179932

Query:	UPDATE stats_smilies_index SET smile_count = 6 WHERE smile_url = 'sleepy2.gif'

Time before:  7.782840013504
Time after:   7.7847619056702
Elapsed time: 0.0019218921661377

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sleepy3.gif'

Time before:  7.784912109375
Time after:   7.7867770195007
Elapsed time: 0.0018649101257324

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sleepy4.gif'

Time before:  7.7869260311127
Time after:   7.7887940406799
Elapsed time: 0.0018680095672607

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sleepy5.gif'

Time before:  7.7889380455017
Time after:   7.7907910346985
Elapsed time: 0.0018529891967773

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sleepy7.gif'

Time before:  7.7909369468689
Time after:   7.792799949646
Elapsed time: 0.0018630027770996

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'smileinbox.gif'

Time before:  7.792946100235
Time after:   7.7948009967804
Elapsed time: 0.0018548965454102

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'snorting.gif'

Time before:  7.7949509620667
Time after:   7.7968220710754
Elapsed time: 0.0018711090087891

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'spam1.gif'

Time before:  7.7969648838043
Time after:   7.7988219261169
Elapsed time: 0.0018570423126221

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'spam4.gif'

Time before:  7.7989690303802
Time after:   7.8008379936218
Elapsed time: 0.0018689632415771

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'stfu.gif'

Time before:  7.8009788990021
Time after:   7.8028380870819
Elapsed time: 0.001859188079834

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'stop.gif'

Time before:  7.8029839992523
Time after:   7.8048529624939
Elapsed time: 0.0018689632415771

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'tard.gif'

Time before:  7.8049941062927
Time after:   7.806853055954
Elapsed time: 0.0018589496612549

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'TheArchLitchMalignus.gif'

Time before:  7.8070011138916
Time after:   7.8088669776917
Elapsed time: 0.0018658638000488

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'thebirdman.gif'

Time before:  7.809014081955
Time after:   7.8108689785004
Elapsed time: 0.0018548965454102

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'thefinger.gif'

Time before:  7.8110189437866
Time after:   7.8128819465637
Elapsed time: 0.0018630027770996

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'Thin5.gif'

Time before:  7.8130240440369
Time after:   7.8148748874664
Elapsed time: 0.0018508434295654

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'thumbsup.gif'

Time before:  7.8150210380554
Time after:   7.816880941391
Elapsed time: 0.0018599033355713

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'tongue1.gif'

Time before:  7.8170220851898
Time after:   7.8188700675964
Elapsed time: 0.0018479824066162

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'tongue11.gif'

Time before:  7.8190150260925
Time after:   7.8208711147308
Elapsed time: 0.0018560886383057

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'tongue2.gif'

Time before:  7.8210129737854
Time after:   7.8228650093079
Elapsed time: 0.0018520355224609

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'tongue3.gif'

Time before:  7.8230259418488
Time after:   7.8248910903931
Elapsed time: 0.0018651485443115

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'tongue4.gif'

Time before:  7.8250339031219
Time after:   7.8268790245056
Elapsed time: 0.001845121383667

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'tongue5.gif'

Time before:  7.8270270824432
Time after:   7.8288700580597
Elapsed time: 0.0018429756164551

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'tongue6.gif'

Time before:  7.8290109634399
Time after:   7.8308529853821
Elapsed time: 0.0018420219421387

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'tongue7.gif'

Time before:  7.8309988975525
Time after:   7.8328580856323
Elapsed time: 0.001859188079834

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'tongue8.gif'

Time before:  7.8329999446869
Time after:   7.8348689079285
Elapsed time: 0.0018689632415771

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'tongue9.gif'

Time before:  7.8350219726562
Time after:   7.8368899822235
Elapsed time: 0.0018680095672607

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'tool.gif'

Time before:  7.837033033371
Time after:   7.8388841152191
Elapsed time: 0.0018510818481445

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'toothy1.gif'

Time before:  7.8390290737152
Time after:   7.8408920764923
Elapsed time: 0.0018630027770996

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'toothy10.gif'

Time before:  7.8410329818726
Time after:   7.842885017395
Elapsed time: 0.0018520355224609

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'toothy11.gif'

Time before:  7.8430330753326
Time after:   7.8448939323425
Elapsed time: 0.0018608570098877

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'toothy12.gif'

Time before:  7.8450329303741
Time after:   7.8468859195709
Elapsed time: 0.0018529891967773

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'toothy2.gif'

Time before:  7.8470311164856
Time after:   7.8488869667053
Elapsed time: 0.0018558502197266

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'toothy3.gif'

Time before:  7.8490269184113
Time after:   7.8508739471436
Elapsed time: 0.0018470287322998

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'toothy4.gif'

Time before:  7.8510189056396
Time after:   7.8528819084167
Elapsed time: 0.0018630027770996

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'toothy5.gif'

Time before:  7.8530220985413
Time after:   7.8548679351807
Elapsed time: 0.0018458366394043

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'toothy6.gif'

Time before:  7.8550140857697
Time after:   7.8568720817566
Elapsed time: 0.0018579959869385

Query:	UPDATE stats_smilies_index SET smile_count = 6 WHERE smile_url = 'toothy9.gif'

Time before:  7.8570120334625
Time after:   7.8588609695435
Elapsed time: 0.0018489360809326

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'triplets.gif'

Time before:  7.8590068817139
Time after:   7.8608529567719
Elapsed time: 0.0018460750579834

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'tshirt.gif'

Time before:  7.8609941005707
Time after:   7.8628480434418
Elapsed time: 0.0018539428710938

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'tweety.gif'

Time before:  7.8630061149597
Time after:   7.8648710250854
Elapsed time: 0.0018649101257324

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'usa2.gif'

Time before:  7.8650119304657
Time after:   7.8668699264526
Elapsed time: 0.0018579959869385

Query:	UPDATE stats_smilies_index SET smile_count = 15 WHERE smile_url = 'violent1.gif'

Time before:  7.8670148849487
Time after:   7.8688769340515
Elapsed time: 0.0018620491027832

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'violent4.gif'

Time before:  7.8690180778503
Time after:   7.8708679676056
Elapsed time: 0.001849889755249

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'violent5.gif'

Time before:  7.8710129261017
Time after:   7.8728740215302
Elapsed time: 0.0018610954284668

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'walk.gif'

Time before:  7.8730130195618
Time after:   7.8748669624329
Elapsed time: 0.0018539428710938

Query:	UPDATE stats_smilies_index SET smile_count = 63 WHERE smile_url = 'wav.gif'

Time before:  7.8750100135803
Time after:   7.8768749237061
Elapsed time: 0.0018649101257324

Query:	UPDATE stats_smilies_index SET smile_count = 9 WHERE smile_url = 'wave.gif'

Time before:  7.8770360946655
Time after:   7.8788959980011
Elapsed time: 0.0018599033355713

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'Whaxatk.gif'

Time before:  7.879045009613
Time after:   7.8809070587158
Elapsed time: 0.0018620491027832

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'Whdatk.gif'

Time before:  7.8810489177704
Time after:   7.8829050064087
Elapsed time: 0.0018560886383057

Query:	UPDATE stats_smilies_info SET last_post_id = 25905

Time before:  7.8830420970917
Time after:   7.8832590579987
Elapsed time: 0.00021696090698242

Query:	SELECT word FROM phpbb_words

Time before:  8.3016259670258
Time after:   8.3022699356079
Elapsed time: 0.00064396858215332
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_words  ALL          17  17   


Query:	SELECT COUNT( word_id ) total_words FROM phpbb_search_wordmatch

Time before:  8.3028650283813
Time after:   8.3030738830566
Elapsed time: 0.00020885467529297
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE                Select tables optimized away 


Query:	SELECT COUNT( word ) as censoredwordcount FROM phpbb_words

Time before:  8.3035349845886
Time after:   8.3037149906158
Elapsed time: 0.00018000602722168
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE                Select tables optimized away 


Query:	SELECT COUNT( swm.word_id ) word_count, swm.word_id word_id, swl.word_text word_text
	FROM phpbb_search_wordmatch swm, phpbb_search_wordlist swl, phpbb_words wt
	WHERE swm.word_id = swl.word_id
	AND wt.word <> swl.word_text
	GROUP BY swm.word_id ORDER BY word_count DESC
	LIMIT 10

Time before:  8.3041920661926
Time after:   25.434190988541
Elapsed time: 17.129998922348
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  swl  ALL  word_id        31670  10  Using temporary; Using filesort 
SIMPLE  swm  ref  word_id  word_id  stevew_phpb2.swl.word_id  12    Using index 
SIMPLE  wt  ALL          17    Using where 


Query:	SELECT COUNT(*) as total_users
	FROM phpbb_users
	WHERE user_id <> -1

Time before:  25.578346014023
Time after:   25.579899072647
Elapsed time: 0.0015530586242676
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  range  PRIMARY  PRIMARY    1016  Using where; Using index 


Query:	SELECT COUNT(u.user_style) AS used_count, t.themes_id, t.style_name
	FROM phpbb_users u, phpbb_themes t
	WHERE u.user_style = t.themes_id
	GROUP BY t.themes_id
	ORDER BY used_count DESC
	LIMIT 10

Time before:  25.580595970154
Time after:   25.589234113693
Elapsed time: 0.0086381435394287
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL          1016  Using temporary; Using filesort 
SIMPLE  ALL  PRIMARY          Using where 


Query:	SELECT COUNT(*) as total_users
	FROM phpbb_users
	WHERE user_id <> -1

Time before:  25.608370065689
Time after:   25.610749006271
Elapsed time: 0.0023789405822754
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  range  PRIMARY  PRIMARY    1016  Using where; Using index 


Query:	SELECT user_lang, COUNT(*) AS used_count
	FROM phpbb_users
	WHERE user_id <> -1
	AND user_lang <> ''
	GROUP BY user_lang
	ORDER BY used_count DESC
	LIMIT 10

Time before:  25.611819982529
Time after:   25.662939071655
Elapsed time: 0.051119089126587
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  range  PRIMARY  PRIMARY    1016  10  Using where; Using temporary; Using filesort 


Query:	SELECT cash_dbfield, cash_name
	FROM phpbb_cash
	ORDER BY cash_order DESC

Time before:  25.692384004593
Time after:   25.692709922791
Elapsed time: 0.00032591819763184
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_cash  system           


Query:	SELECT  user_id, username, user_points as cur
	FROM phpbb_users
	WHERE user_id <> -1
	ORDER BY user_points DESC
	LIMIT 10

Time before:  25.699059963226
Time after:   25.719691038132
Elapsed time: 0.020631074905396
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  range  PRIMARY  PRIMARY    1016  10  Using where; Using filesort 


Query:	SELECT DISTINCT u.user_id, u.username, a.first_places, a.at_first_places FROM phpbb_users as u, phpbb_ina_user_data as a
	WHERE u.user_id = a.user_id
	AND a.first_places > -1
	ORDER by a.at_first_places DESC
	LIMIT 10

Time before:  25.794115066528
Time after:   25.80163693428
Elapsed time: 0.0075218677520752
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL  user_id        141  10  Using where; Using temporary; Using filesort 
SIMPLE  eq_ref  PRIMARY  PRIMARY  stevew_phpb2.a.user_id     


Query:	SELECT DISTINCT u.user_id, u.username, a.first_places, a.at_first_places FROM phpbb_users as u, phpbb_ina_user_data as a
	WHERE u.user_id = a.user_id
	AND a.first_places > 0
	ORDER by a.first_places DESC, last_won_date, u.username LIMIT 10

Time before:  25.825946092606
Time after:   25.827745914459
Elapsed time: 0.0017998218536377
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL  user_id        141  10  Using where; Using temporary; Using filesort 
SIMPLE  eq_ref  PRIMARY  PRIMARY  stevew_phpb2.a.user_id     


Query:	SELECT game_id, game_desc, played
	FROM phpbb_ina_games
	ORDER BY played DESC
	LIMIT 10

Time before:  25.854295969009
Time after:   25.855304002762
Elapsed time: 0.0010080337524414
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_ina_games  ALL          136  10  Using filesort 


Query:	SELECT i.game_id, i.game_desc, i.played, i.date_added, u.user_dateformat, u.user_timezone
	FROM phpbb_ina_games i, phpbb_users u
	WHERE u.user_id = 83
	ORDER BY date_added DESC
	LIMIT 10

Time before:  25.877924919128
Time after:   25.879125118256
Elapsed time: 0.0012001991271973
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  const  PRIMARY  PRIMARY  const  10  Using filesort 
SIMPLE  ALL          136     


The Statistics Mod generated 1153 queries,
spending 22.919853925705 doing MySQL queries and 2.9747149944305 doing PHP things.