Page Time: 0.1928s

Memory: 21.1530 MB (Peak: 22.0340 MB)

Queries (56, time: 0.0205s, 10.6%)

  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.000478
    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.000152
    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.000154
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  4. 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
    FROM xf_thread AS thread
    
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = thread.user_id)
    WHERE thread.thread_id = ?
    Params: 2175
    Run Time: 0.000409
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
  5. 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: 11
    Run Time: 0.000477
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  6. 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
    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)
    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: 2175
    Run Time: 0.001149
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrefthread_id_post_date,thread_id_positionthread_id_post_date4const1Using where; Using filesort
    SIMPLEusereq_refPRIMARYPRIMARY4ddtm.post.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4ddtm.post.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4ddtm.post.user_id1 
    SIMPLEsession_activityrefPRIMARYPRIMARY4ddtm.post.user_id8Using where
  7. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 2175
    Run Time: 0.000071
  8. SELECT attachment.*,
    	data.filename, data.file_size, data.file_hash, 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 (4461)
                    AND (data.filename LIKE '%.png' OR
                        data.filename LIKE '%.jpg' OR
                        data.filename LIKE '%.jpeg' OR
                        data.filename LIKE '%.jpe' OR
                        data.filename LIKE '%.gif')
    GROUP BY attachment.content_id
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000295
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrefcontent_type_id_datecontent_type_id_date31const,const1Using index condition
    SIMPLEdataeq_refPRIMARYPRIMARY4ddtm.attachment.data_id1Using where
  9. SELECT
    	post.*
    	
    FROM xf_post AS post
    WHERE post.post_id IN (4461)
    Run Time: 0.000170
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostconstPRIMARYPRIMARY4const1 
  10. SELECT `thread_id`, `title`, `view_count`, `post_date`
    FROM `xf_thread`
    WHERE `node_id` = 11
    ORDER BY RAND()
    LIMIT 0, 10
    Run Time: 0.001525
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_threadrefnode_id_last_post_date,node_id_sticky_state_last_postnode_id_last_post_date4const618Using temporary; Using filesort
  11. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('chip_morethread_random')
    Params: 2
    Run Time: 0.000150
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledconstPRIMARYPRIMARY106const,const1 
  12. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: bb23eca40bc39512fcc29afe144cd38c, a:8:{s:12:"sessionStart";i:1711628904;s:2:"ip";s:4:"#«Ÿ";s:11:"sessionCsrf";s:16:"VuAlLe9Se3MpSTd-";s:9:"userAgent";s:9:"claudebot";s:7:"robotId";s:0:"";s:16:"previousActivity";i:0;s:15:"isIpDiscouraged";a:2:{s:6:"result";b:0;s:7:"version";i:1487748357;}s:11:"sedoQuattro";a:1:{s:18:"noJsonRequestPaths";a:6:{s:8:"basePath";s:1:"/";s:4:"host";s:22:"diendanthammyvien.info";s:8:"protocol";s:4:"http";s:12:"fullBasePath";s:30:"http://diendanthammyvien.info/";s:10:"requestUri";s:40:"/t/thung-rac-hdpe-660-lit.2175/?_debug=1";s:7:"fullUri";s:69:"http://diendanthammyvien.info/t/thung-rac-hdpe-660-lit.2175/?_debug=1";}}}, 1711632504
    Run Time: 0.000251
  13. 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=2175, 1711628904,
    Run Time: 0.000079
  14. 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', 'wf_widget_wrapper', 'wf_widget_threads', 'tinhte_xentag_thread_view', 'tinhte_xentag_hook_thread_view_pagenav_before', 'tinhte_xentag_hook_thread_view_form_before', 'tinhte_xentag_hook_thread_view_qr_before', 'tinhte_xentag_hook_thread_view_qr_after', 'chip_morethreads', 'thread_view', 'wf_hook_moderator_bar', 'wf_revealer', 'tinhte_xentag_hook_message_below', 'tinhte_xentag_hook_message_content', 'tinhte_xentag_hook_message_notices', 'tinhte_xentag_hook_navigation_tabs_forums', 'tinhte_xentag_hook_post_private_controls', 'tinhte_xentag_hook_post_public_controls', 'PAGE_CONTAINER')
    	AND style_id = ?
    	AND language_id = ?
    Params: 2, 2
    Run Time: 0.000532
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 27Using where
  15. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('wfc__1_thread_view')
    Run Time: 0.000176
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  16. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('wfc__1_thread_view_lock')
    Run Time: 0.000098
    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__1_thread_view_lock, a:3:{s:19:"thread_view_lock_17";a:2:{s:4:"html";s:1:"1";s:4:"time";i:1711628904;}s:19:"thread_view_lock_14";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1711628352;}s:19:"thread_view_lock_16";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1711628352;}}
    Run Time: 0.000341
  18. 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 ('36')) AND (thread.sticky = 0) AND (thread.discussion_state IN ('visible'))
    ORDER BY thread.post_date DESC
     LIMIT 15
    Run Time: 0.000528
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadrefnode_id_last_post_date,node_id_sticky_state_last_postnode_id_last_post_date4const47Using where; Using filesort
    SIMPLEusereq_refPRIMARYPRIMARY4ddtm.thread.user_id1 
  19. SELECT content_id, cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = 'node'
    Params: 1
    Run Time: 0.000304
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentrefPRIMARYPRIMARY31const,const133Using where
  20. SELECT node.*, forum.*
    	
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    WHERE node.node_id IN (36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36)
    Run Time: 0.000342
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumrangePRIMARYPRIMARY4 1Using where
    SIMPLEnodeeq_refPRIMARYPRIMARY4ddtm.forum.node_id1 
  21. SELECT attachment.*,
    	data.filename, data.file_size, data.file_hash, 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 (4990, 4967, 4876, 4711, 4684)
                    AND (data.filename LIKE '%.png' OR
                        data.filename LIKE '%.jpg' OR
                        data.filename LIKE '%.jpeg' OR
                        data.filename LIKE '%.jpe' OR
                        data.filename LIKE '%.gif')
    GROUP BY attachment.content_id
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000369
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrangecontent_type_id_datecontent_type_id_date31 8Using index condition; Using temporary; Using filesort
    SIMPLEdataeq_refPRIMARYPRIMARY4ddtm.attachment.data_id1Using where
  22. SELECT
    	post.*
    	
    FROM xf_post AS post
    WHERE post.post_id IN (4990, 4967, 4876, 4711, 4684)
    Run Time: 0.000201
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangePRIMARYPRIMARY4 5Using where
  23. SELECT node.*, forum.*
    	
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    WHERE node.node_id = ?
    Params: 36
    Run Time: 0.000340
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
  24. SELECT attachment.*,
    	data.filename, data.file_size, data.file_hash, 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 (4990, 4967, 4876, 4711, 4684)
                    AND (data.filename LIKE '%.png' OR
                        data.filename LIKE '%.jpg' OR
                        data.filename LIKE '%.jpeg' OR
                        data.filename LIKE '%.jpe' OR
                        data.filename LIKE '%.gif')
    GROUP BY attachment.content_id
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000312
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrangecontent_type_id_datecontent_type_id_date31 8Using index condition; Using temporary; Using filesort
    SIMPLEdataeq_refPRIMARYPRIMARY4ddtm.attachment.data_id1Using where
  25. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc__1_thread_view, a:3:{s:14:"thread_view_17";a:2:{s:4:"html";s:2104:"<div class="avatarList sublink box"> <ul> <li class="thread-2685 thread-node-36 sublinkLi first"> <h6> <a href="t/ai-co-nguy-co-mac-cholesterol-cao.2685/"> Ai có nguy cÆ¡ mắc cholesterol cao? </a> </h6> <div class="article_SK last article_SK_big"> <div style="height:90px; width:120px; overflow:hidden; float: left; margin-right: 8px;"> <a href="t/ai-co-nguy-co-mac-cholesterol-cao.2685/"> <img class="img_90_120" src="https://suckhoedoisong.qltns.mediacdn.vn/324455921873985536/2023/9/9/edit-giam-cholesterol3-16409393266701785838554-1694268540590750662914.jpeg"/> </a> </div> </div> </li> <li class="thread-2662 thread-node-36 sublinkLi "> <a title="Tại sao vết thÆ°Æ¡ng lâu lành? DÆ°á»›i đây là những Ä‘iá»u bạn cần cân nhắc." class="Tooltip" href="t/tai-sao-vet-thuong-lau-lanh-duoi-day-la-nhung-dieu-ban-can-can-nhac.2662/"> Tại sao vết thÆ°Æ¡ng lâu lành? DÆ°á»›i đây... </a> </li> <li class="thread-2572 thread-node-36 sublinkLi "> <a title="Sau khi phun môi nên sá»­ dụng son dưỡng nào?" class="Tooltip" href="t/sau-khi-phun-moi-nen-su-dung-son-duong-nao.2572/"> Sau khi phun môi nên sá»­ dụng son dưỡng... </a> </li> <li class="thread-2410 thread-node-36 sublinkLi "> <a title="Miếng dán vết thÆ°Æ¡ng thay chỉ khâu 3M Steri Strip: HÆ°á»›ng dẫn sá»­ dụng" class="Tooltip" href="t/mieng-dan-vet-thuong-thay-chi-khau-3m-steri-strip-huong-dan-su-dung.2410/"> Miếng dán vết thÆ°Æ¡ng thay chỉ khâu 3M... </a> </li> <li class="thread-2387 thread-node-36 sublinkLi "> <a href="t/nen-tay-not-ruoi-nao-cho-hop-phong-thuy.2387/"> Nên tẩy nốt ruồi nào cho hợp phong thủy? </a> </li> </ul> </div> <div id="PreviewTooltip"> <span class="arrow"><span></span></span> <div class="section"> <div class="primaryContent previewContent"> <span class="PreviewContents">Äang tải...</span> </div> </div> </div>";s:4:"time";i:1711628904;}s:14:"thread_view_14";a:2:{s:4:"html";s:2719:"<div class="avatarList sublink box"> <ul> <li class="thread-2794 thread-node-16 sublinkLi first"> <h6> <a href="t/tinh-trang-nguc-chay-xe-o-nam-gioi.2794/"> Tình trạng ngá»±c chảy xệ ở nam giá»›i </a> </h6> <div class="article_SK last article_SK_big"> <div style="height:90px; width:120px; overflow:hidden; float: left; margin-right: 8px;"> <a href="t/tinh-trang-nguc-chay-xe-o-nam-gioi.2794/"> <img class="img_90_120" src="https://thammyngomonghung.vn/wp-content/uploads/2019/07/nguc-nam-bi-xe-1.jpg"/> </a> </div> <div class="artsub_SK1">Nguyên nhân nào khiến ngá»±c chảy xệ ở tuổi dậy thì? Dậy thì là thá»i Ä‘iểm ngá»±c phát triển nhanh...</div> </div> </li> <li class="thread-2793 thread-node-16 sublinkLi "> <a href="t/nang-nguc-chay-xe-bang-phuong-phap-noi-soi.2793/"> Nâng ngá»±c chảy xệ bằng phÆ°Æ¡ng pháp ná»™i soi </a> </li> <li class="thread-2792 thread-node-16 sublinkLi "> <a href="t/thuc-don-eat-clean-7-ngay-giam-mo-bung.2792/"> Thá»±c Ä‘Æ¡n eat clean 7 ngày giảm mỡ bụng </a> </li> <li class="thread-2791 thread-node-16 sublinkLi "> <a href="t/tong-hop-nhac-tap-the-duc-giam-mo-bung.2791/"> Tổng hợp nhạc tập thể dục giảm mỡ bụng </a> </li> <li class="thread-2790 thread-node-16 sublinkLi "> <a href="t/cach-an-uong-giam-mo-bung-la-gi.2790/"> Cách ăn uống giảm mỡ bụng là gì? </a> </li> <li class="thread-2789 thread-node-16 sublinkLi "> <a href="t/cach-giam-mo-bung-trong-2-tuan.2789/"> Cách giảm mỡ bụng trong 2 tuần </a> </li> <li class="thread-2787 thread-node-16 sublinkLi "> <a title="Nguyên nhân cách khắc phục ngá»±c chảy xệ sau sinh" class="Tooltip" href="t/nguyen-nhan-cach-khac-phuc-nguc-chay-xe-sau-sinh.2787/"> Nguyên nhân cách khắc phục ngá»±c chảy... </a> </li> <li class="thread-2786 thread-node-16 sublinkLi "> <a href="t/tim-hieu-cach-nang-nguc-chay-xe-hieu-qua.2786/"> Tìm hiểu cách nâng ngá»±c chảy xệ hiệu quả </a> </li> <li class="thread-2785 thread-node-16 sublinkLi last"> <a href="t/bat-mi-cach-massage-nguc-chay-xe.2785/"> Bật mí cách massage ngá»±c chảy xệ </a> </li> </ul> </div> <div id="PreviewTooltip"> <span class="arrow"><span></span></span> <div class="section"> <div class="primaryContent previewContent"> <span class="PreviewContents">Äang tải...</span> </div> </div> </div>";s:4:"time";i:1711628352;}s:14:"thread_view_16";a:2:{s:4:"html";s:3282:"<div class="avatarList sublink box"> <ul> <li class="thread-2719 thread-node-11 sublinkLi first"> <h6> <a title="Vì sao nên chá»n hồ Acrylic mà không sá»­ dụng Kính cÆ°á»ng lá»±c" class="Tooltip" href="t/vi-sao-nen-chon-ho-acrylic-ma-khong-su-dung-kinh-cuong-luc.2719/"> Vì sao nên chá»n hồ Acrylic mà không sá»­... </a> </h6> <div class="article_SK last article_SK_big"> <div style="height:90px; width:120px; overflow:hidden; float: left; margin-right: 8px;"> <a href="t/vi-sao-nen-chon-ho-acrylic-ma-khong-su-dung-kinh-cuong-luc.2719/"> <img class="img_90_120" src="https://ebivn.com/upload/images/images/hocaacrylic-ebivn.png"/> </a> </div> </div> </li> <li class="thread-2722 thread-node-11 sublinkLi "> <a title="Tại sao giá của hồ Acrylic lại cao hÆ¡n hồ kính siêu trong?" class="Tooltip" href="t/tai-sao-gia-cua-ho-acrylic-lai-cao-hon-ho-kinh-sieu-trong.2722/"> Tại sao giá của hồ Acrylic lại cao hÆ¡n... </a> </li> <li class="thread-2720 thread-node-11 sublinkLi "> <a title="Ebivn Ä‘Æ¡n vị chuyên thi công uốn tấm Acrylic tại hồ chí minh" class="Tooltip" href="t/ebivn-don-vi-chuyen-thi-cong-uon-tam-acrylic-tai-ho-chi-minh.2720/"> Ebivn Ä‘Æ¡n vị chuyên thi công uốn tấm... </a> </li> <li class="thread-2717 thread-node-11 sublinkLi "> <a href="t/tao-diem-nhan-nghe-thuat-voi-ho-acrylic.2717/"> Tạo Ä‘iểm nhấn nghệ thuật vá»›i hồ Acrylic </a> </li> <li class="thread-2725 thread-node-11 sublinkLi "> <a title="Hồ Acrylic là sá»± lá»±a chá»n thông minh và đáng tin cậy cho những ngÆ°á»i yêu thích cá cảnh" class="Tooltip" href="t/ho-acrylic-la-su-lua-chon-thong-minh-va-dang-tin-cay-cho-nhung-nguoi-yeu-thich-ca-canh.2725/"> Hồ Acrylic là sá»± lá»±a chá»n thông minh... </a> </li> <li class="thread-2726 thread-node-11 sublinkLi "> <a title="Cách vệ sinh, đánh bóng và làm má»›i hồ Acrylic" class="Tooltip" href="t/cach-ve-sinh-danh-bong-va-lam-moi-ho-acrylic.2726/"> Cách vệ sinh, đánh bóng và làm má»›i hồ... </a> </li> <li class="thread-2724 thread-node-11 sublinkLi "> <a title="Ebivn chuyên cung cấp tấm nhá»±a Acrylic có kích thÆ°á»›c lá»›n từ 1 mét đến 7 mét" class="Tooltip" href="t/ebivn-chuyen-cung-cap-tam-nhua-acrylic-co-kich-thuoc-lon-tu-1-met-den-7-met.2724/"> Ebivn chuyên cung cấp tấm nhá»±a Acrylic... </a> </li> <li class="thread-2732 thread-node-16 sublinkLi "> <a href="t/nang-nguc-chay-xe-o-dau-cho-dep.2732/"> Nâng ngá»±c chảy xệ ở đâu cho đẹp </a> </li> <li class="thread-2748 thread-node-16 sublinkLi last"> <a href="t/tu-van-nang-nguc-chay-xe-gia-bao-nhieu.2748/"> TÆ° vấn: Nâng ngá»±c chảy xệ giá bao nhiêu? </a> </li> </ul> </div> <div id="PreviewTooltip"> <span class="arrow"><span></span></span> <div class="section"> <div class="primaryContent previewContent"> <span class="PreviewContents">Äang tải...</span> </div> </div> </div>";s:4:"time";i:1711628352;}}
    Run Time: 0.000466
  26. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc__1_thread_view_lock, a:3:{s:19:"thread_view_lock_17";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1711628904;}s:19:"thread_view_lock_14";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1711628352;}s:19:"thread_view_lock_16";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1711628352;}}
    Run Time: 0.000233
  27. SELECT thread.*
    	,
    	user.gender, user.avatar_date, user.gravatar,
    	post.message, post.attach_count,
    	NULL AS thread_read_date
    FROM xf_thread AS thread 
    
    	LEFT JOIN xf_user AS user ON
    		(user.user_id = thread.user_id)
    	LEFT JOIN xf_post AS post ON
    		(post.post_id = thread.first_post_id)
    WHERE (thread.node_id IN ('28')) AND (thread.discussion_open = 1) AND (thread.discussion_state IN ('visible'))
    ORDER BY thread.last_post_date DESC
     LIMIT 27
    Run Time: 0.000475
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadrefnode_id_last_post_date,node_id_sticky_state_last_postnode_id_last_post_date4const78Using where; Backward index scan
    SIMPLEusereq_refPRIMARYPRIMARY4ddtm.thread.user_id1 
    SIMPLEposteq_refPRIMARYPRIMARY4ddtm.thread.first_post_id1 
  28. SELECT attachment.*,
    	data.filename, data.file_size, data.file_hash, 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 (1297, 1181, 13, 994, 1177, 1314, 1233, 1156, 1219, 1229, 1184, 1159, 1154, 1462)
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000375
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrangecontent_type_id_datecontent_type_id_date31 15Using index condition
    SIMPLEdataeq_refPRIMARYPRIMARY4ddtm.attachment.data_id1 
  29. SELECT node.*, forum.*
    	
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    WHERE node.node_id IN (28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28)
    Run Time: 0.000351
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumrangePRIMARYPRIMARY4 1Using where
    SIMPLEnodeeq_refPRIMARYPRIMARY4ddtm.forum.node_id1 
  30. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000144
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  31. SELECT attachment.*,
    	data.filename, data.file_size, data.file_hash, 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 (4823, 4670, 1297, 1181, 30, 41, 43, 994)
                    AND (data.filename LIKE '%.png' OR
                        data.filename LIKE '%.jpg' OR
                        data.filename LIKE '%.jpeg' OR
                        data.filename LIKE '%.jpe' OR
                        data.filename LIKE '%.gif')
    GROUP BY attachment.content_id
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000372
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrangecontent_type_id_datecontent_type_id_date31 8Using index condition; Using temporary; Using filesort
    SIMPLEdataeq_refPRIMARYPRIMARY4ddtm.attachment.data_id1Using where
  32. SELECT
    	post.*
    	
    FROM xf_post AS post
    WHERE post.post_id IN (4823, 4670, 1297, 1181, 13, 30, 41, 43, 994)
    Run Time: 0.000223
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangePRIMARYPRIMARY4 9Using where
  33. SELECT node.*, forum.*
    	
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    WHERE node.node_id = ?
    Params: 28
    Run Time: 0.000318
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
  34. SELECT attachment.*,
    	data.filename, data.file_size, data.file_hash, 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 (4823, 4670, 1297, 1181, 30, 41, 43, 994)
                    AND (data.filename LIKE '%.png' OR
                        data.filename LIKE '%.jpg' OR
                        data.filename LIKE '%.jpeg' OR
                        data.filename LIKE '%.jpe' OR
                        data.filename LIKE '%.gif')
    GROUP BY attachment.content_id
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000323
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrangecontent_type_id_datecontent_type_id_date31 8Using index condition; Using temporary; Using filesort
    SIMPLEdataeq_refPRIMARYPRIMARY4ddtm.attachment.data_id1Using where
  35. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc__1_thread_view_lock, a:3:{s:19:"thread_view_lock_17";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1711628904;}s:19:"thread_view_lock_14";a:2:{s:4:"html";s:1:"1";s:4:"time";i:1711628904;}s:19:"thread_view_lock_16";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1711628352;}}
    Run Time: 0.000304
  36. SELECT thread.*
    	,
    	user.gender, user.avatar_date, user.gravatar,
    	post.message, post.attach_count
    FROM xf_thread AS thread 
    
    	LEFT JOIN xf_user AS user ON
    		(user.user_id = thread.user_id)
    	LEFT JOIN xf_post AS post ON
    		(post.post_id = thread.first_post_id)
    WHERE (thread.node_id IN ('6', '12', '13', '16', '18', '20', '21', '19', '22', '23', '54', '55', '56')) AND (thread.discussion_state IN ('visible'))
    ORDER BY thread.last_post_date DESC
     LIMIT 27
    Run Time: 0.000675
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadindexnode_id_last_post_date,node_id_sticky_state_last_postlast_post_date4 101Using where; Backward index scan
    SIMPLEusereq_refPRIMARYPRIMARY4ddtm.thread.user_id1 
    SIMPLEposteq_refPRIMARYPRIMARY4ddtm.thread.first_post_id1 
  37. SELECT attachment.*,
    	data.filename, data.file_size, data.file_hash, 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 (5084)
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000286
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrefcontent_type_id_datecontent_type_id_date31const,const1Using index condition
    SIMPLEdataeq_refPRIMARYPRIMARY4ddtm.attachment.data_id1 
  38. SELECT node.*, forum.*
    	
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    WHERE node.node_id IN (16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 56, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16)
    Run Time: 0.000412
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumrangePRIMARYPRIMARY4 2Using where
    SIMPLEnodeeq_refPRIMARYPRIMARY4ddtm.forum.node_id1 
  39. SELECT attachment.*,
    	data.filename, data.file_size, data.file_hash, 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 (5100, 5099, 5098, 5097, 5096, 5095, 5093, 5092, 5091)
                    AND (data.filename LIKE '%.png' OR
                        data.filename LIKE '%.jpg' OR
                        data.filename LIKE '%.jpeg' OR
                        data.filename LIKE '%.jpe' OR
                        data.filename LIKE '%.gif')
    GROUP BY attachment.content_id
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000358
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrangecontent_type_id_datecontent_type_id_date31 9Using index condition; Using temporary; Using filesort
    SIMPLEdataeq_refPRIMARYPRIMARY4ddtm.attachment.data_id1Using where
  40. SELECT
    	post.*
    	
    FROM xf_post AS post
    WHERE post.post_id IN (5100, 5099, 5098, 5097, 5096, 5095, 5093, 5092, 5091)
    Run Time: 0.000228
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangePRIMARYPRIMARY4 9Using where
  41. SELECT node.*, forum.*
    	
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    WHERE node.node_id = ?
    Params: 16
    Run Time: 0.000330
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
  42. SELECT attachment.*,
    	data.filename, data.file_size, data.file_hash, 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 (5100, 5099, 5098, 5097, 5096, 5095, 5093, 5092, 5091)
                    AND (data.filename LIKE '%.png' OR
                        data.filename LIKE '%.jpg' OR
                        data.filename LIKE '%.jpeg' OR
                        data.filename LIKE '%.jpe' OR
                        data.filename LIKE '%.gif')
    GROUP BY attachment.content_id
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000291
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrangecontent_type_id_datecontent_type_id_date31 9Using index condition; Using temporary; Using filesort
    SIMPLEdataeq_refPRIMARYPRIMARY4ddtm.attachment.data_id1Using where
  43. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc__1_thread_view, a:3:{s:14:"thread_view_17";a:2:{s:4:"html";s:2104:"<div class="avatarList sublink box"> <ul> <li class="thread-2685 thread-node-36 sublinkLi first"> <h6> <a href="t/ai-co-nguy-co-mac-cholesterol-cao.2685/"> Ai có nguy cÆ¡ mắc cholesterol cao? </a> </h6> <div class="article_SK last article_SK_big"> <div style="height:90px; width:120px; overflow:hidden; float: left; margin-right: 8px;"> <a href="t/ai-co-nguy-co-mac-cholesterol-cao.2685/"> <img class="img_90_120" src="https://suckhoedoisong.qltns.mediacdn.vn/324455921873985536/2023/9/9/edit-giam-cholesterol3-16409393266701785838554-1694268540590750662914.jpeg"/> </a> </div> </div> </li> <li class="thread-2662 thread-node-36 sublinkLi "> <a title="Tại sao vết thÆ°Æ¡ng lâu lành? DÆ°á»›i đây là những Ä‘iá»u bạn cần cân nhắc." class="Tooltip" href="t/tai-sao-vet-thuong-lau-lanh-duoi-day-la-nhung-dieu-ban-can-can-nhac.2662/"> Tại sao vết thÆ°Æ¡ng lâu lành? DÆ°á»›i đây... </a> </li> <li class="thread-2572 thread-node-36 sublinkLi "> <a title="Sau khi phun môi nên sá»­ dụng son dưỡng nào?" class="Tooltip" href="t/sau-khi-phun-moi-nen-su-dung-son-duong-nao.2572/"> Sau khi phun môi nên sá»­ dụng son dưỡng... </a> </li> <li class="thread-2410 thread-node-36 sublinkLi "> <a title="Miếng dán vết thÆ°Æ¡ng thay chỉ khâu 3M Steri Strip: HÆ°á»›ng dẫn sá»­ dụng" class="Tooltip" href="t/mieng-dan-vet-thuong-thay-chi-khau-3m-steri-strip-huong-dan-su-dung.2410/"> Miếng dán vết thÆ°Æ¡ng thay chỉ khâu 3M... </a> </li> <li class="thread-2387 thread-node-36 sublinkLi "> <a href="t/nen-tay-not-ruoi-nao-cho-hop-phong-thuy.2387/"> Nên tẩy nốt ruồi nào cho hợp phong thủy? </a> </li> </ul> </div> <div id="PreviewTooltip"> <span class="arrow"><span></span></span> <div class="section"> <div class="primaryContent previewContent"> <span class="PreviewContents">Äang tải...</span> </div> </div> </div>";s:4:"time";i:1711628904;}s:14:"thread_view_14";a:2:{s:4:"html";s:2719:"<div class="avatarList sublink box"> <ul> <li class="thread-2794 thread-node-16 sublinkLi first"> <h6> <a href="t/tinh-trang-nguc-chay-xe-o-nam-gioi.2794/"> Tình trạng ngá»±c chảy xệ ở nam giá»›i </a> </h6> <div class="article_SK last article_SK_big"> <div style="height:90px; width:120px; overflow:hidden; float: left; margin-right: 8px;"> <a href="t/tinh-trang-nguc-chay-xe-o-nam-gioi.2794/"> <img class="img_90_120" src="https://thammyngomonghung.vn/wp-content/uploads/2019/07/nguc-nam-bi-xe-1.jpg"/> </a> </div> <div class="artsub_SK1">Nguyên nhân nào khiến ngá»±c chảy xệ ở tuổi dậy thì? Dậy thì là thá»i Ä‘iểm ngá»±c phát triển nhanh...</div> </div> </li> <li class="thread-2793 thread-node-16 sublinkLi "> <a href="t/nang-nguc-chay-xe-bang-phuong-phap-noi-soi.2793/"> Nâng ngá»±c chảy xệ bằng phÆ°Æ¡ng pháp ná»™i soi </a> </li> <li class="thread-2792 thread-node-16 sublinkLi "> <a href="t/thuc-don-eat-clean-7-ngay-giam-mo-bung.2792/"> Thá»±c Ä‘Æ¡n eat clean 7 ngày giảm mỡ bụng </a> </li> <li class="thread-2791 thread-node-16 sublinkLi "> <a href="t/tong-hop-nhac-tap-the-duc-giam-mo-bung.2791/"> Tổng hợp nhạc tập thể dục giảm mỡ bụng </a> </li> <li class="thread-2790 thread-node-16 sublinkLi "> <a href="t/cach-an-uong-giam-mo-bung-la-gi.2790/"> Cách ăn uống giảm mỡ bụng là gì? </a> </li> <li class="thread-2789 thread-node-16 sublinkLi "> <a href="t/cach-giam-mo-bung-trong-2-tuan.2789/"> Cách giảm mỡ bụng trong 2 tuần </a> </li> <li class="thread-2787 thread-node-16 sublinkLi "> <a title="Nguyên nhân cách khắc phục ngá»±c chảy xệ sau sinh" class="Tooltip" href="t/nguyen-nhan-cach-khac-phuc-nguc-chay-xe-sau-sinh.2787/"> Nguyên nhân cách khắc phục ngá»±c chảy... </a> </li> <li class="thread-2786 thread-node-16 sublinkLi "> <a href="t/tim-hieu-cach-nang-nguc-chay-xe-hieu-qua.2786/"> Tìm hiểu cách nâng ngá»±c chảy xệ hiệu quả </a> </li> <li class="thread-2785 thread-node-16 sublinkLi last"> <a href="t/bat-mi-cach-massage-nguc-chay-xe.2785/"> Bật mí cách massage ngá»±c chảy xệ </a> </li> </ul> </div> <div id="PreviewTooltip"> <span class="arrow"><span></span></span> <div class="section"> <div class="primaryContent previewContent"> <span class="PreviewContents">Äang tải...</span> </div> </div> </div>";s:4:"time";i:1711628904;}s:14:"thread_view_16";a:2:{s:4:"html";s:3282:"<div class="avatarList sublink box"> <ul> <li class="thread-2719 thread-node-11 sublinkLi first"> <h6> <a title="Vì sao nên chá»n hồ Acrylic mà không sá»­ dụng Kính cÆ°á»ng lá»±c" class="Tooltip" href="t/vi-sao-nen-chon-ho-acrylic-ma-khong-su-dung-kinh-cuong-luc.2719/"> Vì sao nên chá»n hồ Acrylic mà không sá»­... </a> </h6> <div class="article_SK last article_SK_big"> <div style="height:90px; width:120px; overflow:hidden; float: left; margin-right: 8px;"> <a href="t/vi-sao-nen-chon-ho-acrylic-ma-khong-su-dung-kinh-cuong-luc.2719/"> <img class="img_90_120" src="https://ebivn.com/upload/images/images/hocaacrylic-ebivn.png"/> </a> </div> </div> </li> <li class="thread-2722 thread-node-11 sublinkLi "> <a title="Tại sao giá của hồ Acrylic lại cao hÆ¡n hồ kính siêu trong?" class="Tooltip" href="t/tai-sao-gia-cua-ho-acrylic-lai-cao-hon-ho-kinh-sieu-trong.2722/"> Tại sao giá của hồ Acrylic lại cao hÆ¡n... </a> </li> <li class="thread-2720 thread-node-11 sublinkLi "> <a title="Ebivn Ä‘Æ¡n vị chuyên thi công uốn tấm Acrylic tại hồ chí minh" class="Tooltip" href="t/ebivn-don-vi-chuyen-thi-cong-uon-tam-acrylic-tai-ho-chi-minh.2720/"> Ebivn Ä‘Æ¡n vị chuyên thi công uốn tấm... </a> </li> <li class="thread-2717 thread-node-11 sublinkLi "> <a href="t/tao-diem-nhan-nghe-thuat-voi-ho-acrylic.2717/"> Tạo Ä‘iểm nhấn nghệ thuật vá»›i hồ Acrylic </a> </li> <li class="thread-2725 thread-node-11 sublinkLi "> <a title="Hồ Acrylic là sá»± lá»±a chá»n thông minh và đáng tin cậy cho những ngÆ°á»i yêu thích cá cảnh" class="Tooltip" href="t/ho-acrylic-la-su-lua-chon-thong-minh-va-dang-tin-cay-cho-nhung-nguoi-yeu-thich-ca-canh.2725/"> Hồ Acrylic là sá»± lá»±a chá»n thông minh... </a> </li> <li class="thread-2726 thread-node-11 sublinkLi "> <a title="Cách vệ sinh, đánh bóng và làm má»›i hồ Acrylic" class="Tooltip" href="t/cach-ve-sinh-danh-bong-va-lam-moi-ho-acrylic.2726/"> Cách vệ sinh, đánh bóng và làm má»›i hồ... </a> </li> <li class="thread-2724 thread-node-11 sublinkLi "> <a title="Ebivn chuyên cung cấp tấm nhá»±a Acrylic có kích thÆ°á»›c lá»›n từ 1 mét đến 7 mét" class="Tooltip" href="t/ebivn-chuyen-cung-cap-tam-nhua-acrylic-co-kich-thuoc-lon-tu-1-met-den-7-met.2724/"> Ebivn chuyên cung cấp tấm nhá»±a Acrylic... </a> </li> <li class="thread-2732 thread-node-16 sublinkLi "> <a href="t/nang-nguc-chay-xe-o-dau-cho-dep.2732/"> Nâng ngá»±c chảy xệ ở đâu cho đẹp </a> </li> <li class="thread-2748 thread-node-16 sublinkLi last"> <a href="t/tu-van-nang-nguc-chay-xe-gia-bao-nhieu.2748/"> TÆ° vấn: Nâng ngá»±c chảy xệ giá bao nhiêu? </a> </li> </ul> </div> <div id="PreviewTooltip"> <span class="arrow"><span></span></span> <div class="section"> <div class="primaryContent previewContent"> <span class="PreviewContents">Äang tải...</span> </div> </div> </div>";s:4:"time";i:1711628352;}}
    Run Time: 0.000664
  44. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc__1_thread_view_lock, a:3:{s:19:"thread_view_lock_17";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1711628904;}s:19:"thread_view_lock_14";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1711628904;}s:19:"thread_view_lock_16";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1711628352;}}
    Run Time: 0.000221
  45. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc__1_thread_view_lock, a:3:{s:19:"thread_view_lock_17";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1711628904;}s:19:"thread_view_lock_14";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1711628904;}s:19:"thread_view_lock_16";a:2:{s:4:"html";s:1:"1";s:4:"time";i:1711628904;}}
    Run Time: 0.000217
  46. 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 ('2', '3', '4', '5', '6', '12', '13', '16', '18', '20', '21', '19', '22', '23', '24', '25', '26', '27', '28', '30', '31', '32', '34', '35', '36', '37', '38', '45', '46', '39', '41', '42', '43', '44', '8', '9', '14', '10', '15', '11')) AND (thread.discussion_state IN ('visible'))) AND (thread.post_date > 1708604904)
    ORDER BY thread.view_count DESC
     LIMIT 27
    Run Time: 0.001278
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadrangenode_id_last_post_date,node_id_sticky_state_last_post,post_datepost_date4 78Using index condition; Using where; Using filesort
    SIMPLEusereq_refPRIMARYPRIMARY4ddtm.thread.user_id1 
  47. SELECT node.*, forum.*
    	
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    WHERE node.node_id IN (11, 11, 11, 11, 11, 11, 11, 16, 16, 11, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 11, 16, 16)
    Run Time: 0.000383
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumrangePRIMARYPRIMARY4 2Using where
    SIMPLEnodeeq_refPRIMARYPRIMARY4ddtm.forum.node_id1 
  48. SELECT attachment.*,
    	data.filename, data.file_size, data.file_hash, 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 (5025, 5028, 5026, 5023, 5031, 5032, 5030, 5038, 5054)
                    AND (data.filename LIKE '%.png' OR
                        data.filename LIKE '%.jpg' OR
                        data.filename LIKE '%.jpeg' OR
                        data.filename LIKE '%.jpe' OR
                        data.filename LIKE '%.gif')
    GROUP BY attachment.content_id
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000386
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrangecontent_type_id_datecontent_type_id_date31 9Using index condition; Using temporary; Using filesort
    SIMPLEdataeq_refPRIMARYPRIMARY4ddtm.attachment.data_id1Using where
  49. SELECT
    	post.*
    	
    FROM xf_post AS post
    WHERE post.post_id IN (5025, 5028, 5026, 5023, 5031, 5032, 5030, 5038, 5054)
    Run Time: 0.000252
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangePRIMARYPRIMARY4 9Using where
  50. SELECT node.*, forum.*
    	
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    WHERE node.node_id = ?
    Params: 11
    Run Time: 0.000383
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
  51. SELECT attachment.*,
    	data.filename, data.file_size, data.file_hash, 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 (5025, 5028, 5026, 5023, 5031, 5032, 5030)
                    AND (data.filename LIKE '%.png' OR
                        data.filename LIKE '%.jpg' OR
                        data.filename LIKE '%.jpeg' OR
                        data.filename LIKE '%.jpe' OR
                        data.filename LIKE '%.gif')
    GROUP BY attachment.content_id
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000326
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrangecontent_type_id_datecontent_type_id_date31 7Using index condition; Using temporary; Using filesort
    SIMPLEdataeq_refPRIMARYPRIMARY4ddtm.attachment.data_id1Using where
  52. SELECT node.*, forum.*
    	
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    WHERE node.node_id = ?
    Params: 16
    Run Time: 0.000330
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
  53. SELECT attachment.*,
    	data.filename, data.file_size, data.file_hash, 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 (5038, 5054)
                    AND (data.filename LIKE '%.png' OR
                        data.filename LIKE '%.jpg' OR
                        data.filename LIKE '%.jpeg' OR
                        data.filename LIKE '%.jpe' OR
                        data.filename LIKE '%.gif')
    GROUP BY attachment.content_id
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000241
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrangecontent_type_id_datecontent_type_id_date31 2Using index condition; Using temporary; Using filesort
    SIMPLEdataeq_refPRIMARYPRIMARY4ddtm.attachment.data_id1Using where
  54. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc__1_thread_view, a:3:{s:14:"thread_view_17";a:2:{s:4:"html";s:2104:"<div class="avatarList sublink box"> <ul> <li class="thread-2685 thread-node-36 sublinkLi first"> <h6> <a href="t/ai-co-nguy-co-mac-cholesterol-cao.2685/"> Ai có nguy cÆ¡ mắc cholesterol cao? </a> </h6> <div class="article_SK last article_SK_big"> <div style="height:90px; width:120px; overflow:hidden; float: left; margin-right: 8px;"> <a href="t/ai-co-nguy-co-mac-cholesterol-cao.2685/"> <img class="img_90_120" src="https://suckhoedoisong.qltns.mediacdn.vn/324455921873985536/2023/9/9/edit-giam-cholesterol3-16409393266701785838554-1694268540590750662914.jpeg"/> </a> </div> </div> </li> <li class="thread-2662 thread-node-36 sublinkLi "> <a title="Tại sao vết thÆ°Æ¡ng lâu lành? DÆ°á»›i đây là những Ä‘iá»u bạn cần cân nhắc." class="Tooltip" href="t/tai-sao-vet-thuong-lau-lanh-duoi-day-la-nhung-dieu-ban-can-can-nhac.2662/"> Tại sao vết thÆ°Æ¡ng lâu lành? DÆ°á»›i đây... </a> </li> <li class="thread-2572 thread-node-36 sublinkLi "> <a title="Sau khi phun môi nên sá»­ dụng son dưỡng nào?" class="Tooltip" href="t/sau-khi-phun-moi-nen-su-dung-son-duong-nao.2572/"> Sau khi phun môi nên sá»­ dụng son dưỡng... </a> </li> <li class="thread-2410 thread-node-36 sublinkLi "> <a title="Miếng dán vết thÆ°Æ¡ng thay chỉ khâu 3M Steri Strip: HÆ°á»›ng dẫn sá»­ dụng" class="Tooltip" href="t/mieng-dan-vet-thuong-thay-chi-khau-3m-steri-strip-huong-dan-su-dung.2410/"> Miếng dán vết thÆ°Æ¡ng thay chỉ khâu 3M... </a> </li> <li class="thread-2387 thread-node-36 sublinkLi "> <a href="t/nen-tay-not-ruoi-nao-cho-hop-phong-thuy.2387/"> Nên tẩy nốt ruồi nào cho hợp phong thủy? </a> </li> </ul> </div> <div id="PreviewTooltip"> <span class="arrow"><span></span></span> <div class="section"> <div class="primaryContent previewContent"> <span class="PreviewContents">Äang tải...</span> </div> </div> </div>";s:4:"time";i:1711628904;}s:14:"thread_view_14";a:2:{s:4:"html";s:2719:"<div class="avatarList sublink box"> <ul> <li class="thread-2794 thread-node-16 sublinkLi first"> <h6> <a href="t/tinh-trang-nguc-chay-xe-o-nam-gioi.2794/"> Tình trạng ngá»±c chảy xệ ở nam giá»›i </a> </h6> <div class="article_SK last article_SK_big"> <div style="height:90px; width:120px; overflow:hidden; float: left; margin-right: 8px;"> <a href="t/tinh-trang-nguc-chay-xe-o-nam-gioi.2794/"> <img class="img_90_120" src="https://thammyngomonghung.vn/wp-content/uploads/2019/07/nguc-nam-bi-xe-1.jpg"/> </a> </div> <div class="artsub_SK1">Nguyên nhân nào khiến ngá»±c chảy xệ ở tuổi dậy thì? Dậy thì là thá»i Ä‘iểm ngá»±c phát triển nhanh...</div> </div> </li> <li class="thread-2793 thread-node-16 sublinkLi "> <a href="t/nang-nguc-chay-xe-bang-phuong-phap-noi-soi.2793/"> Nâng ngá»±c chảy xệ bằng phÆ°Æ¡ng pháp ná»™i soi </a> </li> <li class="thread-2792 thread-node-16 sublinkLi "> <a href="t/thuc-don-eat-clean-7-ngay-giam-mo-bung.2792/"> Thá»±c Ä‘Æ¡n eat clean 7 ngày giảm mỡ bụng </a> </li> <li class="thread-2791 thread-node-16 sublinkLi "> <a href="t/tong-hop-nhac-tap-the-duc-giam-mo-bung.2791/"> Tổng hợp nhạc tập thể dục giảm mỡ bụng </a> </li> <li class="thread-2790 thread-node-16 sublinkLi "> <a href="t/cach-an-uong-giam-mo-bung-la-gi.2790/"> Cách ăn uống giảm mỡ bụng là gì? </a> </li> <li class="thread-2789 thread-node-16 sublinkLi "> <a href="t/cach-giam-mo-bung-trong-2-tuan.2789/"> Cách giảm mỡ bụng trong 2 tuần </a> </li> <li class="thread-2787 thread-node-16 sublinkLi "> <a title="Nguyên nhân cách khắc phục ngá»±c chảy xệ sau sinh" class="Tooltip" href="t/nguyen-nhan-cach-khac-phuc-nguc-chay-xe-sau-sinh.2787/"> Nguyên nhân cách khắc phục ngá»±c chảy... </a> </li> <li class="thread-2786 thread-node-16 sublinkLi "> <a href="t/tim-hieu-cach-nang-nguc-chay-xe-hieu-qua.2786/"> Tìm hiểu cách nâng ngá»±c chảy xệ hiệu quả </a> </li> <li class="thread-2785 thread-node-16 sublinkLi last"> <a href="t/bat-mi-cach-massage-nguc-chay-xe.2785/"> Bật mí cách massage ngá»±c chảy xệ </a> </li> </ul> </div> <div id="PreviewTooltip"> <span class="arrow"><span></span></span> <div class="section"> <div class="primaryContent previewContent"> <span class="PreviewContents">Äang tải...</span> </div> </div> </div>";s:4:"time";i:1711628904;}s:14:"thread_view_16";a:2:{s:4:"html";s:3282:"<div class="avatarList sublink box"> <ul> <li class="thread-2719 thread-node-11 sublinkLi first"> <h6> <a title="Vì sao nên chá»n hồ Acrylic mà không sá»­ dụng Kính cÆ°á»ng lá»±c" class="Tooltip" href="t/vi-sao-nen-chon-ho-acrylic-ma-khong-su-dung-kinh-cuong-luc.2719/"> Vì sao nên chá»n hồ Acrylic mà không sá»­... </a> </h6> <div class="article_SK last article_SK_big"> <div style="height:90px; width:120px; overflow:hidden; float: left; margin-right: 8px;"> <a href="t/vi-sao-nen-chon-ho-acrylic-ma-khong-su-dung-kinh-cuong-luc.2719/"> <img class="img_90_120" src="https://ebivn.com/upload/images/images/hocaacrylic-ebivn.png"/> </a> </div> </div> </li> <li class="thread-2722 thread-node-11 sublinkLi "> <a title="Tại sao giá của hồ Acrylic lại cao hÆ¡n hồ kính siêu trong?" class="Tooltip" href="t/tai-sao-gia-cua-ho-acrylic-lai-cao-hon-ho-kinh-sieu-trong.2722/"> Tại sao giá của hồ Acrylic lại cao hÆ¡n... </a> </li> <li class="thread-2720 thread-node-11 sublinkLi "> <a title="Ebivn Ä‘Æ¡n vị chuyên thi công uốn tấm Acrylic tại hồ chí minh" class="Tooltip" href="t/ebivn-don-vi-chuyen-thi-cong-uon-tam-acrylic-tai-ho-chi-minh.2720/"> Ebivn Ä‘Æ¡n vị chuyên thi công uốn tấm... </a> </li> <li class="thread-2717 thread-node-11 sublinkLi "> <a href="t/tao-diem-nhan-nghe-thuat-voi-ho-acrylic.2717/"> Tạo Ä‘iểm nhấn nghệ thuật vá»›i hồ Acrylic </a> </li> <li class="thread-2725 thread-node-11 sublinkLi "> <a title="Hồ Acrylic là sá»± lá»±a chá»n thông minh và đáng tin cậy cho những ngÆ°á»i yêu thích cá cảnh" class="Tooltip" href="t/ho-acrylic-la-su-lua-chon-thong-minh-va-dang-tin-cay-cho-nhung-nguoi-yeu-thich-ca-canh.2725/"> Hồ Acrylic là sá»± lá»±a chá»n thông minh... </a> </li> <li class="thread-2726 thread-node-11 sublinkLi "> <a title="Cách vệ sinh, đánh bóng và làm má»›i hồ Acrylic" class="Tooltip" href="t/cach-ve-sinh-danh-bong-va-lam-moi-ho-acrylic.2726/"> Cách vệ sinh, đánh bóng và làm má»›i hồ... </a> </li> <li class="thread-2724 thread-node-11 sublinkLi "> <a title="Ebivn chuyên cung cấp tấm nhá»±a Acrylic có kích thÆ°á»›c lá»›n từ 1 mét đến 7 mét" class="Tooltip" href="t/ebivn-chuyen-cung-cap-tam-nhua-acrylic-co-kich-thuoc-lon-tu-1-met-den-7-met.2724/"> Ebivn chuyên cung cấp tấm nhá»±a Acrylic... </a> </li> <li class="thread-2732 thread-node-16 sublinkLi "> <a href="t/nang-nguc-chay-xe-o-dau-cho-dep.2732/"> Nâng ngá»±c chảy xệ ở đâu cho đẹp </a> </li> <li class="thread-2748 thread-node-16 sublinkLi last"> <a href="t/tu-van-nang-nguc-chay-xe-gia-bao-nhieu.2748/"> TÆ° vấn: Nâng ngá»±c chảy xệ giá bao nhiêu? </a> </li> </ul> </div> <div id="PreviewTooltip"> <span class="arrow"><span></span></span> <div class="section"> <div class="primaryContent previewContent"> <span class="PreviewContents">Äang tải...</span> </div> </div> </div>";s:4:"time";i:1711628904;}}
    Run Time: 0.000471
  55. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc__1_thread_view_lock, a:3:{s:19:"thread_view_lock_17";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1711628904;}s:19:"thread_view_lock_14";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1711628904;}s:19:"thread_view_lock_16";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1711628904;}}
    Run Time: 0.000140
  56. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('nat_bodyjs')
    	AND style_id = ?
    	AND language_id = ?
    Params: 2, 2
    Run Time: 0.000136
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 

Included Files (196, XenForo Classes: 65)

  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/WidgetFramework/Listener.php
  33. library/WidgetFramework/Option.php
  34. library/Waindigo/Listener/InitDependencies.php
  35. library/Waindigo/Listener/InitDependencies/20150212.php
  36. library/Waindigo/Listener/ControllerPreDispatch/20150212.php
  37. library/Tinhte/XenTag/Listener.php
  38. library/XenForo/CacheRebuilder/Abstract.php
  39. library/NodesAsTabs/Listen.php
  40. library/Brivium/BriviumHelper/EventListeners.php
  41. library/Brivium/BriviumHelper/1010071/EventListeners.php
  42. library/EWRporta/Listener/Model.php
  43. library/VietXfAdvStats/Listener.php
  44. library/sonnbPreventDoublePost/Listener.php
  45. library/Brivium/AdvancedMobileSwitcher/EventListeners/Listener.php
  46. library/Sedo/TinyQuattro/Listener/AllInOne.php
  47. library/XenForo/Router.php
  48. library/XenForo/Route/Filter.php
  49. library/XenForo/Route/Interface.php
  50. library/XenForo/Route/ResponseSuffix.php
  51. library/XenForo/Route/Prefix.php
  52. library/WidgetFramework/Route/Filter/PageX.php
  53. library/XenForo/RouteMatch.php
  54. library/XenForo/Route/Prefix/Threads.php
  55. library/EWRporta/Listener/Route.php
  56. library/vtLai/UrlKhongDau/Listener.php
  57. library/EWRporta/Route/Thread.php
  58. library/vtLai/UrlKhongDau/Threads.php
  59. library/XenForo/ControllerPublic/Thread.php
  60. library/XenForo/ControllerPublic/Abstract.php
  61. library/XenForo/Controller.php
  62. library/Waindigo/Thumbnails/Listener/LoadClass.php
  63. library/Waindigo/Listener/LoadClass.php
  64. library/Waindigo/Listener/LoadClass/20150318.php
  65. library/EWRporta/Listener/Controller.php
  66. library/Vinavb/CustomNodeIcon/Listener.php
  67. library/ChipXF/MoreThread/Listener.php
  68. library/XenPlaza/XPlimitLink/Listener/Listener.php
  69. library/Brivium/CaptchaPosting/EventListeners/Listener.php
  70. library/Waindigo/Thumbnails/Extend/XenForo/ControllerPublic/Thread.php
  71. library/EWRporta/ControllerPublic/Thread.php
  72. library/WidgetFramework/XenForo/ControllerPublic/Thread.php
  73. library/Tinhte/XenTag/XenForo/ControllerPublic/Thread.php
  74. library/ChipXF/MoreThread/ControllerPublic/Thread.php
  75. library/NodesAsTabs/ControllerPublic/Thread.php
  76. library/XenPlaza/XPlimitLink/ControllerPublic/Thread.php
  77. library/Brivium/CaptchaPosting/ControllerPublic/Thread.php
  78. library/sonnbPreventDoublePost/ControllerPublic/Thread.php
  79. library/XenForo/Input.php
  80. library/XenForo/Session.php
  81. library/XenForo/Helper/Ip.php
  82. library/XenForo/Visitor.php
  83. library/XenForo/Model/User.php
  84. library/WidgetFramework/XenForo/Model/User.php
  85. library/VietXfAdvStats/XenForo/Model/User.php
  86. library/XenForo/Permission.php
  87. library/XenForo/Phrase.php
  88. library/XenForo/Locale.php
  89. library/EWRporta/Model/Perms.php
  90. library/XenForo/ControllerHelper/ForumThreadPost.php
  91. library/XenForo/ControllerHelper/Abstract.php
  92. library/XenForo/Model/Thread.php
  93. library/WidgetFramework/XenForo/Model/Thread.php
  94. library/VietXfAdvStats/XenForo/Model/Thread.php
  95. library/Tinhte/XenTag/XenForo/Model/Thread.php
  96. library/sonnbPreventDoublePost/Model/Thread.php
  97. library/XenForo/Model/Forum.php
  98. library/Tinhte/XenTag/XenForo/Model/Forum.php
  99. library/Tinhte/XenTag/Option.php
  100. library/XenForo/Helper/String.php
  101. library/XenForo/Model/Post.php
  102. library/EWRporta/Model/Post.php
  103. library/Tinhte/XenTag/XenForo/Model/Post.php
  104. library/sonnbPreventDoublePost/Model/Post.php
  105. library/vtLai/UrlKhongDau/Converter.php
  106. library/XenForo/Model/Attachment.php
  107. library/Waindigo/Thumbnails/Extend/XenForo/Model/Attachment.php
  108. library/EWRporta/Model/Attachment.php
  109. library/XenForo/Model/Node.php
  110. library/Waindigo/Thumbnails/Extend/XenForo/Model/Node.php
  111. library/XenForo/Route/Prefix/Categories.php
  112. library/vtLai/UrlKhongDau/Categories.php
  113. library/XenForo/Route/Prefix/Forums.php
  114. library/vtLai/UrlKhongDau/Forums.php
  115. library/Tinhte/XenTag/Model/Tag.php
  116. library/Tinhte/XenTag/Constants.php
  117. library/Brivium/CaptchaPosting/Model/Captcha.php
  118. library/XenForo/ControllerResponse/View.php
  119. library/XenForo/ControllerResponse/Abstract.php
  120. library/Waindigo/Thumbnails/Model/Thumbnails.php
  121. library/ChipXF/MoreThread/Model/Thread.php
  122. library/XenForo/Helper/Cookie.php
  123. library/NodesAsTabs/API.php
  124. library/NodesAsTabs/Model/Options.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/WidgetFramework/Core.php
  130. library/XenForo/Model/Moderator.php
  131. library/WidgetFramework/Model/Widget.php
  132. library/WidgetFramework/Helper/Sort.php
  133. library/WidgetFramework/WidgetRenderer.php
  134. library/XenForo/ViewPublic/Thread/View.php
  135. library/XenForo/ViewPublic/Base.php
  136. library/XenForo/View.php
  137. library/EWRporta/Listener/ViewPublic.php
  138. library/EWRporta/ViewPublic/Custom.php
  139. library/WidgetFramework/XenForo/View1.php
  140. library/Tinhte/XenTag/XenForo/ViewPublic/Thread/View.php
  141. library/XenForo/BbCode/Parser.php
  142. library/XenForo/BbCode/Formatter/Base.php
  143. library/EWRporta/Listener/BbCode.php
  144. library/EWRporta/BbCode/Formatter.php
  145. library/WidgetFramework/XenForo/BbCode/Formatter/Base.php
  146. library/Tinhte/XenTag/XenForo/BbCode/Formatter/Base.php
  147. library/Sedo/TinyQuattro/BbCode/Formatter/Base.php
  148. library/Sedo/TinyQuattro/Helper/Quattro.php
  149. library/XenForo/ViewPublic/Helper/Message.php
  150. library/XenForo/BbCode/TextWrapper.php
  151. library/Tinhte/XenTag/ContentWrapper/Post.php
  152. library/Tinhte/XenTag/ContentWrapper/Abstract.php
  153. library/Tinhte/XenTag/Helper.php
  154. library/WidgetFramework/WidgetRenderer/HtmlWithoutWrapper.php
  155. library/WidgetFramework/WidgetRenderer/Html.php
  156. library/WidgetFramework/WidgetRenderer/Threads.php
  157. library/Waindigo/Thumbnails/Extend/WidgetFramework/WidgetRenderer/Threads.php
  158. library/WidgetFramework/Model/Cache.php
  159. library/Waindigo/Thumbnails/Listener/TemplateCreate.php
  160. library/Waindigo/Listener/TemplateCreate.php
  161. library/Waindigo/Listener/TemplateCreate/20150106.php
  162. library/VietXfAdvStats/Model/GetUserGroup.php
  163. library/XenForo/Route/Prefix/Members.php
  164. library/vtLai/UrlKhongDau/Members.php
  165. library/EWRporta/Listener/NavTabs.php
  166. library/NodesAsTabs/NavTabs.php
  167. library/WidgetFramework/Template/Extended.php
  168. library/Sedo/TinyQuattro/Listener/Templates/Preloader.php
  169. library/EWRporta/Listener/Template.php
  170. library/EWRporta/Model/Promotes.php
  171. library/Waindigo/Thumbnails/Listener/TemplateHook.php
  172. library/Waindigo/Listener/TemplateHook.php
  173. library/Waindigo/Listener/TemplateHook/20150106.php
  174. library/Waindigo/Listener/Template.php
  175. library/Waindigo/Listener/Template/20150106.php
  176. library/Waindigo/Thumbnails/Listener/TemplatePostRender.php
  177. library/Waindigo/Listener/TemplatePostRender.php
  178. library/Waindigo/Listener/TemplatePostRender/20150106.php
  179. library/XenForo/Route/Prefix/Posts.php
  180. library/XenForo/Model/Avatar.php
  181. library/WidgetFramework/Helper/String.php
  182. library/XenForo/DataWriter.php
  183. library/XenForo/DataWriter/Forum.php
  184. library/XenForo/DataWriter/Node.php
  185. library/XenForo/DataWriter/DiscussionContainerInterface.php
  186. library/EWRporta/Listener/DataWriter.php
  187. library/Waindigo/Thumbnails/Extend/XenForo/DataWriter/Forum.php
  188. library/Vinavb/CustomNodeIcon/XenForo/DataWriter/Forum.php
  189. library/Tinhte/XenTag/XenForo/DataWriter/Forum.php
  190. library/XenForo/Route/Prefix/Attachments.php
  191. library/WidgetFramework/Template/Helper/Core.php
  192. library/WidgetFramework/WidgetRenderer/Empty.php
  193. library/XenForo/Debug.php
  194. library/VietXfAdvStats/Option.php
  195. library/XenForo/ViewRenderer/Json.php
  196. library/Vinavb/CustomNodeIcon/Icon.php