Page Time: 0.1676s

Memory: 5.4158 MB (Peak: 5.9806 MB)

Queries (35, time: 0.0310s, 18.5%)

  1. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000245
    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: 10661
    Run Time: 0.000893
    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: 2
    Run Time: 0.000960
    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 >= 4500 AND post.position < 4520) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 10661
    Run Time: 0.003452
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangethread_id_post_date,thread_id_positionthread_id_position8 20Using 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. SELECT attachment.*,
    	data.filename, data.file_size, data.file_hash, data.file_path, data.width, data.height, data.thumbnail_width, data.thumbnail_height
    FROM xf_attachment AS attachment
    INNER JOIN xf_attachment_data AS data ON
    	(data.data_id = attachment.data_id)
    WHERE attachment.content_type = ?
    	AND attachment.content_id IN (605493)
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.002603
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrefcontent_type_id_datecontent_type_id_date31const,const1Using index condition; Using where
    SIMPLEdataeq_refPRIMARYPRIMARY4user_nextstagerussia.attachment.data_id1 
  6. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 10661
    Run Time: 0.001448
  7. 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=10661&page=226, 1714205395,
    Run Time: 0.000566
  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, 605357, a:1:{i:0;s:303:"Наклейки когда свежие, лехко отдираются даже от картона, если картон имеет хоть мало глянца нет проблем.Вот когда постареют, конец ...лучше не трогать а то будет беда :)";}, 1701116101, 1714205395
    Run Time: 0.001198
  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, 605361, a:1:{i:0;s:118:"Может и отклеится, но я как бы распечатывать вообще не собирался.";}, 1701116101, 1714205395
    Run Time: 0.000474
  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, 7071, a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:32:"https://psnprofiles.com/YOURASHA";s:8:"original";a:2:{i:0;s:38:"[URL=https://psnprofiles.com/YOURASHA]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:43:"https://card.psnprofiles.com/2/YOURASHA.png";}}}}}, 1701116101, 1714205395
    Run Time: 0.000341
  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, 605493, a:2:{i:0;s:92:"Только купил приставку, вот слоупочу потихоньку ";i:1;a:4:{s:3:"tag";s:6:"attach";s:6:"option";N;s:8:"original";a:2:{i:0;s:8:"[ATTACH]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:8:"22842.vB";}}}, 1701116101, 1714205395
    Run Time: 0.000834
  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, 605495, a:1:{i:0;s:39:"Вижу 3 легкие платины.";}, 1701116101, 1714205395
    Run Time: 0.000942
  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, 605496, a:2:{i:0;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:39:"Вижу 3 легкие платины.";}}i:1;s:182:" Никогда не дрочил на ачивки, для которых нужно перепроходить игру. А с 1 раза платину врятле получу(";}, 1701116101, 1714205395
    Run Time: 0.000373
  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: post, 605497, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:21:"SlayteR, post: 605496";s:8:"original";a:2:{i:0;s:31:"[quote="SlayteR, post: 605496"]";i:1;s:8:"[/quote]";}s:8:"children";a:1:{i:0;s:58:"А с 1 раза платину врятле получу(";}}i:1;s:385:" В первой части - скорее всего, а вторую пройти легко. Сюжетка, челенджи, платина. Никаких проблем. Первую можно во-второй раз пробежать за 3-4 часа (с уже прокачанными перками и костюмом коровы с бесконечной маной).";}, 1701116101, 1714205395
    Run Time: 0.000611
  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, 605501, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:21:"SlayteR, post: 605493";s:8:"original";a:2:{i:0;s:31:"[quote="SlayteR, post: 605493"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:2:{i:0;s:90:"Только купил приставку, вот слоупочу потихоньку ";i:1;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:6:"CONFIG";s:8:"original";a:2:{i:0;s:15:"[ATTACH=CONFIG]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"22842";}}}}i:1;s:41:" Печальное начало :hang1:";}, 1701116101, 1714205395
    Run Time: 0.000530
  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, 10894, a:1:{i:0;s:70:"Я вижу всё насквозь и мне неприятно. (с)";}, 1701116101, 1714205395
    Run Time: 0.001349
  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, 605556, a:2:{i:0;s:65:"Подарки себе любимому на новый год: ";i:1;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:21:"http://www.radikal.ru";s:8:"original";a:2:{i:0;s:27:"[url=http://www.radikal.ru]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[img]";i:1;s:6:"[/img]";}s:8:"children";a:1:{i:0;s:52:"http://s019.radikal.ru/i642/1212/48/7a1c8805dff1.jpg";}}}}}, 1701116101, 1714205395
    Run Time: 0.000941
  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: signature, 4392, a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:33:"http://psnprofiles.com/EvilSergey";s:8:"original";a:2:{i:0;s:39:"[URL=http://psnprofiles.com/EvilSergey]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:44:"http://card.psnprofiles.com/1/EvilSergey.png";}}}}}, 1701116101, 1714205395
    Run Time: 0.000391
  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, 605567, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:21:"Akira29, post: 605556";s:8:"original";a:2:{i:0;s:31:"[quote="Akira29, post: 605556"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:2:{i:0;s:65:"Подарки себе любимому на новый год: ";i:1;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:21:"http://www.radikal.ru";s:8:"original";a:2:{i:0;s:27:"[url=http://www.radikal.ru]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[img]";i:1;s:6:"[/img]";}s:8:"children";a:1:{i:0;s:52:"http://s019.radikal.ru/i642/1212/48/7a1c8805dff1.jpg";}}}}}}i:1;s:76:" С Белым Новым Годом! что за чехол на Вите?";}, 1701116101, 1714205395
    Run Time: 0.000861
  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: signature, 595, a:3:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:44:"http://www.xboxgamertag.com/search/kenne4ka/";s:8:"original";a:2:{i:0;s:52:"[URL='http://www.xboxgamertag.com/search/kenne4ka/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:63:"http://www.xboxgamertag.com/gamercard/kenne4ka/fullnxe/card.png";}}}}i:1;s:147:" Мне никто жить не мешает. А если кто и мешает хоть как-то - то русские в основном. ";i:2;a:4:{s:3:"tag";s:5:"color";s:6:"option";s:9:"royalblue";s:8:"original";a:2:{i:0;s:17:"[COLOR=royalblue]";i:1;s:8:"[/COLOR]";}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:13:"Лекс (с)";}}}}}, 1701116101, 1714205395
    Run Time: 0.000672
  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, 605573, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:21:"Kennedy, post: 605567";s:8:"original";a:2:{i:0;s:31:"[quote="Kennedy, post: 605567"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:38:" что за чехол на Вите?";}}i:1;s:101:" Обычный пластиковый короб с люминием на лицевой части.";}, 1701116101, 1714205395
    Run Time: 0.000341
  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, 605647, a:2:{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:7:"Akira29";}}i:1;s:259:", Ты как уважаемый геймер. Скажи, как ассасин новый и Барнаут по графике воснавном и геймплею. Читал, что Асссасин похож на Анчартед по графике.";}, 1701116101, 1714205395
    Run Time: 0.001880
  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: signature, 155, a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:45:"https://www.mygamerprofile.net/gamer/xandrasx";s:8:"original";a:2:{i:0;s:51:"[url=https://www.mygamerprofile.net/gamer/xandrasx]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[img]";i:1;s:6:"[/img]";}s:8:"children";a:1:{i:0;s:55:"https://www.mygamerprofile.net/card/onesig/xandrasx.png";}}}}}, 1701116101, 1714205395
    Run Time: 0.000429
  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, 605741, a:2:{i:0;s:494:"По графике он может и похож, но его делали Юбисофт Болгария и мяхко говоря им руки поотрыват мало ...лучше б в Африке сделали может получше бы и получилось. ---------------------------------------------------------------------- Три игры которые были в графе, скорее всего НЕТ, но по цене 5 евро уже стали ДА. ";i:1;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[img]";i:1;s:6:"[/img]";}s:8:"children";a:1:{i:0;s:47:"http://i056.radikal.ru/1301/24/7405002ddb57.jpg";}}}, 1701116101, 1714205395
    Run Time: 0.001258
  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, 605749, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:21:"Zografa, post: 605741";s:8:"original";a:2:{i:0;s:31:"[quote="Zografa, post: 605741"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:280:"По графике он может и похож, но его делали Юбисофт Болгария и мяхко говоря им руки поотрыват мало ...лучше б в Африке сделали может получше бы и получилось.";}}i:1;s:279:" Какая Болгария, игра делалась почти полностью в Ubisoft Montreal и Quebec. Единственный аутсоурс был Ubisoft Singapore/Shanghai, и то только морские битвы там делали для игры.";}, 1701116101, 1714205395
    Run Time: 0.000466
  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: signature, 3331, a:1:{i:0;s:34:"Undisputed Destiny 2 Champion 2021";}, 1701116101, 1714205395
    Run Time: 0.000316
  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, 605750, a:5:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:25:"Derpcrawler, post: 605749";s:8:"original";a:2:{i:0;s:35:"[quote="Derpcrawler, post: 605749"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:29:"Какая Болгария, ";}}i:1;s:235:" Сам найди инфо, я тебе говорю игру всю делали Юби-Болгария, как и принц персии трилогия hd римейк. -------------------------- the Vita exclusive game is in ";i:2;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:40:"development at Ubisoft Sofia in Bulgaria";}}i:3;s:3:". ";i:4;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:119:"http://www.computerandvideogames.com/372062/video-assassins-creed-liberation-replicates-the-console-experience-on-vita/";s:8:"original";a:2:{i:0;s:127:"[URL="http://www.computerandvideogames.com/372062/video-assassins-creed-liberation-replicates-the-console-experience-on-vita/"]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:119:"http://www.computerandvideogames.com/372062/video-assassins-creed-liberation-replicates-the-console-experience-on-vita/";}}}, 1701116101, 1714205395
    Run Time: 0.000500
  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, 605752, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:21:"Zografa, post: 605750";s:8:"original";a:2:{i:0;s:31:"[quote="Zografa, post: 605750"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:174:"Сам найди инфо, я тебе говорю игру всю делали Юби-Болгария, как и принц персии трилогия hd римейк.";}}i:1;s:864:" Чувак, я знаю людей которые работают в Ubisoft Shanghai, тот же Revelations почти полностью им и еще кому-то на аутсоурс отдали. В этот раз им дали только морские битвы. Ubisoft Montreal Additional work by: Ubisoft Quebec (Wii U) Ubisoft Kiev (Windows) Ubisoft Romania (Windows) Ubisoft Annecy (multiplayer) Ubisoft Singapore (naval gameplay) Ubisoft Bulgaria - 13 сотрудников в R&D Последние игры: Rayman Raving Rabbids (MAC) Nov 27, 2008 Chessmaster LIVE (X360) Jan 30, 2008 CSI: Crime Scene Investigation: 3 Dimensions of Murder (PS2) Sep 25, 2007 Rayman Raving Rabbids (DS) Mar 6, 2007 Rayman Raving Rabbids (PC) Dec 11, 2006 Prince of Persia Trilogy (PS3) Nov 10, 2010";}, 1701116101, 1714205395
    Run Time: 0.000495
  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, 605754, a:1:{i:0;a:4:{s:3:"tag";s:5:"media";s:6:"option";s:7:"youtube";s:8:"original";a:2:{i:0;s:15:"[media=youtube]";i:1;s:8:"[/media]";}s:8:"children";a:1:{i:0;s:11:"u2CoAtsEpSw";}}}, 1701116101, 1714205395
    Run Time: 0.000450
  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: post, 605755, a:2:{i:0;s:37:"Тоже пишут Болгария ";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:56:"http://gamer-info.com/game/assassins-creed-3-liberation/";}}}, 1701116101, 1714205395
    Run Time: 0.000850
  31. 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, 6393, a:1:{i:0;s:41:"I love the smell of napalm in the morning";}, 1701116101, 1714205395
    Run Time: 0.000372
  32. 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, 605763, a:2:{i:0;s:129:"Наконец-то приобрел анчартед на виту, теперь вся серия в полном сборе: ";i:1;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:21:"http://www.radikal.ru";s:8:"original";a:2:{i:0;s:27:"[url=http://www.radikal.ru]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[img]";i:1;s:6:"[/img]";}s:8:"children";a:1:{i:0;s:51:"http://s53.radikal.ru/i140/1301/f0/b50800f3371f.jpg";}}}}}, 1701116101, 1714205395
    Run Time: 0.000345
  33. 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, 605764, a:1:{i:0;s:218:"Я писал про приставочную версию. Игры для недоконсолей и смартфонов я не играю. Просто думал Андрас спрашивал про AC3. Derp.";}, 1701116101, 1714205395
    Run Time: 0.001288
  34. 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, 605786, a:3:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:84:"http://i59.photobucket.com/albums/g300/Klaus_fon_Bugenhagen/IMG_1675_zps8c52415b.jpg";}}i:1;s:2:" ";i:2;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:84:"http://i59.photobucket.com/albums/g300/Klaus_fon_Bugenhagen/IMG_1676_zpsb11c5a2c.jpg";}}}, 1701116101, 1714205395
    Run Time: 0.001840
  35. 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, 3981, a:1:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:1:"5";s:8:"original";a:2:{i:0;s:8:"[SIZE=5]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:5:"color";s:6:"option";s:7:"#ff0000";s:8:"original";a:2:{i:0;s:15:"[COLOR=#ff0000]";i:1;s:8:"[/COLOR]";}s:8:"children";a:1:{i:0;s:17:"for mother Russia";}}}}}, 1701116101, 1714205395
    Run Time: 0.000438

Included Files (114, XenForo Classes: 63)

  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/XenForo/Model/Attachment.php
  76. library/XenForo/Route/Prefix/Attachments.php
  77. library/NextStage/Feature/Model/Feature.php
  78. library/XenForo/Model/Node.php
  79. library/Tapatalk/Model/Node.php
  80. library/XenForo/Route/Prefix/Categories.php
  81. library/XenForo/Route/Prefix/Forums.php
  82. library/XenForo/ControllerResponse/View.php
  83. library/XenForo/ControllerResponse/Abstract.php
  84. library/XenForo/Helper/Cookie.php
  85. library/Tapatalk/Listener/ControllerPostDispatch.php
  86. library/XenForo/ViewRenderer/HtmlPublic.php
  87. library/XenForo/ViewRenderer/Abstract.php
  88. library/XenForo/Template/Public.php
  89. library/XenForo/Template/Abstract.php
  90. library/XenForo/ViewPublic/Thread/View.php
  91. library/XenForo/ViewPublic/Base.php
  92. library/XenForo/View.php
  93. library/XenForo/BbCode/Parser.php
  94. library/XenForo/BbCode/Formatter/Base.php
  95. library/XenForo/ViewPublic/Helper/Message.php
  96. library/XenForo/BbCode/TextWrapper.php
  97. library/XenForo/Route/Prefix/Members.php
  98. library/Dark/TaigaChat/EventListener/NavigationTabs.php
  99. library/NextStage/ThreadRating/Listener/Template.php
  100. library/XenForo/Template/FileHandler.php
  101. library/XenForo/Helper/File.php
  102. internal_data/templates/S.1,L.1,thread_view.php
  103. library/Tapatalk/EventListener/Hook.php
  104. internal_data/templates/S.1,L.1,page_nav.php
  105. library/Tapatalk/Listener/TemplatePostRender.php
  106. library/XenForo/Route/Prefix/Posts.php
  107. internal_data/templates/S.1,L.1,nextstage_feature_post_private_controls.php
  108. library/XenForo/Model/Avatar.php
  109. internal_data/templates/S.1,L.1,bb_code_tag_attach.php
  110. internal_data/templates/S.1,L.1,bb_code_tag_quote.php
  111. library/XenForo/Debug.php
  112. internal_data/templates/S.1,L.1,PAGE_CONTAINER.php
  113. mobiquo/smartbanner/head.inc.php
  114. library/XenForo/ViewRenderer/Json.php