Page Time: 1.2569s

Memory: 3.8457 MB (Peak: 13.6670 MB)

Queries (16, time: 1.1885s, 94.6%)

  1. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.050460
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  2. SELECT
    	user.*,
    	user_profile.*,
    	user_privacy.*,
    	news_feed.*
    FROM xf_news_feed AS news_feed FORCE INDEX (event_date)
    INNER JOIN xf_user AS user ON
    	(user.user_id = news_feed.user_id)
    INNER JOIN xf_user_profile AS user_profile ON
    	(user_profile.user_id = user.user_id)
    LEFT JOIN xf_user_follow AS user_follow ON
    	(user_follow.user_id = user.user_id
    	AND user_follow.follow_user_id = 0)
    INNER JOIN xf_user_privacy AS user_privacy ON
    	(user_privacy.user_id = user.user_id
    		
    			AND (user.user_id = 0
    				OR (
    					user_privacy.allow_receive_news_feed <> 'none'
    					AND IF(user_privacy.allow_receive_news_feed = 'members', 0, 1)
    					AND IF(user_privacy.allow_receive_news_feed = 'followed', user_follow.user_id IS NOT NULL, 1)
    				)
    			)
    		
    	)
    WHERE (user.user_state IN ('valid', 'email_confirm_edit')) AND (user.is_banned = 0)
    ORDER BY news_feed.event_date DESC
     LIMIT 15
    Run Time: 0.051676
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnews_feedindex event_date4 15 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4foromtb_www.news_feed.user_id1 
    SIMPLEusereq_refPRIMARY,user_statePRIMARY4foromtb_www.news_feed.user_id1Using where
    SIMPLEuser_followeq_refPRIMARY,follow_user_idPRIMARY8foromtb_www.news_feed.user_id,const1Using index
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4foromtb_www.news_feed.user_id1Using where
  3. SELECT
    	post.*
    	,
    		thread.*, thread.user_id AS thread_user_id, thread.username AS thread_username,
    		thread.post_date AS thread_post_date,
    		post.user_id, post.username, post.post_date,
    		node.title AS node_title, node.node_name,
    	permission.cache_value AS node_permission_cache, (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 1) as dark_postrating_1_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 14) as dark_postrating_14_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 2) as dark_postrating_2_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 3) as dark_postrating_3_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 4) as dark_postrating_4_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 5) as dark_postrating_5_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 6) as dark_postrating_6_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 7) as dark_postrating_7_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 8) as dark_postrating_8_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 9) as dark_postrating_9_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 10) as dark_postrating_10_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 11) as dark_postrating_11_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 12) as dark_postrating_12_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 13) as dark_postrating_13_count
    ,
    pr2.rating
    FROM xf_post AS post
    		INNER JOIN xf_thread AS thread ON
    			(thread.thread_id = post.thread_id)
    		INNER JOIN xf_node AS node ON
    			(node.node_id = thread.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 = thread.node_id)
    LEFT JOIN dark_postrating pr2 ON (post.post_id = pr2.post_id and pr2.user_id = 0)
    WHERE post.post_id IN (28710134, 28710133, 28710132, 28710131, 28706607, 28710129, 28710127, 28710126, 28710125, 28710123, 28710122, 28710119)
    Run Time: 0.053881
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    PRIMARYpostrangePRIMARY,thread_id_post_date,thread_id_positionPRIMARY4 12Using where
    PRIMARYthreadeq_refPRIMARY,node_id_last_post_date,node_id_sticky_state_last_postPRIMARY4foromtb_www.post.thread_id1 
    PRIMARYnodeeq_refPRIMARYPRIMARY4foromtb_www.thread.node_id1 
    PRIMARYpermissioneq_refPRIMARYPRIMARY35const,const,foromtb_www.thread.node_id1Using where
    PRIMARYpr2eq_refpost_id_user_id,post_id_rating,user_id_ratingpost_id_user_id8foromtb_www.post.post_id,const1 
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.post.post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.post.post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.post.post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.post.post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.post.post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.post.post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.post.post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.post.post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.post.post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.post.post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.post.post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.post.post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.post.post_id,const1Using index
    DEPENDENT SUBQUERYprrefpost_id_ratingpost_id_rating8foromtb_www.post.post_id,const1Using index
  4. SELECT
    	post.*
    	,
    		thread.*, thread.user_id AS thread_user_id, thread.username AS thread_username,
    		thread.post_date AS thread_post_date,
    		post.user_id, post.username, post.post_date,
    		node.title AS node_title, node.node_name,
    	permission.cache_value AS node_permission_cache, (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 1) as dark_postrating_1_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 14) as dark_postrating_14_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 2) as dark_postrating_2_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 3) as dark_postrating_3_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 4) as dark_postrating_4_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 5) as dark_postrating_5_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 6) as dark_postrating_6_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 7) as dark_postrating_7_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 8) as dark_postrating_8_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 9) as dark_postrating_9_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 10) as dark_postrating_10_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 11) as dark_postrating_11_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 12) as dark_postrating_12_count
    , (select count(*) from dark_postrating pr USE INDEX (`post_id_rating`) where pr.post_id = post.post_id and pr.rating = 13) as dark_postrating_13_count
    ,
    pr2.rating
    FROM xf_post AS post
    		INNER JOIN xf_thread AS thread ON
    			(thread.thread_id = post.thread_id)
    		INNER JOIN xf_node AS node ON
    			(node.node_id = thread.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 = thread.node_id)
    LEFT JOIN dark_postrating pr2 ON (post.post_id = pr2.post_id and pr2.user_id = 0)
    WHERE post.post_id IN (28013979)
    Run Time: 0.051610
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    PRIMARYpostconstPRIMARY,thread_id_post_date,thread_id_positionPRIMARY4const1 
    PRIMARYthreadconstPRIMARY,node_id_last_post_date,node_id_sticky_state_last_postPRIMARY4const1 
    PRIMARYnodeconstPRIMARYPRIMARY4const1 
    PRIMARYpermissionconstPRIMARYPRIMARY35const,const,const1 
    PRIMARYpr2constpost_id_user_id,post_id_rating,user_id_ratingpost_id_user_id8const,const0unique row not found
    SUBQUERYprrefpost_id_ratingpost_id_rating8const,const1Using index
    SUBQUERYprrefpost_id_ratingpost_id_rating8const,const1Using index
    SUBQUERYprrefpost_id_ratingpost_id_rating8const,const1Using index
    SUBQUERYprrefpost_id_ratingpost_id_rating8const,const1Using index
    SUBQUERYprrefpost_id_ratingpost_id_rating8const,const1Using index
    SUBQUERYprrefpost_id_ratingpost_id_rating8const,const1Using index
    SUBQUERYprrefpost_id_ratingpost_id_rating8const,const1Using index
    SUBQUERYprrefpost_id_ratingpost_id_rating8const,const1Using index
    SUBQUERYprrefpost_id_ratingpost_id_rating8const,const1Using index
    SUBQUERYprrefpost_id_ratingpost_id_rating8const,const1Using index
    SUBQUERYprrefpost_id_ratingpost_id_rating8const,const1Using index
    SUBQUERYprrefpost_id_ratingpost_id_rating8const,const1Using index
    SUBQUERYprrefpost_id_ratingpost_id_rating8const,const1Using index
    SUBQUERYprrefpost_id_ratingpost_id_rating8const,const1Using index
  5. SELECT thread.*
    	,
    		node.title AS node_title, node.node_name,
    		post.message, post.attach_count,
    	permission.cache_value AS node_permission_cache,
    	last_post_user.avatar_date AS last_post_user_avatar_date, last_post_user.gravatar AS last_post_user_gravatar, last_post_user.gender AS last_post_user_gender
    FROM xf_thread AS thread
    		LEFT JOIN xf_node AS node ON
    			(node.node_id = thread.node_id)
    		LEFT JOIN xf_post AS post ON
    			(post.post_id = thread.first_post_id)
    	LEFT JOIN xf_permission_cache_content AS permission
    		ON (permission.permission_combination_id = 1
    			AND permission.content_type = 'node'
    			AND permission.content_id = thread.node_id)
    	LEFT JOIN xf_user AS last_post_user ON
    		(last_post_user.user_id = thread.last_post_user_id)
    WHERE thread.thread_id IN (1571208, 1571207)
    Run Time: 0.050806
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadrangePRIMARYPRIMARY4 2Using where
    SIMPLEnodeeq_refPRIMARYPRIMARY4foromtb_www.thread.node_id1 
    SIMPLEposteq_refPRIMARYPRIMARY4foromtb_www.thread.first_post_id1 
    SIMPLEpermissioneq_refPRIMARYPRIMARY35const,const,foromtb_www.thread.node_id1Using where
    SIMPLElast_post_usereq_refPRIMARYPRIMARY4foromtb_www.thread.last_post_user_id1 
  6. 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 (28710120)
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.050632
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrefcontent_type_id_datecontent_type_id_date31const,const1Using index condition; Using where
    SIMPLEdataeq_refPRIMARYPRIMARY4foromtb_www.attachment.data_id1 
  7. SELECT rating
    FROM dark_postrating
    WHERE post_id = ? and user_id = ?
    Params: 28013979, 5553
    Run Time: 0.050421
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEdark_postratingconstpost_id_user_id,post_id_rating,user_id_ratingpost_id_user_id8const,const1 
  8. SELECT session_activity.*
    	,
    	user.*
    FROM xf_session_activity AS session_activity
    
    	LEFT JOIN xf_user AS user ON
    		(user.user_id = session_activity.user_id)
    WHERE (session_activity.view_date > 1713456073)
    ORDER BY session_activity.view_date DESC
    Run Time: 0.065439
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEsession_activityrangeview_dateview_date4 1662Using where
    SIMPLEusereq_refPRIMARYPRIMARY4foromtb_www.session_activity.user_id1 
  9. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: 05396c9d254882fb11ff3ad75452f42f, , 1713460573
    Run Time: 0.606871
  10. 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_RecentActivity, Index, valid, , 1713456973,
    Run Time: 0.014827
  11. SELECT activity.*, user.username 
    FROM xc_trade_activity AS activity
    LEFT JOIN xf_user AS user ON user.user_id=activity.user_id
    WHERE activity.user_id=?
    ORDER BY activity.dateline DESC
    LIMIT 0, ?
    Params: 0, 10
    Run Time: 0.001823
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEactivityrefuser_id_datelineuser_id_dateline4const1Using where
    SIMPLEusereq_refPRIMARYPRIMARY4foromtb_www.activity.user_id1 
  12. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('page_nav', 'news_feed_item_post_insert', 'news_feed_item_postrating_rate', 'news_feed_item_post_like', 'news_feed_item_thread_insert', 'news_feed_page_global', 'nflj_showcase_tab_links', 'xcxt_navtabs', 'waindigo_you_are_using_as_user_loginasuser', 'waindigo_moderator_bar_loginasuser', 'dark_postrating', 'dark_postrating_member', 'dark_postrating_member_totals', 'message_user_info_extra', 'user_criteria_content', 'thread_list_item_icon_key', 'dark_postrating_member_notable_tabs', 'dark_postrating_account_wrapper', 'dark_postrating_navigation_visitor_tab', 'dark_postrating_visitor_panel', 'dark_postrating_member_card', 'dark_postrating_member_info', 'dark_postrating_message_user_info', 'xcfw_copyright', 'xcxt_headinclude', 'xcxt_trading_preferences_link_list', 'xcxt_visitor_panel_addon', 'PAGE_CONTAINER')
    	AND style_id = ?
    	AND language_id = ?
    Params: 1, 2
    Run Time: 0.051020
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 28Using where
  13. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('xcxt_trade')
    Params: 2
    Run Time: 0.050423
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledconstPRIMARYPRIMARY106const,const1 
  14. SELECT *
    FROM xf_notification
    ORDER BY notification_id
    Run Time: 0.031523
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_notificationindex PRIMARY4 1 
  15. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('GritterNotifications')
    	AND style_id = ?
    	AND language_id = ?
    Params: 1, 2
    Run Time: 0.005702
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  16. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('bookmarks_member_tabs_link_anchor')
    	AND style_id = ?
    	AND language_id = ?
    Params: 1, 2
    Run Time: 0.001378
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 

Included Files (158, XenForo Classes: 61)

  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/File.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/NFLJ/Showcase/Listener/Proxy.php
  29. library/Waindigo/Listener/InitDependencies.php
  30. library/Waindigo/Listener/InitDependencies/20141020.php
  31. library/Waindigo/Listener/ControllerPreDispatch/20141011.php
  32. library/BannedAvatar/Listener.php
  33. library/XenCentral/Trade/Hooks.php
  34. library/XenCentral/Trade/Model/Options.php
  35. library/XenCentral/Trade/Model/Abstract.php
  36. library/XenCentral/Framework/Hooks.php
  37. library/Tapatalk/Listener/LoadClassModel.php
  38. library/UserEss/Listener/Proxy.php
  39. library/Dark/PostRating/EventListener.php
  40. library/Bookmarks/Listener/Proxy.php
  41. library/XenForo/Router.php
  42. library/XenForo/Route/Filter.php
  43. library/XenForo/Route/Interface.php
  44. library/XenForo/Route/ResponseSuffix.php
  45. library/XenForo/Route/Prefix.php
  46. library/XenForo/Route/Prefix/RecentActivity.php
  47. library/XenForo/RouteMatch.php
  48. library/XenForo/ControllerPublic/RecentActivity.php
  49. library/XenForo/ControllerPublic/Abstract.php
  50. library/XenForo/Controller.php
  51. library/Vinavb/CustomNodeIcon/Listener.php
  52. library/GritterNotifications/Listener.php
  53. library/XenForo/Input.php
  54. library/XenForo/Session.php
  55. library/Zend/Db.php
  56. library/Zend/Db/Adapter/Mysqli.php
  57. library/Zend/Db/Adapter/Abstract.php
  58. library/Zend/Db/Select.php
  59. library/Zend/Db/Expr.php
  60. library/Zend/Db/Profiler.php
  61. library/Zend/Db/Statement/Mysqli.php
  62. library/Zend/Db/Statement.php
  63. library/Zend/Db/Statement/Interface.php
  64. library/XenForo/Helper/Ip.php
  65. library/XenForo/Visitor.php
  66. library/XenForo/Model/User.php
  67. library/Waindigo/LoginAsUser/Listener/LoadClass.php
  68. library/Waindigo/Listener/LoadClass.php
  69. library/Waindigo/Listener/LoadClass/20141202.php
  70. library/Waindigo/LoginAsUser/Extend/XenForo/Model/User.php
  71. library/Dark/PostRating/Model/User.php
  72. library/XenCentral/Trade/Model/XfUser.php
  73. library/Zend/Db/Profiler/Query.php
  74. library/XenForo/Permission.php
  75. library/XenForo/Helper/Php.php
  76. library/XenForo/Phrase.php
  77. library/XenForo/Locale.php
  78. library/Waindigo/LoginAsUser/Listener/VisitorSetup.php
  79. library/Waindigo/Listener/VisitorSetup.php
  80. library/Waindigo/Listener/VisitorSetup/20130615.php
  81. library/Waindigo/LoginAsUser/Extend/XenForo/Visitor.php
  82. library/Waindigo/InstallUpgrade/Listener/ControllerPreDispatch.php
  83. library/DigitalPointAdPositioning/Listener/ControllerPreDispatch.php
  84. library/XenForo/Model/NewsFeed.php
  85. library/XenForo/NewsFeedHandler/DiscussionMessage/Post.php
  86. library/XenForo/NewsFeedHandler/DiscussionMessage.php
  87. library/XenForo/NewsFeedHandler/Abstract.php
  88. library/XenForo/Model/Post.php
  89. library/UserEss/Model/Post.php
  90. library/Dark/PostRating/Model/Post.php
  91. library/XenCentral/Trade/Model/Post.php
  92. library/Bookmarks/Model/Post.php
  93. library/XenForo/Model/Thread.php
  94. library/Waindigo/LastPostAvatar/Listener/LoadClass.php
  95. library/Waindigo/CustomFields/Listener/LoadClass.php
  96. library/Waindigo/LastPostAvatar/Extend/XenForo/Model/Thread.php
  97. library/Waindigo/CustomFields/Extend/XenForo/Model/Thread.php
  98. library/UserEss/Model/Thread.php
  99. library/Dark/PostRating/Model/Thread.php
  100. library/Bookmarks/Model/Thread.php
  101. library/Dark/PostRating/Model.php
  102. library/Dark/PostRating/NewsFeedHandler.php
  103. library/XenForo/NewsFeedHandler/Discussion/Thread.php
  104. library/XenForo/NewsFeedHandler/Discussion.php
  105. library/XenForo/Model/Attachment.php
  106. library/XenForo/Route/Prefix/Attachments.php
  107. library/XenForo/Model/Forum.php
  108. library/UserEss/Model/Forum.php
  109. library/XenForo/Helper/String.php
  110. library/XenForo/Model/Session.php
  111. library/Dark/PostRating/Model/Session.php
  112. library/XenForo/ControllerResponse/View.php
  113. library/XenForo/ControllerResponse/Abstract.php
  114. library/XenForo/Helper/Cookie.php
  115. library/DigitalPointAdPositioning/Listener/ControllerPostDispatch.php
  116. library/Tapatalk/Listener/ControllerPostDispatch.php
  117. library/XenForo/ViewRenderer/HtmlPublic.php
  118. library/XenForo/ViewRenderer/Abstract.php
  119. library/XenForo/Template/Public.php
  120. library/XenForo/Template/Abstract.php
  121. library/XenCentral/Framework/Navigation/Admin.php
  122. library/XenForo/ViewPublic/NewsFeed/View.php
  123. library/XenForo/ViewPublic/Base.php
  124. library/XenForo/View.php
  125. library/XenForo/ViewPublic/Helper/NewsFeed.php
  126. library/UserEss/Listener/Hook.php
  127. library/NFLJ/Showcase/Listener/Template.php
  128. library/Waindigo/LoginAsUser/Listener/TemplateCreate.php
  129. library/Waindigo/Listener/TemplateCreate.php
  130. library/Waindigo/Listener/TemplateCreate/20130522.php
  131. library/Waindigo/CustomFields/Listener/TemplateCreate.php
  132. library/Bookmarks/Listener/Hook.php
  133. library/XenForo/Route/Prefix/Members.php
  134. library/NFLJ/Showcase/Model/Item.php
  135. library/XenCentral/Trade/Model/Activity.php
  136. library/XenCentral/Trade/Route/PrefixPublic/Main.php
  137. library/Bookmarks/Listener/NavigationTabs.php
  138. library/XenForo/Route/Prefix/Posts.php
  139. library/XenForo/Route/Prefix/Threads.php
  140. library/Waindigo/CustomFields/Listener/TemplatePostRender.php
  141. library/Waindigo/Listener/TemplatePostRender.php
  142. library/Waindigo/Listener/TemplatePostRender/20140711.php
  143. library/Waindigo/Listener/Template.php
  144. library/Waindigo/Listener/Template/20141020.php
  145. library/Tapatalk/Listener/TemplatePostRender.php
  146. library/XenForo/Route/Prefix/Forums.php
  147. library/XenForo/Helper/Criteria.php
  148. library/XenForo/Debug.php
  149. library/Tapatalk/EventListener/Hook.php
  150. mobiquo/smartbanner/head.inc.php
  151. library/Waindigo/LoginAsUser/Listener/TemplateHook.php
  152. library/Waindigo/Listener/TemplateHook.php
  153. library/Waindigo/Listener/TemplateHook/20141020.php
  154. library/Waindigo/CustomFields/Listener/TemplateHook.php
  155. library/GritterNotifications/Model/Notification.php
  156. library/XenCentral/Framework/Model/Cache.php
  157. library/XenForo/ViewRenderer/Json.php
  158. library/Vinavb/CustomNodeIcon/Icon.php