Page Time: 0.9257s

Memory: 8.5721 MB (Peak: 9.9940 MB)

Queries (34, time: 0.0739s, 8.0%)

  1. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('options', 'languages', 'contentTypes', 'codeEventListeners', 'deferredRun', 'simpleCache', 'addOns', 'defaultStyleProperties', 'routeFiltersIn', 'routeFiltersOut', 'routesPublic', 'nodeTypes', 'bannedIps', 'discouragedIps', 'styles', 'displayStyles', 'userBanners', 'smilies', 'bbCode', 'threadPrefixes', 'userTitleLadder', 'reportCounts', 'moderationCounts', 'userModerationCounts', 'notices', 'userFieldsInfo')
    Run Time: 0.001401
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 26Using where
  2. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('brListenerClasses', 'brBriviumAddOns')
    Run Time: 0.000441
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 2Using where
  3. SELECT data_value
    FROM xf_data_registry
    WHERE data_key = ?
    Params: brmsModernStatisticCache
    Run Time: 0.000184
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  4. SELECT data_value
    FROM xf_data_registry
    WHERE data_key = ?
    Params: modLogCounts
    Run Time: 0.000070
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLE       Impossible WHERE noticed after reading const tables
  5. SELECT user.*, permission_combination.cache_value AS global_permission_cache
    FROM xf_moderator AS moderator
    INNER JOIN xf_user AS user ON (user.user_id = moderator.user_id)
    LEFT JOIN xf_permission_combination AS permission_combination ON (permission_combination.permission_combination_id = user.permission_combination_id)
    Run Time: 0.000300
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEmoderatorindexPRIMARYPRIMARY4 8Using index
    SIMPLEusereq_refPRIMARYPRIMARY4prav110_pravorg.moderator.user_id1 
    SIMPLEpermission_combinationeq_refPRIMARYPRIMARY4prav110_pravorg.user.permission_combination_id1 
  6. DELETE FROM `xf_data_registry` WHERE (data_key = 'modLogCounts')
    Run Time: 0.000421
  7. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000624
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  8. SELECT node.*, forum.*
    	,
    	permission.cache_value AS node_permission_cache,
    		NULL AS forum_read_date,
    		0 AS forum_is_watched
    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: 92
    Run Time: 0.001387
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  9. SELECT COUNT(*)
    FROM xf_thread AS thread
    
    WHERE (thread.node_id = 92) AND (thread.sticky = 0) AND (thread.discussion_state IN ('visible'))
    Run Time: 0.000613
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadrefnode_id_last_post_date,node_id_sticky_state_last_postnode_id_sticky_state_last_post6const,const,const10Using where; Using index
  10. SELECT thread.*
    	,
    	user.*, IF(user.username IS NULL, thread.username, user.username) AS username,
    	NULL AS thread_read_date,
    	0 AS thread_is_watched,
    	0 AS user_post_count
    FROM xf_thread AS thread 
    
    	LEFT JOIN xf_user AS user ON
    		(user.user_id = thread.user_id)
    WHERE (thread.node_id = 92) AND (thread.sticky = 0) AND (thread.discussion_state IN ('visible'))
    ORDER BY thread.last_post_date DESC
     LIMIT 20
    Run Time: 0.004290
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadrefnode_id_last_post_date,node_id_sticky_state_last_postnode_id_sticky_state_last_post6const,const,const10Using where
    SIMPLEusereq_refPRIMARYPRIMARY4prav110_pravorg.thread.user_id1 
  11. SELECT thread.*
    	,
    	user.*, IF(user.username IS NULL, thread.username, user.username) AS username,
    	NULL AS thread_read_date,
    	0 AS thread_is_watched,
    	0 AS user_post_count
    FROM xf_thread AS thread 
    
    	LEFT JOIN xf_user AS user ON
    		(user.user_id = thread.user_id)
    WHERE (thread.node_id = 92) AND (thread.sticky = 1) AND (thread.discussion_state IN ('visible'))
    ORDER BY thread.last_post_date DESC
    Run Time: 0.000874
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadrefnode_id_last_post_date,node_id_sticky_state_last_postnode_id_sticky_state_last_post6const,const,const1Using where
    SIMPLEusereq_refPRIMARYPRIMARY4prav110_pravorg.thread.user_id1 
  12. SELECT DISTINCT
    node.*,
    (
    	SELECT
    		SUM(xf_thread.view_count)*1 as views
    	FROM 
    		xf_thread
    	WHERE 
    		xf_thread.node_id = node.node_id
    ) AS views,
                        (
                            SELECT
                                MAX(last_post_date)
                            FROM
                                xf_thread
                            WHERE
                                xf_thread.node_id = node.node_id                                                 
                        ) AS last_post
    FROM 
    xf_node as node		
    WHERE 
                        node.lft > ? AND node.rgt < ?
    AND display_in_list = 1
    ORDER BY
    last_post DESC
    Params: 116, 125
    Run Time: 0.001155
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    PRIMARYnoderefdisplay_in_list,lftdisplay_in_list1const45Using index condition; Using where; Using filesort
    DEPENDENT SUBQUERYxf_threadrefnode_id_last_post_date,node_id_sticky_state_last_postnode_id_last_post_date4prav110_pravorg.node.node_id51Using index
    DEPENDENT SUBQUERYxf_threadrefnode_id_last_post_date,node_id_sticky_state_last_postnode_id_last_post_date4prav110_pravorg.node.node_id51 
  13. SELECT 
    	th.title as th_title,
    	po.message as th_message,
    	po.username as th_user,
    	po.user_id as th_user_id,
    	FROM_UNIXTIME(th.last_post_date) as th_date
    FROM xf_thread as th
    LEFT JOIN xf_post as po
    	ON po.thread_id = th.thread_id
    WHERE th.node_id = ? 
    ORDER BY po.post_date DESC
    LIMIT 1
    Params: 114
    Run Time: 0.015546
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthrefnode_id_last_post_date,node_id_sticky_state_last_postnode_id_last_post_date4const28Using temporary; Using filesort
    SIMPLEporefthread_id_post_date,thread_id_positionthread_id_post_date4prav110_pravorg.th.thread_id7 
  14. SELECT 
    	th.title as th_title,
    	po.message as th_message,
    	po.username as th_user,
    	po.user_id as th_user_id,
    	FROM_UNIXTIME(th.last_post_date) as th_date
    FROM xf_thread as th
    LEFT JOIN xf_post as po
    	ON po.thread_id = th.thread_id
    WHERE th.node_id = ? 
    ORDER BY po.post_date DESC
    LIMIT 1
    Params: 116
    Run Time: 0.019199
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthrefnode_id_last_post_date,node_id_sticky_state_last_postnode_id_last_post_date4const35Using temporary; Using filesort
    SIMPLEporefthread_id_post_date,thread_id_positionthread_id_post_date4prav110_pravorg.th.thread_id7 
  15. SELECT 
    	th.title as th_title,
    	po.message as th_message,
    	po.username as th_user,
    	po.user_id as th_user_id,
    	FROM_UNIXTIME(th.last_post_date) as th_date
    FROM xf_thread as th
    LEFT JOIN xf_post as po
    	ON po.thread_id = th.thread_id
    WHERE th.node_id = ? 
    ORDER BY po.post_date DESC
    LIMIT 1
    Params: 115
    Run Time: 0.010698
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthrefnode_id_last_post_date,node_id_sticky_state_last_postnode_id_last_post_date4const10Using temporary; Using filesort
    SIMPLEporefthread_id_post_date,thread_id_positionthread_id_post_date4prav110_pravorg.th.thread_id7 
  16. SELECT 
    	th.title as th_title,
    	po.message as th_message,
    	po.username as th_user,
    	po.user_id as th_user_id,
    	FROM_UNIXTIME(th.last_post_date) as th_date
    FROM xf_thread as th
    LEFT JOIN xf_post as po
    	ON po.thread_id = th.thread_id
    WHERE th.node_id = ? 
    ORDER BY po.post_date DESC
    LIMIT 1
    Params: 113
    Run Time: 0.007825
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthrefnode_id_last_post_date,node_id_sticky_state_last_postnode_id_last_post_date4const9Using temporary; Using filesort
    SIMPLEporefthread_id_post_date,thread_id_positionthread_id_post_date4prav110_pravorg.th.thread_id7 
  17. SELECT content_id, cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = 'node'
    Params: 1
    Run Time: 0.004438
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentrefPRIMARYPRIMARY31const,const105Using where
  18. SELECT forum.*
    	,
    		NULL AS forum_read_date
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    WHERE forum.node_id IN (114, 116, 115, 113)
    Run Time: 0.000699
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumrangePRIMARYPRIMARY4 4Using where
    SIMPLEnodeeq_refPRIMARYPRIMARY4prav110_pravorg.forum.node_id1Using index
  19. SELECT user.user_id, user.avatar_date, user.gravatar, user.gender
    FROM xf_user AS user
    WHERE user.user_id IN (9685, 9014, 1094)
    Run Time: 0.000436
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserrangePRIMARYPRIMARY4 3Using where
  20. SELECT DISTINCT
    node.*,
    (
    	SELECT
    		SUM(xf_thread.view_count)*1 as views
    	FROM 
    		xf_thread
    	WHERE 
    		xf_thread.node_id = node.node_id
    ) AS views,
                        (
                            SELECT
                                MAX(last_post_date)
                            FROM
                                xf_thread
                            WHERE
                                xf_thread.node_id = node.node_id                                                 
                        ) AS last_post
    FROM 
    xf_node as node		
    WHERE 
                        node.lft > ? AND node.rgt < ?
    AND display_in_list = 1
    ORDER BY
    last_post DESC
    Params: 116, 125
    Run Time: 0.000329
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    PRIMARYnoderefdisplay_in_list,lftdisplay_in_list1const45Using index condition; Using where; Using filesort
    DEPENDENT SUBQUERYxf_threadrefnode_id_last_post_date,node_id_sticky_state_last_postnode_id_last_post_date4prav110_pravorg.node.node_id51Using index
    DEPENDENT SUBQUERYxf_threadrefnode_id_last_post_date,node_id_sticky_state_last_postnode_id_last_post_date4prav110_pravorg.node.node_id51 
  21. SELECT 
    	th.title as th_title,
    	po.message as th_message,
    	po.username as th_user,
    	po.user_id as th_user_id,
    	FROM_UNIXTIME(th.last_post_date) as th_date
    FROM xf_thread as th
    LEFT JOIN xf_post as po
    	ON po.thread_id = th.thread_id
    WHERE th.node_id = ? 
    ORDER BY po.post_date DESC
    LIMIT 1
    Params: 114
    Run Time: 0.000152
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthrefnode_id_last_post_date,node_id_sticky_state_last_postnode_id_last_post_date4const28Using temporary; Using filesort
    SIMPLEporefthread_id_post_date,thread_id_positionthread_id_post_date4prav110_pravorg.th.thread_id7 
  22. SELECT 
    	th.title as th_title,
    	po.message as th_message,
    	po.username as th_user,
    	po.user_id as th_user_id,
    	FROM_UNIXTIME(th.last_post_date) as th_date
    FROM xf_thread as th
    LEFT JOIN xf_post as po
    	ON po.thread_id = th.thread_id
    WHERE th.node_id = ? 
    ORDER BY po.post_date DESC
    LIMIT 1
    Params: 116
    Run Time: 0.000123
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthrefnode_id_last_post_date,node_id_sticky_state_last_postnode_id_last_post_date4const35Using temporary; Using filesort
    SIMPLEporefthread_id_post_date,thread_id_positionthread_id_post_date4prav110_pravorg.th.thread_id7 
  23. SELECT 
    	th.title as th_title,
    	po.message as th_message,
    	po.username as th_user,
    	po.user_id as th_user_id,
    	FROM_UNIXTIME(th.last_post_date) as th_date
    FROM xf_thread as th
    LEFT JOIN xf_post as po
    	ON po.thread_id = th.thread_id
    WHERE th.node_id = ? 
    ORDER BY po.post_date DESC
    LIMIT 1
    Params: 115
    Run Time: 0.000170
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthrefnode_id_last_post_date,node_id_sticky_state_last_postnode_id_last_post_date4const10Using temporary; Using filesort
    SIMPLEporefthread_id_post_date,thread_id_positionthread_id_post_date4prav110_pravorg.th.thread_id7 
  24. SELECT 
    	th.title as th_title,
    	po.message as th_message,
    	po.username as th_user,
    	po.user_id as th_user_id,
    	FROM_UNIXTIME(th.last_post_date) as th_date
    FROM xf_thread as th
    LEFT JOIN xf_post as po
    	ON po.thread_id = th.thread_id
    WHERE th.node_id = ? 
    ORDER BY po.post_date DESC
    LIMIT 1
    Params: 113
    Run Time: 0.000137
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthrefnode_id_last_post_date,node_id_sticky_state_last_postnode_id_last_post_date4const9Using temporary; Using filesort
    SIMPLEporefthread_id_post_date,thread_id_positionthread_id_post_date4prav110_pravorg.th.thread_id7 
  25. SELECT forum.*
    	,
    		NULL AS forum_read_date
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    WHERE forum.node_id IN (114, 116, 115, 113)
    Run Time: 0.000178
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumrangePRIMARYPRIMARY4 4Using where
    SIMPLEnodeeq_refPRIMARYPRIMARY4prav110_pravorg.forum.node_id1Using index
  26. SELECT user.user_id, user.avatar_date, user.gravatar, user.gender
    FROM xf_user AS user
    WHERE user.user_id IN (9685, 9014, 1094)
    Run Time: 0.000072
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserrangePRIMARYPRIMARY4 3Using where
  27. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: b55d4618d7377818c1a899ea840b6983, , 1711636686
    Run Time: 0.000217
  28. 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, , , TiledForumsModule_XenForo_ControllerPublic_Forum, Forum, valid, node_id=92, 1711633086,
    Run Time: 0.000122
  29. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('page_nav', 'BRMS_ModernStatistic', 'BRMS_modern_statistic_header', 'node_forum_level_2', 'forum_view', 'xfa_blog_navigation_links', 'waindigo_navigation_visitor_tab_joinusergroup', 'xfa_blog_navigation_tab_link', 'modess_moderator_bar_mod_log_counts', 'PAGE_CONTAINER')
    	AND style_id = ?
    	AND language_id = ?
    Params: 5, 1
    Run Time: 0.001368
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 10Using where
  30. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('bbms_twitter_css')
    	AND style_id = ?
    	AND language_id = ?
    Params: 5, 1
    Run Time: 0.000116
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  31. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('kin_postthread_main')
    	AND style_id = ?
    	AND language_id = ?
    Params: 5, 1
    Run Time: 0.000086
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  32. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('social_connect_status_editor')
    	AND style_id = ?
    	AND language_id = ?
    Params: 5, 1
    Run Time: 0.000090
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  33. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('xxtW_js')
    	AND style_id = ?
    	AND language_id = ?
    Params: 5, 1
    Run Time: 0.000100
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  34. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('bbms_twitter_XFormer')
    	AND style_id = ?
    	AND language_id = ?
    Params: 5, 1
    Run Time: 0.000073
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 

Included Files (163, XenForo Classes: 60)

  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/Db.php
  19. library/Zend/Db/Adapter/Mysqli.php
  20. library/Zend/Db/Adapter/Abstract.php
  21. library/Zend/Db/Select.php
  22. library/Zend/Db/Expr.php
  23. library/Zend/Db/Profiler.php
  24. library/Zend/Db/Statement/Mysqli.php
  25. library/Zend/Db/Statement.php
  26. library/Zend/Db/Statement/Interface.php
  27. library/Zend/Db/Profiler/Query.php
  28. library/XenForo/CodeEvent.php
  29. library/XenForo/Options.php
  30. library/XenForo/Link.php
  31. library/XenForo/Template/Helper/Core.php
  32. library/Brivium/BriviumHelper/EventListeners.php
  33. library/Brivium/BriviumHelper/1010071/EventListeners.php
  34. library/Asp/OnlineStatus/Plugin/Plugin.php
  35. library/UserEss/Listener/Proxy.php
  36. library/ExternalExtended/Listener.php
  37. library/BestAnswer/Listener.php
  38. library/AnonymousPosting/Listener.php
  39. library/XfAddOns/Blogs/Listener.php
  40. library/XfAddOns/Blogs/Install/Version.php
  41. library/DoublePost/Listener/LoadClassModel.php
  42. library/ModEss/Listener/Cog.php
  43. library/TiledForumsModule/Listener.php
  44. library/SocialConnect/Listener.php
  45. library/Brivium/ModernStatistic/EventListeners/Listener.php
  46. library/Brivium/ModernStatistic/ModernStatistic.php
  47. library/Iversia/Identicon/Listener.php
  48. library/ModEss/Model/ModEss.php
  49. library/XenForo/Permission.php
  50. library/XenForo/Helper/Php.php
  51. library/XenForo/Router.php
  52. library/XenForo/Route/Filter.php
  53. library/XenForo/Route/Interface.php
  54. library/XenForo/Route/ResponseSuffix.php
  55. library/XenForo/Route/Prefix.php
  56. library/XenForo/Route/Prefix/Forums.php
  57. library/XI/HelpManager/CodeEvent/Listener.php
  58. library/XenForo/RouteMatch.php
  59. library/XenForo/ControllerPublic/Forum.php
  60. library/XenForo/ControllerPublic/Abstract.php
  61. library/XenForo/Controller.php
  62. library/Sedo/MobileStyleSelector/Listener/ControllerPublic.php
  63. library/ShowSimilarThreads/Listener.php
  64. library/XfAddOns/PreviousNextThread/Listener.php
  65. library/DoublePost/Listener/LoadClassController.php
  66. library/BestAnswer/ControllerPublic/Forum.php
  67. library/ShowSimilarThreads/ControllerPublic/Forum.php
  68. library/AnonymousPosting/ControllerPublic/Forum.php
  69. library/ModEss/ControllerPublic/Forum.php
  70. library/TiledForumsModule/XenForo/ControllerPublic/Forum.php
  71. library/SocialConnect/ControllerPublic/Forum.php
  72. library/XenForo/Input.php
  73. library/XenForo/Session.php
  74. library/XenForo/Helper/Ip.php
  75. library/XenForo/Visitor.php
  76. library/XenForo/Model/User.php
  77. library/Waindigo/JoinUserGroup/Listener/LoadClass.php
  78. library/Waindigo/Listener/LoadClass.php
  79. library/Waindigo/Listener/LoadClass/20131003.php
  80. library/Waindigo/JoinUserGroup/Extend/XenForo/Model/User.php
  81. library/Brivium/ModernStatistic/Model/User.php
  82. library/BestAnswer/Model/User.php
  83. library/XfAddOns/Blogs/Override/Model/User.php
  84. library/XenForo/Phrase.php
  85. library/XenForo/Locale.php
  86. library/Sedo/MobileStyleSelector/Listener/Visitor.php
  87. library/Sedo/MobileStyleSelector/Listener/ControllerPreDispatch.php
  88. library/Waindigo/JoinUserGroup/Listener/ControllerPreDispatch.php
  89. library/Waindigo/Listener/ControllerPreDispatch.php
  90. library/Waindigo/Listener/ControllerPreDispatch/20131003.php
  91. library/Waindigo/Listener/Template/20140101.php
  92. library/Waindigo/Listener/TemplateHook/20130522.php
  93. library/Waindigo/Listener/TemplatePostRender/20130522.php
  94. library/Waindigo/Listener/TemplateCreate/20130522.php
  95. library/Waindigo/Listener/InitDependencies.php
  96. library/Waindigo/Listener/InitDependencies/20140101.php
  97. library/XenForo/ControllerResponse/Reroute.php
  98. library/XenForo/ControllerResponse/Abstract.php
  99. library/XenForo/ControllerHelper/ForumThreadPost.php
  100. library/XenForo/ControllerHelper/Abstract.php
  101. library/XenForo/Model/Forum.php
  102. library/Brivium/ModernStatistic/Model/Forum.php
  103. library/UserEss/Model/Forum.php
  104. library/AnonymousPosting/Model/Forum.php
  105. library/XenForo/Model/Thread.php
  106. library/Brivium/ModernStatistic/Model/Thread.php
  107. library/UserEss/Model/Thread.php
  108. library/BestAnswer/Model/Thread.php
  109. library/ModEss/Model/Thread.php
  110. library/BestAnswer/Model/BestAnswer.php
  111. library/XenForo/Helper/String.php
  112. library/XenForo/Helper/Discussion.php
  113. library/TiledForumsModule/Model/Node.php
  114. library/XenForo/Model/Node.php
  115. library/TiledForumsModule/Icon.php
  116. library/TiledForumsModule/Option.php
  117. library/XenForo/Helper/File.php
  118. library/XenForo/NodeHandler/Forum.php
  119. library/XenForo/NodeHandler/Abstract.php
  120. library/Brivium/ModernStatistic/Model/Node.php
  121. library/ModEss/Model/Node.php
  122. library/XenForo/Route/Prefix/Categories.php
  123. library/XenForo/ControllerResponse/View.php
  124. library/XenForo/Helper/Cookie.php
  125. library/XenForo/ViewRenderer/HtmlPublic.php
  126. library/XenForo/ViewRenderer/Abstract.php
  127. library/XenForo/Template/Public.php
  128. library/XenForo/Template/Abstract.php
  129. library/XenForo/ViewPublic/Forum/View.php
  130. library/XenForo/ViewPublic/Base.php
  131. library/XenForo/View.php
  132. library/QuickReplyInsertUsername/Listener/LoadClass.php
  133. library/ModEss/ViewPublic/Forum/View.php
  134. library/TiledForumsModule/XenForo/ViewPublic/Forum/View.php
  135. library/XenForo/ViewPublic/Helper/Node.php
  136. library/Waindigo/JoinUserGroup/Listener/TemplateCreate.php
  137. library/Sedo/QuoteME/Listener/PreloadTemplates.php
  138. library/UserEss/Listener/Hook.php
  139. library/XfAddOns/Blogs/Template/Hook.php
  140. library/WhoHasVisited/Listener.php
  141. library/DoublePost/Listener/Hook.php
  142. library/Sedo/GoToTop/Listener/Templates.php
  143. library/XenForo/Route/Prefix/Members.php
  144. library/OXY/News/Listener.php
  145. library/XfAddOns/Blogs/Template/Navigation.php
  146. library/XfAddOns/Blogs/Model/MultiBlog.php
  147. library/robokassa/Listener.php
  148. library/Waindigo/JoinUserGroup/Listener/TemplateHook.php
  149. library/Brivium/ModernStatistic/Model/ModernStatistic.php
  150. library/QuickReplyInsertUsername/Listener/Template.php
  151. library/XfAddOns/PreviousNextThread/Template/Hook.php
  152. library/CrazYimProfileLinks/Listener.php
  153. library/KineticMypostMythread/Listener.php
  154. library/MediaSites/listeners/twitter.php
  155. library/microstats/Listener.php
  156. library/XenForo/Route/Prefix/Posts.php
  157. library/XenForo/Model/Avatar.php
  158. library/Sedo/QuoteME/Listener/Templates.php
  159. library/robokassa/MoreCurrency/Listener.php
  160. library/XenForo/Route/Prefix/Threads.php
  161. library/XenForo/Helper/Criteria.php
  162. library/XenForo/Debug.php
  163. library/XenForo/ViewRenderer/Json.php