Page Time: 0.0774s

Memory: 11.6703 MB (Peak: 12.5846 MB)

Queries (29, time: 0.0060s, 7.8%)

  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.000681
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 26Using index condition
  2. SELECT data_value
    FROM xf_data_registry
    WHERE data_key = ?
    Params: modLogCounts
    Run Time: 0.000104
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  3. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000101
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  4. SELECT data_value
    FROM xf_data_registry
    WHERE data_key = ?
    Params: dark_postrating_ratings
    Run Time: 0.000089
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  5. 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(sticky_thread_order.display_order IS NULL, 1000, sticky_thread_order.display_order) AS sticky_display_order
    FROM xf_thread AS thread
    
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = thread.user_id)
    	LEFT JOIN sticky_thread_order AS sticky_thread_order ON(sticky_thread_order.thread_id = thread.thread_id)
    WHERE thread.thread_id = ?
    Params: 20432
    Run Time: 0.000231
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEsticky_thread_orderrefPRIMARYPRIMARY4const1Using index
  6. 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: 35
    Run Time: 0.000212
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  7. SELECT post.*
    	,
    		user.*, IF(user.username IS NULL, post.username, user.username) AS username,
    		user_profile.*,
    		user_privacy.*,
    		session_activity.view_date AS last_view_date,
    		0 AS like_date,
    pr_cache.rating_cache,
    pr2.rating
    FROM xf_post AS post
    
    		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_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))
    left join dark_postrating_post_cache pr_cache ON (post.post_id = pr_cache.post_id)
    left join dark_postrating pr2 on (post.post_id = pr2.post_id and pr2.user_id = 0)
    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: 20432
    Run Time: 0.000934
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangethread_id_post_date,thread_id_positionthread_id_position8 20Using index condition; Using where; Using filesort
    SIMPLEusereq_refPRIMARYPRIMARY4rassvet.post.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4rassvet.post.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4rassvet.post.user_id1 
    SIMPLEsession_activityeq_refPRIMARYPRIMARY22rassvet.post.user_id,func1Using where
    SIMPLEpr_cacheeq_refPRIMARYPRIMARY4rassvet.post.post_id1 
    SIMPLEpr2eq_refpost_id_user_id,post_id_rating,user_id_ratingpost_id_user_id8rassvet.post.post_id,const1 
  8. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 20432
    Run Time: 0.000094
  9. SELECT post_id
    FROM xf_bookmark
    WHERE xf_bookmark.user_id = ?
    Params: 0
    Run Time: 0.000217
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_bookmarkindex post_user_id8 350Using where; Using index
  10. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: 24abb4aabb0a611b70a710ae46c18f45, , 1711638357
    Run Time: 0.000120
  11. 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=20432, 1711634757,
    Run Time: 0.000073
  12. SELECT *
    FROM xf_related_content_cache
    WHERE content_id = ?
                    AND content_type = ?
    	AND expiry_date > ?
    Params: 20432, thread, 1711634757
    Run Time: 0.000150
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_related_content_cacheconstcontent_id_content_typecontent_id_content_type31const,const1 
  13. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('page_nav', 'tinhte_xentag_bb_code_tag_tag', 'tinhte_xentag_bb_code_tag_hashtag', 'bb_code_tag_code', 'bb_code_tag_php', 'bb_code_tag_html', 'bb_code_tag_quote', 'bb_code_tag_attach', 'bb_code_tag_spoiler', 'doublepost_bb_code_tag', 'conversationpost_post', 'conversationpost_userinfo', 'wf_widget_wrapper', 'related_content_results', 'tinhte_xentag_widget_related_threads', 'thread_view', 'notice_cookies', 'EWRatendo_Navtabs', 'modess_moderator_bar_mod_log_counts', 'wf_hook_moderator_bar', 'wf_revealer', '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', 'PAGE_CONTAINER')
    	AND style_id = ?
    	AND language_id = ?
    Params: 12, 2
    Run Time: 0.000748
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 35Using index condition
  14. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('events')
    Params: 2
    Run Time: 0.000102
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledconstPRIMARYPRIMARY106const,const1 
  15. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('wfc_fa2f1afdab998814dccaf', 'wfc__1_thread_view_t20432')
    Run Time: 0.000135
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 2Using index condition
  16. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('wfc_fbeb07a192aa2bbf269d7')
    Run Time: 0.000084
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  17. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc_fbeb07a192aa2bbf269d7, a:1:{s:28:"thread_view_lock_rct20432_19";a:2:{s:4:"html";s:1:"1";s:4:"time";i:1711634757;}}
    Run Time: 0.000092
  18. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc_fa2f1afdab998814dccaf, a:1:{s:23:"thread_view_rct20432_19";a:2:{s:4:"html";s:0:"";s:4:"time";i:1711634757;}}
    Run Time: 0.000067
  19. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc_fbeb07a192aa2bbf269d7, a:1:{s:28:"thread_view_lock_rct20432_19";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1711634757;}}
    Run Time: 0.000063
  20. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('wfc_d942843281ca2034cab52')
    Run Time: 0.000084
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  21. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc_d942843281ca2034cab52, a:1:{s:26:"thread_view_lock_t20432_18";a:2:{s:4:"html";s:1:"1";s:4:"time";i:1711634757;}}
    Run Time: 0.000068
  22. SELECT search_index.content_type, search_index.content_id
    FROM xf_search_index AS search_index
    
    WHERE MATCH(search_index.title, search_index.message, search_index.metadata) AGAINST (? IN BOOLEAN MODE)
    	
    
    ORDER BY search_index.item_date desc
    LIMIT 200
    Params: +_md_tag_3362 +_md_tag_638 +_md_tag_212 +_md_tag_3361 +(_md_content_thread)
    Run Time: 0.000224
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEsearch_indexfulltexttitle_message_metadatatitle_message_metadata0 1Using where; Using filesort
  23. SELECT thread.*
    	,
    		user.*, IF(user.username IS NULL, thread.username, user.username) AS username,
    		node.title AS node_title, node.node_name,
    		post.message, post.attach_count,
    		NULL AS thread_read_date,
    		0 AS user_post_count,
    	permission.cache_value AS node_permission_cache,
    		pr_cache.rating_cache
    FROM xf_thread AS thread
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = thread.user_id)
    		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 dark_postrating_post_cache pr_cache ON (thread.first_post_id = pr_cache.post_id)
    WHERE thread.thread_id IN (20432)
    Run Time: 0.000338
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEpostconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
    SIMPLEpr_cacheconstPRIMARYPRIMARY4const0Unique row not found
  24. SELECT *
    FROM xf_node
    
    ORDER BY lft ASC
    Run Time: 0.000257
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_nodeALL    57Using filesort
  25. SELECT content_id, cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = 'node'
    Params: 1
    Run Time: 0.000303
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentrefPRIMARYPRIMARY31const,const61Using index condition
  26. SELECT thread.*
    	,
    	user.gender, user.avatar_date, user.gravatar
    FROM xf_thread AS thread 
    
    	LEFT JOIN xf_user AS user ON
    		(user.user_id = thread.user_id)
    WHERE ((thread.node_id IN (50, 3, 4, 5, 6, 7, 28, 29, 36, 37, 38, 39, 30, 40, 31, 51, 34, 35, 32, 33, 18, 19, 25, 27, 20, 21, 22, 23, 24, 48, 59, 60, 61, 26, 47, 8, 12, 62, 9, 13, 55, 10, 42, 43, 44, 14, 15, 16, 17, 49, 56)) AND (thread.discussion_state IN ('visible'))) AND (thread.thread_id IN (20432))
    ORDER BY thread.post_date DESC
     LIMIT 20
    Run Time: 0.000190
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARY,node_id_last_post_date,node_id_sticky_state_last_postPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
  27. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc__1_thread_view_t20432, a:1:{s:21:"thread_view_t20432_18";a:2:{s:4:"html";s:819:"<div class="avatarList"> <ul> <li class="thread-20432 thread-node-35"> <a href="index.php?members/exspesless.10171/" class="avatar Av10171s" data-avatarhtml="true"><img src="styles/soft_responsive/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="exspesless" /></a> <a title="NT и NG профили в 10-11 (12) классах" class="Tooltip" href="index.php?threads/nt-i-ng-profili-v-10-11-12-klassax.20432/"> NT и NG профили в 10-11 (12)... </a> <div class="userTitle"> <a href="index.php?members/exspesless.10171/">exspesless</a> posted <span class="DateTime" title="21 сен 2019 в 20:53">21 сен 2019</span> </div> </li> </ul> </div>";s:4:"time";i:1711634757;}}
    Run Time: 0.000082
  28. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc_d942843281ca2034cab52, a:1:{s:26:"thread_view_lock_t20432_18";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1711634757;}}
    Run Time: 0.000062
  29. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('nat_bodyjs')
    	AND style_id = ?
    	AND language_id = ?
    Params: 12, 2
    Run Time: 0.000136
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 

Included Files (196, XenForo Classes: 80)

  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/ModEss/Listener/Cog.php
  33. library/Tapatalk/Listener/LoadClassModel.php
  34. library/bdTagMe/Listener.php
  35. library/WidgetFramework/Listener.php
  36. library/TMS/Listener.php
  37. library/Tinhte/XenTag/Listener.php
  38. library/DoublePost/Listener/Cog.php
  39. library/Dark/PostRating/EventListener.php
  40. library/RelatedContents/Listener.php
  41. library/WidgetFramework/Option.php
  42. library/EWRatendo/Listener/Init.php
  43. library/XenForo/DataWriter/User.php
  44. library/XenForo/DataWriter.php
  45. library/bdTagMe/Helper/Template.php
  46. library/bdTagMe/ShippableHelper/Updater.php
  47. library/bdTagMe/Option.php
  48. library/NodesAsTabs/Listen.php
  49. library/XenForo/Router.php
  50. library/XenForo/Route/Filter.php
  51. library/XenForo/Route/Interface.php
  52. library/XenForo/Route/ResponseSuffix.php
  53. library/XenForo/Route/Prefix.php
  54. library/WidgetFramework/Route/Filter/PageX.php
  55. library/XenForo/Route/Prefix/Threads.php
  56. library/EWRutiles/Sitemap/Listener/Route.php
  57. library/XenForo/RouteMatch.php
  58. library/XenForo/ControllerPublic/Thread.php
  59. library/XenForo/ControllerPublic/Abstract.php
  60. library/XenForo/Controller.php
  61. library/EWRutiles/Sitemap/Listener/Controller.php
  62. library/EWRatendo/Listener/Controller.php
  63. library/ConversationPost/Listener.php
  64. library/Andy/SimilarThreads/Listener.php
  65. library/Andy/Bookmark/Listener.php
  66. library/WidgetFramework/XenForo/ControllerPublic/Thread.php
  67. library/Tinhte/XenTag/XenForo/ControllerPublic/Thread.php
  68. library/ModEss/ControllerPublic/Thread.php
  69. library/NodesAsTabs/ControllerPublic/Thread.php
  70. library/DoublePost/ControllerPublic/Thread.php
  71. library/Andy/SimilarThreads/ControllerPublic/Thread.php
  72. library/Andy/Bookmark/ControllerPublic/Thread.php
  73. library/XenForo/Input.php
  74. library/XenForo/Session.php
  75. library/XenForo/Helper/Ip.php
  76. library/XenForo/Visitor.php
  77. library/XenForo/Model/User.php
  78. library/Waindigo/JoinUserGroup/Listener/LoadClass.php
  79. library/Waindigo/Listener/LoadClass.php
  80. library/Waindigo/Listener/LoadClass/20150318.php
  81. library/Waindigo/JoinUserGroup/Extend/XenForo/Model/User.php
  82. library/bdTagMe/XenForo/Model/User.php
  83. library/WidgetFramework/XenForo/Model/User.php
  84. library/Dark/PostRating/Model/User.php
  85. library/XenForo/Permission.php
  86. library/XenForo/Helper/Php.php
  87. library/XenForo/Phrase.php
  88. library/XenForo/Locale.php
  89. library/Waindigo/JoinUserGroup/Listener/ControllerPreDispatch.php
  90. library/Waindigo/Listener/ControllerPreDispatch.php
  91. library/Waindigo/Listener/ControllerPreDispatch/20150212.php
  92. library/XenForo/ControllerHelper/ForumThreadPost.php
  93. library/XenForo/ControllerHelper/Abstract.php
  94. library/XenForo/Model/Thread.php
  95. library/WidgetFramework/XenForo/Model/Thread.php
  96. library/Tinhte/XenTag/XenForo/Model/Thread.php
  97. library/ModEss/Model/Thread.php
  98. library/Dark/PostRating/Model/Thread.php
  99. library/Dark/PostRating/Model.php
  100. library/XenForo/Model/Forum.php
  101. library/Tinhte/XenTag/XenForo/Model/Forum.php
  102. library/Tinhte/XenTag/Constants.php
  103. library/XenForo/Helper/String.php
  104. library/XenForo/Helper/Discussion.php
  105. library/XenForo/Model/Post.php
  106. library/Snog/FirstPostEdit/Listener/Post.php
  107. library/ModEss/Model/Post.php
  108. library/DoublePost/Model/Post.php
  109. library/Dark/PostRating/Model/Post.php
  110. library/Snog/FirstPostEdit/Model/Post.php
  111. library/ModEss/Model/ModEss.php
  112. library/XenForo/Model/Attachment.php
  113. library/XenForo/Model/Node.php
  114. library/Tapatalk/Model/Node.php
  115. library/ModEss/Model/Node.php
  116. library/XenForo/Route/Prefix/Categories.php
  117. library/XenForo/Route/Prefix/Forums.php
  118. library/XenForo/ControllerResponse/View.php
  119. library/XenForo/ControllerResponse/Abstract.php
  120. library/XenForo/Helper/Cookie.php
  121. library/NodesAsTabs/API.php
  122. library/NodesAsTabs/Model/Options.php
  123. library/Tapatalk/Listener/ControllerPostDispatch.php
  124. library/XenForo/ViewRenderer/HtmlPublic.php
  125. library/XenForo/ViewRenderer/Abstract.php
  126. library/XenForo/Template/Public.php
  127. library/XenForo/Template/Abstract.php
  128. library/WidgetFramework/Core.php
  129. library/XenForo/Model/Moderator.php
  130. library/Waindigo/JoinUserGroup/Extend/XenForo/Model/Moderator.php
  131. library/ModEss/Model/Moderator.php
  132. library/WidgetFramework/Model/Widget.php
  133. library/WidgetFramework/Helper/Sort.php
  134. library/WidgetFramework/WidgetRenderer.php
  135. library/XenForo/ViewPublic/Thread/View.php
  136. library/XenForo/ViewPublic/Base.php
  137. library/XenForo/View.php
  138. library/Tinhte/XenTag/XenForo/ViewPublic/Thread/View.php
  139. library/WidgetFramework/XenForo/View1.php
  140. library/RelatedContents/ViewPublic/ThreadView.php
  141. library/XenForo/Model/Tag.php
  142. library/Tinhte/XenTag/XenForo/Model/Tag.php
  143. library/RelatedContents/Model/Tag.php
  144. library/XenForo/BbCode/Parser.php
  145. library/XenForo/BbCode/Formatter/Base.php
  146. library/bdTagMe/XenForo/BbCode/Formatter/Base.php
  147. library/WidgetFramework/XenForo/BbCode/Formatter/Base.php
  148. library/Tinhte/XenTag/XenForo/BbCode/Formatter/Base.php
  149. library/DoublePost/BbCode/Formatter/Base.php
  150. library/XenForo/ViewPublic/Helper/Message.php
  151. library/XenForo/BbCode/TextWrapper.php
  152. library/Tinhte/XenTag/ContentWrapper/Post.php
  153. library/Tinhte/XenTag/ContentWrapper/Abstract.php
  154. library/Tinhte/XenTag/Option.php
  155. library/Tinhte/XenTag/Helper.php
  156. library/RelatedContents/WidgetRenderer/Thread.php
  157. library/WidgetFramework/Model/Cache.php
  158. library/Tinhte/XenTag/WidgetRenderer/RelatedThreads.php
  159. library/XenForo/Route/Prefix/Members.php
  160. library/bdTagMe/XenForo/Route/Prefix/Members.php
  161. library/memberMap/Listener/Navigation.php
  162. library/memberMap/Model/ViewMap.php
  163. library/EWRatendo/Listener/NavTabs.php
  164. library/EWRatendo/Model/Perms.php
  165. library/NodesAsTabs/NavTabs.php
  166. library/EWRutiles/Sitemap/Listener/Params.php
  167. library/WidgetFramework/Template/Extended.php
  168. library/XenForo/Route/Prefix/Tags.php
  169. library/Tapatalk/EventListener/Hook.php
  170. library/EWRatendo/Listener/Template.php
  171. library/Tapatalk/Listener/TemplatePostRender.php
  172. library/XenForo/Route/Prefix/Posts.php
  173. library/XenForo/Model/Avatar.php
  174. library/Tinhte/XenTag/Integration.php
  175. library/XenForo/Model/Search.php
  176. library/Tapatalk/Model/Search.php
  177. library/XenForo/Search/Searcher.php
  178. library/XenForo/Search/SourceHandler/Abstract.php
  179. library/XenForo/Search/SourceHandler/MySqlFt.php
  180. library/XenForo/Search/DataHandler/Thread.php
  181. library/XenForo/Search/DataHandler/Abstract.php
  182. library/XenForo/NodeHandler/LinkForum.php
  183. library/XenForo/NodeHandler/Abstract.php
  184. library/XenForo/NodeHandler/Category.php
  185. library/XenForo/NodeHandler/Forum.php
  186. library/XenForo/NodeHandler/Page.php
  187. library/XenForo/Model/LinkForum.php
  188. library/XenForo/Model/Category.php
  189. library/XenForo/Model/Page.php
  190. library/WidgetFramework/Helper/String.php
  191. library/WidgetFramework/WidgetRenderer/Empty.php
  192. library/XenForo/Helper/Criteria.php
  193. library/XenForo/Debug.php
  194. mobiquo/mbqFrame/3rdLib/classTTConnection.php
  195. mobiquo/smartbanner/head.inc.php
  196. library/XenForo/ViewRenderer/Json.php