Page Time: 0.4202s

Memory: 5.3817 MB (Peak: 5.9911 MB)

Queries (30, time: 0.1102s, 26.2%)

  1. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000256
    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: 9948
    Run Time: 0.001033
    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: 13
    Run Time: 0.000530
    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 >= 900 AND post.position < 920) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 9948
    Run Time: 0.004870
    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: 9948
    Run Time: 0.000917
  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=9948&page=46, 1714950679,
    Run Time: 0.000567
  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, 547974, a:1:{i:0;s:40:"Alice: Madness Returns [Region Free/ENG]";}, 1701116101, 1714950679
    Run Time: 0.001698
  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: 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, 1714950679
    Run Time: 0.000361
  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, 548190, a:2:{i:0;s:30:"всё те-же тапки ";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:47:"Green Lantern: Rise of the Manhunters [PAL/ENG]";}}}, 1701116101, 1714950679
    Run Time: 0.004663
  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: post, 548796, a:3:{i:0;s:19:"вьетнамки ";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:1:" ";}}i:2;s:34:":) Child of Eden [Region Free/ENG]";}, 1701116101, 1714950679
    Run Time: 0.003152
  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, 550042, a:10:{i:0;s:20:"В обувном: ";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:40:"Shadows of the Damned [Region Free/ENG] ";}}i:2;s:7:"(!!!) ";i:3;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:409:"Год выхода: 21 Jun 2011 Жанр: Horror-Action Разработчик: Grasshopper Manufacture Studio Издатель: Electronic Arts Регион: Region Free Тип издания: Лицензия Прошивка: iXtreme 11-я волна Работоспособность проверена: Нет Язык интерфейса: Английский Тип перевода: Нет";}}i:4;s:42:" Один коммент оттуда: ";i:5;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:1058:"Игра отличная! Как по мне - так это вообще произведение искусства и штучная работа. Идеально отточенный и вылизанный геймплей в стиле Resident Evil от великого Миками, который очень гармонично уравновешивает абсолютно безумный, но почему-то завораживающий дизайн Гоити Суды, и все это приправлено удивительной музыкой Акиры Ямаоки, которая заставляет атмосферу просто бить фонтаном. На мой взгляд, Shadows of the Damned одна из лучших игр в этом году и однозначный шедевр от троих гениев японского геймдева. Очень надеюсь, что они и дальше будут работать вместе и радовать нас своими проектами.";}}i:6;s:70:" ----------------------------------------------------- там же: ";i:7;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:35:"F.E.A.R 3 [Region Free\MULTI10\RUS]";}}i:8;s:2:" ";i:9;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:3:{i:0;s:555:"Год выпуска: 2011 Жанр: Action Разработчик: Day 1 Studios Издательство: Warner Bros. Interactive Регион: Region Free Тип издания: лицензия Прошивка: iXtreme 11-я волна Работоспособность проверена релизером: Нет Язык интерфейса: английский, японский, немецкий, французский, испанский, итальянский, корейский, португальский, польский, ";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:14:"русский";}}i:2;s:38:". Тип перевода: текст";}}}, 1701116101, 1714950679
    Run Time: 0.017290
  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: signature, 3212, a:1:{i:0;s:17:"There only be ONE";}, 1701116101, 1714950679
    Run Time: 0.000541
  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, 550061, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:18:"dimm, post: 550042";s:8:"original";a:2:{i:0;s:28:"[quote="dimm, post: 550042"]";i:1;s:8:"[/quote]";}s:8:"children";a:1:{i:0;s:13:"оттуда:";}}i:1;s:12:" Portgas? :D";}, 1701116101, 1714950679
    Run Time: 0.005704
  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, 550063, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:22:"Каин, post: 550061";s:8:"original";a:2:{i:0;s:32:"[quote="Каин, post: 550061"]";i:1;s:8:"[/quote]";}s:8:"children";a:1:{i:0;s:8:"Portgas?";}}i:1;s:129:" Не, это цитата какого-то юзера с тапок. Портяня уже прошел, тоже хвалит.";}, 1701116101, 1714950679
    Run Time: 0.002562
  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, 552668, a:2:{i:0;s:76:"Gears Of War 3 JTAG Only [Many/FPS/2011] (NEW) фэйл, по-моему :) ";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:49:"http://picpimp.in/ABR1lLZFNqI6agR2AN99/xp9cp1.png";}}}, 1701116101, 1714950679
    Run Time: 0.011163
  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: post, 552670, a:1:{i:0;s:20:"Ах Игорек...";}, 1701116101, 1714950679
    Run Time: 0.000478
  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: signature, 1960, a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:51:"https://www.trueachievements.com/gamer/VLADIMIR+RUS";s:8:"original";a:2:{i:0;s:57:"[URL=https://www.trueachievements.com/gamer/VLADIMIR+RUS]";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:60:"https://www.trueachievements.com/gamercards/VLADIMIR+RUS.png";}}}}}, 1701116101, 1714950679
    Run Time: 0.000384
  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, 552674, a:1:{i:0;s:221:"Жаль что у меня не jtag, финальная версия будет с новой защитой, так что мне не поиграть... но и эту тоже запустить не выйдет :(";}, 1701116101, 1714950679
    Run Time: 0.000439
  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, 552675, 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:4:"VaaN";}}i:1;s:417:", с какой новой защитой ? Сейчас же вся защита в даше стоит на Ap 2.5, или думаешь новую придумают ? На битгеймере комменты какие-то неоднозначные - никто не кричит что это фейк. Странно... Хоть ты воскрешай старый ксенон и фрибуть его...";}, 1701116101, 1714950679
    Run Time: 0.000493
  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, 552678, 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:9:"ArhiAngel";}}i:1;s:81:", Там же какой то другой формат дисков, по 8гб.";}, 1701116101, 1714950679
    Run Time: 0.000682
  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, 552679, 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:4:"VaaN";}}i:1;s:593:", в LT 2.0 обещают поддержку бэкапов XGD3 (на что писать и как пока не уточняется). Но вполне возможно способ придумают. Сам привод уже научили понимать лицуху XGD3. МОжет будут вырезать random padding для вместимости на DVD9... Но именно этот релиз мне кажется странным. Всё-таки 3 месяца до оф. релиза... Может какую бетку выложили забагованную.";}, 1701116101, 1714950679
    Run Time: 0.000546
  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, 552680, a:1:{i:0;s:141:"Перенёс. Вы новости индустрии с пиратскими релизами не путайте, пожалуйста :).";}, 1701116101, 1714950679
    Run Time: 0.001087
  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, 552682, a:1:{i:0;s:330:"В любом случае нужно будет перепрошивать привод, а я этого не умею. Самое обидное, что у меня возможно была jtag консоль, но я ее обновил для l.a.noire, а игру потом все равно проходил на PS3 :(";}, 1701116101, 1714950679
    Run Time: 0.000924
  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, 552684, a:1:{i:0;s:211:"А без этого никак. В любом случае рано или поздно придётся это сделать. Xex данного релиза - март 11-го года... Интересно.";}, 1701116101, 1714950679
    Run Time: 0.000427
  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, 552852, a:3:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:18:"dimm, post: 550042";s:8:"original";a:2:{i:0;s:28:"[quote="dimm, post: 550042"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:3:{i:0;s:2:" ";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:40:"Shadows of the Damned [Region Free/ENG] ";}}i:2;s:47:"(!!!) Один коммент оттуда: ";}}i:1;s:18:" в точку: ";i:2;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:696:"Такое впечатление, что художнику приспичило нарисовать картину, ну, не шедевр, а так, творческий зуд, захотелось выразить свои мысли и эмоции. Естественно, на такой эксперимент никто ему холста и красок не выделил, поэтому пришлось (для пущего эфекта) пользоваться гoвнoм и стенкой. Примерно так и получилось - захватывающая картина (талант не пропьешь!) нарисованная говном на стене.";}}}, 1701116101, 1714950679
    Run Time: 0.023770
  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, 552855, a:1:{i:0;s:434:"Почитал комменты к Gears of War 3 JTAG - игра рабочая. Багнутая (что естественно). Жалуются на проседания fps. Также у многих проблемы с Start меню, когда загружаешь чекпоинт получаешь чёрный экран. Та же ситуация у некоторых с guide кнопкой. Вобщем - бета.";}, 1701116101, 1714950679
    Run Time: 0.000535
  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, 554472, a:5:{i:0;s:12:"Тапки: ";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:49:"Call of Juarez: The Cartel [Region Free/RUSSOUND]";}}i:2;s:1:" ";i:3;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:414:"Год выпуска: 2011 Жанр: Action 1st Person Shooter Разработчик: Techland Издательство: Ubisoft Регион: Region Free Тип издания: лицензия Прошивка: iXtreme 11-я волна Работоспособность проверена релизером: Нет Язык интерфейса: Русский Тип перевода: звук + текст ";}}i:4;s:37:" На 625 даше игра идет.";}, 1701116101, 1714950679
    Run Time: 0.016301
  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, 558291, a:3:{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:40:"Deus Ex Human Revolution XBOX360-COMPLEX";}}i:1;s:2:" ";i:2;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;s:2519:"C O M P L E X P R E S E N T S: Deus Ex: Human Revolution (c) Eidos Interactive Region: Region Free Languages: English Size: 01 x DISC Genre: RPG Platform: XBOX 360 Date: August 2011 Release Info: You play Adam Jensen, an ex-SWAT specialist who's been handpicked to oversee the defensive needs of one of America's most experimental biotechnology firms. Your job is to safeguard company secrets, but when a black ops team breaks in and kills the very scientists you were hired to protect, everything you thought you knew about your job changes Badly wounded during the attack, you have no choice but to become mechanically augmented and you soon find yourself chasing down leads all over the world, never knowing who you can trust. At a time when scientific advancements are turning athletes, soldiers and spies into super enhanced beings, someone is working very hard to ensure mankind's evolution follows a particular path You need to discover where that path lies. Because when all is said and done, the decisions you take, and the choices you make, will be the only things that can change it A divided near-future: discover a time of great technological advancement, but also a time of chaos and conspiracy. Mechanical augmentations of the human body have divided society between those who can afford them, and those who can't. Opposing forces conspire from the shadow to control the destiny of mankind: a human revolution is coming A perfect mix of action and role-play: the game uniquely combines action-packed close-quarter takedowns with intense shooting, offering a vast array of character augmentations and upgrades for the many weapons at your disposal. Unlock new abilities and increase your stealth, social hacking or combat skills: the game rewards all styles of play and approaches. Determine how you want your character to evolve, based on how you want to play the game Choices and consequences: shoot your way through your enemies, sneak up behind them without being traced, hack systems to retrieve crucial information, or use your social skills to extract information from key characters - there are always choices, multiple approaches, multiple paths and multiple tools at your disposal. Choose your playing style and face the consequences of your actions: you decide how the story unfolds Notes: Enjoy this summer blockbuster and BUY the game is you like it!! Enjoy This Fine COMPLEX Release bmx!";}}}, 1701116101, 1714950679
    Run Time: 0.007916
  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: signature, 1314, a:1:{i:0;s:107:"eat, sleep, play - олл зе вей | c восьми бит не слежу за сюжетом (с) vova";}, 1701116101, 1714950679
    Run Time: 0.000495
  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, 558293, a:1:{i:0;s:40:"О, круто, ждём отзывы :)";}, 1701116101, 1714950679
    Run Time: 0.000452

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