Page Time: 0.1588s

Memory: 10.5586 MB (Peak: 11.7767 MB)

Queries (12, time: 0.0199s, 12.5%)

  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.000839
    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.000191
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 2Using where
  3. SELECT *
    FROM xf_brivium_addon
    ORDER BY addon_id
    Run Time: 0.000170
    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.000140
  5. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000373
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  6. 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: 296759
    Run Time: 0.000380
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
  7. 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.000696
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  8. 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: 296759
    Run Time: 0.008175
    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
  9. INSERT  INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 296759
    Run Time: 0.000086
  10. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: 8d2be00a130a130e8048008fefffa848, , 1714284825
    Run Time: 0.004074
  11. INSERT INTO xf_session_activity
    	(user_id, unique_key, ip, controller_name, controller_action, view_state, params, view_date, robot_key)
    VALUES
    	(?, ?, ?, ?, ?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE
    	ip = VALUES(ip),
    	controller_name = VALUES(controller_name),
    	controller_action = VALUES(controller_action),
    	view_state = VALUES(view_state),
    	params = VALUES(params),
    	view_date = VALUES(view_date),
    	robot_key = VALUES(robot_key)
    Params: 0, , , XenForo_ControllerPublic_Thread, Index, valid, thread_id=296759, 1714281225,
    Run Time: 0.000110
  12. 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, 303380, a:21:{i:0;s:359:"一夜之间,肖战从当红流量小生变成全网抵制的男明星。就在刚刚,很久没有出现的王思聪也在吃瓜,点赞了一篇抵制肖战粉丝的文章截图。这一切的起源来自于肖战的粉丝举报AO3,此后又相继举报了国内其他同人创作平台、B站,昨晚还有粉丝要举报剑网三的YY直播间。 ";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/0302/542b578eca142b2.jpg";}}i:2;s:820:" 图片来自微博 而在此前,肖战粉丝还曾举报过知名女性科学家的颜宁。原因是,颜宁发布一条微博暗指某明星营销热搜过多,肖战粉丝觉得颜宁在内涵自家哥哥。 这场“227圣战”正在各圈轰轰烈烈兴起。肖战及其粉丝成为被讨伐的对象。上一次大众如此声势浩大的事件还是“ikun和ilun为争夺微博话题榜”。 最终,这场始于唯粉和CP粉两派粉丝的纷争,经过多日发酵,波及了几乎所有同人创作圈层,欧美、日韩、动漫、同人文、耽美、相声等等圈子的创作者们及读者纷纷揭竿而起,并进行反击。 饭圈是习惯用举报党同伐异的,估计肖战粉丝怎么也不会想到,这在饭圈习以为常的行为,为什么会掀起轩然大波。 ";i:3;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/0302/912a3ef8eccf25a.jpg";}}i:4;s:2:" ";i:5;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:39:"“当红顶流”到“全网抵制”";}}i:6;s:2352:" 2月初,一位作者在AO3上发布了“博君一肖(王一博、肖战)”的同人文《下坠》,开始连载更新,并将AO3、LOFTER的文章链接放置到微博中。 24日起,一篇名为《下坠》的文章开始在微博“博君一肖(王一博、肖战)”超话中被大量推荐,被“博君一肖”CP粉们所喜爱,并纷纷围绕此文创作的衍生配图。 然而,画中的女性角色是肖战的脸,引来了肖战唯粉的强烈不满。 当她们看到这篇“侮辱”、“女化”、“淫秽色情”的同人文,拍案而起。 但由于肖战在该文中的人设颇为“边缘”,唯粉粉丝认为,该文“侮辱”、“女化”了肖战,引起他们强烈不满,认为这是对自己偶像的侮辱。 26日,肖战唯粉开始集体举报《下坠》及其作者账号,并@官方媒体与网警,并大量向主管单位发送举报邮件、拨打电话。《下坠》一文作者的微博被迅速封号,其余同人写作者也受到波及,作品或账号被封禁。 这篇文章原本是在非盈利同人作品储存网站Archive of Our Own(简称AO3)连载的。于是肖战粉丝转而集体举报AO3以及LOFTER这两个重要的同人写手内容创作平台。 AO3则是全球知名的同人作品网站,2019年第77届雨果奖“最佳非虚构相关作品”得主,因为其非商业、非盈利的性质,可以由创作者自主上传内容并帮助解决版权问题,因此汇集了大批同人文创作者和爱好者。为全世界超过35,000个同人圈储存了近550万件作品。 其主力战将@巴南区小兔赞比强调,对《下坠》一文的举报并不只是为肖战粉丝团体夺取利益,而是为了广大被写进同人文的受害艺人发声。 对于举报AO3,她强调,肖战粉丝无意于找该站的麻烦,只是为了维护明星的名誉权。在她看来,“自由是有界限的”。 但AO3是平台的崩盘让他们失去了自由创作的土壤,这也彻底激怒了这一圈层文化的群体, 2月27日,#227大团结#的微博超话创立,欧美圈、二次元圈、游戏、游戏圈、原耽圈的创作和爱好者开始揭竿而起,纷纷加入了对肖战粉丝及肖战本人的反击与围攻。#肖战粉丝举报AO3#于当天登上热搜,随后消失。 ";i:7;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/0302/d512b2d363683ed.jpg";}}i:8;s:230:" 截止发稿,#227大团结#微博话题已产生5.1亿阅读,68.5万次讨论;“227历史时刻”超话共发布了9.3万个帖子,阅读达到5.1亿;#肖战粉丝饭圈耻辱#阅读达5.5亿,讨论量为55万。 ";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/0302/fb1f9bb76cf21a7.png";}}i:10;s:2:" ";i:11;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/0302/e8bb698fe019eaf.png";}}i:12;s:1017:" 图片来自微博 2020年2月29日晚10点,AO3无法正常访问的消息再次引爆了讨论。这结果令所有同人爱好者都难以接受。 LOFTER的App Store评分中出现许多一星差评,评分一度跌至3.8,同时,有网友注意到,LOFTER上的作品开始大量被删除、封禁。 “他们不能因为不喜欢吃超市里一种食物,就把超市炸掉吧!”、“肖战本人就是借助耽改剧大火的,而捧火了原著的大本营平台及一众创作者们现在被粉丝反过来举报。”网友纷纷在各个社交平台上表达这自己的气愤。 在这件事情经过几天的发酵之后,已经从cp粉和唯粉的斗争上升到了,圈层之间的利益触碰,盛怒之下,许多被肖战粉丝举报过的网站创作者及粉丝们都纷纷联合起来对肖战进行了各种抵制。 意识到事情的严重性,肖战工作室及肖战全球后援会才相继发布道歉声明,#肖战工作室道歉#也很快冲上热搜第一。 ";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/0302/8683b25fc495ba4.png";}}i:14;s:124:" 图片来自微博 但网友们似乎对此并不买账。有网友开始给肖战参演的《陈情令》《诛仙》等";i:15;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:195:"https://c.duomai.com/track.php?site_id=242986&euid=&t=https%3A%2F%2Flist.jd.com%2Flist.html%3Fcat%3D737%2C794%2C798%26ev%3D4155_76344%26sort%3Dsort_rank_asc%26trans%3D1%26JL%3D2_1_0%23J_crumbsBar";s:8:"original";a:2:{i:0;s:203:"[URL='https://c.duomai.com/track.php?site_id=242986&euid=&t=https%3A%2F%2Flist.jd.com%2Flist.html%3Fcat%3D737%2C794%2C798%26ev%3D4155_76344%26sort%3Dsort_rank_asc%26trans%3D1%26JL%3D2_1_0%23J_crumbsBar']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:6:"电视";}}i:16;s:451:"剧、电影评分怒打一星。更有网友整理了肖战的代言品牌列表,向这些产品或向相关品牌方提出抗议和抵制。 肖战作为品牌大使的佳洁士,品牌官博目前已经更换了微博置顶。原本李佳琦直播间也紧急撤下了原本肖战代言的Olay产品。 但很多网友依旧不买账。“他们表示,“以后但凡肖战出演的影视剧一律不看,代言的产品一律不买。” ";i:17;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:30:"同人文化早已经不小众";}}i:18;s:929:" 这也是一场对粉圈文化、同人创作的大讨论。 这次事件也把“同人创作”提上台前。很多直男开始挠头,什么是同人?和CP文化有何联系? 同人创作 是指所漫画、动画、小说、游戏、影视等作品甚至现实里已知的人物、设定,被爱好者二次加工创作,衍生出来的文章及其他如图片影音游戏等等。 而同人文化中最有意思的就是"搞CP",CP可以是朋友、搭档、情侣等关系,但受众最多的还是"情侣"。其中喜欢男男CP的女生称为CP粉,往范围大里说就是腐女。 而此次引起纷争的《下坠》一文中,肖战和王一博就是情侣关系。此次事件争端的也是唯粉和CP粉之家的撕逼造成的。 此前,肖战和王一博因出演耽美剧《陈情令》而大火,吸引了一大波粉丝,其CP“博君一肖”更是长期霸占微博CP超话榜首。 ";i:19;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/0302/e5dbb381e9b82cc.jpg";}}i:20;s:1914:" 姑娘们写同人文,画同人图,剪辑同人视频,她们奔走相告,疾呼着“我饭的CPszd(是真的)。 之前霸占过榜首的,还有朱一龙和白宇的“镇魂女孩”,阿云嘎和郑云龙的“云次方”;黄景瑜和许魏洲的“鲸鱼与洲喵”等等。 更早之前,李易峰陈伟霆、胡歌霍建华等人都曾借助相关作品享受男CP红利。 从《上瘾》到《镇魂》《陈情令》,“腐女经济”的氪金能力被验证。,整个娱乐产业商业环境近年来也在追逐耽美文化,不断迎合,甚至创造腐女的消费需求。 自去年夏天《陈情令》爆红以来,肖战和王一博也积累了数量庞大、购买力可观的粉丝群体。 一位业内人士给网易科技举了一个例子,“王一博没有出演《陈情令》之前,其在云音乐发出的单曲销量只有二十几万,出演《陈情令》之后,新发的这首单曲销售额超3000万元,其中三分之一的销量是CP买的。” “要想红就去演耽美,迎合腐女吧。”该人士说。 据统计,现阶段,投入影视化改编预计待播“耽改剧”数量将超50部。 “一个腐女百万兵,得腐女者得天下”,南派三叔曾在给腐女的一封长信里写过,“盗墓笔记没有腐女,只是一本畅销书,有了腐女,才变成一种亚文化”。 同时他在采访中也有提到:“腐女有很强的传播性,掌握了腐女就占据了市场。” 而对于此次处于风口浪尖上的同人文化而言,耽美更是其中的一部分,也就是说,不仅追星的人喜欢同人创作,欧美、日韩、动漫、耽美、相声等都有同人文化。 同人圈层大的超乎想象。所以,也无怪乎肖战粉丝被群起而攻之。 “粉丝行为,偶像买单”,流量小鲜肉肖战,这次会为粉丝的行为“买多大单?";}, 1621686945, 1714281225
    Run Time: 0.004624

Included Files (108, XenForo Classes: 62)

  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/XenForo/Helper/Cookie.php
  83. library/XenResource/Listener/Template.php
  84. library/XenForo/ViewRenderer/HtmlPublic.php
  85. library/XenForo/ViewRenderer/Abstract.php
  86. library/XenForo/Template/Public.php
  87. library/XenForo/Template/Abstract.php
  88. library/XenForo/ViewPublic/Thread/View.php
  89. library/XenForo/ViewPublic/Base.php
  90. library/XenForo/View.php
  91. library/XenForo/BbCode/Parser.php
  92. library/XenForo/BbCode/Formatter/Base.php
  93. library/XenForo/ViewPublic/Helper/Message.php
  94. library/XenForo/BbCode/TextWrapper.php
  95. library/WhoHasVisited/Listener.php
  96. library/XenForo/Route/Prefix/Members.php
  97. library/XenForo/Template/FileHandler.php
  98. library/XenForo/Helper/File.php
  99. internal_data/templates/S.1,L.7,thread_view.php
  100. library/Brivium/RMDownloadTracker/EventListener/Listener.php
  101. library/XenForo/Route/Prefix/Posts.php
  102. library/XenForo/Model/Avatar.php
  103. library/XenForo/Helper/Criteria.php
  104. library/XenForo/Debug.php
  105. internal_data/templates/S.1,L.7,PAGE_CONTAINER.php
  106. internal_data/templates/S.1,L.7,xengallery_tab_links.php
  107. internal_data/templates/S.1,L.7,resources_tab_links.php
  108. library/XenForo/ViewRenderer/Json.php