Page Time: 0.1186s

Memory: 10.2224 MB (Peak: 11.2546 MB)

Queries (18, time: 0.0191s, 16.1%)

  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.004617
    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.000614
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 2Using where
  3. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000443
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  4. SELECT profile_post.*
    	,
    	posting_user.*,
    	IF(posting_user.username IS NULL, profile_post.username, posting_user.username) AS username,
    	receiving_user.username
    		AS profile_username,
    	receiving_user.gender
    		AS profile_gender,
    	receiving_user.user_state
    		AS profile_user_state,
    	receiving_user.user_group_id
    		AS profile_user_group_id,
    	receiving_user.secondary_group_ids
    		AS profile_secondary_group_ids,
    	receiving_user.display_style_group_id
    		AS profile_display_style_group_id,
    	receiving_user.is_banned
    		AS profile_is_banned,
    	receiving_user.is_admin
    		AS profile_is_admin,
    	receiving_user.is_moderator
    		AS profile_is_moderator,
    	receiving_user.avatar_date
    		AS profile_avatar_date,
    	receiving_user.gravatar
    		AS profile_gravatar,
    	receiving_user.warning_points
    		AS profile_warning_points,
    	receiving_user.permission_combination_id
    		AS profile_permission_combination_id,
    	receiving_user_privacy.allow_view_profile
    		AS profile_allow_view_profile,
    	receiving_user_privacy.allow_post_profile
    		AS profile_allow_post_profile,
    	receiving_user_privacy.allow_send_personal_conversation
    		AS profile_allow_send_personal_conversation,
    	receiving_user_privacy.allow_view_identities
    		AS profile_allow_view_identities,
    	receiving_user_privacy.allow_receive_news_feed
    		AS profile_allow_allow_receive_news_feed,
    	IF (receiving_user_follow.follow_user_id, 1, 0)
    		AS following_0
    FROM xf_profile_post AS profile_post
    
    	LEFT JOIN xf_user AS posting_user ON
    		(posting_user.user_id = profile_post.user_id)
    	LEFT JOIN xf_user AS receiving_user ON
    		(receiving_user.user_id = profile_post.profile_user_id)
    	LEFT JOIN xf_user_privacy AS receiving_user_privacy ON
    		(receiving_user_privacy.user_id = profile_post.profile_user_id)
    	LEFT JOIN xf_user_follow AS receiving_user_follow ON
    		(receiving_user_follow.user_id = profile_post.profile_user_id AND follow_user_id = 0)
    WHERE (profile_post.message_state IN ('visible'))
    ORDER BY profile_post.post_date DESC
     LIMIT 10
    Run Time: 0.001824
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEprofile_postindex post_date4 10Using where
    SIMPLEposting_usereq_refPRIMARYPRIMARY4xen.profile_post.user_id1 
    SIMPLEreceiving_usereq_refPRIMARYPRIMARY4xen.profile_post.profile_user_id1 
    SIMPLEreceiving_user_privacyeq_refPRIMARYPRIMARY4xen.profile_post.profile_user_id1 
    SIMPLEreceiving_user_followeq_refPRIMARY,follow_user_idPRIMARY8xen.profile_post.profile_user_id,const1Using index
  5. SELECT thread.*
    	,
    	last_post_user.gender AS last_post_gender,
    	last_post_user.avatar_date AS last_post_avatar_date,
    	last_post_user.gravatar AS last_post_gravatar,
    	IF(last_post_user.username IS NULL, thread.last_post_username, last_post_user.username) AS last_post_username,
    	node.title AS node_title, node.node_name,
    	forum.*,
    	forum.last_post_id AS forum_last_post_id,
    	forum.last_post_date AS forum_last_post_date,
    	forum.last_post_user_id AS forum_last_post_user_id,
    	forum.last_post_username AS forum_last_post_username,
    	forum.last_thread_title AS forum_last_thread_title,
    	thread.last_post_id,
    	thread.last_post_date,
    	thread.last_post_user_id,
    	thread.last_post_username,
    	NULL AS thread_read_date,
    permission.cache_value AS node_permission_cache
    FROM xf_thread AS thread FORCE INDEX (last_post_date)
    
    	LEFT JOIN xf_user AS last_post_user ON
    		(last_post_user.user_id = thread.last_post_user_id)
    	LEFT JOIN xf_node AS node ON
    		(node.node_id = thread.node_id)
    	LEFT JOIN xf_forum AS forum ON
    		(forum.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)
    WHERE (thread.discussion_type <> 'redirect') AND (thread.discussion_state IN ('visible')) AND (thread.last_post_date > 1711493498) AND (forum.find_new = 1)
    ORDER BY thread.last_post_date DESC
     LIMIT 10
    Run Time: 0.001418
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadrangelast_post_datelast_post_date4 8Using index condition; Using where
    SIMPLEforumeq_refPRIMARYPRIMARY4xen.thread.node_id1Using where
    SIMPLElast_post_usereq_refPRIMARYPRIMARY4xen.thread.last_post_user_id1 
    SIMPLEnodeeq_refPRIMARYPRIMARY4xen.thread.node_id1 
    SIMPLEpermissioneq_refPRIMARYPRIMARY35const,const,xen.thread.node_id1Using where
  6. SELECT *
    FROM xf_node
    WHERE display_in_list = 1
    ORDER BY lft ASC
    Run Time: 0.001040
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_noderefdisplay_in_listdisplay_in_list1const43Using index condition
  7. SELECT content_id, cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = 'node'
    Params: 1
    Run Time: 0.001046
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentrefPRIMARYPRIMARY31const,const65Using where
  8. 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 (2, 48, 4, 59, 98, 94, 7, 10, 49, 11, 88, 25, 97, 55, 12, 67, 68, 31, 36, 37, 38, 39, 17, 18, 20, 9, 6, 65)
    Run Time: 0.001149
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumALLPRIMARY   38Using where
    SIMPLEnodeeq_refPRIMARYPRIMARY4xen.forum.node_id1Using index
  9. 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 > 1714084598)
    ORDER BY session_activity.view_date DESC
    Run Time: 0.001815
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEsession_activityrangeview_dateview_date4 36Using where
    SIMPLEusereq_refPRIMARYPRIMARY4xen.session_activity.user_id1 
  10. SELECT data_value
    FROM xf_data_registry
    WHERE data_key = ?
    Params: boardTotals
    Run Time: 0.000558
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  11. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: 2f1adab194cca9b9fe1b2bcf1debe3a4, , 1714089098
    Run Time: 0.000387
  12. 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_Forum, Index, valid, node_name=, 1714085498,
    Run Time: 0.000308
  13. SELECT page_name FROM EWRcarta_pages WHERE page_slug = 'index'
    Run Time: 0.000333
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEEWRcarta_pagesconstpage_slugpage_slug302const1 
  14. SELECT options.*, node.*,
    	permission.cache_value AS node_permission_cache
    FROM nat_options AS options
    INNER JOIN xf_node AS node
    	ON (node.node_id = options.node_id)
    LEFT JOIN xf_permission_cache_content AS permission
    	ON (permission.permission_combination_id = ?
    	AND permission.content_type = 'node'
    	AND permission.content_id = options.node_id)
    WHERE nat_display_tab = 1
    ORDER BY options.nat_display_order
    ASC
    Params: 1
    Run Time: 0.000925
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEoptionsALLnode_id   24Using where; Using filesort
    SIMPLEnodeeq_refPRIMARYPRIMARY4xen.options.node_id1 
    SIMPLEpermissioneq_refPRIMARYPRIMARY35const,const,xen.options.node_id1Using where
  15. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('trophy_1_title', 'trophy_1_description', 'trophy_40_title', 'trophy_40_description', 'trophy_5_title', 'trophy_5_description', 'trophy_2_title', 'trophy_2_description', 'trophy_12_title', 'trophy_12_description', 'trophy_27_title', 'trophy_27_description', 'trophy_28_title', 'trophy_28_description', 'trophy_29_title', 'trophy_29_description', 'trophy_30_title', 'trophy_30_description', 'trophy_31_title', 'trophy_31_description', 'trophy_32_title', 'trophy_32_description', 'trophy_39_title', 'trophy_39_description', 'trophy_41_title', 'trophy_41_description', 'trophy_3_title', 'trophy_3_description', 'trophy_6_title', 'trophy_6_description', 'trophy_11_title', 'trophy_11_description', 'trophy_33_title', 'trophy_33_description', 'trophy_34_title', 'trophy_34_description', 'trophy_7_title', 'trophy_7_description', 'trophy_10_title', 'trophy_10_description', 'trophy_13_title', 'trophy_13_description', 'trophy_35_title', 'trophy_35_description', 'trophy_36_title', 'trophy_36_description', 'trophy_4_title', 'trophy_4_description', 'trophy_8_title', 'trophy_8_description', 'trophy_17_title', 'trophy_17_description', 'trophy_22_title', 'trophy_22_description', 'trophy_26_title', 'trophy_26_description', 'trophy_37_title', 'trophy_37_description', 'trophy_44_title', 'trophy_44_description', 'trophy_9_title', 'trophy_9_description', 'trophy_20_title', 'trophy_20_description', 'trophy_18_title', 'trophy_18_description', 'trophy_38_title', 'trophy_38_description', 'trophy_21_title', 'trophy_21_description', 'trophy_23_title', 'trophy_23_description', 'trophy_25_title', 'trophy_25_description', 'trophy_24_title', 'trophy_24_description', 'trophy_42_title', 'trophy_42_description', 'trophy_43_title', 'trophy_43_description', 'BRSTS_support_tickets', 'media')
    Params: 2
    Run Time: 0.001192
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledrangePRIMARYPRIMARY106 82Using where
  16. SELECT *
    FROM xf_siropu_chat_bot_responses
     WHERE response_enabled = 1 
    ORDER BY response_id DESC
    Run Time: 0.000644
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_siropu_chat_bot_responsesindex PRIMARY4 17Using where
  17. SELECT `online` FROM `statistic` WHERE `online`!='null' ORDER BY `id` DESC LIMIT 0,1
    Run Time: 0.000358
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEstatisticindex PRIMARY9 1Using where
  18. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('members_online_now')
    Params: 2
    Run Time: 0.000390
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledconstPRIMARYPRIMARY106const,const1 

Included Files (205, XenForo Classes: 71)

  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/EWRporta2/Listener/Init.php
  33. library/EWRmedio/Listener/Init.php
  34. library/XenForo/DataWriter/User.php
  35. library/XenForo/DataWriter.php
  36. library/EWRcarta/Listener/Init.php
  37. library/Brivium/SupportTicketSystem/EventListeners/Listener.php
  38. library/Brivium/BriviumHelper/EventListeners.php
  39. library/Brivium/BriviumHelper/1010071/EventListeners.php
  40. library/Siropu/Chat/Listener.php
  41. library/NodesAsTabs/Listen.php
  42. library/MasterBadge/Listener.php
  43. library/Waindigo/Listener/InitDependencies.php
  44. library/Waindigo/Listener/InitDependencies/20150212.php
  45. library/Waindigo/Listener/ControllerPreDispatch/20150212.php
  46. library/ExternalExtended/Listener.php
  47. library/ExtendCommon/EventListener/Model.php
  48. library/WidgetFramework/Listener.php
  49. library/WidgetFramework/Option.php
  50. library/Milano/SmileyManager/Listener.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/WidgetFramework/Route/Filter/PageX.php
  57. library/XenForo/Route/Prefix/Forums.php
  58. library/XenForo/RouteMatch.php
  59. library/NodesAsTabs/Model/Options.php
  60. library/XenForo/ControllerPublic/Forum.php
  61. library/XenForo/ControllerPublic/Abstract.php
  62. library/XenForo/Controller.php
  63. library/KingK/BbCodeManager/EventListener/BbCode.php
  64. library/EWRporta2/Widget/Listener/ArticlesMain.php
  65. library/Nobita/MetaDescription/Listener.php
  66. library/Dark/Duplicate/EventListener/LoadClassController.php
  67. library/XI/Tag/CodeEvent/Listener.php
  68. library/EWRporta2/Listener/Controller.php
  69. library/UnreadPostCount/Listener.php
  70. library/NodesAsTabs/ControllerPublic/Forum.php
  71. library/WidgetFramework/XenForo/ControllerPublic/Forum.php
  72. library/EWRporta2/ControllerPublic/Forum.php
  73. library/UnreadPostCount/ControllerPublic/Forum.php
  74. library/XenForo/Input.php
  75. library/XenForo/Session.php
  76. library/XenForo/Helper/Ip.php
  77. library/XenForo/Visitor.php
  78. library/XenForo/Model/User.php
  79. library/EWRporta2/Listener/Model.php
  80. library/EWRmedio/Listener/Model.php
  81. library/EWRcarta/Listener/Model.php
  82. library/Brivium/SupportTicketSystem/Model/User.php
  83. library/WidgetFramework/XenForo/Model/User.php
  84. library/EWRporta2/Model/User.php
  85. library/EWRmedio/Model/User.php
  86. library/EWRcarta/Model/User.php
  87. library/MasterBadge/Model/User.php
  88. library/MasterBadge/Model/Badge.php
  89. library/XenForo/Permission.php
  90. library/XenForo/Helper/Php.php
  91. library/XenForo/Phrase.php
  92. library/XenForo/Locale.php
  93. library/Groupchanger/Event.php
  94. library/Groupchanger/StopSpam.php
  95. library/EWRporta2/Model/Perms.php
  96. library/WidgetFramework/Helper/Index.php
  97. library/XenForo/Model/ProfilePost.php
  98. library/WidgetFramework/XenForo/Model/ProfilePost.php
  99. library/XenForo/Model/UserProfile.php
  100. library/XenForo/Model/Trophy.php
  101. library/MasterBadge/Model/Trophy.php
  102. library/MasterBadge/Core.php
  103. library/MasterBadge/Helper/Level.php
  104. library/XenForo/Model/Thread.php
  105. library/WidgetFramework/XenForo/Model/Thread.php
  106. library/UnreadPostCount/Model/Thread.php
  107. library/Nobita/MetaDescription/XenForo/Model/Thread.php
  108. library/XenForo/Model/Forum.php
  109. library/XenForo/Helper/String.php
  110. library/XenForo/Helper/Discussion.php
  111. library/XenForo/Model/Node.php
  112. library/XenForo/NodeHandler/Category.php
  113. library/XenForo/NodeHandler/Abstract.php
  114. library/XenForo/NodeHandler/Forum.php
  115. library/XenForo/NodeHandler/Page.php
  116. library/XenForo/Model/Category.php
  117. library/XenForo/Model/Page.php
  118. library/XenForo/Model/Session.php
  119. library/Brivium/SupportTicketSystem/Model/Session.php
  120. library/XenForo/ControllerResponse/View.php
  121. library/XenForo/ControllerResponse/Abstract.php
  122. library/XenForo/Helper/Cookie.php
  123. library/NodesAsTabs/API.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/ExternalPages/ControllerPublic/online.php
  131. library/WidgetFramework/Model/Widget.php
  132. library/WidgetFramework/Helper/Sort.php
  133. library/WidgetFramework/WidgetRenderer.php
  134. library/XenForo/ViewPublic/Forum/List.php
  135. library/XenForo/ViewPublic/Base.php
  136. library/XenForo/View.php
  137. library/EWRporta2/Listener/ViewPublic.php
  138. library/ExtendCommon/UserModel/EX.php
  139. library/WidgetFramework/XenForo/View1.php
  140. library/XenForo/ViewPublic/Helper/Node.php
  141. library/KingK/BbCodeManager/EventListener/Templates/Preloader.php
  142. library/WidgetFramework/WidgetRenderer/Empty.php
  143. library/ExternalPages/WidgetFramework/ServersStatus.php
  144. library/WidgetFramework/WidgetRenderer/OnlineUsers.php
  145. library/WidgetFramework/WidgetRenderer/Html.php
  146. library/XenForo/Route/Prefix/Members.php
  147. library/MasterBadge/Route/Prefix/Members.php
  148. library/MasterBadge/Route.php
  149. library/Begin/Listeners/Navigation.php
  150. library/EWRporta2/Listener/NavTabs.php
  151. library/Brivium/SupportTicketSystem/Model/SupportTicket.php
  152. library/Brivium/SupportTicketSystem/Model/KnowledgeBase.php
  153. library/Moder/Listeners/Navigation.php
  154. library/ExternalPages/Listeners/Navigation.php
  155. library/EWRmedio/Listener/NavTabs.php
  156. library/EWRmedio/Model/Perms.php
  157. library/EWRcarta/Listener/NavTabs.php
  158. library/EWRcarta/Model/Perms.php
  159. library/EWRcarta/Model/Lists.php
  160. library/NodesAsTabs/NavTabs.php
  161. library/XenForo/Template/FileHandler.php
  162. library/XenForo/Helper/File.php
  163. internal_data/templates/S.10,L.2,nat_childlinks.php
  164. library/XenForo/Route/Prefix/LinkForums.php
  165. library/WidgetFramework/Template/Extended.php
  166. internal_data/templates/S.10,L.2,forum_list.php
  167. internal_data/templates/S.10,L.2,node_category_level_1.php
  168. library/XenForo/Route/Prefix/Categories.php
  169. internal_data/templates/S.10,L.2,node_forum_level_2.php
  170. internal_data/templates/S.10,L.2,node_forum_level_n.php
  171. library/KingK/BbCodeManager/EventListener/Templates/InitEditorGrid.php
  172. library/EWRporta2/Listener/Template.php
  173. library/EWRmedio/Listener/Template.php
  174. library/EWRmedio/Model/Lists.php
  175. library/EWRcarta/Listener/Template.php
  176. library/ExternalPages/ControllerPublic/balance.php
  177. library/SvgGoUpDown/Listener.php
  178. library/ExternalPages/ControllerPublic/ShortBannedList.php
  179. library/XenForo/Route/Prefix/Posts.php
  180. library/Siropu/Chat/Helper.php
  181. library/Siropu/Chat/Model.php
  182. library/XenForo/Helper/Color.php
  183. internal_data/templates/S.10,L.2,siropu_chat.php
  184. library/Siropu/Chat/HelperTemplate.php
  185. library/XenForo/Model/Avatar.php
  186. library/XenForo/Route/Prefix/ProfilePosts.php
  187. library/WidgetFramework/Helper/String.php
  188. library/ExternalPages/Model/ep.php
  189. internal_data/templates/S.10,L.2,Servers.php
  190. library/WidgetFramework/Helper/LayoutEditor.php
  191. internal_data/templates/S.10,L.2,wf_widget_online_users.php
  192. internal_data/templates/S.10,L.2,wf_widget_wrapper.php
  193. library/XenForo/Helper/Criteria.php
  194. library/XenForo/Debug.php
  195. internal_data/templates/S.10,L.2,PAGE_CONTAINER.php
  196. internal_data/templates/S.10,L.2,bbcm_js.php
  197. internal_data/templates/S.10,L.2,EWRporta2_Navtabs.php
  198. internal_data/templates/S.10,L.2,BRSTS_support_ticket_tab_links.php
  199. internal_data/templates/S.10,L.2,BRSTS_brsts_support_ticket_tab_links.php
  200. internal_data/templates/S.10,L.2,EWRmedio_Navtabs.php
  201. internal_data/templates/S.10,L.2,EWRcarta_Navtabs.php
  202. internal_data/templates/S.10,L.2,nat_linkstemplate.php
  203. internal_data/templates/S.10,L.2,go_up_down.php
  204. library/XenForo/ViewRenderer/Json.php
  205. internal_data/templates/S.10,L.2,nat_bodyjs.php