Page Time: 0.1788s

Memory: 10.5466 MB (Peak: 11.8166 MB)

Queries (13, time: 0.0235s, 13.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.000509
    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.000211
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 2Using where
  3. SELECT *
    FROM xf_brivium_addon
    ORDER BY addon_id
    Run Time: 0.000156
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_brivium_addonindex PRIMARY77 1 
  4. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: brBriviumAddOns, a:0:{}
    Run Time: 0.000124
  5. SELECT session_data
    FROM xf_session
    WHERE session_id = ?
    	AND expiry_date >= ?
    Params: 90ccd07dfd8d681a6bea0b2288c03cc6, 1716146056
    Run Time: 0.000161
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_sessionconstPRIMARY,expiry_datePRIMARY34const1 
  6. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000147
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  7. 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: 358696
    Run Time: 0.000484
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
  8. 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: 25
    Run Time: 0.000382
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  9. SELECT post.*
    	,
    		thread.*, thread.user_id AS thread_user_id, thread.username AS thread_username,
    		thread.post_date AS thread_post_date,
    		post.user_id, post.username, post.post_date,
    		bb_code_parse_cache.parse_tree AS message_parsed, bb_code_parse_cache.cache_version AS message_cache_version,
    		user.*, IF(user.username IS NULL, post.username, user.username) AS username,
    		user_profile.*,
    		user_privacy.*,
    		signature_parse_cache.parse_tree AS signature_parsed, bb_code_parse_cache.cache_version AS signature_cache_version,
    		session_activity.view_date AS last_view_date,
    		0 AS like_date
    FROM xf_post AS post
    
    		INNER JOIN xf_thread AS thread ON
    			(thread.thread_id = post.thread_id)
    		LEFT JOIN xf_bb_code_parse_cache AS bb_code_parse_cache ON
    			(bb_code_parse_cache.content_type = 'post' AND bb_code_parse_cache.content_id = post.post_id)
    		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_bb_code_parse_cache AS signature_parse_cache ON
    			(signature_parse_cache.content_type = 'signature' AND signature_parse_cache.content_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))
    WHERE (
    		(post.thread_id = ?  AND (post.position >= 0 AND post.position < 10) )
    		
    		
    	)
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 358696
    Run Time: 0.010123
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1Using filesort
    SIMPLEpostrefthread_id_post_date,thread_id_positionthread_id_post_date4const1Using index condition; Using where
    SIMPLEbb_code_parse_cacheeq_refcontent_type_idcontent_type_id31const,xenforo.cc.post.post_id1Using where
    SIMPLEusereq_refPRIMARYPRIMARY4xenforo.cc.post.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4xenforo.cc.post.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4xenforo.cc.post.user_id1 
    SIMPLEsignature_parse_cacheeq_refcontent_type_idcontent_type_id31const,xenforo.cc.post.user_id1Using where
    SIMPLEsession_activityeq_refPRIMARYPRIMARY22xenforo.cc.post.user_id,func1Using where
  10. INSERT  INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 358696
    Run Time: 0.000100
  11. UPDATE `xf_session` SET `expiry_date` = ? WHERE (session_id = '90ccd07dfd8d681a6bea0b2288c03cc6')
    Params: 1716149656
    Run Time: 0.009675
  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_Thread, Index, valid, thread_id=358696, 1716146056,
    Run Time: 0.000145
  13. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 365331, a:43:{i:0;s:336:"前几天,银保监会刘福寿在财经年会上表示,P2P 网贷机构已经完全归零。前几年 P2P 的概念被突然炒火,各种各样的 P2P 机构遍地开花,甚至一路融到 A轮、B轮、C轮……随后紧接而来的暴雷潮,更是让 P2P 的知名度更高了一些,乃至现在一切“ 归零 ”。 ";i:1;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:90:"https://rdimg.com/proxy/https://static.cnbetacdn.com/article/2020/1204/eb3c947f656d5ef.png";}}i:2;s:56:" 有人可能会觉得这玩意早该消失了,毕竟";i:3;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:52:"P2P 现在跟暴雷、庞氏骗局简直能划等号";}}i:4;s:50:"。 现在还有 8000 多亿自己没回收 ▼ ";i:5;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:90:"https://rdimg.com/proxy/https://static.cnbetacdn.com/article/2020/1204/1091fd24910d1be.png";}}i:6;s:14:" 但其实,";i:7;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:70:"P2P 诞生时,是个真能为大家解决资金问题的好工具。";}}i:8;s:532:" 这个世界上永远有人正需要借钱,有人正想把钱 借 投资出去吃利息。 理论上来说,他们去找银行就完事了。 可对于个人来说,从银行口袋里掏出钱来并不容易,贷款要求多、审核严。找民间借贷?利息又太高…… 于是有人就想到去做 “ 红娘 ”,给这两批人牵个线~ 让他两以高于银行借贷,低于民间借贷的利率完成借款交易,而 “ 红娘 ” 从中抽成收取服务费用,实现三赢,这也就有了 P2P ~ ";i:9;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:90:"https://rdimg.com/proxy/https://static.cnbetacdn.com/article/2020/1204/873621bb62d5770.png";}}i:10;s:139:" 线上 P2P 最开始诞生于 2005 年的英国,2007 年前后传入中国。 最开始,搞 P2P 的就是纯照搬国外的模式,";i:11;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:90:"只做小额信贷的中介平台,不参与借款,也不对投资人的投资兜底。";}}i:12;s:541:" 很容易想象,这玩意没太大搞手…… 虽然有钱赚,但是风险太大了,将来借款人不还了,本金都回不来。 到了 2009 年前后,有个聪明人想出了解决办法:平台垫付本金。这块当时做的比较出名的机构叫红岭创投。 他们拉上了担保公司一起玩。 由担保公司对借款人的信息进行审核,审核后授予一定的信用额度,借款人基于额度借款。 如果想要更高额度,那就提交更详细的信息,甚至是资产抵押 ↓ ↓ ";i:13;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:90:"https://rdimg.com/proxy/https://static.cnbetacdn.com/article/2020/1204/046cbbe5a5d76c8.png";}}i:14;s:2:" ";i:15;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:73:"一旦借款人逾期,由担保机构/担保人先掏钱垫付本息。";}}i:16;s:233:" 当然也不是白还的,担保者会拿走投资人的债权,后面借款人再还钱,本金、利息、罚息等就归担保者所有。 稳赚不赔的玩法瞬间打动了大家的心~ 为平台拉来了不少用户。 ";i:17;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:90:"https://rdimg.com/proxy/https://static.cnbetacdn.com/article/2020/1204/34c4cf4a19e25b7.png";}}i:18;s:410:" 可能是一招还不够,P2P 平台还想出了一个骚操作:风险备付金。 说自己先提计了一部分利润、募集资金作为备付金,如果项目逾期就提前支付给投资人,给投资人双保险~ 是不是听起来很靠谱? 但背后 P2P 机构到底有没有存这笔钱,有没有银行进行监管,普通投资者谁知道呢? 到这里,事情已经变味了,";i:19;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:117:"原本平台做个信息中介就完事,现在有了赔偿的机制,平台要承担借款人跑路的损失了!";}}i:20;s:233:" 随着时间的推移,2012 年前后骚操作的负面作用开始反噬,有了一些有趣的新闻~ 推出贷款回购计划的拍拍贷,有了赔偿的压力后开始催收,往网上曝过逾期的用户信息 ↓ ↓ ";i:21;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:90:"https://rdimg.com/proxy/https://static.cnbetacdn.com/article/2020/1204/771e7795b425f8a.png";}}i:22;s:51:" 还有跟银行买信用信息翻车的 ↓ ↓ ";i:23;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:90:"https://rdimg.com/proxy/https://static.cnbetacdn.com/article/2020/1204/3406038d2140233.png";}}i:24;s:315:" 但这些负面新闻并没有对 P2P 行业造成根本性的影响,高收益、低风险的 “ 事实 ” 蒙蔽了用户的双眼。 P2P 平台们继续狂欢,不断发挥自己的创意,搞出了自融盘、长贷短借等骚操作。 图片很长,可以直接跳去看红框里的内容……▼ ";i:25;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:90:"https://rdimg.com/proxy/https://static.cnbetacdn.com/article/2020/1204/7af4a301766409c.png";}}i:26;s:398:" 所谓自融盘,就是平台发标为自己融资。 通过提供虚假的借款公司、借款人,做虚假的借款项目。投资人的钱最后都进了平台手里,然后再做其他操作,比如以新还旧等。 就这样 P2P 在扭曲的道路上一路狂奔,到了 2015 年,网贷平台突破 3500 家,P2P 行业进入高潮。 图片、数据来源:网贷之家 ▼ ";i:27;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:90:"https://rdimg.com/proxy/https://static.cnbetacdn.com/article/2020/1204/ac2a9b63dd48193.png";}}i:28;s:204:" 同时,也逐渐从纯中介平台变成了一个披着互联网外衣的问题平台。 至于是什么问题嘛…… 让我们看看中国国际经济交流中心副理事长黄奇帆的说法~ ";i:29;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:90:"https://rdimg.com/proxy/https://static.cnbetacdn.com/article/2020/1204/730920d45615b23.png";}}i:30;s:2:" ";i:31;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:90:"https://rdimg.com/proxy/https://static.cnbetacdn.com/article/2020/1204/f4967406a9f4269.png";}}i:32;s:232:" 这段话大概是这么几个重点。 首先,P2P 平台不像银行,它们统统都没有资本金,钱都是从个人用户募集而来,没有兜底能力。 民营银行的注册资本通常要求围实缴资本 ▼ ";i:33;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:90:"https://rdimg.com/proxy/https://static.cnbetacdn.com/article/2020/1204/6997605584c81aa.png";}}i:34;s:200:" 其次,也没有银行那样的风控和尽调能力,贷款对象是没有信用背景的网民,借出钱的风险是不可控的。 最后,P2P 不像银行那样正规,有完善监管,";i:35;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:51:"出事了要么趴到坏账,要么卷款跑路。";}}i:36;s:42:" 2015年就有频繁爆雷的报道 ▼ ";i:37;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:90:"https://rdimg.com/proxy/https://static.cnbetacdn.com/article/2020/1204/638276a4dec3f01.png";}}i:38;s:490:" 在面对资金链断裂的烂摊子时,大部分机构选择把自己变成庞氏骗局,以新还旧。 一来是根本没有能力收拾资金缺口,二来很多人发现,这样来钱可比正经赚钱快多了! 2015 年开始 P2P 陆续公司爆雷,2017 年、2018 年迎来了两轮暴雷潮。 到了今年被要求归零,差评君觉得完全在情理之中。 诺,现在银行等正规机构对个人、小微企业的小额贷款也慢慢做起来了 ↓ ↓ ";i:39;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:90:"https://rdimg.com/proxy/https://static.cnbetacdn.com/article/2020/1204/622d0052fb74522.png";}}i:40;s:454:" 传统金融行业的风险控制系统是非常成熟的,能够有效的规避坏账等风险。正规军下场可比这些不成熟的企业要好使多了。 你可能会想,为啥银行不早出手呢? 因为原本做这件事情就很麻烦,有点吃力不讨好的意思,而且当时监管也不到位。 而现在……政府注意到了这一块,要扶持业务上正规吗,帮助小微企业有一个健康的融资环境。 ";i:41;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:90:"https://rdimg.com/proxy/https://static.cnbetacdn.com/article/2020/1204/d435afe7b3ed51f.png";}}i:42;s:496:" P2P 也到了退出历史舞台的时候…… 回望整个历程,P2P 从一个原本让三方共赢的金融工具,发展到一地鸡毛,让无数投资人血本无归,令人唏嘘。 但工具终究只是工具,并没有好坏之分。 真正让它陷入现在这个境地的,是人性中贪婪的那一面,是出借人对利息的贪恋,对风险的忽视,是平台方的欲壑难填。 至于借款人? 在 P2P 后半段的故事里,哪还有什么借款人呢?";}, 1621686945, 1716146056
    Run Time: 0.001270

Included Files (107, XenForo Classes: 61)

  1. index.php
  2. library/XenForo/Autoloader.php
  3. library/XenForo/Application.php
  4. library/Zend/Registry.php
  5. library/Lgpl/utf8.php
  6. library/Zend/Config.php
  7. library/config.php
  8. library/XenForo/FrontController.php
  9. library/XenForo/Dependencies/Public.php
  10. library/XenForo/Dependencies/Abstract.php
  11. library/Zend/Controller/Request/Http.php
  12. library/Zend/Controller/Request/Abstract.php
  13. library/Zend/Uri.php
  14. library/Zend/Controller/Response/Http.php
  15. library/Zend/Controller/Response/Abstract.php
  16. library/XenForo/Model/DataRegistry.php
  17. library/XenForo/Model.php
  18. library/Zend/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/XenResource/Listener/Proxy.php
  33. library/XenGallery/Listener.php
  34. library/Brivium/BriviumHelper/EventListeners.php
  35. library/Brivium/BriviumHelper/1000271/EventListeners.php
  36. library/SV/RedisCache/Listener.php
  37. library/BestAnswer/Listener.php
  38. library/SV/RedisCache/XenForo/Model/DataRegistry.php
  39. library/Brivium/BriviumHelper/Model/ListenerClass.php
  40. library/Brivium/BriviumHelper/1000271/Model/ListenerClass.php
  41. library/XenForo/Router.php
  42. library/XenForo/Route/Filter.php
  43. library/XenForo/Route/Interface.php
  44. library/XenForo/Route/ResponseSuffix.php
  45. library/XenForo/Route/Prefix.php
  46. library/XenForo/Route/Prefix/Threads.php
  47. library/XenForo/RouteMatch.php
  48. library/XenForo/ControllerPublic/Thread.php
  49. library/XenForo/ControllerPublic/Abstract.php
  50. library/XenForo/Controller.php
  51. library/BestAnswer/ControllerPublic/Thread.php
  52. library/XenForo/Input.php
  53. library/XenForo/Session.php
  54. library/XenForo/Helper/Ip.php
  55. library/XenForo/Visitor.php
  56. library/XenForo/Model/User.php
  57. library/BestAnswer/Model/User.php
  58. library/XenResource/Listener/Proxy/ModelUser.php
  59. library/XenGallery/Model/User.php
  60. library/XenForo/Permission.php
  61. library/XenForo/Helper/Php.php
  62. library/XenForo/Phrase.php
  63. library/XenForo/Locale.php
  64. library/XenForo/ControllerHelper/ForumThreadPost.php
  65. library/XenForo/ControllerHelper/Abstract.php
  66. library/XenForo/Model/Thread.php
  67. library/SV/RedisCache/XenForo/Model/Thread.php
  68. library/BestAnswer/Model/Thread.php
  69. library/BestAnswer/Model/BestAnswer.php
  70. library/XenForo/Model/Forum.php
  71. library/XenForo/Helper/String.php
  72. library/XenForo/Model/Post.php
  73. library/FreddysHouse/SignatureOnce/Event/LoadClassModel.php
  74. library/BestAnswer/Model/Post.php
  75. library/FreddysHouse/SignatureOnce/Model/Post.php
  76. library/XenForo/Model/Attachment.php
  77. library/XenForo/Model/Node.php
  78. library/XenForo/Route/Prefix/Categories.php
  79. library/XenForo/Route/Prefix/Forums.php
  80. library/XenForo/ControllerResponse/View.php
  81. library/XenForo/ControllerResponse/Abstract.php
  82. library/XenResource/Listener/Template.php
  83. library/XenForo/ViewRenderer/HtmlPublic.php
  84. library/XenForo/ViewRenderer/Abstract.php
  85. library/XenForo/Template/Public.php
  86. library/XenForo/Template/Abstract.php
  87. library/XenForo/ViewPublic/Thread/View.php
  88. library/XenForo/ViewPublic/Base.php
  89. library/XenForo/View.php
  90. library/XenForo/BbCode/Parser.php
  91. library/XenForo/BbCode/Formatter/Base.php
  92. library/XenForo/ViewPublic/Helper/Message.php
  93. library/XenForo/BbCode/TextWrapper.php
  94. library/WhoHasVisited/Listener.php
  95. library/XenForo/Route/Prefix/Members.php
  96. library/XenForo/Template/FileHandler.php
  97. library/XenForo/Helper/File.php
  98. internal_data/templates/S.1,L.7,thread_view.php
  99. library/Brivium/RMDownloadTracker/EventListener/Listener.php
  100. library/XenForo/Route/Prefix/Posts.php
  101. library/XenForo/Model/Avatar.php
  102. library/XenForo/Helper/Criteria.php
  103. library/XenForo/Debug.php
  104. internal_data/templates/S.1,L.7,PAGE_CONTAINER.php
  105. internal_data/templates/S.1,L.7,xengallery_tab_links.php
  106. internal_data/templates/S.1,L.7,resources_tab_links.php
  107. library/XenForo/ViewRenderer/Json.php