Page Time: 0.1654s

Memory: 5.3592 MB (Peak: 5.9025 MB)

Queries (30, time: 0.0498s, 30.1%)

  1. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000235
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  2. SELECT thread.*
    	,
    		user.gender, user.avatar_date, user.gravatar,
    		NULL AS thread_read_date,
    		0 AS thread_reply_banned,
    		0 AS thread_is_watched,
    		'' AS draft_message, NULL AS draft_extra,
    		IF(rate.count IS NULL, 0, rate.count) AS thread_rate_count, IF(rate.sum IS NULL, 0, rate.sum) AS thread_rate_sum, IF(rate.avg IS NULL, 0, rate.avg) AS thread_rate_avg
    FROM xf_thread AS thread
    
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = thread.user_id)
    		LEFT JOIN ns_threadrating_rate AS rate ON (rate.thread_id = thread.thread_id)
    WHERE thread.thread_id = ?
    Params: 12667
    Run Time: 0.000962
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLErateconstPRIMARYPRIMARY4const0Unique row not found
  3. SELECT node.*, forum.*
    	,
    	permission.cache_value AS node_permission_cache,
    		NULL AS forum_read_date
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    	LEFT JOIN xf_permission_cache_content AS permission
    		ON (permission.permission_combination_id = 1
    			AND permission.content_type = 'node'
    			AND permission.content_id = forum.node_id)
    WHERE node.node_id = ?
    Params: 7
    Run Time: 0.000510
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  4. SELECT post.*
    	,
    		bb_code_parse_cache.parse_tree AS message_parsed, bb_code_parse_cache.cache_version AS message_cache_version,
    		user.*, IF(user.username IS NULL, post.username, user.username) AS username,
    		user_profile.*,
    		user_privacy.*,
    		signature_parse_cache.parse_tree AS signature_parsed, bb_code_parse_cache.cache_version AS signature_cache_version,
    		session_activity.view_date AS last_view_date,
    		0 AS like_date
    FROM xf_post AS post
    
    		LEFT JOIN xf_bb_code_parse_cache AS bb_code_parse_cache ON
    			(bb_code_parse_cache.content_type = 'post' AND bb_code_parse_cache.content_id = post.post_id)
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = post.user_id)
    		LEFT JOIN xf_user_profile AS user_profile ON
    			(user_profile.user_id = post.user_id)
    		LEFT JOIN xf_user_privacy AS user_privacy ON
    			(user_privacy.user_id = post.user_id)
    		LEFT JOIN xf_bb_code_parse_cache AS signature_parse_cache ON
    			(signature_parse_cache.content_type = 'signature' AND signature_parse_cache.content_id = post.user_id)
    		LEFT JOIN xf_session_activity AS session_activity ON
    			(post.user_id > 0 AND session_activity.user_id = post.user_id AND session_activity.unique_key = CAST(post.user_id AS BINARY))
    WHERE post.thread_id = ?
    	 AND (post.position >= 40 AND post.position < 60) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 12667
    Run Time: 0.005717
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangethread_id_post_date,thread_id_positionthread_id_position8 21Using index condition; Using where; Using filesort
    SIMPLEbb_code_parse_cacheeq_refcontent_type_idcontent_type_id31const,user_nextstagerussia.post.post_id1Using where
    SIMPLEusereq_refPRIMARYPRIMARY4user_nextstagerussia.post.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4user_nextstagerussia.post.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4user_nextstagerussia.post.user_id1 
    SIMPLEsignature_parse_cacheeq_refcontent_type_idcontent_type_id31const,user_nextstagerussia.post.user_id1Using where
    SIMPLEsession_activityeq_refPRIMARYPRIMARY22user_nextstagerussia.post.user_id,func1Using where
  5. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 12667
    Run Time: 0.000323
  6. INSERT INTO xf_session_activity
    	(user_id, unique_key, ip, controller_name, controller_action, view_state, params, view_date, robot_key)
    VALUES
    	(?, ?, ?, ?, ?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE
    	ip = VALUES(ip),
    	controller_name = VALUES(controller_name),
    	controller_action = VALUES(controller_action),
    	view_state = VALUES(view_state),
    	params = VALUES(params),
    	view_date = VALUES(view_date),
    	robot_key = VALUES(robot_key)
    Params: 0, , , XenForo_ControllerPublic_Thread, Index, valid, thread_id=12667&page=3, 1714627480,
    Run Time: 0.000366
  7. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 275269, a:1:{i:0;s:75:"От Сеги жду VF5:R. Надеюсь, зарелизят и на PS3.";}, 1701116101, 1714627480
    Run Time: 0.011415
  8. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 275306, a:1:{i:0;s:44:"Mad World кстати впечатляет.";}, 1701116101, 1714627480
    Run Time: 0.000741
  9. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 275332, a:1:{i:0;s:559:"из последних релизов компании мне очень понравилась только Sega Superstars Tennis великолепные миниигры, отличная атмосфера хитовых игр студии единственное что не понравилось: в матчах Соник против Соника, например, оба ежа выглядят абсолютно одинаково, особенно это мешает в парных встречах, путаешься банально.";}, 1701116101, 1714627480
    Run Time: 0.000520
  10. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 239, a:1:{i:0;s:18:"PSN ID: Spinkedzzz";}, 1701116101, 1714627480
    Run Time: 0.000515
  11. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 276309, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:19:"Snake, post: 266731";s:8:"original";a:2:{i:0;s:29:"[quote="Snake, post: 266731"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:514:"Я соглашусь с тобой и не соглашусь. Чесно говоря, меня ни разу не попёр Sonic:Adventure 1/2 на Dreamcast, даже не смотрел на всё, что выходило на PS2, проблевался от демки первого Sonic на xbox360. Но последний ролик нового Соника понравился именно из-за своего псевдо 3д. Я думаю, это вернёт ежу былую славу)";}}i:1;s:107:" на псп уже 2 части такие есть.. вполне себе игрушка на 7-ку!";}, 1701116101, 1714627480
    Run Time: 0.000980
  12. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 277892, a:4:{i:0;s:40:"Сега переходит на UE3 ";i:1;a:4:{s:3:"tag";s:5:"quote";s:6:"option";N;s:8:"original";a:2:{i:0;s:7:"[QUOTE]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:1924:"Press release: SEGA Purchases New Unreal Engine 3 License SAN FRANCISCO – May 27, 2008 – SEGA® of America today announced that it has extended its relationship with Epic Games by signing a new Unreal Engine 3 licensing deal for an unannounced, cross-platform game. SEGA entered into its original licensing agreement to develop multiple titles with Unreal Engine 3 in May 2007. Details of the project in development will be released at a later date. "The great capabilities of Unreal Engine 3 make it possible for our developers to deliver incredible gaming experiences,” said Dave Cobb, Vice President of Development for SEGA of America, Inc. "Unreal Engine 3 provides superior power and flexibility enabling SEGA to bring original and exciting next-generation multi-platform titles." “SEGA has cultivated some of the world’s most treasured game franchises, and we are thrilled that they have decided to make more games with Unreal Engine 3,” said Mark Rein, vice president of Epic Games. “Epic is committed to supporting SEGA with exceptional tools and technologies so it may continue to build upon its successes.” Developers and publishers around the world have licensed Unreal Engine 3 for PC, Xbox 360 and PlayStation 3. Since Epic has shipped its internal titles across all supported platforms, the engine's content pipeline and technical capabilities have achieved unprecedented levels of maturity and accessibility. These advancements, combined with the continual incorporation of top quality middleware libraries via Epic's prestigious Integrated Partners Program, present Unreal Engine 3 as a superior offering for cross-platform game development. Through this licensing agreement, SEGA will be able to take advantage of Unreal Engine 3’s latest technological enhancements, including dynamic ambient occlusion, destructible environments, an advanced crowd system and much more.";}}i:2;s:4:" ";i:3;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[url]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;s:46:"http://www.gamingbits.com/content/view/4142/2/";}}}, 1701116101, 1714627480
    Run Time: 0.008036
  13. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 277940, a:1:{i:0;s:74:"Ну началось... Хотя у них давно началось.:(";}, 1701116101, 1714627480
    Run Time: 0.000496
  14. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 472, a:3:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:26:"http://shenmue.link/order/";s:8:"original";a:2:{i:0;s:34:"[URL='http://shenmue.link/order/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:64:"Помоги дядe Ю, поддержи, б**дь, Шенму!";}}}}i:1;s:2:" ";i:2;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[URL]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:26:"http://shenmue.link/order/";}}}, 1701116101, 1714627480
    Run Time: 0.000533
  15. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 278029, a:3:{i:0;s:255:"Да ладно вам :) Помнится на Dreamcast у них была игрушка в стиле Unreal Tornament заточенная под мульти. Сейчас движок купят, и сделают какой-нибудь клон ";i:1;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:3:"UT ";}}i:2;s:174:" :) Главное грамотно слизать все фишки оригинала + чуть-чуть о себя добавить - и деньги собирать :)";}, 1701116101, 1714627480
    Run Time: 0.000534
  16. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 196, a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:54:"http://www.nextstage.ru/member.php?find=lastposter&f=9";s:8:"original";a:2:{i:0;s:62:"[URL="http://www.nextstage.ru/member.php?find=lastposter&f=9"]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:1:" ";}}}, 1701116101, 1714627480
    Run Time: 0.000357
  17. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 278294, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:21:"DARkmax, post: 278029";s:8:"original";a:2:{i:0;s:31:"[quote="DARkmax, post: 278029"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:3:{i:0;s:255:"Да ладно вам :) Помнится на Dreamcast у них была игрушка в стиле Unreal Tornament заточенная под мульти. Сейчас движок купят, и сделают какой-нибудь клон ";i:1;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:3:"UT ";}}i:2;s:174:" :) Главное грамотно слизать все фишки оригинала + чуть-чуть о себя добавить - и деньги собирать :)";}}i:1;s:54:" а ут то сам деньги собирает?";}, 1701116101, 1714627480
    Run Time: 0.001944
  18. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 278354, a:1:{i:0;s:244:"Про UT бред. Бум онлайн-шутеров прошел. А UT сейчас применяется весьма широко в плане игрожанров. Разве что стратегии на нем не штампуют.";}, 1701116101, 1714627480
    Run Time: 0.006362
  19. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 278363, a:1:{i:0;s:475:"Не скажи, посмотришь на CoD4 и призадумаешься. Как раз в этом поколении консолей онлайн стал наиболее актуальным. Может на PC - спад, не знаю, а на консолях - все наоборот. Дело не в UT, а в том, что онлайн сейчас наиболее актуален. Если SEGA займет эту нишу- может вылезет.";}, 1701116101, 1714627480
    Run Time: 0.005591
  20. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 278372, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:21:"DARkmax, post: 278363";s:8:"original";a:2:{i:0;s:31:"[quote="DARkmax, post: 278363"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:475:"Не скажи, посмотришь на CoD4 и призадумаешься. Как раз в этом поколении консолей онлайн стал наиболее актуальным. Может на PC - спад, не знаю, а на консолях - все наоборот. Дело не в UT, а в том, что онлайн сейчас наиболее актуален. Если SEGA займет эту нишу- может вылезет.";}}i:1;s:451:" Ну все равно сейчас не так, как в 99 - 2000 годах, тогда было что ни день - то анонс сетевого шутера. Да и сколько сейчас шутеров с достаточно высокой популярностью? COD, Halo, UT? Нужны ли народу еще? Плюс новым шутером народ надо увлечь, а это весьма непросто.";}, 1701116101, 1714627480
    Run Time: 0.000475
  21. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 278374, a:1:{i:0;s:70:"Маленькая поправочка- не на консолях :)";}, 1701116101, 1714627480
    Run Time: 0.000208
  22. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 278379, a:1:{i:0;s:343:"Это все к тому, что сейчас производство сетевого шутера мероприятие куда более сомнительное, чем 10 лет назад. Впрочем, может я и ошибаюсь и через год мы все будем гонять убершутер от Сеги. :)";}, 1701116101, 1714627480
    Run Time: 0.000196
  23. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 278386, a:1:{i:0;s:786:"Да ужж.....Действительно,глядя на список релизов кажется что компании лишь бы хоть чут-чуть заработать хочется, издавая или разрабатывая более менее посредственые игры. А игры эти покупают....особенно с знаменитыми лицензиями. И туту вопрос даже не в том выживет компания или нет. А в том сможет ли она вновь приобрести культовый статус.....ну или хотя бы заработать обычное уважение. От прежней сеги остались лишь логотип и название :(";}, 1701116101, 1714627480
    Run Time: 0.000262
  24. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 278397, a:1:{i:0;s:54:"Да вы ролики Mad World посмотрите!";}, 1701116101, 1714627480
    Run Time: 0.000325
  25. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 283359, a:1:{i:0;s:88:"Новый Hulk на PC это порт с PS2, как и Iron Man, спасибо sega.";}, 1701116101, 1714627480
    Run Time: 0.000354
  26. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 297425, a:3:{i:0;s:97:"Интервью с представителем Sega - Dreamcast 2? Seaman 2? Shenmue 3? - No ";i:1;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[url]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;s:110:"http://kotaku.com/5028180/e308-simon-jeffery-destroys-all-of-your-hopes-for-dreamcast-2-shenmue-3-and-seaman-2";}}i:2;s:291:" PS Кстати непонятно, почему он так уверенно отверг выход Seaman 2, игра появилась в Японии почти год назад. Или он об этом не знает, или речь шла о английской версии.";}, 1701116101, 1714627480
    Run Time: 0.000634
  27. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 297622, a:1:{i:0;s:188:"Кто согласен, что Сега - самая садисткая компания на свете? Как они Virtua Fighter умудрились не похерить?О_о";}, 1701116101, 1714627480
    Run Time: 0.000286
  28. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 297795, a:1:{i:0;s:220:"Если бы сега выпустила Шенму3, то сделала бы шаг на встечу потребителям. А там за последнии годы ничё путного невыходило:(";}, 1701116101, 1714627480
    Run Time: 0.000301
  29. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 297796, a:1:{i:0;s:250:"Дримкаст 2, пфффф ага блин. Всё равно что у бомжа спросить какие у него планы на будущее?! Карибы, Бугатти,PS3. Жалко конечно, а что делать...";}, 1701116101, 1714627480
    Run Time: 0.000360
  30. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 90, a:3:{i:0;a:4:{s:3:"tag";s:5:"color";s:6:"option";s:7:"#ff0000";s:8:"original";a:2:{i:0;s:17:"[COLOR="#ff0000"]";i:1;s:8:"[/COLOR]";}s:8:"children";a:1:{i:0;s:20:"Играю:Persona 4";}}i:1;s:2:" ";i:2;a:4:{s:3:"tag";s:5:"color";s:6:"option";s:7:"#0000ff";s:8:"original";a:2:{i:0;s:17:"[COLOR="#0000ff"]";i:1;s:8:"[/COLOR]";}s:8:"children";a:1:{i:0;s:43:" Прошёл:Alan Wake Прошёл:Lair";}}}, 1701116101, 1714627480
    Run Time: 0.000302

Included Files (112, XenForo Classes: 62)

  1. index.php
  2. library/XenForo/Autoloader.php
  3. library/XenForo/Application.php
  4. library/Zend/Registry.php
  5. library/Lgpl/utf8.php
  6. library/Zend/Config.php
  7. library/config.php
  8. library/XenForo/FrontController.php
  9. library/XenForo/Dependencies/Public.php
  10. library/XenForo/Dependencies/Abstract.php
  11. library/Zend/Controller/Request/Http.php
  12. library/Zend/Controller/Request/Abstract.php
  13. library/Zend/Uri.php
  14. library/Zend/Controller/Response/Http.php
  15. library/Zend/Controller/Response/Abstract.php
  16. library/XenForo/Model/DataRegistry.php
  17. library/XenForo/Model.php
  18. library/Zend/Cache.php
  19. library/Zend/Cache/Backend/Memcached.php
  20. library/Zend/Cache/Backend/ExtendedInterface.php
  21. library/Zend/Cache/Backend/Interface.php
  22. library/Zend/Cache/Backend.php
  23. library/Zend/Cache/Core.php
  24. library/XenForo/CodeEvent.php
  25. library/XenForo/Options.php
  26. library/XenForo/Link.php
  27. library/XenForo/Template/Helper/Core.php
  28. library/NextStage/Feature/Listener/Feature.php
  29. library/XenForo/Router.php
  30. library/XenForo/Route/Filter.php
  31. library/XenForo/Route/Interface.php
  32. library/XenForo/Route/ResponseSuffix.php
  33. library/XenForo/Route/Prefix.php
  34. library/XenForo/Route/Prefix/Threads.php
  35. library/XenForo/RouteMatch.php
  36. library/XenForo/ControllerPublic/Thread.php
  37. library/XenForo/ControllerPublic/Abstract.php
  38. library/XenForo/Controller.php
  39. library/NextStage/ThreadRating/Listener/Class.php
  40. library/NextStage/TaigaChat/Listener.php
  41. library/NextStage/XenForo/Listener/XenForo.php
  42. library/Tapatalk/Listener/LoadClassModel.php
  43. library/NextStage/ThreadRating/ControllerPublic/Thread.php
  44. library/NextStage/XenForo/ControllerPublic/XenForo.php
  45. library/NextStage/XenForo/ControllerPublic/Thread.php
  46. library/XenForo/Input.php
  47. library/XenForo/Session.php
  48. library/Zend/Db.php
  49. library/Zend/Db/Adapter/Mysqli.php
  50. library/Zend/Db/Adapter/Abstract.php
  51. library/Zend/Db/Select.php
  52. library/Zend/Db/Expr.php
  53. library/Zend/Db/Profiler.php
  54. library/Zend/Db/Statement/Mysqli.php
  55. library/Zend/Db/Statement.php
  56. library/Zend/Db/Statement/Interface.php
  57. library/XenForo/Helper/Ip.php
  58. library/XenForo/Visitor.php
  59. library/XenForo/Model/User.php
  60. library/Dark/TaigaChat/EventListener/Listener.php
  61. library/Zend/Db/Profiler/Query.php
  62. library/XenForo/Permission.php
  63. library/XenForo/Helper/Php.php
  64. library/XenForo/Phrase.php
  65. library/XenForo/Locale.php
  66. library/XenForo/ControllerHelper/ForumThreadPost.php
  67. library/XenForo/ControllerHelper/Abstract.php
  68. library/XenForo/Model/Thread.php
  69. library/NextStage/ThreadRating/Model/Thread.php
  70. library/XenForo/Model/Forum.php
  71. library/XenForo/Helper/String.php
  72. library/XenForo/Helper/Discussion.php
  73. library/XenForo/Model/Post.php
  74. library/NextStage/Feature/Model/Post.php
  75. library/NextStage/Feature/Model/Feature.php
  76. library/XenForo/Model/Attachment.php
  77. library/XenForo/Model/Node.php
  78. library/Tapatalk/Model/Node.php
  79. library/XenForo/Route/Prefix/Categories.php
  80. library/XenForo/Route/Prefix/Forums.php
  81. library/XenForo/ControllerResponse/View.php
  82. library/XenForo/ControllerResponse/Abstract.php
  83. library/XenForo/Helper/Cookie.php
  84. library/Tapatalk/Listener/ControllerPostDispatch.php
  85. library/XenForo/ViewRenderer/HtmlPublic.php
  86. library/XenForo/ViewRenderer/Abstract.php
  87. library/XenForo/Template/Public.php
  88. library/XenForo/Template/Abstract.php
  89. library/XenForo/ViewPublic/Thread/View.php
  90. library/XenForo/ViewPublic/Base.php
  91. library/XenForo/View.php
  92. library/XenForo/BbCode/Parser.php
  93. library/XenForo/BbCode/Formatter/Base.php
  94. library/XenForo/ViewPublic/Helper/Message.php
  95. library/XenForo/BbCode/TextWrapper.php
  96. library/XenForo/Route/Prefix/Members.php
  97. library/Dark/TaigaChat/EventListener/NavigationTabs.php
  98. library/NextStage/ThreadRating/Listener/Template.php
  99. library/XenForo/Template/FileHandler.php
  100. library/XenForo/Helper/File.php
  101. internal_data/templates/S.1,L.1,thread_view.php
  102. library/Tapatalk/EventListener/Hook.php
  103. internal_data/templates/S.1,L.1,page_nav.php
  104. library/Tapatalk/Listener/TemplatePostRender.php
  105. library/XenForo/Route/Prefix/Posts.php
  106. internal_data/templates/S.1,L.1,nextstage_feature_post_private_controls.php
  107. library/XenForo/Model/Avatar.php
  108. internal_data/templates/S.1,L.1,bb_code_tag_quote.php
  109. library/XenForo/Debug.php
  110. internal_data/templates/S.1,L.1,PAGE_CONTAINER.php
  111. mobiquo/smartbanner/head.inc.php
  112. library/XenForo/ViewRenderer/Json.php