Page Time: 0.1521s

Memory: 5.4453 MB (Peak: 6.0585 MB)

Queries (30, time: 0.0275s, 18.1%)

  1. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000188
    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: 22345
    Run Time: 0.000784
    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: 45
    Run Time: 0.000374
    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 >= 0 AND post.position < 20) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 22345
    Run Time: 0.002995
    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 (678484)
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000776
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrefcontent_type_id_datecontent_type_id_date31const,const2Using index condition; Using where
    SIMPLEdataeq_refPRIMARYPRIMARY4user_nextstagerussia.attachment.data_id1 
  6. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 22345
    Run Time: 0.000448
  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=22345, 1714745387,
    Run Time: 0.000293
  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, 630620, a:6:{i:0;s:117:"Fable Legends анонсирована для XBOX ONE на Gamescom 2013. Онлайновая, кооп на 4-х: ";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:370:" A persistent online title with four player co-op, Fable Legends is fully supported by Xbox Cloud services. During a match, one player controls a villain, and the other three challenge them. The villain veiws the game from a top-down perspective and can place traps and enemies. Players can use various skills including archery, magic, melee weapons and brute strength. ";}}i:2;s:1:" ";i:3;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:"XQyv9IDi1Qw";}}i:4;s:1:" ";i:5;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:65:"http://www.vg247.com/2013/08/20/xbox-one-fable-legends-announced/";}}}, 1701116101, 1714745387
    Run Time: 0.001005
  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: signature, 3212, a:1:{i:0;s:17:"There only be ONE";}, 1701116101, 1714745387
    Run Time: 0.000366
  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, 630622, a:6:{i:0;s:69:"Да, видимо, темка будет пустовать :D UE4 ";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:53:"http://www.fablelegends.com/Content/img/screens/1.jpg";}}i:2;s:1:" ";i:3;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:53:"http://www.fablelegends.com/Content/img/screens/2.jpg";}}i:4;s:1:" ";i:5;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:53:"http://www.fablelegends.com/Content/img/screens/3.jpg";}}}, 1701116101, 1714745387
    Run Time: 0.000338
  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, 630699, a:1:{i:0;s:36:"Я бы на 3дс поиграл :)";}, 1701116101, 1714745387
    Run Time: 0.003745
  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, 4, a:2:{i:0;s:58:"vova: Versatile Online Violence Android SW 6368 9221 0229 ";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:45:"https://card.psnprofiles.com/1/Wiizardwii.png";}}}, 1701116101, 1714745387
    Run Time: 0.000484
  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, 630982, a:4:{i:0;s:95:"Сингл будет. Остальной компашкой будет управлять AI: ";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:3:{i:0;s:3203:"If you've got a question and it's not covered below, feel free to post and we'll do our best to get it answered! What is Fable Legends? Fable Legends is the new game from Lionhead Studios, developer of the Fable series. Happily, we can reveal what we’ve been working on and share some details about what’s been happening in the land of Fable. In Fable Legends you will: Rediscover Fable: Return to a well-loved world of magic, humour and high adventure. Find thrilling stories, exciting combat, and exceptional characters. New Ways to Play: In Fable Legends, your Hero will never be alone. You can play the game single player, with a party of three AI companions that follow your lead. Or, you can play cooperatively with up to three of your friends to discover the game’s quests and content. Hero or Villain? Whether your inclination is noble or wicked, we have entirely new characters and possibilities for you to choose from. Fable has always allowed players with an evil streak to express themselves, and Fable Legends presents new opportunities for villainy (cackling included). Instead of controlling a single character, you command the many creatures, traps, and environmental challenges that the Heroes must struggle to overcome. But make no mistake: You aren’t crafting a thrilling narrative at the end of which the Heroes prove victorious. Your goal is to defeat the Heroes by any means possible. The most direct way to do that? Relieve them of their lives. After all, what is the point of a bold beginning without a Heroic end? What is the setting for Fable Legends? Fable Legends welcomes you back to the fantastic land of Albion, home to the previous Fable games. Lived out in an eternal “once upon a time,” Albion is a fairy tale world where history, legend, and folklore are practically the same thing. So it’s no surprise that millions of players have visited and adored its welcoming countryside. Albion is a place full of action, humour, and opportunity. Of course you’ll find monsters, villains, and even the occasional disaster, but you shouldn’t take any of it too seriously. This is a land of fun and light-hearted adventure for you to lose yourself in. Enjoy the shining green fields, the silly accents and the occasional proposition from an “attractive” villager. When is the game set in history of Albion? Fable Legends takes us to a time when the land is younger and magic was still rife. Fey, otherworldly creatures lurk just outside the walls of huddling and nervous villages, and these days few in Albion dare to venture into the dark woods at night. After all, it’s dark out there and dinner’s nearly ready. Heroes represent those brave, dinner-missing few. They prevail over breath-taking dangers. Foul magicks. Hairy spiders. All sorts of scary things. The average townsperson would need a change of underwear! Yet rescuing damsels – and lads – in distress isn’t easy. In this Fable, those who take the Heroes path must depend on each other to match the challenges that await. There’s no Guild, at least not yet, and so the Heroes of Albion must learn in the midst of their adventures, making their names one step at a time. ";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:137:"Can I play Fable Legends single player? Yes. In Fable Legends, you can enjoy all of the game’s content in a single player experience. ";}}i:2;s:5801:" Can I play Fable Legends multiplayer? Yes. You can play with other people in a four-player cooperative experience. Your party could be all human players, or a mix of players and AI-controlled Heroes. You can switch easily between single player and multiplayer styles of play whenever you decide, or when a friend signs on. During a quest, you can elect to battle a human or an AI Villain. As a Villain, you can challenge parties of human players, AI opponents, or mixed groups. After all, as a mastermind of evil, you’re ready to swat aside any adversaries. Who is the Hero in Fable Legends? That’s for you to choose. Fable Legends takes you back to a time when Albion is teeming with Heroes, so there’s bound to be one for you. Fearless warriors. Cunning tricksters. Masters of Will. Paragons of virtue. Heartless mercenaries. Intoxicated brawlers. Chicken chasers. They’re all here, and many more besides. When Albion is only just learning what a Hero can be, no would-be adventurer can stand alone. It is important to consider the mix of Heroes you take with you on your next quest. Do you recruit the dashing swordsman? If you like your swordplay elegant and lightly powdered, you’ll have no trouble finding your prince charming. But if you’re more man-o-war than manicure, you’ll find grizzled archers and lone wolves forced to adapt to life with the pack. Of course, in this period of Albion’s history there is an abundance of magic. Some Heroes manipulate the world using the power of Will to make Albion a better place (or just fancy setting part of it on fire). Or you could round off your group with a stalwart defender, ready to lead from the front and batter things into the ground. Heroes like these represent a small sample of what Albion has to offer you. Whichever Heroes you choose to bring along on your adventurer, you’ll need to work together and fight hard if you want to create a Legend. Can I customize my Hero in Fable Legends? Yes. There are many you can make Heroes in Fable Legends your own. You’ll be able to customize Hero abilities, and make decisions about what they should specialise in as they grow in experience and power. Visually, you’ll be able to change several details of your Hero’s appearance by calling on the local hairdresser or magical make-up artist. Finally, your Hero may find new armours, weapons, and other treasures. How do I play as a Villain? Playing as a Villain in Fable Legends combines elements of strategic decision making and tactical control. When those pitiful Heroes enter an area, you’ll get to choose which minions will be sent into battle and where to place these creatures to maximise their effectiveness. Once the fight begins, you can issue orders for your creatures to execute: telling them where to go, which Hero to attack, and which abilities to use to ensure your evil plans come to fruition. Will characters from previous Fable games appear in Fable Legends? Because Fable Legends returns to Albion at a time period that’s different from previous titles, most of the characters from previous games will not be present. Of course, Albion is a magical place, and who knows what lurks out there amongst its forests, villages, and caverns… Is Fable Legends an MMORPG? No. While Fable Legends embraces multiplayer, it’s not an MMO. Does Fable Legends use Kinect? Fable Legends does not use the Kinect’s motion controls for main gameplay. In the tradition of previous Fable games, we will support mini-games, pub games, and similar activities in our central city area. Some of these may use Kinect’s motion controls where it’s fun and appropriate. Can I control the Villain gameplay using the Kinect? The Villain player can optionally use voice commands to help to control his creatures via the Kinect, but the player does not control minions using motion controls. Do I need to be familiar with Fable I, II, or III in order to play Fable Legends? No. Fable Legends welcomes those visiting Albion for the first time. Those who have explored the land before will find with new stories, secrets, and adventures, but a land that’s familiar and fun. Is this Fable 4? If not, why not? Fable Legends is being made with the Fable spirit firmly in mind. However, this is not a continuation of the previous Fable games, especially when it comes to the chronology. It’s a brand new series of adventures at the dawn of an age of Heroes. We hope you’ll enjoy the mix of new and old. Is Lionhead making Fable 4? Will Lionhead do so in the future? Fable Legends is the only Fable core game in development, and we have no plans to make a sequel to Fable III. However, in Fable Legends you’ll find many of the great features of Fable I, II, and III have been carried forward in our game’s design. That means the world of Albion, exciting stories, quests, humour, light-hearted action, and memorable characters. What else is Lionhead working on? Lionhead always has additional projects in incubation and experimentation, but Fable Legends is the near-exclusive focus of our studio and its development staff. What platforms will Fable Legends be available on? Fable Legends will be available on Xbox One. When is Fable Legends going to be released? We are happy to be able to announce that the game is in development, but we aren’t yet able to announce when Fable Legends will be available. The development team is hard at work building characters, creatures, quests, and everything we need to bring Albion back to life. We will release new and more information about the game on our website, including opportunities for beta testing the game in 2014. Make sure to sign up to be kept in the loop as we will release more information throughout the coming weeks and months.";}}i:2;s:56:" Когда выйдет пока неизвестно. ";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:62:"http://forum.lionhead.com/yaf_postst853_Fable-Legends-FAQ.aspx";}}}, 1701116101, 1714745387
    Run Time: 0.000955
  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, 657239, a:6:{i:0;s:245:"Lion Head обрабатывает рашпилем UE4, скрещивает его с системой освещения Light Propagation Volumes от Crytek (SVOGI как я понял в топку) и получает на выходе: ";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:45:"http://www.lionhead.com/media/28723/Chest.jpg";}}i:2;s:2:" ";i:3;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://www.lionhead.com/media/28717/Arch.jpg";}}i:4;s:2:" ";i:5;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:88:"http://www.lionhead.com/blog/2014/april/17/dynamic-global-illumination-in-fable-legends/";}}}, 1701116101, 1714745387
    Run Time: 0.001623
  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, 657241, a:1:{i:0;s:65:"Лучше бы поработали над текстурами.";}, 1701116101, 1714745387
    Run Time: 0.000420
  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, 667454, 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:"0OPOyiRapsQ";}}}, 1701116101, 1714745387
    Run Time: 0.000301
  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, 678417, a:2:{i:0;s:164:"Кто попытается принять участие в закрытой бете игры, которая начнется по плану 16 октября? ";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:63:"http://www.fablelegends.com/news/closed-beta-starts-soon?from=/";}}}, 1701116101, 1714745387
    Run Time: 0.000676
  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, 678429, a:1:{i:0;s:78:"Я отправлял заявку, но ответа не приходило)";}, 1701116101, 1714745387
    Run Time: 0.000330
  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, 678484, a:5:{i:0;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"25223";}}i:1;s:1:" ";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;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:1:"2";s:8:"original";a:2:{i:0;s:8:"[SIZE=2]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;s:42:"вроде зарегистрирован ";}}}}i:3;s:47:" Fable Legends Multiplayer Beta Begins Soon! ";i:4;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"25222";}}}, 1701116101, 1714745387
    Run Time: 0.001001
  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, 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, 1714745387
    Run Time: 0.000235
  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, 678498, a:1:{i:0;s:21:"Тоже пришло";}, 1701116101, 1714745387
    Run Time: 0.000227
  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, 683605, a:4:{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: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:32:"Congratulations SunnyBUGENHAGEN!";}}}}i:1;s:221:" You've been selected to play in the Fable Legends Multiplayer Beta! Hero or Villain... you choose! The 5x5 code is your personal key to the realm of Albion, where adventure and peril await! Download Fable Legends now at ";i:2;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:122:"http://click.email.microsoftemail.com/?qs=f452ad841be49aa174680dc32363dc3d36ae190b1b4f41a08c3a866d80383a894e3b715f729fd1cd";s:8:"original";a:2:{i:0;s:130:"[URL='http://click.email.microsoftemail.com/?qs=f452ad841be49aa174680dc32363dc3d36ae190b1b4f41a08c3a866d80383a894e3b715f729fd1cd']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:8:"XBOX.COM";}}i:3;s:8:"!:cigar:";}, 1701116101, 1714745387
    Run Time: 0.000214
  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, 683608, a:1:{i:0;s:50:"Повезло, потом расскажешь :)";}, 1701116101, 1714745387
    Run Time: 0.000477
  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, 683618, a:6:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:29:"vova, post: 683608, member: 4";s:8:"original";a:2:{i:0;s:39:"[QUOTE="vova, post: 683608, member: 4"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:50:"Повезло, потом расскажешь :)";}}i:1;s:1:" ";i:2;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:1:"6";s:8:"original";a:2:{i:0;s:8:"[SIZE=6]";i:1;s:7:"[/SIZE]";}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:22:"Test Group Information";}}}}i:3;s:162:" Welcome to the Closed Beta! Check back here to find out when the next test is, along with any other key information that you may need ahead of jumping in game. ";i:4;a:4:{s:3:"tag";s:1:"u";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[U]";i:1;s:4:"[/U]";}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:14:"Upcoming Tests";}}}}i:5;s:228:" Thursday 20th November: 8PM - 11PM GMT & 9PM - 12AM EST Saturday 22nd November: 8PM - 11PM GMT & 9PM - 12AM EST Sunday 23rd November: 8PM - 11PM GMT 9PM - 12AM EST The following test groups are taking part in our next test:";}, 1701116101, 1714745387
    Run Time: 0.000273
  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, 683896, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:48:"Klaus fon Bugenhagen, post: 683618, member: 3981";s:8:"original";a:2:{i:0;s:58:"[QUOTE="Klaus fon Bugenhagen, post: 683618, member: 3981"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:4:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:1:"6";s:8:"original";a:2:{i:0;s:8:"[SIZE=6]";i:1;s:7:"[/SIZE]";}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:22:"Test Group Information";}}}}i:1;s:162:" Welcome to the Closed Beta! Check back here to find out when the next test is, along with any other key information that you may need ahead of jumping in game. ";i:2;a:4:{s:3:"tag";s:1:"u";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[U]";i:1;s:4:"[/U]";}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:14:"Upcoming Tests";}}}}i:3;s:228:" Thursday 20th November: 8PM - 11PM GMT & 9PM - 12AM EST Saturday 22nd November: 8PM - 11PM GMT & 9PM - 12AM EST Sunday 23rd November: 8PM - 11PM GMT 9PM - 12AM EST The following test groups are taking part in our next test:";}}i:1;s:87:" Клаус, ты хоть пару строк черкни, что там да как?";}, 1701116101, 1714745387
    Run Time: 0.001080
  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, 684775, a:3:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:32:"dimm, post: 683896, member: 3212";s:8:"original";a:2:{i:0;s:42:"[QUOTE="dimm, post: 683896, member: 3212"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:86:"Клаус, ты хоть пару строк черкни, что там да как?";}}i:1;s:15:" Низзя =) ";i:2;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:"gxm-TdVjpI8";}}}, 1701116101, 1714745387
    Run Time: 0.006011
  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, 684785, a:1:{i:0;s:25:"я всё проеб:cry:";}, 1701116101, 1714745387
    Run Time: 0.000291
  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, 690831, a:2:{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:104:"http://d35lb3dl296zwu.cloudfront.net/uploads/photo/image/19279/microsoft-windows-10-live-verge-_0978.jpg";}}i:1;s:2:" \";}, 1701116101, 1714745387
    Run Time: 0.000818
  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, 690845, a:2:{i:0;s:56:"Все верно, игра выходит и на PС. ";i:1;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:"DqBBASzk1p4";}}}, 1701116101, 1714745387
    Run Time: 0.000501
  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, 696904, a:2:{i:0;s:78:"Ван уже в открытую как комп юзают, что за? =) ";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:20:"http://goo.gl/X5cq4z";}}}, 1701116101, 1714745387
    Run Time: 0.000299

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_quote.php
  110. internal_data/templates/S.1,L.1,bb_code_tag_attach.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