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

Time before:  0.33324718475342
Time after:   0.33644413948059
Elapsed time: 0.0031969547271729
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  range  PRIMARY  PRIMARY    2642  Using where; Using index 


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

Time before:  0.3371889591217
Time after:   0.33760809898376
Elapsed time: 0.00041913986206055
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_forums  ALL          19   


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

Time before:  0.33822202682495
Time after:   0.33867311477661
Elapsed time: 0.00045108795166016
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  range  PRIMARY  PRIMARY    2642  Using where 


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

Time before:  0.56647610664368
Time after:   0.56693816184998
Elapsed time: 0.00046205520629883
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.56757712364197
Time after:   0.5679771900177
Elapsed time: 0.00040006637573242
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
	ORDER BY f.forum_posts DESC
	LIMIT 10

Time before:  0.6194441318512
Time after:   0.62228202819824
Elapsed time: 0.0028378963470459
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL  cat_id        19  10  Using where; Using temporary; Using filesort 
SIMPLE  ALL  PRIMARY          Using where 


Query:	SELECT topic_id, topic_title, topic_replies
	FROM phpbb_topics
	ORDER BY topic_replies DESC
	LIMIT 10

Time before:  0.64148807525635
Time after:   0.64591312408447
Elapsed time: 0.004425048828125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_topics  ALL          3538  10  Using filesort 


Query:	SELECT topic_id, topic_title, topic_views
	FROM phpbb_topics
	ORDER BY topic_views DESC
	LIMIT 10

Time before:  0.66080808639526
Time after:   0.6653470993042
Elapsed time: 0.0045390129089355
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_topics  ALL          3538  10  Using filesort 


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

Time before:  0.69289898872375
Time after:   0.71258497238159
Elapsed time: 0.019685983657837
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_topics  ALL  topic_status        3538  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:  0.71331715583801
Time after:   0.79595613479614
Elapsed time: 0.08263897895813
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL          3538  10  Using where; Using temporary; Using filesort 
SIMPLE  eq_ref  PRIMARY  PRIMARY  stevew_phpb2.t.topic_poster    Using where 


Query:	SELECT topic_id, forum_id, topic_title, topic_replies, topic_views, round(topic_views/(topic_replies + 1),2) AS k
	FROM phpbb_topics
	ORDER BY k DESC
	LIMIT 10

Time before:  0.81400418281555
Time after:   0.82036399841309
Elapsed time: 0.0063598155975342
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_topics  ALL          3538  10  Using filesort 


Query:	SELECT topic_id, forum_id, topic_title, topic_replies, topic_views, round(topic_views/(topic_replies + 1),2) AS k
	FROM phpbb_topics
	ORDER BY k ASC
	LIMIT 10

Time before:  0.83540797233582
Time after:   0.84236907958984
Elapsed time: 0.0069611072540283
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_topics  ALL          3538  10  Using filesort 


Query:	SELECT topic_id, forum_id, topic_title, topic_replies, topic_views, round(topic_views/(topic_replies + 1),2) AS k
	FROM phpbb_topics
	ORDER BY k DESC
	LIMIT 10

Time before:  0.85782408714294
Time after:   0.86456513404846
Elapsed time: 0.0067410469055176
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_topics  ALL          3538  10  Using filesort 


Query:	SELECT topic_id, forum_id, topic_title, topic_replies, topic_views, round(topic_views/(topic_replies + 1),2) AS k
	FROM phpbb_topics
	ORDER BY k ASC
	LIMIT 10

Time before:  0.86543703079224
Time after:   0.87197613716125
Elapsed time: 0.0065391063690186
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_topics  ALL          3538  10  Using filesort 


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

Time before:  0.89293503761292
Time after:   0.91188716888428
Elapsed time: 0.018952131271362
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  ALL  PRIMARY        2642  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:  0.91264200210571
Time after:   0.95360612869263
Elapsed time: 0.040964126586914
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  range  PRIMARY  PRIMARY    2642  10  Using where; Using filesort 


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

Time before:  0.97733116149902
Time after:   0.9960789680481
Elapsed time: 0.018747806549072
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  ALL  PRIMARY        2642  Using where 


Query:	SELECT user_id, username, user_posts, user_regdate,
	(user_posts/((1213923744 - user_regdate)/ 86400)) rate,
	ROUND((1213923744 - 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:  0.99684309959412
Time after:   1.0335371494293
Elapsed time: 0.036694049835205
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  range  PRIMARY  PRIMARY    2642  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 > '1212296400') AND (u.user_id <> -1)
	GROUP BY u.user_id, u.username
	ORDER BY user_posts DESC
	LIMIT 10

Time before:  1.062469959259
Time after:   1.0802199840546
Elapsed time: 0.017750024795532
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  range  poster_id,post_time  post_time    706  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.0981390476227
Time after:   1.127326965332
Elapsed time: 0.029187917709351
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  ALL  PRIMARY        2642  23  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 > '1213588800') AND (u.user_id <> -1)
	GROUP BY u.user_id, u.username
	ORDER BY user_posts DESC
	LIMIT 10

Time before:  1.1471891403198
Time after:   1.1533801555634
Elapsed time: 0.0061910152435303
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  range  poster_id,post_time  post_time    275  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
	WHERE a.vote_id = b.vote_id
	AND b.topic_id = t.topic_id
	GROUP BY a.vote_id
	ORDER BY num_votes DESC
	LIMIT 10

Time before:  1.1714630126953
Time after:   1.1959180831909
Elapsed time: 0.024455070495605
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  index  vote_id  vote_id    157  10  Using temporary; Using filesort 
SIMPLE  eq_ref  PRIMARY,topic_id  PRIMARY  stevew_phpb2.a.vote_id     
SIMPLE  eq_ref  PRIMARY  PRIMARY  stevew_phpb2.b.topic_id     


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

Time before:  1.2121460437775
Time after:   1.2145681381226
Elapsed time: 0.0024220943450928
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_topics  ALL  topic_status        3538  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.2153391838074
Time after:   1.2194571495056
Elapsed time: 0.0041179656982422
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL          3538  10  Using where; Using temporary; Using filesort 
SIMPLE  eq_ref  PRIMARY  PRIMARY  stevew_phpb2.t.topic_poster    Using where 


Query:	SELECT p.post_id, p.post_time, pt.post_subject, t.topic_id, t.topic_title, u.username, u.user_timezone, u.user_dateformat
	FROM phpbb_posts p, phpbb_posts_text pt, phpbb_topics t, 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
	ORDER BY p.post_time DESC
	LIMIT 10

Time before:  1.2390489578247
Time after:   2.9700050354004
Elapsed time: 1.7309560775757
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL          3538  10  Using temporary; Using filesort 
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
	WHERE u.user_id = 18
	ORDER BY topic_time DESC
	LIMIT 10

Time before:  3.0138850212097
Time after:   3.019572019577
Elapsed time: 0.0056869983673096
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          3538     


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:  3.0343701839447
Time after:   3.2342131137848
Elapsed time: 0.19984292984009
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts  index    post_time    33032  24  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:  3.2594540119171
Time after:   3.2993710041046
Elapsed time: 0.0399169921875
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_topics  ALL          3538  30  Using temporary; Using filesort 


Query:	SELECT * FROM stats_smilies_info

Time before:  3.3360781669617
Time after:   3.3433511257172
Elapsed time: 0.0072729587554932
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:  3.3440051078796
Time after:   3.3565311431885
Elapsed time: 0.012526035308838
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  stats_smilies_index  ALL          325  325   


Query:	SELECT max(post_id) as total FROM phpbb_posts

Time before:  3.3631579875946
Time after:   3.3635361194611
Elapsed time: 0.00037813186645508
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:  3.3641250133514
Time after:   3.364315032959
Elapsed time: 0.00019001960754395
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:  3.3648030757904
Time after:   3.3702800273895
Elapsed time: 0.0054769515991211
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  325  Using temporary; Using filesort 


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

Time before:  3.3730239868164
Time after:   3.3739411830902
Elapsed time: 0.00091719627380371
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.3745830059052
Time after:   3.3754971027374
Elapsed time: 0.00091409683227539
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.3761901855469
Time after:   3.3770620822906
Elapsed time: 0.00087189674377441
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.3776640892029
Time after:   3.3785820007324
Elapsed time: 0.00091791152954102
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.3792760372162
Time after:   3.3801190853119
Elapsed time: 0.00084304809570312
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.3806800842285
Time after:   3.3816070556641
Elapsed time: 0.00092697143554688
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.3823370933533
Time after:   3.3832540512085
Elapsed time: 0.00091695785522461
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.3839039802551
Time after:   3.3847951889038
Elapsed time: 0.00089120864868164
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.3855199813843
Time after:   3.3863899707794
Elapsed time: 0.0008699893951416
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.3869791030884
Time after:   3.3878870010376
Elapsed time: 0.00090789794921875
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.3885560035706
Time after:   3.3893949985504
Elapsed time: 0.0008389949798584
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.3900671005249
Time after:   3.3910570144653
Elapsed time: 0.00098991394042969
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.3917989730835
Time after:   3.3926620483398
Elapsed time: 0.00086307525634766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.393306016922
Time after:   3.3942420482635
Elapsed time: 0.00093603134155273
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.3949341773987
Time after:   3.395781993866
Elapsed time: 0.00084781646728516
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.3964459896088
Time after:   3.3974370956421
Elapsed time: 0.0009911060333252
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.3981611728668
Time after:   3.3990070819855
Elapsed time: 0.00084590911865234
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.3995711803436
Time after:   3.4004740715027
Elapsed time: 0.00090289115905762
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.4011771678925
Time after:   3.4020390510559
Elapsed time: 0.00086188316345215
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4026350975037
Time after:   3.4035270214081
Elapsed time: 0.00089192390441895
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.4042329788208
Time after:   3.405081987381
Elapsed time: 0.00084900856018066
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4057030677795
Time after:   3.406613111496
Elapsed time: 0.00091004371643066
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.4073131084442
Time after:   3.4081540107727
Elapsed time: 0.00084090232849121
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4087190628052
Time after:   3.4096081256866
Elapsed time: 0.00088906288146973
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.4103090763092
Time after:   3.4111561775208
Elapsed time: 0.00084710121154785
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4118101596832
Time after:   3.4127390384674
Elapsed time: 0.00092887878417969
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.4135229587555
Time after:   3.4144170284271
Elapsed time: 0.00089406967163086
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4149920940399
Time after:   3.4158911705017
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    147  Using where 


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

Time before:  3.4165830612183
Time after:   3.4174230098724
Elapsed time: 0.0008399486541748
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4180181026459
Time after:   3.4189131259918
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    147  Using where 


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

Time before:  3.4195899963379
Time after:   3.4204280376434
Elapsed time: 0.00083804130554199
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4210240840912
Time after:   3.421993970871
Elapsed time: 0.00096988677978516
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.4228529930115
Time after:   3.4237031936646
Elapsed time: 0.00085020065307617
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4274380207062
Time after:   3.4287090301514
Elapsed time: 0.0012710094451904
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.4296691417694
Time after:   3.4305620193481
Elapsed time: 0.00089287757873535
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4312191009521
Time after:   3.4321720600128
Elapsed time: 0.00095295906066895
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.4328911304474
Time after:   3.4337151050568
Elapsed time: 0.000823974609375
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4342901706696
Time after:   3.4351720809937
Elapsed time: 0.00088191032409668
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.4358639717102
Time after:   3.4366931915283
Elapsed time: 0.00082921981811523
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4373731613159
Time after:   3.4383301734924
Elapsed time: 0.00095701217651367
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.439031124115
Time after:   3.4398791790009
Elapsed time: 0.00084805488586426
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4404380321503
Time after:   3.4413220882416
Elapsed time: 0.00088405609130859
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.4420130252838
Time after:   3.442852973938
Elapsed time: 0.0008399486541748
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4434111118317
Time after:   3.4443550109863
Elapsed time: 0.00094389915466309
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.4452180862427
Time after:   3.4461491107941
Elapsed time: 0.0009310245513916
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4467251300812
Time after:   3.4476470947266
Elapsed time: 0.00092196464538574
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.4483599662781
Time after:   3.4492001533508
Elapsed time: 0.00084018707275391
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4497811794281
Time after:   3.4507021903992
Elapsed time: 0.00092101097106934
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.4514231681824
Time after:   3.4522721767426
Elapsed time: 0.00084900856018066
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4528529644012
Time after:   3.453763961792
Elapsed time: 0.00091099739074707
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.4544551372528
Time after:   3.4552941322327
Elapsed time: 0.0008389949798584
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4559681415558
Time after:   3.4569001197815
Elapsed time: 0.00093197822570801
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.4575970172882
Time after:   3.4584369659424
Elapsed time: 0.0008399486541748
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4591100215912
Time after:   3.4600470066071
Elapsed time: 0.00093698501586914
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.4607501029968
Time after:   3.4615850448608
Elapsed time: 0.00083494186401367
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4621720314026
Time after:   3.4630680084229
Elapsed time: 0.00089597702026367
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.4637680053711
Time after:   3.464604139328
Elapsed time: 0.00083613395690918
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4652869701385
Time after:   3.4662420749664
Elapsed time: 0.00095510482788086
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.4669630527496
Time after:   3.4677970409393
Elapsed time: 0.00083398818969727
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.468358039856
Time after:   3.4692430496216
Elapsed time: 0.000885009765625
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.4699630737305
Time after:   3.4708240032196
Elapsed time: 0.00086092948913574
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4713971614838
Time after:   3.4722881317139
Elapsed time: 0.00089097023010254
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.4729890823364
Time after:   3.4738299846649
Elapsed time: 0.00084090232849121
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4743931293488
Time after:   3.4752821922302
Elapsed time: 0.00088906288146973
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.4760000705719
Time after:   3.4768481254578
Elapsed time: 0.00084805488586426
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4774069786072
Time after:   3.4782950878143
Elapsed time: 0.00088810920715332
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.4790091514587
Time after:   3.4798510074615
Elapsed time: 0.00084185600280762
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4804360866547
Time after:   3.4813289642334
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    147  Using where 


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

Time before:  3.4822480678558
Time after:   3.4831609725952
Elapsed time: 0.00091290473937988
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.48375415802
Time after:   3.4846670627594
Elapsed time: 0.00091290473937988
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.4854459762573
Time after:   3.4863109588623
Elapsed time: 0.00086498260498047
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4869229793549
Time after:   3.4878621101379
Elapsed time: 0.00093913078308105
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.4885621070862
Time after:   3.4894080162048
Elapsed time: 0.00084590911865234
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4900209903717
Time after:   3.4909420013428
Elapsed time: 0.00092101097106934
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.4916470050812
Time after:   3.4925060272217
Elapsed time: 0.00085902214050293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4931910037994
Time after:   3.4941461086273
Elapsed time: 0.00095510482788086
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.494863986969
Time after:   3.4957029819489
Elapsed time: 0.0008389949798584
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4963271617889
Time after:   3.4972400665283
Elapsed time: 0.00091290473937988
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.4979591369629
Time after:   3.4988100528717
Elapsed time: 0.00085091590881348
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.4993770122528
Time after:   3.5002691745758
Elapsed time: 0.00089216232299805
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.5009851455688
Time after:   3.5018939971924
Elapsed time: 0.00090885162353516
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.5024981498718
Time after:   3.5034370422363
Elapsed time: 0.00093889236450195
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.5041539669037
Time after:   3.5049951076508
Elapsed time: 0.00084114074707031
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.505567073822
Time after:   3.5064661502838
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    147  Using where 


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

Time before:  3.5071280002594
Time after:   3.5080270767212
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    147  Using where 


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

Time before:  3.5088391304016
Time after:   3.5096781253815
Elapsed time: 0.0008389949798584
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.5103960037231
Time after:   3.5114619731903
Elapsed time: 0.0010659694671631
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.5123121738434
Time after:   3.5132141113281
Elapsed time: 0.00090193748474121
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.5138080120087
Time after:   3.5147180557251
Elapsed time: 0.00091004371643066
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.5155789852142
Time after:   3.5164830684662
Elapsed time: 0.00090408325195312
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.5172531604767
Time after:   3.5182981491089
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    147  Using where 


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

Time before:  3.5191161632538
Time after:   3.519956111908
Elapsed time: 0.0008399486541748
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.5205340385437
Time after:   3.5214891433716
Elapsed time: 0.00095510482788086
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.5222370624542
Time after:   3.5230820178986
Elapsed time: 0.00084495544433594
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.5238380432129
Time after:   3.5248789787292
Elapsed time: 0.0010409355163574
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.5256431102753
Time after:   3.5265221595764
Elapsed time: 0.00087904930114746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.5271511077881
Time after:   3.5280530452728
Elapsed time: 0.00090193748474121
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.5289599895477
Time after:   3.5298449993134
Elapsed time: 0.000885009765625
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.5304160118103
Time after:   3.5313470363617
Elapsed time: 0.0009310245513916
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.5320920944214
Time after:   3.5329439640045
Elapsed time: 0.00085186958312988
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.5335600376129
Time after:   3.5345001220703
Elapsed time: 0.00094008445739746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.5352380275726
Time after:   3.536080121994
Elapsed time: 0.00084209442138672
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.5368161201477
Time after:   3.5377581119537
Elapsed time: 0.00094199180603027
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.5384881496429
Time after:   3.5393509864807
Elapsed time: 0.00086283683776855
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.5399570465088
Time after:   3.5408480167389
Elapsed time: 0.00089097023010254
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.541570186615
Time after:   3.5429220199585
Elapsed time: 0.0013518333435059
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.5437619686127
Time after:   3.5451791286469
Elapsed time: 0.0014171600341797
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.5463771820068
Time after:   3.5476911067963
Elapsed time: 0.0013139247894287
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.5486171245575
Time after:   3.5500071048737
Elapsed time: 0.0013899803161621
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.5511980056763
Time after:   3.5525510311127
Elapsed time: 0.0013530254364014
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.5534620285034
Time after:   3.5550010204315
Elapsed time: 0.0015389919281006
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.5561320781708
Time after:   3.5574381351471
Elapsed time: 0.0013060569763184
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.5584120750427
Time after:   3.5599460601807
Elapsed time: 0.0015339851379395
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.5612390041351
Time after:   3.5626201629639
Elapsed time: 0.0013811588287354
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.563472032547
Time after:   3.5651431083679
Elapsed time: 0.0016710758209229
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.5662341117859
Time after:   3.5675849914551
Elapsed time: 0.0013508796691895
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.5685331821442
Time after:   3.5700349807739
Elapsed time: 0.0015017986297607
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.5711071491241
Time after:   3.5726780891418
Elapsed time: 0.0015709400177002
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.5737709999084
Time after:   3.5752141475677
Elapsed time: 0.0014431476593018
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.5763220787048
Time after:   3.5776669979095
Elapsed time: 0.0013449192047119
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.5785851478577
Time after:   3.5801181793213
Elapsed time: 0.001533031463623
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.5813319683075
Time after:   3.5826439857483
Elapsed time: 0.0013120174407959
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.5836470127106
Time after:   3.58518409729
Elapsed time: 0.0015370845794678
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.5862941741943
Time after:   3.5876190662384
Elapsed time: 0.0013248920440674
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.5888321399689
Time after:   3.5903091430664
Elapsed time: 0.0014770030975342
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.5914061069489
Time after:   3.5927431583405
Elapsed time: 0.0013370513916016
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.5938999652863
Time after:   3.5954301357269
Elapsed time: 0.0015301704406738
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.5966770648956
Time after:   3.5979990959167
Elapsed time: 0.0013220310211182
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.599240064621
Time after:   3.6007421016693
Elapsed time: 0.0015020370483398
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.6021091938019
Time after:   3.6035070419312
Elapsed time: 0.0013978481292725
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.6044380664825
Time after:   3.6058850288391
Elapsed time: 0.0014469623565674
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.6071500778198
Time after:   3.6084980964661
Elapsed time: 0.0013480186462402
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.6096711158752
Time after:   3.6113021373749
Elapsed time: 0.0016310214996338
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.6234140396118
Time after:   3.6243121623993
Elapsed time: 0.00089812278747559
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.624929189682
Time after:   3.6258549690247
Elapsed time: 0.00092577934265137
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.6265830993652
Time after:   3.6274931430817
Elapsed time: 0.00091004371643066
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.628093957901
Time after:   3.6290030479431
Elapsed time: 0.00090909004211426
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.6297311782837
Time after:   3.6305770874023
Elapsed time: 0.00084590911865234
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.6311721801758
Time after:   3.632091999054
Elapsed time: 0.00091981887817383
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.6328811645508
Time after:   3.6338391304016
Elapsed time: 0.00095796585083008
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.6344351768494
Time after:   3.6353480815887
Elapsed time: 0.00091290473937988
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.636116027832
Time after:   3.6369650363922
Elapsed time: 0.00084900856018066
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.6375441551208
Time after:   3.6384670734406
Elapsed time: 0.00092291831970215
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.6392211914062
Time after:   3.6401031017303
Elapsed time: 0.00088191032409668
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.6435961723328
Time after:   3.6451921463013
Elapsed time: 0.0015959739685059
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.6463861465454
Time after:   3.6480350494385
Elapsed time: 0.0016489028930664
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.6490731239319
Time after:   3.6506650447845
Elapsed time: 0.0015919208526611
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.6518971920013
Time after:   3.6532039642334
Elapsed time: 0.0013067722320557
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.6541640758514
Time after:   3.6557941436768
Elapsed time: 0.0016300678253174
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.6570150852203
Time after:   3.6583700180054
Elapsed time: 0.0013549327850342
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.6594591140747
Time after:   3.6611671447754
Elapsed time: 0.0017080307006836
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.6625339984894
Time after:   3.6639800071716
Elapsed time: 0.001446008682251
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.6650121212006
Time after:   3.66659116745
Elapsed time: 0.0015790462493896
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.6678249835968
Time after:   3.669242143631
Elapsed time: 0.0014171600341797
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.6702630519867
Time after:   3.671895980835
Elapsed time: 0.0016329288482666
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.6733419895172
Time after:   3.6748051643372
Elapsed time: 0.0014631748199463
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.6759510040283
Time after:   3.6775240898132
Elapsed time: 0.0015730857849121
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.6787760257721
Time after:   3.6800930500031
Elapsed time: 0.001317024230957
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.6811370849609
Time after:   3.6827931404114
Elapsed time: 0.0016560554504395
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.684061050415
Time after:   3.6854801177979
Elapsed time: 0.0014190673828125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.6865870952606
Time after:   3.6882450580597
Elapsed time: 0.0016579627990723
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.6895229816437
Time after:   3.6909370422363
Elapsed time: 0.0014140605926514
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.6924381256104
Time after:   3.6941230297089
Elapsed time: 0.0016849040985107
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.6959719657898
Time after:   3.6973631381989
Elapsed time: 0.0013911724090576
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.6984000205994
Time after:   3.7001841068268
Elapsed time: 0.001784086227417
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.7014441490173
Time after:   3.7032830715179
Elapsed time: 0.0018389225006104
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.7043931484222
Time after:   3.7059559822083
Elapsed time: 0.0015628337860107
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.7075231075287
Time after:   3.7092151641846
Elapsed time: 0.0016920566558838
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.7107861042023
Time after:   3.7124559879303
Elapsed time: 0.0016698837280273
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.7139151096344
Time after:   3.7153651714325
Elapsed time: 0.0014500617980957
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.7165541648865
Time after:   3.7182321548462
Elapsed time: 0.0016779899597168
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.7195701599121
Time after:   3.7215781211853
Elapsed time: 0.0020079612731934
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.7225821018219
Time after:   3.7241280078888
Elapsed time: 0.0015459060668945
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.7254979610443
Time after:   3.7269740104675
Elapsed time: 0.0014760494232178
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.728049993515
Time after:   3.7296321392059
Elapsed time: 0.001582145690918
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.7612199783325
Time after:   3.7627031803131
Elapsed time: 0.0014832019805908
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.763839006424
Time after:   3.7654070854187
Elapsed time: 0.001568078994751
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.7667181491852
Time after:   3.7681159973145
Elapsed time: 0.0013978481292725
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.7689700126648
Time after:   3.7704951763153
Elapsed time: 0.0015251636505127
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.7716591358185
Time after:   3.7729480266571
Elapsed time: 0.001288890838623
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.7740390300751
Time after:   3.7755320072174
Elapsed time: 0.001492977142334
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.7771120071411
Time after:   3.7784280776978
Elapsed time: 0.0013160705566406
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.7795350551605
Time after:   3.7810060977936
Elapsed time: 0.0014710426330566
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.7820811271667
Time after:   3.7833530902863
Elapsed time: 0.0012719631195068
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.7842171192169
Time after:   3.7856030464172
Elapsed time: 0.0013859272003174
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.7868361473083
Time after:   3.7878720760345
Elapsed time: 0.0010359287261963
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.788458108902
Time after:   3.7893509864807
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    147  Using where 


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

Time before:  3.7902140617371
Time after:   3.7910871505737
Elapsed time: 0.00087308883666992
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.7916550636292
Time after:   3.7925431728363
Elapsed time: 0.00088810920715332
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.7932879924774
Time after:   3.7941381931305
Elapsed time: 0.00085020065307617
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.7947001457214
Time after:   3.79558801651
Elapsed time: 0.00088787078857422
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.7965440750122
Time after:   3.797492980957
Elapsed time: 0.00094890594482422
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.7980811595917
Time after:   3.7989730834961
Elapsed time: 0.00089192390441895
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.7997040748596
Time after:   3.8007750511169
Elapsed time: 0.0010709762573242
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.8013570308685
Time after:   3.8023061752319
Elapsed time: 0.00094914436340332
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8030600547791
Time after:   3.8039181232452
Elapsed time: 0.00085806846618652
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.8045279979706
Time after:   3.8054671287537
Elapsed time: 0.00093913078308105
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8062560558319
Time after:   3.8071451187134
Elapsed time: 0.00088906288146973
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.8077549934387
Time after:   3.8086609840393
Elapsed time: 0.00090599060058594
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8094480037689
Time after:   3.8103151321411
Elapsed time: 0.00086712837219238
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.8109049797058
Time after:   3.8118290901184
Elapsed time: 0.00092411041259766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8125841617584
Time after:   3.8134410381317
Elapsed time: 0.00085687637329102
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.8140590190887
Time after:   3.8149600028992
Elapsed time: 0.0009009838104248
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8156950473785
Time after:   3.8165531158447
Elapsed time: 0.00085806846618652
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.8171610832214
Time after:   3.818088054657
Elapsed time: 0.00092697143554688
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8188459873199
Time after:   3.8196890354156
Elapsed time: 0.00084304809570312
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.8202741146088
Time after:   3.8211851119995
Elapsed time: 0.00091099739074707
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8220031261444
Time after:   3.8228681087494
Elapsed time: 0.00086498260498047
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.823450088501
Time after:   3.824392080307
Elapsed time: 0.00094199180603027
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8252511024475
Time after:   3.8261411190033
Elapsed time: 0.00089001655578613
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.826758146286
Time after:   3.8276841640472
Elapsed time: 0.00092601776123047
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8284840583801
Time after:   3.8293311595917
Elapsed time: 0.00084710121154785
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.8299171924591
Time after:   3.8308081626892
Elapsed time: 0.00089097023010254
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8315591812134
Time after:   3.8324129581451
Elapsed time: 0.0008537769317627
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.8330361843109
Time after:   3.8339500427246
Elapsed time: 0.00091385841369629
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8346841335297
Time after:   3.8356051445007
Elapsed time: 0.00092101097106934
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.8361899852753
Time after:   3.8371021747589
Elapsed time: 0.00091218948364258
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8379020690918
Time after:   3.8387591838837
Elapsed time: 0.00085711479187012
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.8393449783325
Time after:   3.840252161026
Elapsed time: 0.00090718269348145
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8411221504211
Time after:   3.8419811725616
Elapsed time: 0.00085902214050293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.8425471782684
Time after:   3.8434541225433
Elapsed time: 0.00090694427490234
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8442680835724
Time after:   3.8451550006866
Elapsed time: 0.00088691711425781
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.8457820415497
Time after:   3.8467040061951
Elapsed time: 0.00092196464538574
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8475151062012
Time after:   3.8483781814575
Elapsed time: 0.00086307525634766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.8489789962769
Time after:   3.8498721122742
Elapsed time: 0.00089311599731445
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.850604057312
Time after:   3.8514440059662
Elapsed time: 0.0008399486541748
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.8520829677582
Time after:   3.853080034256
Elapsed time: 0.00099706649780273
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8539071083069
Time after:   3.8547911643982
Elapsed time: 0.00088405609130859
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.8553969860077
Time after:   3.8563551902771
Elapsed time: 0.00095820426940918
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8571569919586
Time after:   3.8580150604248
Elapsed time: 0.00085806846618652
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.8585829734802
Time after:   3.8594980239868
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    147  Using where 


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

Time before:  3.8602540493011
Time after:   3.8610990047455
Elapsed time: 0.00084495544433594
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.8616609573364
Time after:   3.862585067749
Elapsed time: 0.00092411041259766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8633601665497
Time after:   3.8641881942749
Elapsed time: 0.00082802772521973
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.8647680282593
Time after:   3.8656451702118
Elapsed time: 0.00087714195251465
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8665030002594
Time after:   3.867427110672
Elapsed time: 0.00092411041259766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.8681139945984
Time after:   3.8690400123596
Elapsed time: 0.00092601776123047
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8698010444641
Time after:   3.8706350326538
Elapsed time: 0.00083398818969727
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.8712179660797
Time after:   3.8720970153809
Elapsed time: 0.00087904930114746
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8731830120087
Time after:   3.8741970062256
Elapsed time: 0.0010139942169189
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.875470161438
Time after:   3.8763961791992
Elapsed time: 0.00092601776123047
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8772189617157
Time after:   3.8780691623688
Elapsed time: 0.00085020065307617
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.8786420822144
Time after:   3.8795921802521
Elapsed time: 0.00095009803771973
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8803770542145
Time after:   3.8812341690063
Elapsed time: 0.00085711479187012
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.8818430900574
Time after:   3.8828029632568
Elapsed time: 0.00095987319946289
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8838760852814
Time after:   3.8848700523376
Elapsed time: 0.00099396705627441
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.8863081932068
Time after:   3.8874340057373
Elapsed time: 0.0011258125305176
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8882360458374
Time after:   3.8891160488129
Elapsed time: 0.00088000297546387
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.8897740840912
Time after:   3.890762090683
Elapsed time: 0.00098800659179688
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8921980857849
Time after:   3.8931879997253
Elapsed time: 0.00098991394042969
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8938500881195
Time after:   3.8947811126709
Elapsed time: 0.0009310245513916
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8954410552979
Time after:   3.8963460922241
Elapsed time: 0.00090503692626953
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.8972780704498
Time after:   3.8982040882111
Elapsed time: 0.00092601776123047
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.8988380432129
Time after:   3.8997311592102
Elapsed time: 0.00089311599731445
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.9005560874939
Time after:   3.9015531539917
Elapsed time: 0.00099706649780273
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.9021511077881
Time after:   3.9030501842499
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    147  Using where 


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

Time before:  3.9038121700287
Time after:   3.9046850204468
Elapsed time: 0.00087285041809082
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.9053001403809
Time after:   3.9062120914459
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    147  Using where 


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

Time before:  3.9069941043854
Time after:   3.9078340530396
Elapsed time: 0.0008399486541748
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.908408164978
Time after:   3.9093050956726
Elapsed time: 0.00089693069458008
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.9101929664612
Time after:   3.9110851287842
Elapsed time: 0.00089216232299805
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.9116730690002
Time after:   3.9126210212708
Elapsed time: 0.00094795227050781
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.913526058197
Time after:   3.9144241809845
Elapsed time: 0.00089812278747559
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.9150421619415
Time after:   3.9159781932831
Elapsed time: 0.00093603134155273
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.9167461395264
Time after:   3.9176230430603
Elapsed time: 0.00087690353393555
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.9183411598206
Time after:   3.9193291664124
Elapsed time: 0.00098800659179688
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.9201281070709
Time after:   3.9209761619568
Elapsed time: 0.00084805488586426
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.9215431213379
Time after:   3.9224450588226
Elapsed time: 0.00090193748474121
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.9232370853424
Time after:   3.924134016037
Elapsed time: 0.00089693069458008
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.9247250556946
Time after:   3.9256570339203
Elapsed time: 0.00093197822570801
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.9264709949493
Time after:   3.9273281097412
Elapsed time: 0.00085711479187012
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.9279410839081
Time after:   3.9288520812988
Elapsed time: 0.00091099739074707
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.9296660423279
Time after:   3.9305510520935
Elapsed time: 0.000885009765625
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.9311580657959
Time after:   3.9320771694183
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    147  Using where 


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

Time before:  3.9327960014343
Time after:   3.9337019920349
Elapsed time: 0.00090599060058594
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.9343690872192
Time after:   3.9352841377258
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    147  Using where 


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

Time before:  3.9360640048981
Time after:   3.9369270801544
Elapsed time: 0.00086307525634766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.9375810623169
Time after:   3.9385449886322
Elapsed time: 0.00096392631530762
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.9392561912537
Time after:   3.9401910305023
Elapsed time: 0.00093483924865723
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.940840959549
Time after:   3.9417569637299
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    147  Using where 


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

Time before:  3.9425330162048
Time after:   3.9434030056
Elapsed time: 0.0008699893951416
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.9440031051636
Time after:   3.9449210166931
Elapsed time: 0.00091791152954102
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.9457211494446
Time after:   3.9466149806976
Elapsed time: 0.00089383125305176
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.9472141265869
Time after:   3.9481701850891
Elapsed time: 0.00095605850219727
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.9490630626678
Time after:   3.9499349594116
Elapsed time: 0.00087189674377441
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.9505131244659
Time after:   3.9514219760895
Elapsed time: 0.00090885162353516
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.9522981643677
Time after:   3.9531621932983
Elapsed time: 0.00086402893066406
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.9537451267242
Time after:   3.9546749591827
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    147  Using where 


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

Time before:  3.9554781913757
Time after:   3.9563190937042
Elapsed time: 0.00084090232849121
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.9569180011749
Time after:   3.9578130245209
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    147  Using where 


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

Time before:  3.9586250782013
Time after:   3.9594690799713
Elapsed time: 0.00084400177001953
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.9600510597229
Time after:   3.9609231948853
Elapsed time: 0.00087213516235352
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.9616911411285
Time after:   3.962541103363
Elapsed time: 0.00084996223449707
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.9631221294403
Time after:   3.9640181064606
Elapsed time: 0.00089597702026367
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.9647901058197
Time after:   3.9656541347504
Elapsed time: 0.00086402893066406
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.966245174408
Time after:   3.9671161174774
Elapsed time: 0.00087094306945801
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.9679050445557
Time after:   3.9687271118164
Elapsed time: 0.00082206726074219
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.9693281650543
Time after:   3.9702689647675
Elapsed time: 0.00094079971313477
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.9711871147156
Time after:   3.9721629619598
Elapsed time: 0.0009758472442627
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.9728481769562
Time after:   3.973904132843
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    147  Using where 


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

Time before:  3.9746870994568
Time after:   3.9755589962006
Elapsed time: 0.00087189674377441
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.9761350154877
Time after:   3.9770469665527
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    147  Using where 


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

Time before:  3.977823972702
Time after:   3.9786691665649
Elapsed time: 0.00084519386291504
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.9792740345001
Time after:   3.9802620410919
Elapsed time: 0.00098800659179688
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.9810621738434
Time after:   3.981968164444
Elapsed time: 0.00090599060058594
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.982568025589
Time after:   3.9834780693054
Elapsed time: 0.00091004371643066
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.984167098999
Time after:   3.9851109981537
Elapsed time: 0.00094389915466309
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.9857840538025
Time after:   3.9867470264435
Elapsed time: 0.00096297264099121
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.9875221252441
Time after:   3.9883840084076
Elapsed time: 0.00086188316345215
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.9890260696411
Time after:   3.9899251461029
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    147  Using where 


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

Time before:  3.9908001422882
Time after:   3.9917271137238
Elapsed time: 0.00092697143554688
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.9924070835114
Time after:   3.9933631420135
Elapsed time: 0.00095605850219727
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.9941899776459
Time after:   3.9951281547546
Elapsed time: 0.00093817710876465
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  3.995777130127
Time after:   3.9968440532684
Elapsed time: 0.0010669231414795
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.9975390434265
Time after:   3.9984230995178
Elapsed time: 0.00088405609130859
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  3.9990861415863
Time after:   3.9999871253967
Elapsed time: 0.0009009838104248
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.0011630058289
Time after:   4.0021200180054
Elapsed time: 0.00095701217651367
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:vom:%' AND post_id > 35724

Time before:  4.0032341480255
Time after:   4.0041711330414
Elapsed time: 0.00093698501586914
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.0049970149994
Time after:   4.0059380531311
Elapsed time: 0.00094103813171387
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:goodman:%' AND post_id > 35724

Time before:  4.0065760612488
Time after:   4.0075430870056
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    147  Using where 


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

Time before:  4.008453130722
Time after:   4.0093870162964
Elapsed time: 0.00093388557434082
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pale:%' AND post_id > 35724

Time before:  4.0100610256195
Time after:   4.0110430717468
Elapsed time: 0.00098204612731934
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.011833190918
Time after:   4.0126659870148
Elapsed time: 0.00083279609680176
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:fball:%' AND post_id > 35724

Time before:  4.0132641792297
Time after:   4.0143451690674
Elapsed time: 0.0010809898376465
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.0155470371246
Time after:   4.0164370536804
Elapsed time: 0.00089001655578613
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:partyman:%' AND post_id > 35724

Time before:  4.0170919895172
Time after:   4.0180439949036
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    147  Using where 


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

Time before:  4.0188920497894
Time after:   4.0198030471802
Elapsed time: 0.00091099739074707
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pirate:%' AND post_id > 35724

Time before:  4.0204730033875
Time after:   4.0214340686798
Elapsed time: 0.0009610652923584
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.0222771167755
Time after:   4.0231401920319
Elapsed time: 0.00086307525634766
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:prayer:%' AND post_id > 35724

Time before:  4.0237140655518
Time after:   4.0246460437775
Elapsed time: 0.00093197822570801
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.0255019664764
Time after:   4.0263760089874
Elapsed time: 0.00087404251098633
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:profileleft:%' AND post_id > 35724

Time before:  4.0276341438293
Time after:   4.0286240577698
Elapsed time: 0.00098991394042969
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.0294539928436
Time after:   4.030424118042
Elapsed time: 0.00097012519836426
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:profileright:%' AND post_id > 35724

Time before:  4.0311501026154
Time after:   4.0320470333099
Elapsed time: 0.00089693069458008
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.032888174057
Time after:   4.0337841510773
Elapsed time: 0.00089597702026367
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pukeleft:%' AND post_id > 35724

Time before:  4.0343811511993
Time after:   4.0352761745453
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    147  Using where 


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

Time before:  4.0360980033875
Time after:   4.0369679927826
Elapsed time: 0.0008699893951416
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pukeright:%' AND post_id > 35724

Time before:  4.0375571250916
Time after:   4.0384571552277
Elapsed time: 0.0009000301361084
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.0392689704895
Time after:   4.0401360988617
Elapsed time: 0.00086712837219238
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:queen:%' AND post_id > 35724

Time before:  4.0407900810242
Time after:   4.041736125946
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    147  Using where 


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

Time before:  4.0425460338593
Time after:   4.0434200763702
Elapsed time: 0.00087404251098633
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  4.0440380573273
Time after:   4.0449540615082
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    147  Using where 


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

Time before:  4.0457479953766
Time after:   4.0466210842133
Elapsed time: 0.00087308883666992
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:rabbit:%' AND post_id > 35724

Time before:  4.0472130775452
Time after:   4.048141002655
Elapsed time: 0.00092792510986328
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.0490021705627
Time after:   4.0498759746552
Elapsed time: 0.00087380409240723
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:P%' AND post_id > 35724

Time before:  4.0504770278931
Time after:   4.0513820648193
Elapsed time: 0.00090503692626953
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:-P%' AND post_id > 35724

Time before:  4.0520830154419
Time after:   4.0529961585999
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    147  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:razz:%' AND post_id > 35724

Time before:  4.0536561012268
Time after:   4.0545699596405
Elapsed time: 0.00091385841369629
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.055379152298
Time after:   4.0563111305237
Elapsed time: 0.00093197822570801
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:oops:%' AND post_id > 35724

Time before:  4.0569450855255
Time after:   4.0579390525818
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    147  Using where 


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

Time before:  4.05890417099
Time after:   4.0599381923676
Elapsed time: 0.0010340213775635
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:reindeer:%' AND post_id > 35724

Time before:  4.0606729984283
Time after:   4.0616271495819
Elapsed time: 0.00095415115356445
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.062422990799
Time after:   4.0633351802826
Elapsed time: 0.00091218948364258
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:roll:%' AND post_id > 35724

Time before:  4.0639700889587
Time after:   4.0649750232697
Elapsed time: 0.0010049343109131
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.0658280849457
Time after:   4.0667510032654
Elapsed time: 0.00092291831970215
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:rr:%' AND post_id > 35724

Time before:  4.0673429965973
Time after:   4.0683240890503
Elapsed time: 0.00098109245300293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.0691311359406
Time after:   4.07000207901
Elapsed time: 0.00087094306945801
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:(%' AND post_id > 35724

Time before:  4.0706191062927
Time after:   4.0716409683228
Elapsed time: 0.0010218620300293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:-(%' AND post_id > 35724

Time before:  4.0723080635071
Time after:   4.0732569694519
Elapsed time: 0.00094890594482422
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad:%' AND post_id > 35724

Time before:  4.0739631652832
Time after:   4.0749089717865
Elapsed time: 0.0009458065032959
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.0757319927216
Time after:   4.0765781402588
Elapsed time: 0.00084614753723145
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:salute:%' AND post_id > 35724

Time before:  4.0772161483765
Time after:   4.0781321525574
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    147  Using where 


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

Time before:  4.0789749622345
Time after:   4.0798320770264
Elapsed time: 0.00085711479187012
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:santa:%' AND post_id > 35724

Time before:  4.0804591178894
Time after:   4.0814161300659
Elapsed time: 0.00095701217651367
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.0822720527649
Time after:   4.0831191539764
Elapsed time: 0.00084710121154785
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:scratch:%' AND post_id > 35724

Time before:  4.0837080478668
Time after:   4.0847120285034
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    147  Using where 


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

Time before:  4.0856101512909
Time after:   4.0864930152893
Elapsed time: 0.00088286399841309
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:shaking:%' AND post_id > 35724

Time before:  4.0871169567108
Time after:   4.0880360603333
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    147  Using where 


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

Time before:  4.0888249874115
Time after:   4.0897970199585
Elapsed time: 0.00097203254699707
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:shaking2:%' AND post_id > 35724

Time before:  4.0907130241394
Time after:   4.0922071933746
Elapsed time: 0.0014941692352295
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.0933971405029
Time after:   4.0946340560913
Elapsed time: 0.0012369155883789
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:silent:%' AND post_id > 35724

Time before:  4.095477104187
Time after:   4.0970900058746
Elapsed time: 0.0016129016876221
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.0984840393066
Time after:   4.0999040603638
Elapsed time: 0.0014200210571289
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  4.1009690761566
Time after:   4.1025040149689
Elapsed time: 0.0015349388122559
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.1038019657135
Time after:   4.1053071022034
Elapsed time: 0.0015051364898682
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:smile:%' AND post_id > 35724

Time before:  4.1063380241394
Time after:   4.1078369617462
Elapsed time: 0.0014989376068115
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:icon_smile:%' AND post_id > 35724

Time before:  4.1088869571686
Time after:   4.110454082489
Elapsed time: 0.0015671253204346
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.111829996109
Time after:   4.1132709980011
Elapsed time: 0.0014410018920898
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:spiderman:%' AND post_id > 35724

Time before:  4.1143290996552
Time after:   4.1157841682434
Elapsed time: 0.0014550685882568
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.1170310974121
Time after:   4.1183669567108
Elapsed time: 0.0013358592987061
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:study:%' AND post_id > 35724

Time before:  4.1194331645966
Time after:   4.1209189891815
Elapsed time: 0.0014858245849609
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.1221790313721
Time after:   4.1235110759735
Elapsed time: 0.0013320446014404
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sunny:%' AND post_id > 35724

Time before:  4.1244761943817
Time after:   4.1260039806366
Elapsed time: 0.0015277862548828
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.1273300647736
Time after:   4.1286861896515
Elapsed time: 0.0013561248779297
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:supz:%' AND post_id > 35724

Time before:  4.129634141922
Time after:   4.1310851573944
Elapsed time: 0.0014510154724121
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.1324400901794
Time after:   4.1338341236115
Elapsed time: 0.0013940334320068
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


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

Time before:  4.1348221302032
Time after:   4.1362750530243
Elapsed time: 0.0014529228210449
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.137598991394
Time after:   4.1389241218567
Elapsed time: 0.0013251304626465
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:heart:%' AND post_id > 35724

Time before:  4.1398279666901
Time after:   4.1412711143494
Elapsed time: 0.0014431476593018
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.1424469947815
Time after:   4.1437680721283
Elapsed time: 0.0013210773468018
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:thumbright:%' AND post_id > 35724

Time before:  4.1448440551758
Time after:   4.146290063858
Elapsed time: 0.001446008682251
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.1476621627808
Time after:   4.1489419937134
Elapsed time: 0.0012798309326172
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:thumbleft:%' AND post_id > 35724

Time before:  4.1501071453094
Time after:   4.1515531539917
Elapsed time: 0.001446008682251
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.1527721881866
Time after:   4.1541361808777
Elapsed time: 0.00136399269104
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toimonster:%' AND post_id > 35724

Time before:  4.1551260948181
Time after:   4.1566960811615
Elapsed time: 0.0015699863433838
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.1579730510712
Time after:   4.1592819690704
Elapsed time: 0.0013089179992676
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue:%' AND post_id > 35724

Time before:  4.1602280139923
Time after:   4.1616821289062
Elapsed time: 0.0014541149139404
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.1630351543427
Time after:   4.1643710136414
Elapsed time: 0.0013358592987061
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:twisted:%' AND post_id > 35724

Time before:  4.1653480529785
Time after:   4.1669220924377
Elapsed time: 0.0015740394592285
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.1682431697845
Time after:   4.1696000099182
Elapsed time: 0.001356840133667
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:weedman:%' AND post_id > 35724

Time before:  4.1705570220947
Time after:   4.17209815979
Elapsed time: 0.0015411376953125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.1733701229095
Time after:   4.1748039722443
Elapsed time: 0.0014338493347168
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:wink:%' AND post_id > 35724

Time before:  4.1758019924164
Time after:   4.1773409843445
Elapsed time: 0.0015389919281006
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%;)%' AND post_id > 35724

Time before:  4.1783890724182
Time after:   4.1798679828644
Elapsed time: 0.001478910446167
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.1809771060944
Time after:   4.1827571392059
Elapsed time: 0.0017800331115723
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.1842360496521
Time after:   4.1856510639191
Elapsed time: 0.0014150142669678
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:yawinkle:%' AND post_id > 35724

Time before:  4.1866710186005
Time after:   4.1881990432739
Elapsed time: 0.0015280246734619
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.1894869804382
Time after:   4.1908860206604
Elapsed time: 0.001399040222168
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:idea1:%' AND post_id > 35724

Time before:  4.1918530464172
Time after:   4.193489074707
Elapsed time: 0.0016360282897949
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.1947801113129
Time after:   4.1961030960083
Elapsed time: 0.0013229846954346
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:iroc:%' AND post_id > 35724

Time before:  4.1970400810242
Time after:   4.1984920501709
Elapsed time: 0.0014519691467285
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.1997640132904
Time after:   4.2011711597443
Elapsed time: 0.0014071464538574
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:jerk:%' AND post_id > 35724

Time before:  4.2021341323853
Time after:   4.2036821842194
Elapsed time: 0.0015480518341064
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.2051479816437
Time after:   4.2065641880035
Elapsed time: 0.0014162063598633
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:kermit:%' AND post_id > 35724

Time before:  4.2075440883636
Time after:   4.209419965744
Elapsed time: 0.0018758773803711
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.2107610702515
Time after:   4.2121610641479
Elapsed time: 0.0013999938964844
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:knob:%' AND post_id > 35724

Time before:  4.2131559848785
Time after:   4.214751958847
Elapsed time: 0.0015959739685059
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.2164859771729
Time after:   4.2179901599884
Elapsed time: 0.0015041828155518
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:ky:%' AND post_id > 35724

Time before:  4.2191970348358
Time after:   4.22079205513
Elapsed time: 0.0015950202941895
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.2220630645752
Time after:   4.2234401702881
Elapsed time: 0.0013771057128906
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:la:%' AND post_id > 35724

Time before:  4.2243809700012
Time after:   4.2259609699249
Elapsed time: 0.0015799999237061
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.227245092392
Time after:   4.2287051677704
Elapsed time: 0.001460075378418
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing1:%' AND post_id > 35724

Time before:  4.2296631336212
Time after:   4.2311410903931
Elapsed time: 0.0014779567718506
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.2323741912842
Time after:   4.2338089942932
Elapsed time: 0.0014348030090332
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing9:%' AND post_id > 35724

Time before:  4.2348191738129
Time after:   4.236319065094
Elapsed time: 0.0014998912811279
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.2375531196594
Time after:   4.2389221191406
Elapsed time: 0.0013689994812012
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing2:%' AND post_id > 35724

Time before:  4.2399260997772
Time after:   4.2413761615753
Elapsed time: 0.0014500617980957
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.2428460121155
Time after:   4.2442631721497
Elapsed time: 0.0014171600341797
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing3:%' AND post_id > 35724

Time before:  4.2452580928802
Time after:   4.246719121933
Elapsed time: 0.0014610290527344
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.2482931613922
Time after:   4.2496430873871
Elapsed time: 0.001349925994873
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing4:%' AND post_id > 35724

Time before:  4.2505941390991
Time after:   4.2520971298218
Elapsed time: 0.0015029907226562
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.2533831596375
Time after:   4.2547581195831
Elapsed time: 0.0013749599456787
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing5:%' AND post_id > 35724

Time before:  4.2557780742645
Time after:   4.2572460174561
Elapsed time: 0.0014679431915283
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.2586641311646
Time after:   4.2600281238556
Elapsed time: 0.00136399269104
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing6:%' AND post_id > 35724

Time before:  4.2610731124878
Time after:   4.2626280784607
Elapsed time: 0.0015549659729004
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.264034986496
Time after:   4.2654249668121
Elapsed time: 0.0013899803161621
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing7:%' AND post_id > 35724

Time before:  4.2666001319885
Time after:   4.2681319713593
Elapsed time: 0.0015318393707275
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.2695410251617
Time after:   4.2709109783173
Elapsed time: 0.0013699531555176
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:laughing8:%' AND post_id > 35724

Time before:  4.272068977356
Time after:   4.2737910747528
Elapsed time: 0.0017220973968506
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.2753140926361
Time after:   4.2769100666046
Elapsed time: 0.0015959739685059
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love1:%' AND post_id > 35724

Time before:  4.2781109809875
Time after:   4.2796120643616
Elapsed time: 0.0015010833740234
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.2809691429138
Time after:   4.2823150157928
Elapsed time: 0.0013458728790283
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love10:%' AND post_id > 35724

Time before:  4.2835171222687
Time after:   4.2850410938263
Elapsed time: 0.0015239715576172
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.2864210605621
Time after:   4.2877790927887
Elapsed time: 0.0013580322265625
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love2:%' AND post_id > 35724

Time before:  4.2887279987335
Time after:   4.2902381420135
Elapsed time: 0.0015101432800293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.2915799617767
Time after:   4.2930541038513
Elapsed time: 0.001474142074585
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love3:%' AND post_id > 35724

Time before:  4.2940561771393
Time after:   4.2957711219788
Elapsed time: 0.0017149448394775
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.2972571849823
Time after:   4.2986741065979
Elapsed time: 0.0014169216156006
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love4:%' AND post_id > 35724

Time before:  4.2996621131897
Time after:   4.301167011261
Elapsed time: 0.0015048980712891
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.3025319576263
Time after:   4.3039221763611
Elapsed time: 0.0013902187347412
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love5:%' AND post_id > 35724

Time before:  4.3049960136414
Time after:   4.3065481185913
Elapsed time: 0.0015521049499512
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.3078780174255
Time after:   4.3094000816345
Elapsed time: 0.0015220642089844
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love6:%' AND post_id > 35724

Time before:  4.3104159832001
Time after:   4.3119080066681
Elapsed time: 0.0014920234680176
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.3133201599121
Time after:   4.3146481513977
Elapsed time: 0.0013279914855957
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love7:%' AND post_id > 35724

Time before:  4.315731048584
Time after:   4.3172771930695
Elapsed time: 0.0015461444854736
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.3188560009003
Time after:   4.3204281330109
Elapsed time: 0.0015721321105957
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love8:%' AND post_id > 35724

Time before:  4.3215310573578
Time after:   4.3239841461182
Elapsed time: 0.002453088760376
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.3262951374054
Time after:   4.3284380435944
Elapsed time: 0.0021429061889648
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:love9:%' AND post_id > 35724

Time before:  4.3299031257629
Time after:   4.3315260410309
Elapsed time: 0.0016229152679443
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.3332130908966
Time after:   4.3345801830292
Elapsed time: 0.0013670921325684
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:lovestory:%' AND post_id > 35724

Time before:  4.335657119751
Time after:   4.3372831344604
Elapsed time: 0.0016260147094727
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.33851313591
Time after:   4.3398940563202
Elapsed time: 0.0013809204101562
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:lurk:%' AND post_id > 35724

Time before:  4.3409330844879
Time after:   4.3424341678619
Elapsed time: 0.0015010833740234
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.3438200950623
Time after:   4.3480269908905
Elapsed time: 0.0042068958282471
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:male:%' AND post_id > 35724

Time before:  4.3490180969238
Time after:   4.3507630825043
Elapsed time: 0.0017449855804443
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.3521690368652
Time after:   4.353532075882
Elapsed time: 0.0013630390167236
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:blah5:%' AND post_id > 35724

Time before:  4.3544991016388
Time after:   4.3559889793396
Elapsed time: 0.0014898777008057
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.3573260307312
Time after:   4.3586611747742
Elapsed time: 0.0013351440429688
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:error:%' AND post_id > 35724

Time before:  4.359649181366
Time after:   4.3611080646515
Elapsed time: 0.0014588832855225
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.3624939918518
Time after:   4.3639061450958
Elapsed time: 0.0014121532440186
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:mumum:%' AND post_id > 35724

Time before:  4.3648521900177
Time after:   4.3663079738617
Elapsed time: 0.0014557838439941
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.3677279949188
Time after:   4.369115114212
Elapsed time: 0.0013871192932129
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:munky2:%' AND post_id > 35724

Time before:  4.3701350688934
Time after:   4.3716180324554
Elapsed time: 0.0014829635620117
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.3729381561279
Time after:   4.3743031024933
Elapsed time: 0.0013649463653564
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:naka:%' AND post_id > 35724

Time before:  4.375256061554
Time after:   4.3767170906067
Elapsed time: 0.0014610290527344
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.3782291412354
Time after:   4.3795931339264
Elapsed time: 0.00136399269104
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:newb:%' AND post_id > 35724

Time before:  4.3807771205902
Time after:   4.3823020458221
Elapsed time: 0.0015249252319336
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.3837080001831
Time after:   4.3849811553955
Elapsed time: 0.0012731552124023
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:nike:%' AND post_id > 35724

Time before:  4.386027097702
Time after:   4.3877351284027
Elapsed time: 0.0017080307006836
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.3890490531921
Time after:   4.3902871608734
Elapsed time: 0.0012381076812744
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:notworthy:%' AND post_id > 35724

Time before:  4.3912580013275
Time after:   4.3927600383759
Elapsed time: 0.0015020370483398
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.3941440582275
Time after:   4.3953750133514
Elapsed time: 0.0012309551239014
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion1:%' AND post_id > 35724

Time before:  4.3963229656219
Time after:   4.3978140354156
Elapsed time: 0.0014910697937012
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.3992471694946
Time after:   4.4004771709442
Elapsed time: 0.001230001449585
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion4:%' AND post_id > 35724

Time before:  4.401515007019
Time after:   4.4029941558838
Elapsed time: 0.0014791488647461
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.4043951034546
Time after:   4.405650138855
Elapsed time: 0.0012550354003906
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion5:%' AND post_id > 35724

Time before:  4.4066321849823
Time after:   4.4082541465759
Elapsed time: 0.0016219615936279
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.409646987915
Time after:   4.4109120368958
Elapsed time: 0.0012650489807129
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion6:%' AND post_id > 35724

Time before:  4.4118871688843
Time after:   4.4133369922638
Elapsed time: 0.0014498233795166
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.4147121906281
Time after:   4.4160490036011
Elapsed time: 0.0013368129730225
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion7:%' AND post_id > 35724

Time before:  4.4171741008759
Time after:   4.4187550544739
Elapsed time: 0.0015809535980225
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.4202570915222
Time after:   4.4215769767761
Elapsed time: 0.0013198852539062
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion8:%' AND post_id > 35724

Time before:  4.4227919578552
Time after:   4.4244720935822
Elapsed time: 0.0016801357269287
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.4260940551758
Time after:   4.4275150299072
Elapsed time: 0.0014209747314453
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion9:%' AND post_id > 35724

Time before:  4.4285740852356
Time after:   4.4300689697266
Elapsed time: 0.0014948844909668
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.4314000606537
Time after:   4.4328429698944
Elapsed time: 0.0014429092407227
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:occasion2:%' AND post_id > 35724

Time before:  4.4338660240173
Time after:   4.4353229999542
Elapsed time: 0.0014569759368896
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.4365949630737
Time after:   4.4379360675812
Elapsed time: 0.0013411045074463
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pain10:%' AND post_id > 35724

Time before:  4.4389619827271
Time after:   4.4405751228333
Elapsed time: 0.0016131401062012
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.4419820308685
Time after:   4.443382024765
Elapsed time: 0.0013999938964844
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pottytrain1:%' AND post_id > 35724

Time before:  4.444461107254
Time after:   4.4460110664368
Elapsed time: 0.0015499591827393
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.4473881721497
Time after:   4.4488430023193
Elapsed time: 0.0014548301696777
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pottytrain2:%' AND post_id > 35724

Time before:  4.449844121933
Time after:   4.4516401290894
Elapsed time: 0.0017960071563721
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.4531931877136
Time after:   4.4545049667358
Elapsed time: 0.0013117790222168
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pottytrain3:%' AND post_id > 35724

Time before:  4.4554741382599
Time after:   4.4569301605225
Elapsed time: 0.0014560222625732
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.4584541320801
Time after:   4.4598920345306
Elapsed time: 0.0014379024505615
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pottytrain4:%' AND post_id > 35724

Time before:  4.4674730300903
Time after:   4.4690489768982
Elapsed time: 0.0015759468078613
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.4704670906067
Time after:   4.4718041419983
Elapsed time: 0.0013370513916016
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:pottytrain5:%' AND post_id > 35724

Time before:  4.4729990959167
Time after:   4.4744679927826
Elapsed time: 0.0014688968658447
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.4759430885315
Time after:   4.4773001670837
Elapsed time: 0.0013570785522461
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:protest:%' AND post_id > 35724

Time before:  4.4783020019531
Time after:   4.4799661636353
Elapsed time: 0.0016641616821289
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.4813780784607
Time after:   4.4828760623932
Elapsed time: 0.0014979839324951
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:puke:%' AND post_id > 35724

Time before:  4.4839141368866
Time after:   4.4854550361633
Elapsed time: 0.0015408992767334
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.4868280887604
Time after:   4.4881620407104
Elapsed time: 0.0013339519500732
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:read:%' AND post_id > 35724

Time before:  4.4891591072083
Time after:   4.4906740188599
Elapsed time: 0.0015149116516113
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.4920630455017
Time after:   4.4933910369873
Elapsed time: 0.0013279914855957
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:read2:%' AND post_id > 35724

Time before:  4.4944570064545
Time after:   4.496101140976
Elapsed time: 0.0016441345214844
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 's-bluecap.gif'

Time before:  4.4985589981079
Time after:   4.4999551773071
Elapsed time: 0.0013961791992188
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:ctf2:%' AND post_id > 35724

Time before:  4.5009071826935
Time after:   4.5023460388184
Elapsed time: 0.0014388561248779
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 's-chainsaw.gif'

Time before:  4.5036141872406
Time after:   4.504949092865
Elapsed time: 0.0013349056243896
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:chain:%' AND post_id > 35724

Time before:  4.5059180259705
Time after:   4.5075299739838
Elapsed time: 0.0016119480133057
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 's-ctf.gif'

Time before:  4.5091731548309
Time after:   4.5112850666046
Elapsed time: 0.0021119117736816
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:ctf:%' AND post_id > 35724

Time before:  4.513473033905
Time after:   4.5151011943817
Elapsed time: 0.0016281604766846
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 's-instagib.gif'

Time before:  4.5165121555328
Time after:   4.5179390907288
Elapsed time: 0.0014269351959229
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:gib:%' AND post_id > 35724

Time before:  4.5189321041107
Time after:   4.5204870700836
Elapsed time: 0.0015549659729004
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 's-minigun.gif'

Time before:  4.521821975708
Time after:   4.5232050418854
Elapsed time: 0.0013830661773682
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:minigun:%' AND post_id > 35724

Time before:  4.5242521762848
Time after:   4.5256950855255
Elapsed time: 0.0014429092407227
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 's-shock.gif'

Time before:  4.5270450115204
Time after:   4.5286371707916
Elapsed time: 0.0015921592712402
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:shock:%' AND post_id > 35724

Time before:  4.5296881198883
Time after:   4.5312631130219
Elapsed time: 0.0015749931335449
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


Query:	SELECT *
	FROM phpbb_smilies
	WHERE smile_url = 's-telefrag.gif'

Time before:  4.5327661037445
Time after:   4.5341291427612
Elapsed time: 0.0013630390167236
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tfrag:%' AND post_id > 35724

Time before:  4.5351691246033
Time after:   4.5367150306702
Elapsed time: 0.0015459060668945
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.5380220413208
Time after:   4.5393919944763
Elapsed time: 0.0013699531555176
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad1:%' AND post_id > 35724

Time before:  4.5403430461884
Time after:   4.5419070720673
Elapsed time: 0.0015640258789062
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.5458500385284
Time after:   4.5472900867462
Elapsed time: 0.0014400482177734
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad10:%' AND post_id > 35724

Time before:  4.5699169635773
Time after:   4.5714249610901
Elapsed time: 0.0015079975128174
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.5728561878204
Time after:   4.5742571353912
Elapsed time: 0.0014009475708008
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad11:%' AND post_id > 35724

Time before:  4.5755181312561
Time after:   4.5772950649261
Elapsed time: 0.0017769336700439
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.5788650512695
Time after:   4.5803310871124
Elapsed time: 0.0014660358428955
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad2:%' AND post_id > 35724

Time before:  4.5815920829773
Time after:   4.5833501815796
Elapsed time: 0.0017580986022949
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.585214138031
Time after:   4.5866601467133
Elapsed time: 0.001446008682251
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad3:%' AND post_id > 35724

Time before:  4.5881459712982
Time after:   4.5896801948547
Elapsed time: 0.0015342235565186
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.5913369655609
Time after:   4.5926861763
Elapsed time: 0.0013492107391357
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad4:%' AND post_id > 35724

Time before:  4.6160941123962
Time after:   4.6175680160522
Elapsed time: 0.0014739036560059
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.6204831600189
Time after:   4.6217391490936
Elapsed time: 0.001255989074707
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad5:%' AND post_id > 35724

Time before:  4.6348359584808
Time after:   4.6362950801849
Elapsed time: 0.0014591217041016
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.6375560760498
Time after:   4.6389420032501
Elapsed time: 0.0013859272003174
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad6:%' AND post_id > 35724

Time before:  4.6398301124573
Time after:   4.6412310600281
Elapsed time: 0.0014009475708008
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.642480134964
Time after:   4.6437840461731
Elapsed time: 0.0013039112091064
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad7:%' AND post_id > 35724

Time before:  4.6447660923004
Time after:   4.6462230682373
Elapsed time: 0.0014569759368896
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.6477501392365
Time after:   4.6490969657898
Elapsed time: 0.0013468265533447
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad8:%' AND post_id > 35724

Time before:  4.6500511169434
Time after:   4.6514799594879
Elapsed time: 0.0014288425445557
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.6527271270752
Time after:   4.6539709568024
Elapsed time: 0.0012438297271729
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sad9:%' AND post_id > 35724

Time before:  4.6548361778259
Time after:   4.6562430858612
Elapsed time: 0.0014069080352783
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.6578869819641
Time after:   4.6641690731049
Elapsed time: 0.0062820911407471
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sex:%' AND post_id > 35724

Time before:  4.6650831699371
Time after:   4.6665160655975
Elapsed time: 0.0014328956604004
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.6678431034088
Time after:   4.6692950725555
Elapsed time: 0.0014519691467285
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign5:%' AND post_id > 35724

Time before:  4.6704051494598
Time after:   4.6723201274872
Elapsed time: 0.0019149780273438
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.6739120483398
Time after:   4.6755211353302
Elapsed time: 0.0016090869903564
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign6:%' AND post_id > 35724

Time before:  4.6766979694366
Time after:   4.6784071922302
Elapsed time: 0.0017092227935791
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.6799261569977
Time after:   4.683981180191
Elapsed time: 0.0040550231933594
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign7:%' AND post_id > 35724

Time before:  4.6849989891052
Time after:   4.6866021156311
Elapsed time: 0.0016031265258789
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.6880421638489
Time after:   4.7162420749664
Elapsed time: 0.028199911117554
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign8:%' AND post_id > 35724

Time before:  4.7171370983124
Time after:   4.7187371253967
Elapsed time: 0.0016000270843506
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.7250239849091
Time after:   4.7263469696045
Elapsed time: 0.0013229846954346
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign9:%' AND post_id > 35724

Time before:  4.7277221679688
Time after:   4.7355990409851
Elapsed time: 0.0078768730163574
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.7369031906128
Time after:   4.7382831573486
Elapsed time: 0.0013799667358398
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign10:%' AND post_id > 35724

Time before:  4.7393469810486
Time after:   4.7409210205078
Elapsed time: 0.0015740394592285
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.7423181533813
Time after:   4.7437109947205
Elapsed time: 0.0013928413391113
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign11:%' AND post_id > 35724

Time before:  4.7633111476898
Time after:   4.7649290561676
Elapsed time: 0.0016179084777832
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.7693309783936
Time after:   4.7708761692047
Elapsed time: 0.0015451908111572
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign12:%' AND post_id > 35724

Time before:  4.7719740867615
Time after:   4.7744109630585
Elapsed time: 0.0024368762969971
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.7814660072327
Time after:   4.7830951213837
Elapsed time: 0.001629114151001
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign1:%' AND post_id > 35724

Time before:  4.7842061519623
Time after:   4.794646024704
Elapsed time: 0.010439872741699
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.7961041927338
Time after:   4.7976059913635
Elapsed time: 0.0015017986297607
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign2:%' AND post_id > 35724

Time before:  4.7985920906067
Time after:   4.8003101348877
Elapsed time: 0.0017180442810059
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.8020360469818
Time after:   4.8035430908203
Elapsed time: 0.001507043838501
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign3:%' AND post_id > 35724

Time before:  4.8048551082611
Time after:   4.8065111637115
Elapsed time: 0.0016560554504395
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.8079390525818
Time after:   4.8094201087952
Elapsed time: 0.0014810562133789
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sign4:%' AND post_id > 35724

Time before:  4.8104150295258
Time after:   4.8119289875031
Elapsed time: 0.0015139579772949
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.813371181488
Time after:   4.8147790431976
Elapsed time: 0.0014078617095947
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sleepy1:%' AND post_id > 35724

Time before:  4.8159220218658
Time after:   4.8175911903381
Elapsed time: 0.00166916847229
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.8192710876465
Time after:   4.8206741809845
Elapsed time: 0.0014030933380127
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sleepy2:%' AND post_id > 35724

Time before:  4.8216471672058
Time after:   4.8231880664825
Elapsed time: 0.0015408992767334
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.824499130249
Time after:   4.8258521556854
Elapsed time: 0.0013530254364014
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sleepy3:%' AND post_id > 35724

Time before:  4.8268191814423
Time after:   4.8283059597015
Elapsed time: 0.0014867782592773
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.8297071456909
Time after:   4.8310680389404
Elapsed time: 0.0013608932495117
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sleepy4:%' AND post_id > 35724

Time before:  4.8321361541748
Time after:   4.8337070941925
Elapsed time: 0.0015709400177002
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.8351421356201
Time after:   4.8364660739899
Elapsed time: 0.001323938369751
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sleepy5:%' AND post_id > 35724

Time before:  4.8375251293182
Time after:   4.839063167572
Elapsed time: 0.0015380382537842
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.8404901027679
Time after:   4.8418250083923
Elapsed time: 0.0013349056243896
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:sleepy6:%' AND post_id > 35724

Time before:  4.8427550792694
Time after:   4.8442280292511
Elapsed time: 0.0014729499816895
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.8455221652985
Time after:   4.8469450473785
Elapsed time: 0.0014228820800781
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:smilebox:%' AND post_id > 35724

Time before:  4.8480429649353
Time after:   4.8495800495148
Elapsed time: 0.0015370845794678
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.8509881496429
Time after:   4.8523461818695
Elapsed time: 0.0013580322265625
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:snorting:%' AND post_id > 35724

Time before:  4.8532810211182
Time after:   4.8547251224518
Elapsed time: 0.0014441013336182
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.8560161590576
Time after:   4.8572461605072
Elapsed time: 0.001230001449585
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:spam1:%' AND post_id > 35724

Time before:  4.8582451343536
Time after:   4.8597099781036
Elapsed time: 0.00146484375
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.8610801696777
Time after:   4.8623561859131
Elapsed time: 0.0012760162353516
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:spam2:%' AND post_id > 35724

Time before:  4.8632881641388
Time after:   4.8647620677948
Elapsed time: 0.0014739036560059
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.8662149906158
Time after:   4.8677561283112
Elapsed time: 0.0015411376953125
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:stop:%' AND post_id > 35724

Time before:  4.8688411712646
Time after:   4.8704750537872
Elapsed time: 0.001633882522583
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.8718900680542
Time after:   4.8733100891113
Elapsed time: 0.0014200210571289
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tard:%' AND post_id > 35724

Time before:  4.8747169971466
Time after:   4.8763341903687
Elapsed time: 0.0016171932220459
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.8777861595154
Time after:   4.8791460990906
Elapsed time: 0.0013599395751953
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:thebirdman:%' AND post_id > 35724

Time before:  4.880478143692
Time after:   4.8819961547852
Elapsed time: 0.0015180110931396
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.8833470344543
Time after:   4.8846800327301
Elapsed time: 0.0013329982757568
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:thefinger:%' AND post_id > 35724

Time before:  4.8856980800629
Time after:   4.887353181839
Elapsed time: 0.001655101776123
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.8888239860535
Time after:   4.8901751041412
Elapsed time: 0.0013511180877686
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:thumbup:%' AND post_id > 35724

Time before:  4.8910841941833
Time after:   4.8926270008087
Elapsed time: 0.0015428066253662
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.8940060138702
Time after:   4.8953461647034
Elapsed time: 0.0013401508331299
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue1:%' AND post_id > 35724

Time before:  4.8963010311127
Time after:   4.8978021144867
Elapsed time: 0.0015010833740234
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.8991670608521
Time after:   4.9008271694183
Elapsed time: 0.0016601085662842
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue10:%' AND post_id > 35724

Time before:  4.9019091129303
Time after:   4.9033920764923
Elapsed time: 0.0014829635620117
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.9051561355591
Time after:   4.9068071842194
Elapsed time: 0.0016510486602783
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue2:%' AND post_id > 35724

Time before:  4.9078049659729
Time after:   4.909362077713
Elapsed time: 0.0015571117401123
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.9107871055603
Time after:   4.9121341705322
Elapsed time: 0.0013470649719238
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue3:%' AND post_id > 35724

Time before:  4.9131259918213
Time after:   4.9146301746368
Elapsed time: 0.0015041828155518
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.916100025177
Time after:   4.9175500869751
Elapsed time: 0.0014500617980957
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue4:%' AND post_id > 35724

Time before:  4.9186720848083
Time after:   4.9203021526337
Elapsed time: 0.0016300678253174
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.9218850135803
Time after:   4.9232711791992
Elapsed time: 0.0013861656188965
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue5:%' AND post_id > 35724

Time before:  4.9240760803223
Time after:   4.925201177597
Elapsed time: 0.0011250972747803
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.9263331890106
Time after:   4.9276731014252
Elapsed time: 0.0013399124145508
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue6:%' AND post_id > 35724

Time before:  4.9286201000214
Time after:   4.9301900863647
Elapsed time: 0.0015699863433838
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.9316430091858
Time after:   4.9329891204834
Elapsed time: 0.0013461112976074
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue7:%' AND post_id > 35724

Time before:  4.933984041214
Time after:   4.9353849887848
Elapsed time: 0.0014009475708008
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.9365379810333
Time after:   4.9376850128174
Elapsed time: 0.0011470317840576
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue8:%' AND post_id > 35724

Time before:  4.9384260177612
Time after:   4.9398720264435
Elapsed time: 0.001446008682251
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.9413189888
Time after:   4.9426779747009
Elapsed time: 0.0013589859008789
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tongue9:%' AND post_id > 35724

Time before:  4.9436211585999
Time after:   4.9451050758362
Elapsed time: 0.0014839172363281
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.9462831020355
Time after:   4.9474229812622
Elapsed time: 0.0011398792266846
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tool:%' AND post_id > 35724

Time before:  4.9481751918793
Time after:   4.9493350982666
Elapsed time: 0.0011599063873291
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.9506289958954
Time after:   4.9519050121307
Elapsed time: 0.0012760162353516
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy1:%' AND post_id > 35724

Time before:  4.9529101848602
Time after:   4.9544410705566
Elapsed time: 0.0015308856964111
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.9559750556946
Time after:   4.9573550224304
Elapsed time: 0.0013799667358398
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy8:%' AND post_id > 35724

Time before:  4.9582860469818
Time after:   4.9594371318817
Elapsed time: 0.0011510848999023
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.9605491161346
Time after:   4.9616930484772
Elapsed time: 0.0011439323425293
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy9:%' AND post_id > 35724

Time before:  4.9624140262604
Time after:   4.9637911319733
Elapsed time: 0.0013771057128906
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.9651889801025
Time after:   4.9665219783783
Elapsed time: 0.0013329982757568
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy10:%' AND post_id > 35724

Time before:  4.9675259590149
Time after:   4.9690301418304
Elapsed time: 0.0015041828155518
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.9704689979553
Time after:   4.9718770980835
Elapsed time: 0.0014081001281738
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy2:%' AND post_id > 35724

Time before:  4.9729011058807
Time after:   4.9743759632111
Elapsed time: 0.0014748573303223
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.975790977478
Time after:   4.977205991745
Elapsed time: 0.0014150142669678
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy3:%' AND post_id > 35724

Time before:  4.9781150817871
Time after:   4.9794020652771
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    147  Using where 


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

Time before:  4.9806470870972
Time after:   4.9819030761719
Elapsed time: 0.001255989074707
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy4:%' AND post_id > 35724

Time before:  4.9827241897583
Time after:   4.9840030670166
Elapsed time: 0.0012788772583008
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.9851901531219
Time after:   4.986407995224
Elapsed time: 0.0012178421020508
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy5:%' AND post_id > 35724

Time before:  4.9872810840607
Time after:   4.988753080368
Elapsed time: 0.001471996307373
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.9901759624481
Time after:   4.9915311336517
Elapsed time: 0.0013551712036133
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy6:%' AND post_id > 35724

Time before:  4.9925920963287
Time after:   4.994145154953
Elapsed time: 0.0015530586242676
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  4.9955041408539
Time after:   4.9968311786652
Elapsed time: 0.0013270378112793
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:toothy7:%' AND post_id > 35724

Time before:  4.9977791309357
Time after:   4.9992229938507
Elapsed time: 0.0014438629150391
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  5.0005741119385
Time after:   5.0019271373749
Elapsed time: 0.0013530254364014
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:triplets:%' AND post_id > 35724

Time before:  5.0028750896454
Time after:   5.0043501853943
Elapsed time: 0.0014750957489014
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  5.0057780742645
Time after:   5.0071501731873
Elapsed time: 0.0013720989227295
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tshirt:%' AND post_id > 35724

Time before:  5.0081000328064
Time after:   5.0095980167389
Elapsed time: 0.0014979839324951
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  5.0109701156616
Time after:   5.0123090744019
Elapsed time: 0.0013389587402344
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:tweety:%' AND post_id > 35724

Time before:  5.0132710933685
Time after:   5.0147681236267
Elapsed time: 0.0014970302581787
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  5.0162360668182
Time after:   5.0175969600677
Elapsed time: 0.0013608932495117
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:usa2:%' AND post_id > 35724

Time before:  5.018529176712
Time after:   5.0200581550598
Elapsed time: 0.0015289783477783
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  5.0214741230011
Time after:   5.0228400230408
Elapsed time: 0.0013659000396729
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:violent1:%' AND post_id > 35724

Time before:  5.0238280296326
Time after:   5.02525806427
Elapsed time: 0.0014300346374512
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  5.0267200469971
Time after:   5.028046131134
Elapsed time: 0.0013260841369629
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:violent2:%' AND post_id > 35724

Time before:  5.0289859771729
Time after:   5.0305650234222
Elapsed time: 0.0015790462493896
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  5.0319540500641
Time after:   5.0333030223846
Elapsed time: 0.0013489723205566
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:violent3:%' AND post_id > 35724

Time before:  5.0342571735382
Time after:   5.035747051239
Elapsed time: 0.0014898777008057
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  5.037122964859
Time after:   5.0384609699249
Elapsed time: 0.001338005065918
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:walk:%' AND post_id > 35724

Time before:  5.0394389629364
Time after:   5.0409591197968
Elapsed time: 0.0015201568603516
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  5.0423040390015
Time after:   5.0436589717865
Elapsed time: 0.0013549327850342
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:wav:%' AND post_id > 35724

Time before:  5.0446391105652
Time after:   5.0464251041412
Elapsed time: 0.0017859935760498
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


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

Time before:  5.047865152359
Time after:   5.0492260456085
Elapsed time: 0.0013608932495117
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_smilies  ALL          346  Using where 


Query:	SELECT post_id, post_text
	FROM phpbb_posts_text
	WHERE post_text LIKE '%:wave:%' AND post_id > 35724

Time before:  5.0502321720123
Time after:   5.0517630577087
Elapsed time: 0.0015308856964111
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_posts_text  range  PRIMARY  PRIMARY    147  Using where 


Query:	UPDATE stats_smilies_index SET smile_count = 15 WHERE smile_url = '005.gif'

Time before:  5.0526950359344
Time after:   5.0549831390381
Elapsed time: 0.0022881031036377

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = '007.gif'

Time before:  5.0551941394806
Time after:   5.0574090480804
Elapsed time: 0.0022149085998535

Query:	UPDATE stats_smilies_index SET smile_count = 8 WHERE smile_url = '014.gif'

Time before:  5.0576071739197
Time after:   5.0598170757294
Elapsed time: 0.0022099018096924

Query:	UPDATE stats_smilies_index SET smile_count = 23 WHERE smile_url = '015.gif'

Time before:  5.0600101947784
Time after:   5.0622081756592
Elapsed time: 0.0021979808807373

Query:	UPDATE stats_smilies_index SET smile_count = 9 WHERE smile_url = '026.gif'

Time before:  5.0624010562897
Time after:   5.0646040439606
Elapsed time: 0.0022029876708984

Query:	UPDATE stats_smilies_index SET smile_count = 25 WHERE smile_url = '033.gif'

Time before:  5.0648031234741
Time after:   5.0669980049133
Elapsed time: 0.002194881439209

Query:	UPDATE stats_smilies_index SET smile_count = 36 WHERE smile_url = '041.gif'

Time before:  5.0671889781952
Time after:   5.0693831443787
Elapsed time: 0.0021941661834717

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = '3some.gif'

Time before:  5.0695750713348
Time after:   5.0717701911926
Elapsed time: 0.0021951198577881

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'alien.gif'

Time before:  5.0719611644745
Time after:   5.074156999588
Elapsed time: 0.0021958351135254

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'angel10.gif'

Time before:  5.0743491649628
Time after:   5.0768210887909
Elapsed time: 0.002471923828125

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'angel11.gif'

Time before:  5.0770831108093
Time after:   5.0791230201721
Elapsed time: 0.002039909362793

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'angel12.gif'

Time before:  5.0793190002441
Time after:   5.0809671878815
Elapsed time: 0.0016481876373291

Query:	UPDATE stats_smilies_index SET smile_count = 10 WHERE smile_url = 'angel13.gif'

Time before:  5.0811350345612
Time after:   5.0827360153198
Elapsed time: 0.001600980758667

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angel3.gif'

Time before:  5.0828950405121
Time after:   5.0845041275024
Elapsed time: 0.0016090869903564

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'angel4.gif'

Time before:  5.0846490859985
Time after:   5.0862610340118
Elapsed time: 0.0016119480133057

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'angel5.gif'

Time before:  5.0864131450653
Time after:   5.0880341529846
Elapsed time: 0.0016210079193115

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'angel7.gif'

Time before:  5.0881850719452
Time after:   5.0897719860077
Elapsed time: 0.0015869140625

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'angel8.gif'

Time before:  5.0899250507355
Time after:   5.0915081501007
Elapsed time: 0.0015830993652344

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'angel9.gif'

Time before:  5.091658115387
Time after:   5.0932819843292
Elapsed time: 0.0016238689422607

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angry1.gif'

Time before:  5.0934340953827
Time after:   5.0950300693512
Elapsed time: 0.0015959739685059

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angry2.gif'

Time before:  5.095174074173
Time after:   5.0967509746552
Elapsed time: 0.0015769004821777

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angry3.gif'

Time before:  5.0969851016998
Time after:   5.0997161865234
Elapsed time: 0.0027310848236084

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angry7.gif'

Time before:  5.0999670028687
Time after:   5.1021821498871
Elapsed time: 0.0022151470184326

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'angry9.gif'

Time before:  5.1023781299591
Time after:   5.104022026062
Elapsed time: 0.0016438961029053

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'argue.gif'

Time before:  5.1041769981384
Time after:   5.1057679653168
Elapsed time: 0.0015909671783447

Query:	UPDATE stats_smilies_index SET smile_count = 10 WHERE smile_url = 'BangHead.gif'

Time before:  5.1059210300446
Time after:   5.1075081825256
Elapsed time: 0.0015871524810791

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'binkybaby.gif'

Time before:  5.1076560020447
Time after:   5.1092371940613
Elapsed time: 0.0015811920166016

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob1.gif'

Time before:  5.1093821525574
Time after:   5.1109621524811
Elapsed time: 0.0015799999237061

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob10.gif'

Time before:  5.1111080646515
Time after:   5.1126799583435
Elapsed time: 0.0015718936920166

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob3.gif'

Time before:  5.1128330230713
Time after:   5.1144239902496
Elapsed time: 0.0015909671783447

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob5.gif'

Time before:  5.1145691871643
Time after:   5.1161460876465
Elapsed time: 0.0015769004821777

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob6.gif'

Time before:  5.1162891387939
Time after:   5.117861032486
Elapsed time: 0.0015718936920166

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob7.gif'

Time before:  5.1180241107941
Time after:   5.1196060180664
Elapsed time: 0.0015819072723389

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob8.gif'

Time before:  5.119784116745
Time after:   5.1213979721069
Elapsed time: 0.0016138553619385

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'blob9.gif'

Time before:  5.1215410232544
Time after:   5.1231160163879
Elapsed time: 0.0015749931335449

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'bom.gif'

Time before:  5.1232571601868
Time after:   5.1248240470886
Elapsed time: 0.0015668869018555

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'book1.gif'

Time before:  5.1249690055847
Time after:   5.1265461444855
Elapsed time: 0.0015771389007568

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'booty.gif'

Time before:  5.1266920566559
Time after:   5.1282739639282
Elapsed time: 0.0015819072723389

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'bootyshake.gif'

Time before:  5.1284229755402
Time after:   5.1300191879272
Elapsed time: 0.001596212387085

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'boxing.gif'

Time before:  5.1301651000977
Time after:   5.1317620277405
Elapsed time: 0.0015969276428223

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'brave.gif'

Time before:  5.1319081783295
Time after:   5.1334969997406
Elapsed time: 0.0015888214111328

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'brushteeth.gif'

Time before:  5.1336491107941
Time after:   5.1352210044861
Elapsed time: 0.0015718936920166

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'bs.gif'

Time before:  5.1353659629822
Time after:   5.1369481086731
Elapsed time: 0.001582145690918

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'bunny.gif'

Time before:  5.1370890140533
Time after:   5.1389729976654
Elapsed time: 0.0018839836120605

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'cat.gif'

Time before:  5.1392149925232
Time after:   5.1409389972687
Elapsed time: 0.0017240047454834

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'clock.gif'

Time before:  5.1411089897156
Time after:   5.1427719593048
Elapsed time: 0.0016629695892334

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'coffee.gif'

Time before:  5.1429731845856
Time after:   5.1446571350098
Elapsed time: 0.0016839504241943

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'coffee2.gif'

Time before:  5.1448490619659
Time after:   5.1464910507202
Elapsed time: 0.0016419887542725

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'color.gif'

Time before:  5.1466450691223
Time after:   5.1482620239258
Elapsed time: 0.0016169548034668

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'computer.gif'

Time before:  5.1484441757202
Time after:   5.1500520706177
Elapsed time: 0.0016078948974609

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'confused1.gif'

Time before:  5.1502051353455
Time after:   5.1518421173096
Elapsed time: 0.0016369819641113

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'confused2.gif'

Time before:  5.1520280838013
Time after:   5.1536610126495
Elapsed time: 0.0016329288482666

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'confused3.gif'

Time before:  5.1538519859314
Time after:   5.1555490493774
Elapsed time: 0.0016970634460449

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'confused4.gif'

Time before:  5.1557309627533
Time after:   5.1573760509491
Elapsed time: 0.0016450881958008

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'confused5.gif'

Time before:  5.1575331687927
Time after:   5.1591520309448
Elapsed time: 0.0016188621520996

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'crybaby2.gif'

Time before:  5.1593081951141
Time after:   5.160896062851
Elapsed time: 0.0015878677368164

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'cya.gif'

Time before:  5.161041021347
Time after:   5.1628541946411
Elapsed time: 0.0018131732940674

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'dark1.gif'

Time before:  5.1630351543427
Time after:   5.164656162262
Elapsed time: 0.0016210079193115

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'director.gif'

Time before:  5.1648139953613
Time after:   5.166433095932
Elapsed time: 0.0016191005706787

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'director2.gif'

Time before:  5.1665899753571
Time after:   5.1683411598206
Elapsed time: 0.001751184463501

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'dog.gif'

Time before:  5.1685149669647
Time after:   5.1701381206512
Elapsed time: 0.0016231536865234

Query:	UPDATE stats_smilies_index SET smile_count = 9 WHERE smile_url = 'dontknow.gif'

Time before:  5.170284986496
Time after:   5.1718661785126
Elapsed time: 0.0015811920166016

Query:	UPDATE stats_smilies_index SET smile_count = 6 WHERE smile_url = 'downtown.gif'

Time before:  5.1720101833344
Time after:   5.1735830307007
Elapsed time: 0.001572847366333

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'drunken_smilie.gif'

Time before:  5.1737291812897
Time after:   5.1753311157227
Elapsed time: 0.0016019344329834

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'duckie.gif'

Time before:  5.1754779815674
Time after:   5.1770620346069
Elapsed time: 0.0015840530395508

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'Edfirst.gif'

Time before:  5.1772050857544
Time after:   5.1787791252136
Elapsed time: 0.0015740394592285

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'evil1.gif'

Time before:  5.1789240837097
Time after:   5.1805009841919
Elapsed time: 0.0015769004821777

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 'evil3.gif'

Time before:  5.180643081665
Time after:   5.1822121143341
Elapsed time: 0.0015690326690674

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'evil4.gif'

Time before:  5.1823530197144
Time after:   5.1840250492096
Elapsed time: 0.0016720294952393

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 'evil5.gif'

Time before:  5.1841950416565
Time after:   5.1860811710358
Elapsed time: 0.0018861293792725

Query:	UPDATE stats_smilies_index SET smile_count = 56 WHERE smile_url = 'evil6.gif'

Time before:  5.1862680912018
Time after:   5.1878950595856
Elapsed time: 0.0016269683837891

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'evil7.gif'

Time before:  5.1880440711975
Time after:   5.1896240711212
Elapsed time: 0.0015799999237061

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'fart.gif'

Time before:  5.189777135849
Time after:   5.1913709640503
Elapsed time: 0.0015938282012939

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'female.gif'

Time before:  5.1915321350098
Time after:   5.1931221485138
Elapsed time: 0.0015900135040283

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'fenforcer.gif'

Time before:  5.1932711601257
Time after:   5.1948390007019
Elapsed time: 0.0015678405761719

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'fflak.gif'

Time before:  5.1949901580811
Time after:   5.196573972702
Elapsed time: 0.0015838146209717

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'fglob.gif'

Time before:  5.1967179775238
Time after:   5.1982970237732
Elapsed time: 0.0015790462493896

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'fimpact.gif'

Time before:  5.198441028595
Time after:   5.2000131607056
Elapsed time: 0.0015721321105957

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'fish.gif'

Time before:  5.2001559734344
Time after:   5.201737165451
Elapsed time: 0.0015811920166016

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'fplasma.gif'

Time before:  5.2018811702728
Time after:   5.203467130661
Elapsed time: 0.0015859603881836

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'fripper.gif'

Time before:  5.2036089897156
Time after:   5.205176115036
Elapsed time: 0.0015671253204346

Query:	UPDATE stats_smilies_index SET smile_count = 8 WHERE smile_url = 'fsniper.gif'

Time before:  5.2053191661835
Time after:   5.206974029541
Elapsed time: 0.0016548633575439

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'fucyc.gif'

Time before:  5.2071430683136
Time after:   5.2087450027466
Elapsed time: 0.0016019344329834

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'fxloc.gif'

Time before:  5.2088961601257
Time after:   5.2104840278625
Elapsed time: 0.0015878677368164

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses1.gif'

Time before:  5.2106261253357
Time after:   5.2122189998627
Elapsed time: 0.0015928745269775

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses10.gif'

Time before:  5.2123639583588
Time after:   5.2139511108398
Elapsed time: 0.0015871524810791

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses11.gif'

Time before:  5.2140970230103
Time after:   5.2156641483307
Elapsed time: 0.0015671253204346

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses12.gif'

Time before:  5.2158181667328
Time after:   5.2174160480499
Elapsed time: 0.0015978813171387

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses13.gif'

Time before:  5.2175631523132
Time after:   5.2192389965057
Elapsed time: 0.0016758441925049

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses2.gif'

Time before:  5.2194130420685
Time after:   5.2210321426392
Elapsed time: 0.0016191005706787

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'glasses3.gif'

Time before:  5.2211799621582
Time after:   5.2227611541748
Elapsed time: 0.0015811920166016

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses6.gif'

Time before:  5.2229111194611
Time after:   5.2244930267334
Elapsed time: 0.0015819072723389

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses7.gif'

Time before:  5.2246379852295
Time after:   5.226212978363
Elapsed time: 0.0015749931335449

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses8.gif'

Time before:  5.2263741493225
Time after:   5.227952003479
Elapsed time: 0.0015778541564941

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'glasses9.gif'

Time before:  5.2280969619751
Time after:   5.2296800613403
Elapsed time: 0.0015830993652344

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'grommit.gif'

Time before:  5.2298309803009
Time after:   5.2314131259918
Elapsed time: 0.001582145690918

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'hal.gif'

Time before:  5.2315561771393
Time after:   5.2331371307373
Elapsed time: 0.0015809535980225

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 'happy1.gif'

Time before:  5.2332770824432
Time after:   5.2348430156708
Elapsed time: 0.0015659332275391

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'happy10.gif'

Time before:  5.2349910736084
Time after:   5.2365729808807
Elapsed time: 0.0015819072723389

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'happy11.gif'

Time before:  5.2367260456085
Time after:   5.2383620738983
Elapsed time: 0.0016360282897949

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'happy2.gif'

Time before:  5.2385101318359
Time after:   5.2401189804077
Elapsed time: 0.0016088485717773

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'happy3.gif'

Time before:  5.2402670383453
Time after:   5.2418529987335
Elapsed time: 0.0015859603881836

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'happy4.gif'

Time before:  5.2420229911804
Time after:   5.2436261177063
Elapsed time: 0.0016031265258789

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'happy5.gif'

Time before:  5.2437779903412
Time after:   5.2453730106354
Elapsed time: 0.0015950202941895

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'happy6.gif'

Time before:  5.2455179691315
Time after:   5.2470910549164
Elapsed time: 0.0015730857849121

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'happy7.gif'

Time before:  5.2472360134125
Time after:   5.2488210201263
Elapsed time: 0.0015850067138672

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'happy8.gif'

Time before:  5.248969078064
Time after:   5.2505600452423
Elapsed time: 0.0015909671783447

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'happy9.gif'

Time before:  5.2507050037384
Time after:   5.2525689601898
Elapsed time: 0.001863956451416

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 'headbang.gif'

Time before:  5.2528970241547
Time after:   5.2553250789642
Elapsed time: 0.0024280548095703

Query:	UPDATE stats_smilies_index SET smile_count = 28 WHERE smile_url = 'hello.gif'

Time before:  5.2555861473083
Time after:   5.2579669952393
Elapsed time: 0.0023808479309082

Query:	UPDATE stats_smilies_index SET smile_count = 6 WHERE smile_url = 'hello2.gif'

Time before:  5.2582471370697
Time after:   5.26060795784
Elapsed time: 0.0023608207702637

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'help.gif'

Time before:  5.260899066925
Time after:   5.2630701065063
Elapsed time: 0.0021710395812988

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'hiding.gif'

Time before:  5.2632870674133
Time after:   5.2657639980316
Elapsed time: 0.0024769306182861

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'hippy2.gif'

Time before:  5.2660100460052
Time after:   5.2677080631256
Elapsed time: 0.0016980171203613

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'hmh.gif'

Time before:  5.2679131031036
Time after:   5.2743270397186
Elapsed time: 0.0064139366149902

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'home.gif'

Time before:  5.2745900154114
Time after:   5.2771899700165
Elapsed time: 0.0025999546051025

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'homework.gif'

Time before:  5.2775371074677
Time after:   5.2802140712738
Elapsed time: 0.0026769638061523

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'iamwithstupid.gif'

Time before:  5.2804880142212
Time after:   5.2831439971924
Elapsed time: 0.0026559829711914

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icescream.gif'

Time before:  5.2834141254425
Time after:   5.2858719825745
Elapsed time: 0.002457857131958

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_albino.gif'

Time before:  5.2861251831055
Time after:   5.2886481285095
Elapsed time: 0.0025229454040527

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'icon_anal.gif'

Time before:  5.2889380455017
Time after:   5.2913851737976
Elapsed time: 0.0024471282958984

Query:	UPDATE stats_smilies_index SET smile_count = 8 WHERE smile_url = 'icon_arrow.gif'

Time before:  5.2916560173035
Time after:   5.2942509651184
Elapsed time: 0.0025949478149414

Query:	UPDATE stats_smilies_index SET smile_count = 14 WHERE smile_url = 'icon_axe.gif'

Time before:  5.2944910526276
Time after:   5.2969410419464
Elapsed time: 0.0024499893188477

Query:	UPDATE stats_smilies_index SET smile_count = 2616 WHERE smile_url = 'icon_biggrin.gif'

Time before:  5.297196149826
Time after:   5.2998750209808
Elapsed time: 0.0026788711547852

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_bigsmurf.gif'

Time before:  5.3001260757446
Time after:   5.3025770187378
Elapsed time: 0.0024509429931641

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_blackeye.gif'

Time before:  5.3028421401978
Time after:   5.3053841590881
Elapsed time: 0.0025420188903809

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_bounce.gif'

Time before:  5.3056290149689
Time after:   5.3079769611359
Elapsed time: 0.0023479461669922

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_butt.gif'

Time before:  5.3081929683685
Time after:   5.3101050853729
Elapsed time: 0.0019121170043945

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_cat.gif'

Time before:  5.3103141784668
Time after:   5.3119871616364
Elapsed time: 0.0016729831695557

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_cheers.gif'

Time before:  5.3121480941772
Time after:   5.3137681484222
Elapsed time: 0.0016200542449951

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_cherry.gif'

Time before:  5.3139250278473
Time after:   5.3155460357666
Elapsed time: 0.0016210079193115

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_clown.gif'

Time before:  5.3157041072845
Time after:   5.3172941207886
Elapsed time: 0.0015900135040283

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_colors.gif'

Time before:  5.3174421787262
Time after:   5.3190321922302
Elapsed time: 0.0015900135040283

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_compress.gif'

Time before:  5.3191950321198
Time after:   5.3207809925079
Elapsed time: 0.0015859603881836

Query:	UPDATE stats_smilies_index SET smile_count = 976 WHERE smile_url = 'icon_confused.gif'

Time before:  5.320955991745
Time after:   5.3226339817047
Elapsed time: 0.0016779899597168

Query:	UPDATE stats_smilies_index SET smile_count = 476 WHERE smile_url = 'icon_cool.gif'

Time before:  5.3228061199188
Time after:   5.3244340419769
Elapsed time: 0.0016279220581055

Query:	UPDATE stats_smilies_index SET smile_count = 297 WHERE smile_url = 'icon_cry.gif'

Time before:  5.3245899677277
Time after:   5.3262341022491
Elapsed time: 0.0016441345214844

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_cyclops.gif'

Time before:  5.326385974884
Time after:   5.3279740810394
Elapsed time: 0.0015881061553955

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_cyclops_ani.gif'

Time before:  5.3281230926514
Time after:   5.3297109603882
Elapsed time: 0.0015878677368164

Query:	UPDATE stats_smilies_index SET smile_count = 335 WHERE smile_url = 'icon_evil.gif'

Time before:  5.329873085022
Time after:   5.3315100669861
Elapsed time: 0.0016369819641113

Query:	UPDATE stats_smilies_index SET smile_count = 320 WHERE smile_url = 'icon_exclaim.gif'

Time before:  5.3316721916199
Time after:   5.3332741260529
Elapsed time: 0.0016019344329834

Query:	UPDATE stats_smilies_index SET smile_count = 17 WHERE smile_url = 'icon_eyes.gif'

Time before:  5.3334319591522
Time after:   5.3350319862366
Elapsed time: 0.0016000270843506

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_fU.gif'

Time before:  5.3351809978485
Time after:   5.3367710113525
Elapsed time: 0.0015900135040283

Query:	UPDATE stats_smilies_index SET smile_count = 24 WHERE smile_url = 'icon_jook.gif'

Time before:  5.3369181156158
Time after:   5.338515996933
Elapsed time: 0.0015978813171387

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_karu.gif'

Time before:  5.3386771678925
Time after:   5.3403680324554
Elapsed time: 0.0016908645629883

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_keel.gif'

Time before:  5.340546131134
Time after:   5.3421580791473
Elapsed time: 0.0016119480133057

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_kidra.gif'

Time before:  5.3423080444336
Time after:   5.3438830375671
Elapsed time: 0.0015749931335449

Query:	UPDATE stats_smilies_index SET smile_count = 2771 WHERE smile_url = 'icon_lol.gif'

Time before:  5.3440330028534
Time after:   5.3456561565399
Elapsed time: 0.0016231536865234

Query:	UPDATE stats_smilies_index SET smile_count = 365 WHERE smile_url = 'icon_mad.gif'

Time before:  5.3458201885223
Time after:   5.3474290370941
Elapsed time: 0.0016088485717773

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_madu.gif'

Time before:  5.3475780487061
Time after:   5.3491461277008
Elapsed time: 0.001568078994751

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_mrgreen.gif'

Time before:  5.3492941856384
Time after:   5.3508620262146
Elapsed time: 0.0015678405761719

Query:	UPDATE stats_smilies_index SET smile_count = 130 WHERE smile_url = 'icon_neutral.gif'

Time before:  5.3510119915009
Time after:   5.3525981903076
Elapsed time: 0.0015861988067627

Query:	UPDATE stats_smilies_index SET smile_count = 10 WHERE smile_url = 'icon_oak.gif'

Time before:  5.352753162384
Time after:   5.3543500900269
Elapsed time: 0.0015969276428223

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'icon_pai.gif'

Time before:  5.3545789718628
Time after:   5.3561861515045
Elapsed time: 0.0016071796417236

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_pale.gif'

Time before:  5.3563530445099
Time after:   5.3586361408234
Elapsed time: 0.0022830963134766

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_pall.gif'

Time before:  5.3588960170746
Time after:   5.3615291118622
Elapsed time: 0.0026330947875977

Query:	UPDATE stats_smilies_index SET smile_count = 13 WHERE smile_url = 'icon_pidu.gif'

Time before:  5.3617780208588
Time after:   5.3643820285797
Elapsed time: 0.0026040077209473

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_pirat.gif'

Time before:  5.364627122879
Time after:   5.3672571182251
Elapsed time: 0.0026299953460693

Query:	UPDATE stats_smilies_index SET smile_count = 8 WHERE smile_url = 'icon_pray.gif'

Time before:  5.3674969673157
Time after:   5.3701210021973
Elapsed time: 0.0026240348815918

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_profileleft.gif'

Time before:  5.3703811168671
Time after:   5.3730380535126
Elapsed time: 0.0026569366455078

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_profileright.gif'

Time before:  5.3732681274414
Time after:   5.3758940696716
Elapsed time: 0.0026259422302246

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_puke_l.gif'

Time before:  5.3761541843414
Time after:   5.3787851333618
Elapsed time: 0.0026309490203857

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_puke_r.gif'

Time before:  5.3790361881256
Time after:   5.3819921016693
Elapsed time: 0.0029559135437012

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_queen.gif'

Time before:  5.3822531700134
Time after:   5.3850841522217
Elapsed time: 0.002830982208252

Query:	UPDATE stats_smilies_index SET smile_count = 159 WHERE smile_url = 'icon_question.gif'

Time before:  5.3853900432587
Time after:   5.3880400657654
Elapsed time: 0.0026500225067139

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_rabbit.gif'

Time before:  5.3882880210876
Time after:   5.3908860683441
Elapsed time: 0.0025980472564697

Query:	UPDATE stats_smilies_index SET smile_count = 624 WHERE smile_url = 'icon_razz.gif'

Time before:  5.3911080360413
Time after:   5.3937110900879
Elapsed time: 0.0026030540466309

Query:	UPDATE stats_smilies_index SET smile_count = 853 WHERE smile_url = 'icon_redface.gif'

Time before:  5.3939549922943
Time after:   5.3966190814972
Elapsed time: 0.0026640892028809

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'icon_rendeer.gif'

Time before:  5.3968729972839
Time after:   5.3994870185852
Elapsed time: 0.0026140213012695

Query:	UPDATE stats_smilies_index SET smile_count = 1573 WHERE smile_url = 'icon_rolleyes.gif'

Time before:  5.3997550010681
Time after:   5.4024360179901
Elapsed time: 0.0026810169219971

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'icon_rr.gif'

Time before:  5.4026789665222
Time after:   5.4052209854126
Elapsed time: 0.0025420188903809

Query:	UPDATE stats_smilies_index SET smile_count = 603 WHERE smile_url = 'icon_sad.gif'

Time before:  5.4054961204529
Time after:   5.4081189632416
Elapsed time: 0.0026228427886963

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'icon_salut.gif'

Time before:  5.408411026001
Time after:   5.4109311103821
Elapsed time: 0.0025200843811035

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_santa.gif'

Time before:  5.4112429618835
Time after:   5.4139120578766
Elapsed time: 0.002669095993042

Query:	UPDATE stats_smilies_index SET smile_count = 13 WHERE smile_url = 'icon_scratch.gif'

Time before:  5.414281129837
Time after:   5.4170451164246
Elapsed time: 0.0027639865875244

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_shaking.gif'

Time before:  5.4173500537872
Time after:   5.4200069904327
Elapsed time: 0.0026569366455078

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_shaking2.gif'

Time before:  5.4203040599823
Time after:   5.4229531288147
Elapsed time: 0.0026490688323975

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_silent.gif'

Time before:  5.4232490062714
Time after:   5.4258060455322
Elapsed time: 0.0025570392608643

Query:	UPDATE stats_smilies_index SET smile_count = 2094 WHERE smile_url = 'icon_smile.gif'

Time before:  5.4261031150818
Time after:   5.4287691116333
Elapsed time: 0.0026659965515137

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_spiderman.gif'

Time before:  5.4290580749512
Time after:   5.4316601753235
Elapsed time: 0.0026021003723145

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_study.gif'

Time before:  5.4319450855255
Time after:   5.4345769882202
Elapsed time: 0.0026319026947021

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'icon_sunny.gif'

Time before:  5.4348890781403
Time after:   5.4374740123749
Elapsed time: 0.0025849342346191

Query:	UPDATE stats_smilies_index SET smile_count = 15 WHERE smile_url = 'icon_super.gif'

Time before:  5.4377641677856
Time after:   5.4403049945831
Elapsed time: 0.0025408267974854

Query:	UPDATE stats_smilies_index SET smile_count = 147 WHERE smile_url = 'icon_surprised.gif'

Time before:  5.4405841827393
Time after:   5.4431381225586
Elapsed time: 0.0025539398193359

Query:	UPDATE stats_smilies_index SET smile_count = 9 WHERE smile_url = 'icon_syda.gif'

Time before:  5.4434311389923
Time after:   5.4460489749908
Elapsed time: 0.0026178359985352

Query:	UPDATE stats_smilies_index SET smile_count = 9 WHERE smile_url = 'icon_thumleft.gif'

Time before:  5.446366071701
Time after:   5.4488220214844
Elapsed time: 0.0024559497833252

Query:	UPDATE stats_smilies_index SET smile_count = 10 WHERE smile_url = 'icon_thumright.gif'

Time before:  5.4490370750427
Time after:   5.4506900310516
Elapsed time: 0.0016529560089111

Query:	UPDATE stats_smilies_index SET smile_count = 6 WHERE smile_url = 'icon_toilet.gif'

Time before:  5.4508540630341
Time after:   5.4527180194855
Elapsed time: 0.001863956451416

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'icon_tongue.gif'

Time before:  5.4529721736908
Time after:   5.4556751251221
Elapsed time: 0.0027029514312744

Query:	UPDATE stats_smilies_index SET smile_count = 508 WHERE smile_url = 'icon_twisted.gif'

Time before:  5.4559721946716
Time after:   5.4587051868439
Elapsed time: 0.0027329921722412

Query:	UPDATE stats_smilies_index SET smile_count = 6 WHERE smile_url = 'icon_weed.gif'

Time before:  5.4590220451355
Time after:   5.4617421627045
Elapsed time: 0.0027201175689697

Query:	UPDATE stats_smilies_index SET smile_count = 2137 WHERE smile_url = 'icon_wink.gif'

Time before:  5.4620430469513
Time after:   5.4647490978241
Elapsed time: 0.0027060508728027

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'icon_winkle.gif'

Time before:  5.4650530815125
Time after:   5.4677059650421
Elapsed time: 0.0026528835296631

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'idea1.gif'

Time before:  5.468024969101
Time after:   5.4706950187683
Elapsed time: 0.0026700496673584

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'iroc.gif'

Time before:  5.4709939956665
Time after:   5.4736909866333
Elapsed time: 0.0026969909667969

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'jerk.gif'

Time before:  5.4739780426025
Time after:   5.4766311645508
Elapsed time: 0.0026531219482422

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'kermit.gif'

Time before:  5.476921081543
Time after:   5.479593038559
Elapsed time: 0.0026719570159912

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'knob.gif'

Time before:  5.4798941612244
Time after:   5.4825720787048
Elapsed time: 0.0026779174804688

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'ky.gif'

Time before:  5.4828751087189
Time after:   5.4855580329895
Elapsed time: 0.0026829242706299

Query:	UPDATE stats_smilies_index SET smile_count = 10 WHERE smile_url = 'la.gif'

Time before:  5.4858419895172
Time after:   5.4884831905365
Elapsed time: 0.0026412010192871

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'laughing1.gif'

Time before:  5.4887421131134
Time after:   5.4913439750671
Elapsed time: 0.0026018619537354

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'laughing11.gif'

Time before:  5.4916181564331
Time after:   5.4946420192719
Elapsed time: 0.0030238628387451

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'laughing3.gif'

Time before:  5.4949340820312
Time after:   5.497584104538
Elapsed time: 0.0026500225067139

Query:	UPDATE stats_smilies_index SET smile_count = 20 WHERE smile_url = 'laughing4.gif'

Time before:  5.4978861808777
Time after:   5.500559091568
Elapsed time: 0.0026729106903076

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'laughing5.gif'

Time before:  5.5008521080017
Time after:   5.5035500526428
Elapsed time: 0.0026979446411133

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'laughing6.gif'

Time before:  5.5038349628448
Time after:   5.5065281391144
Elapsed time: 0.0026931762695312

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 'laughing7.gif'

Time before:  5.5068440437317
Time after:   5.5095791816711
Elapsed time: 0.0027351379394531

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'laughing8.gif'

Time before:  5.5098760128021
Time after:   5.5125541687012
Elapsed time: 0.0026781558990479

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'laughing9.gif'

Time before:  5.5128440856934
Time after:   5.515524148941
Elapsed time: 0.0026800632476807

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'love1.gif'

Time before:  5.5158271789551
Time after:   5.5185899734497
Elapsed time: 0.0027627944946289

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'love10.gif'

Time before:  5.518886089325
Time after:   5.5215899944305
Elapsed time: 0.0027039051055908

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'love2.gif'

Time before:  5.5218951702118
Time after:   5.5246090888977
Elapsed time: 0.0027139186859131

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'love3.gif'

Time before:  5.5249371528625
Time after:   5.5273191928864
Elapsed time: 0.0023820400238037

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'love4.gif'

Time before:  5.5275971889496
Time after:   5.5302979946136
Elapsed time: 0.0027008056640625

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'love5.gif'

Time before:  5.530543088913
Time after:   5.5330040454865
Elapsed time: 0.0024609565734863

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'love6.gif'

Time before:  5.5332021713257
Time after:   5.5348651409149
Elapsed time: 0.0016629695892334

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'love7.gif'

Time before:  5.53502202034
Time after:   5.5366830825806
Elapsed time: 0.0016610622406006

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'love8.gif'

Time before:  5.5368549823761
Time after:   5.5384609699249
Elapsed time: 0.0016059875488281

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'love9.gif'

Time before:  5.5386080741882
Time after:   5.5401949882507
Elapsed time: 0.0015869140625

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'lovestory.gif'

Time before:  5.5403461456299
Time after:   5.5419290065765
Elapsed time: 0.0015828609466553

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'lurk.gif'

Time before:  5.5420751571655
Time after:   5.5436630249023
Elapsed time: 0.0015878677368164

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'male.gif'

Time before:  5.5438129901886
Time after:   5.5457141399384
Elapsed time: 0.0019011497497559

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'mblah05.gif'

Time before:  5.5459141731262
Time after:   5.5484840869904
Elapsed time: 0.0025699138641357

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'merror.gif'

Time before:  5.5487661361694
Time after:   5.5513100624084
Elapsed time: 0.0025439262390137

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'mumum.gif'

Time before:  5.5515551567078
Time after:   5.5542299747467
Elapsed time: 0.0026748180389404

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'munky2.gif'

Time before:  5.5544710159302
Time after:   5.556969165802
Elapsed time: 0.0024981498718262

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'naka.gif'

Time before:  5.5572690963745
Time after:   5.5599579811096
Elapsed time: 0.0026888847351074

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'newbie.gif'

Time before:  5.5602250099182
Time after:   5.5629370212555
Elapsed time: 0.0027120113372803

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'nike.gif'

Time before:  5.5632340908051
Time after:   5.5668911933899
Elapsed time: 0.0036571025848389

Query:	UPDATE stats_smilies_index SET smile_count = 10 WHERE smile_url = 'notworthy.gif'

Time before:  5.5673191547394
Time after:   5.5697660446167
Elapsed time: 0.0024468898773193

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'occasion1.gif'

Time before:  5.5699851512909
Time after:   5.5723171234131
Elapsed time: 0.0023319721221924

Query:	UPDATE stats_smilies_index SET smile_count = 9 WHERE smile_url = 'occasion13.gif'

Time before:  5.5725159645081
Time after:   5.5748341083527
Elapsed time: 0.0023181438446045

Query:	UPDATE stats_smilies_index SET smile_count = 15 WHERE smile_url = 'occasion14.gif'

Time before:  5.5750391483307
Time after:   5.5773730278015
Elapsed time: 0.0023338794708252

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'occasion15.gif'

Time before:  5.5776011943817
Time after:   5.5799551010132
Elapsed time: 0.0023539066314697

Query:	UPDATE stats_smilies_index SET smile_count = 21 WHERE smile_url = 'occasion16.gif'

Time before:  5.580155134201
Time after:   5.5824739933014
Elapsed time: 0.0023188591003418

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'occasion17.gif'

Time before:  5.5826740264893
Time after:   5.5849900245667
Elapsed time: 0.0023159980773926

Query:	UPDATE stats_smilies_index SET smile_count = 11 WHERE smile_url = 'occasion18.gif'

Time before:  5.5851900577545
Time after:   5.5875110626221
Elapsed time: 0.0023210048675537

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'occasion5.gif'

Time before:  5.5877079963684
Time after:   5.5900311470032
Elapsed time: 0.0023231506347656

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'pain10.gif'

Time before:  5.590224981308
Time after:   5.5925681591034
Elapsed time: 0.0023431777954102

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'pottytrain1.gif'

Time before:  5.5927670001984
Time after:   5.5950989723206
Elapsed time: 0.0023319721221924

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'pottytrain2.gif'

Time before:  5.5952961444855
Time after:   5.5976281166077
Elapsed time: 0.0023319721221924

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'pottytrain3.gif'

Time before:  5.5978291034698
Time after:   5.6001601219177
Elapsed time: 0.002331018447876

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'pottytrain4.gif'

Time before:  5.6003580093384
Time after:   5.6026620864868
Elapsed time: 0.0023040771484375

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'pottytrain5.gif'

Time before:  5.6028640270233
Time after:   5.605190038681
Elapsed time: 0.0023260116577148

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'protest.gif'

Time before:  5.6053860187531
Time after:   5.6076920032501
Elapsed time: 0.0023059844970703

Query:	UPDATE stats_smilies_index SET smile_count = 6 WHERE smile_url = 'puke.gif'

Time before:  5.6078910827637
Time after:   5.6102430820465
Elapsed time: 0.0023519992828369

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'read.gif'

Time before:  5.6104311943054
Time after:   5.6127741336823
Elapsed time: 0.0023429393768311

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'read2.gif'

Time before:  5.6129851341248
Time after:   5.6153190135956
Elapsed time: 0.0023338794708252

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 's-bluecap.gif'

Time before:  5.6155121326447
Time after:   5.617830991745
Elapsed time: 0.0023188591003418

Query:	UPDATE stats_smilies_index SET smile_count = 8 WHERE smile_url = 's-chainsaw.gif'

Time before:  5.6180419921875
Time after:   5.6203560829163
Elapsed time: 0.0023140907287598

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 's-ctf.gif'

Time before:  5.6205530166626
Time after:   5.6228830814362
Elapsed time: 0.0023300647735596

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 's-instagib.gif'

Time before:  5.6230840682983
Time after:   5.625431060791
Elapsed time: 0.0023469924926758

Query:	UPDATE stats_smilies_index SET smile_count = 19 WHERE smile_url = 's-minigun.gif'

Time before:  5.6256291866302
Time after:   5.6279790401459
Elapsed time: 0.002349853515625

Query:	UPDATE stats_smilies_index SET smile_count = 174 WHERE smile_url = 's-shock.gif'

Time before:  5.6281931400299
Time after:   5.6305270195007
Elapsed time: 0.0023338794708252

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 's-telefrag.gif'

Time before:  5.6307289600372
Time after:   5.6333091259003
Elapsed time: 0.0025801658630371

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'sad1.gif'

Time before:  5.6335520744324
Time after:   5.6360011100769
Elapsed time: 0.0024490356445312

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sad10.gif'

Time before:  5.636223077774
Time after:   5.6384391784668
Elapsed time: 0.002216100692749

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'sad11.gif'

Time before:  5.6387810707092
Time after:   5.6412260532379
Elapsed time: 0.0024449825286865

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sad2.gif'

Time before:  5.6414561271667
Time after:   5.6439580917358
Elapsed time: 0.0025019645690918

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'sad3.gif'

Time before:  5.6441900730133
Time after:   5.646576166153
Elapsed time: 0.0023860931396484

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'sad4.gif'

Time before:  5.6467881202698
Time after:   5.6492609977722
Elapsed time: 0.0024728775024414

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'sad5.gif'

Time before:  5.6494829654694
Time after:   5.6518180370331
Elapsed time: 0.0023350715637207

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sad6.gif'

Time before:  5.6520180702209
Time after:   5.6543281078339
Elapsed time: 0.002310037612915

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sad7.gif'

Time before:  5.6545140743256
Time after:   5.656830072403
Elapsed time: 0.0023159980773926

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sad8.gif'

Time before:  5.6570270061493
Time after:   5.6593661308289
Elapsed time: 0.0023391246795654

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sad9.gif'

Time before:  5.6597170829773
Time after:   5.6625039577484
Elapsed time: 0.0027868747711182

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'sex.gif'

Time before:  5.6627540588379
Time after:   5.665148973465
Elapsed time: 0.0023949146270752

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'sign10.gif'

Time before:  5.6653470993042
Time after:   5.6676821708679
Elapsed time: 0.0023350715637207

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'sign12.gif'

Time before:  5.6678869724274
Time after:   5.6702899932861
Elapsed time: 0.0024030208587646

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'sign13.gif'

Time before:  5.6705250740051
Time after:   5.6732051372528
Elapsed time: 0.0026800632476807

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign14.gif'

Time before:  5.6734399795532
Time after:   5.6758160591125
Elapsed time: 0.0023760795593262

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign16.gif'

Time before:  5.6760251522064
Time after:   5.6783549785614
Elapsed time: 0.0023298263549805

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign17.gif'

Time before:  5.6785500049591
Time after:   5.6809651851654
Elapsed time: 0.0024151802062988

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign18.gif'

Time before:  5.6811871528625
Time after:   5.6836671829224
Elapsed time: 0.0024800300598145

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign19.gif'

Time before:  5.6839599609375
Time after:   5.6866641044617
Elapsed time: 0.0027041435241699

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign2.gif'

Time before:  5.6869170665741
Time after:   5.6895110607147
Elapsed time: 0.002593994140625

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign4.gif'

Time before:  5.6897330284119
Time after:   5.6921730041504
Elapsed time: 0.0024399757385254

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'sign5.gif'

Time before:  5.6923930644989
Time after:   5.6947391033173
Elapsed time: 0.0023460388183594

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sign7.gif'

Time before:  5.6949450969696
Time after:   5.6972641944885
Elapsed time: 0.0023190975189209

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'sleepy1.gif'

Time before:  5.697457075119
Time after:   5.6997890472412
Elapsed time: 0.0023319721221924

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 'sleepy2.gif'

Time before:  5.6999890804291
Time after:   5.7023160457611
Elapsed time: 0.0023269653320312

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sleepy3.gif'

Time before:  5.7025220394135
Time after:   5.7048661708832
Elapsed time: 0.0023441314697266

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sleepy4.gif'

Time before:  5.705060005188
Time after:   5.7073860168457
Elapsed time: 0.0023260116577148

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sleepy5.gif'

Time before:  5.7075819969177
Time after:   5.7099230289459
Elapsed time: 0.0023410320281982

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'sleepy7.gif'

Time before:  5.7101230621338
Time after:   5.7124590873718
Elapsed time: 0.0023360252380371

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'smileinbox.gif'

Time before:  5.7126500606537
Time after:   5.7149829864502
Elapsed time: 0.0023329257965088

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'snorting.gif'

Time before:  5.7151801586151
Time after:   5.7175049781799
Elapsed time: 0.0023248195648193

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'spam1.gif'

Time before:  5.7176961898804
Time after:   5.7201490402222
Elapsed time: 0.0024528503417969

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'spam4.gif'

Time before:  5.7204070091248
Time after:   5.7228300571442
Elapsed time: 0.0024230480194092

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'stop.gif'

Time before:  5.7230441570282
Time after:   5.7253801822662
Elapsed time: 0.0023360252380371

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'tard.gif'

Time before:  5.7255771160126
Time after:   5.7279040813446
Elapsed time: 0.0023269653320312

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'thebirdman.gif'

Time before:  5.7280991077423
Time after:   5.7304391860962
Elapsed time: 0.0023400783538818

Query:	UPDATE stats_smilies_index SET smile_count = 4 WHERE smile_url = 'thefinger.gif'

Time before:  5.7306380271912
Time after:   5.7345280647278
Elapsed time: 0.0038900375366211

Query:	UPDATE stats_smilies_index SET smile_count = 3 WHERE smile_url = 'thumbsup.gif'

Time before:  5.7349720001221
Time after:   5.7377631664276
Elapsed time: 0.002791166305542

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'tongue1.gif'

Time before:  5.7380561828613
Time after:   5.7405860424042
Elapsed time: 0.0025298595428467

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'tongue11.gif'

Time before:  5.7408010959625
Time after:   5.743143081665
Elapsed time: 0.0023419857025146

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'tongue2.gif'

Time before:  5.7433409690857
Time after:   5.7456691265106
Elapsed time: 0.0023281574249268

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'tongue3.gif'

Time before:  5.7458710670471
Time after:   5.7482070922852
Elapsed time: 0.0023360252380371

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'tongue4.gif'

Time before:  5.748398065567
Time after:   5.7506999969482
Elapsed time: 0.0023019313812256

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'tongue5.gif'

Time before:  5.7509031295776
Time after:   5.7532200813293
Elapsed time: 0.002316951751709

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'tongue6.gif'

Time before:  5.7534129619598
Time after:   5.7557229995728
Elapsed time: 0.002310037612915

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'tongue7.gif'

Time before:  5.7559220790863
Time after:   5.7582101821899
Elapsed time: 0.0022881031036377

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'tongue8.gif'

Time before:  5.7584021091461
Time after:   5.7606980800629
Elapsed time: 0.002295970916748

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'tongue9.gif'

Time before:  5.7608971595764
Time after:   5.7632131576538
Elapsed time: 0.0023159980773926

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'tool.gif'

Time before:  5.7634060382843
Time after:   5.765702009201
Elapsed time: 0.002295970916748

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'toothy1.gif'

Time before:  5.7659010887146
Time after:   5.7682130336761
Elapsed time: 0.0023119449615479

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'toothy10.gif'

Time before:  5.768404006958
Time after:   5.7707121372223
Elapsed time: 0.0023081302642822

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'toothy11.gif'

Time before:  5.7709109783173
Time after:   5.7732791900635
Elapsed time: 0.0023682117462158

Query:	UPDATE stats_smilies_index SET smile_count = 1 WHERE smile_url = 'toothy12.gif'

Time before:  5.7735149860382
Time after:   5.7758951187134
Elapsed time: 0.0023801326751709

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'toothy2.gif'

Time before:  5.7760970592499
Time after:   5.7784171104431
Elapsed time: 0.0023200511932373

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'toothy3.gif'

Time before:  5.7786121368408
Time after:   5.7809271812439
Elapsed time: 0.0023150444030762

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'toothy4.gif'

Time before:  5.7811169624329
Time after:   5.7836630344391
Elapsed time: 0.0025460720062256

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'toothy5.gif'

Time before:  5.7838850021362
Time after:   5.7862281799316
Elapsed time: 0.0023431777954102

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'toothy6.gif'

Time before:  5.7864229679108
Time after:   5.7887291908264
Elapsed time: 0.0023062229156494

Query:	UPDATE stats_smilies_index SET smile_count = 7 WHERE smile_url = 'toothy9.gif'

Time before:  5.7889440059662
Time after:   5.7913081645966
Elapsed time: 0.0023641586303711

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'triplets.gif'

Time before:  5.7915031909943
Time after:   5.7937881946564
Elapsed time: 0.0022850036621094

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'tshirt.gif'

Time before:  5.7939841747284
Time after:   5.7962939739227
Elapsed time: 0.0023097991943359

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'tweety.gif'

Time before:  5.7964851856232
Time after:   5.7987730503082
Elapsed time: 0.0022878646850586

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'usa2.gif'

Time before:  5.7989680767059
Time after:   5.8014941215515
Elapsed time: 0.0025260448455811

Query:	UPDATE stats_smilies_index SET smile_count = 21 WHERE smile_url = 'violent1.gif'

Time before:  5.8017160892487
Time after:   5.8040761947632
Elapsed time: 0.0023601055145264

Query:	UPDATE stats_smilies_index SET smile_count = 2 WHERE smile_url = 'violent4.gif'

Time before:  5.8042750358582
Time after:   5.8066010475159
Elapsed time: 0.0023260116577148

Query:	UPDATE stats_smilies_index SET smile_count = 0 WHERE smile_url = 'violent5.gif'

Time before:  5.8067960739136
Time after:   5.8091139793396
Elapsed time: 0.0023179054260254

Query:	UPDATE stats_smilies_index SET smile_count = 5 WHERE smile_url = 'walk.gif'

Time before:  5.8093149662018
Time after:   5.8116180896759
Elapsed time: 0.0023031234741211

Query:	UPDATE stats_smilies_index SET smile_count = 70 WHERE smile_url = 'wav.gif'

Time before:  5.8118100166321
Time after:   5.8141391277313
Elapsed time: 0.0023291110992432

Query:	UPDATE stats_smilies_index SET smile_count = 10 WHERE smile_url = 'wave.gif'

Time before:  5.8143291473389
Time after:   5.8166530132294
Elapsed time: 0.0023238658905029

Query:	UPDATE stats_smilies_info SET last_post_id = 35793

Time before:  5.8168351650238
Time after:   5.8171060085297
Elapsed time: 0.00027084350585938

Query:	SELECT word FROM phpbb_words

Time before:  6.1876630783081
Time after:   6.1883080005646
Elapsed time: 0.00064492225646973
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_words  ALL          20  20   


Query:	SELECT COUNT( word_id ) total_words FROM phpbb_search_wordmatch

Time before:  6.189031124115
Time after:   6.1892800331116
Elapsed time: 0.00024890899658203
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:  6.1899120807648
Time after:   6.1901471614838
Elapsed time: 0.00023508071899414
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:  6.1908049583435
Time after:   29.891021966934
Elapsed time: 23.700217008591
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  swl  ALL  word_id        40012  10  Using temporary; Using filesort 
SIMPLE  swm  ref  word_id  word_id  stevew_phpb2.swl.word_id  12    Using index 
SIMPLE  wt  ALL          20    Using where 


Query:	SELECT COUNT(*) as total_users
	FROM phpbb_users
	WHERE user_id <> -1

Time before:  30.032363176346
Time after:   30.037172079086
Elapsed time: 0.0048089027404785
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  range  PRIMARY  PRIMARY    2642  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:  30.038010120392
Time after:   30.061369180679
Elapsed time: 0.023359060287476
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL          2642  Using temporary; Using filesort 
SIMPLE  ALL  PRIMARY          Using where 


Query:	SELECT COUNT(*) as total_users
	FROM phpbb_users
	WHERE user_id <> -1

Time before:  30.07705116272
Time after:   30.080187082291
Elapsed time: 0.0031359195709229
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  range  PRIMARY  PRIMARY    2642  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:  30.080945968628
Time after:   30.17439699173
Elapsed time: 0.093451023101807
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  range  PRIMARY  PRIMARY    2642  10  Using where; Using temporary; Using filesort 


Query:	SELECT cash_dbfield, cash_name
	FROM phpbb_cash
	ORDER BY cash_order DESC

Time before:  30.203927993774
Time after:   30.204149007797
Elapsed time: 0.00022101402282715
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:  30.207970142365
Time after:   30.248319149017
Elapsed time: 0.040349006652832
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  phpbb_users  range  PRIMARY  PRIMARY    2642  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:  30.309699058533
Time after:   30.31544303894
Elapsed time: 0.0057439804077148
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL  user_id        306  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:  30.348107099533
Time after:   30.350818157196
Elapsed time: 0.0027110576629639
id select_type table type possible_keys key key_len ref rows affected_rows Extra
SIMPLE  ALL  user_id        306  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:  30.372279167175
Time after:   30.373200178146
Elapsed time: 0.00092101097106934
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 = 18
	ORDER BY date_added DESC
	LIMIT 10

Time before:  30.3943400383
Time after:   30.395512104034
Elapsed time: 0.0011720657348633
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 1044 queries,
spending 27.792141675949 doing MySQL queries and 2.6168904304504 doing PHP things.