Page Time: 0.8356s

Memory: 10.5306 MB (Peak: 11.6499 MB)

Queries (13, time: 0.4629s, 55.4%)

  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.430544
    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.000304
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 2Using where
  3. SELECT *
    FROM xf_brivium_addon
    ORDER BY addon_id
    Run Time: 0.000242
    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.000209
  5. SELECT session_data
    FROM xf_session
    WHERE session_id = ?
    	AND expiry_date >= ?
    Params: 13685979dc48b8aa0ca332747d65c1a6, 1716117526
    Run Time: 0.000344
    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.000150
    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: 326447
    Run Time: 0.004116
    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.004987
    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: 326447
    Run Time: 0.009119
    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: 326447
    Run Time: 0.000111
  11. UPDATE `xf_session` SET `expiry_date` = ? WHERE (session_id = '13685979dc48b8aa0ca332747d65c1a6')
    Params: 1716121126
    Run Time: 0.001826
  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=326447, 1716117526,
    Run Time: 0.000128
  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, 333076, a:25:{i:0;s:387:"对于刚毕业的大学生,7月本是奔向人生新阶段的时候。但刚从成都某高校毕业的张洁(化名)万万没想到,自己走出校门,就因为租房背上了上万元网贷。近日,有多位大学应届毕业生反映自己在“蛋壳公寓”签约月租租房后,陷入网络贷款的“神奇”经历。红星新闻记者对此进行了调查。 ";i:1;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:18:"大学毕业租房";}}i:2;s:2:" ";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:26:"莫名背上12360元网贷";}}i:4;s:662:" 张洁告诉红星新闻记者,她于2020年6月从成都某高校毕业。因为工作要求提前到岗实习,她于4月中旬左右通过58同城搜索住房信息,找到了位于锦江区马家沟附近,由蛋壳公寓投放的房源,并与蛋壳公寓的中介人员约定4月20日前去看房。 4月20日,在蛋壳公寓中介人员的陪同下,张洁来到马家沟附近看房。看了几套之后,她感觉房租过高,对于刚工作的她来讲有一定压力。就在这时,中介人员告诉她,该房目前可以享受蛋壳公寓的首月立减和免押金优惠活动,算下来需要立刻支付的租金并不高。 ";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:81:"https://n.sinaimg.cn/tech/transform/749/w630h919/20200713/cef7-iwhseit8691023.jpg";}}i:6;s:1523:" 蛋壳公寓签约/缴定须知 据张洁回忆,她当时明确向中介表示自己只打算短租两个月,并询问两个月后退房是否会产生其他费用。中介当时向她承诺两个月后可以直接离开,无需额外支付违约金之后。但当她提出要中介就以上内容开具一份承诺书时,对方以公司规定不能开具为由拒绝了。 随后,张洁开始在中介的帮助下签订租房合同,“中介当时就一直催我签字,我都还没来得及看完合同。”张洁表示,在看到合同中写明租约为一年时,她再次跟中介强调自己只租两个月,对方也再次向她表示两个月后可以直接退房。 张洁告诉记者,签完合同后,该名中介人员让她持身份证拍了一个视频。之后,又通过微信发给她一个二维码,要求她扫码并填写身份证、银行卡等个人信息,并表示“填写了这些信息后才能租房”。按要求填写完相关信息后的张洁,却突然收到了来自微众银行的贷款下放通知,显示她已经向微众银行贷款12360元。按照贷款协议,她需要在从4月算起的一年时间内,每月向微众银行还款1030元,还款额度刚好是她一个月的租金。 突如其来的贷款让张洁有些摸不着头脑,明明选的月租怎么就突然变成贷款?充满疑惑的张洁立刻就月租变成贷款的问题询问了蛋壳公寓的中介人员,对方声称这只是公司的租房流程,她不用管。 ";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:82:"https://n.sinaimg.cn/tech/transform/335/w630h1305/20200713/c973-iwhseit8692106.jpg";}}i:8;s:240:" 张洁就贷款问题询问蛋壳公寓工作人员 在得到中介人员的解释之后,张洁完成了签约流程,并搬入花果新居的房间。要一直等到两个月后,她才发现自己真正陷入了一场网贷中。 ";i:9;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:21:"短租被迫变长租";}}i:10;s:2:" ";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:39:"中介先称已离职后拉黑租房者";}}i:12;s:643:" 6月20日,当张洁原计划的两个月租约到期时,她按照先前中介对她的承诺,在蛋壳公寓APP上进行银行卡解绑时,却发现解绑不了。而当她联系管家要发起退租时,则被告知必须按合同租满一年,如果提前解约,则需向蛋壳公寓补缴押金和活动优惠,共计2060元。 “我现在相当于被迫续租,”张洁告诉红星新闻记者,由于微众银行已经先期将一年的房租贷款转给蛋壳公寓,自己必须每月向微众银行偿还贷款,一旦违约将影响个人征信。“我现在如果搬走,还是需要继续偿还贷款。” ";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:82:"https://n.sinaimg.cn/tech/transform/101/w630h1071/20200713/8689-iwhseit8694342.jpg";}}i:14;s:656:" 蛋壳公寓租赁合同中变更与解除合同的规定 张洁再一次通过微信联系了此前带她看房和签约的蛋壳公寓中介人员。“他一开始跟我说不记得当时做过类似承诺,随后又称自己5月15号左右已经从蛋壳离职,”张洁表示,之后自己就被这名中介人员拉黑,“我之后通过朋友的电话再次联系他,在聊到我的租房问题后,他立刻挂断了电话。” 张洁告诉记者,她从蛋壳公寓管家和客服处获得的答复是,由于她拿不出证据证明此前中介人员在看房和签约过程中存在欺骗行为,他们只能按合同办事。 ";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:31:"诱导租客网贷并非个例 ";}}i:16;s:2:" ";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:33:"客服:是工作不规范问题";}}i:18;s:246:" 张洁的遭遇并非个例。记者获悉,最近几个月,12345热线收到多起针对蛋壳公寓网络贷款的投诉。在黑猫投诉等平台上,也有针对蛋壳公寓诱导租客签订合同,拍分期贷款视频的投诉。 ";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:81:"https://n.sinaimg.cn/tech/transform/446/w630h616/20200713/a017-iwhseit8695706.png";}}i:20;s:945:" 黑猫投诉平台 今年7月1日,刚考上研究生的范明(化名)也通过蛋壳公寓在武侯区科华北路的棕北小区租了一个单间。范明告诉记者,自己刚考上研究生,想先在学校旁租两个月,等开学后再搬进学校宿舍。 范明告诉红星新闻记者,签合同时,他看到合同上写的租约为一年。他当场询问工作人员,工作人员向他表示两个月之后,如果他不租了,可以转租出去,“当时并没有告诉我转租不出去,退租需要扣押金的问题。” 在蛋壳工作人员的指导下,范明选择了“分期”的方式支付房租,之后就被要求持身份证录了一段视频,并在微众银行填写了个人信息。“因为我刚本科毕业,不知道分期就是网络贷款,”范明称,自己是在签完合同第二天,和朋友吃饭时说起了签合同的事,才被告知自己陷入了网贷。 ";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:82:"https://n.sinaimg.cn/tech/transform/554/w630h1524/20200713/0ee4-iwhseit8696868.jpg";}}i:22;s:1069:" 蛋壳公寓工作人员与范明对话截图 “我随后拨通了蛋壳公寓工作人员的电话,向对方确认是否以我的名义进行了网贷,”范明告诉记者,但这名工作人员仅表示是进行了分期,在范明提出分期就是网贷之后,该工作人员才最终承认为范明办理了网贷。 范明就此联系蛋壳公寓想要退租,却被告知要按合同租满一年,如果中途违约,则要缴纳950元(范明所租房屋一个月的押金)的罚款。 但记者就此拨打蛋壳公寓客服热线时,客服人员表示,如果租户选择月租方式入住,则需要和微众银行签订为期一年分期贷款合同。同时,租户享受的首月立减、免押金等优惠,也是建立在租约为一年的基础上。如果租户中途退租,则需向蛋壳补缴相关优惠后,才能终止合同。针对张洁租房时客服人员未明确告知相关条款的情况,该客服人员表示,这属于工作不规范问题,租户可在发现时当场对工作人员进行投诉。 ";i:23;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:46:"律师:口头承诺取证难 维权难度大";}}i:24;s:1297:" 红星新闻记者就此咨询了成都泰和泰律师事务所宋宏宇律师。宋宏宇称,由于相关工作人员多数通过口头承诺的方式对租户进行诱导,而初入社会的大学生少有录音存证的意识,当自己的权益受到侵犯、被诱导进行网络贷款后,很难提供强有力的证据来保护自己。在租户无法提供证据证明蛋壳公寓工作人员口头承诺内容的情况下,租户和平台之间的只能以双方签字的合同作为权责依据。 针对几位毕业生租户普遍反映的退租难问题,宋宏宇表示,由于蛋壳公寓的合同中对相关事项有清楚表达,租户在工作人员的诱导下确实进行了签字确认,因此欺诈行为主要通过作为中间人的工作人员不履行告知义务发生,责任主要在中间工作人员,直接向蛋壳公寓维权的难度较大。“如果租户确实想解除合约,主要还是要通过与平台进行协商解决。确实解决不了的,租户也可以进行投诉。” 蛋壳公寓于2015年1月注册成立,运营主体是北京紫梧桐(北京)资产管理有限公司,先后进入北京、上海、广州、深圳、苏州、杭州、天津、武汉、南京、成都、无锡、重庆、西安等10多个城市。";}, 1621686945, 1716117526
    Run Time: 0.010797

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