Page Time: 0.2425s

Memory: 3.5780 MB (Peak: 4.7934 MB)

Queries (44, time: 0.2101s, 86.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.000959
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 26Using where
  2. SELECT data_value
    FROM xf_data_registry
    WHERE data_key = ?
    Params: convoMonitoringCounts
    Run Time: 0.000206
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  3. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000190
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  4. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: c9cc4d731f672094fdd8d438cb03dc20, , 1714905932
    Run Time: 0.000221
  5. 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, , , EWRporta_ControllerPublic_Portal, Index, valid, , 1714902332,
    Run Time: 0.000132
  6. SELECT *
    	FROM EWRporta_layouts
    WHERE layout_id = ?
    Params: portal
    Run Time: 0.000172
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEEWRporta_layoutsconstPRIMARYPRIMARY77const1 
  7. SELECT *, 'disabled' AS position
    	FROM EWRporta_blocks
    WHERE active = 1
    ORDER BY block_id ASC
    Run Time: 0.000226
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEEWRporta_blocksindex PRIMARY77 9Using where
  8. SELECT * FROM EWRporta_caches
    Run Time: 0.000222
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEEWRporta_cachesALL    1 
  9. SELECT * FROM EWRporta_options
    Run Time: 0.000269
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEEWRporta_optionsALL    17 
  10. SELECT xf_thread.*, xf_user.*, xf_post.message, xf_post.attach_count, xf_node.title AS node_title, 
    	IF(xf_user.username IS NULL, xf_thread.username, xf_user.username) AS username,
    	IF(EWRporta_promotes.promote_date IS NULL, xf_thread.post_date, EWRporta_promotes.promote_date) AS promote_date,
    	EWRporta_promotes.promote_icon, EWRporta_promotes.promote_data
    FROM xf_thread
    	LEFT JOIN xf_user ON (xf_user.user_id = xf_thread.user_id)
    	INNER JOIN xf_post ON (xf_post.post_id = xf_thread.first_post_id)
    	INNER JOIN xf_node ON (xf_node.node_id = xf_thread.node_id)
    	LEFT JOIN EWRporta_promotes ON (EWRporta_promotes.thread_id = xf_thread.thread_id)
    
    WHERE ( xf_thread.node_id IN ('78') OR EWRporta_promotes.promote_date < ? )
    	AND xf_thread.discussion_state = 'visible'
    	AND IF(EWRporta_promotes.promote_date IS NULL, xf_thread.post_date, EWRporta_promotes.promote_date) < ?
    ORDER BY  promote_date DESC
    LIMIT ?, ?
    Params: 1714902332, 1714902332, 0, 10
    Run Time: 0.141868
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_threadALLnode_id_last_post_date,node_id_sticky_state_last_post   23610Using where; Using temporary; Using filesort
    SIMPLExf_nodeeq_refPRIMARYPRIMARY4xenforo.xf_thread.node_id1 
    SIMPLEEWRporta_promoteseq_refPRIMARYPRIMARY4xenforo.xf_thread.thread_id1Using where
    SIMPLExf_usereq_refPRIMARYPRIMARY4xenforo.xf_thread.user_id1 
    SIMPLExf_posteq_refPRIMARYPRIMARY4xenforo.xf_thread.first_post_id1 
  11. SELECT *
    FROM EWRporta_categories
    	INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
    WHERE thread_id = ?
    ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
    Params: 38538
    Run Time: 0.000221
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEEWRporta_categoriesALLPRIMARY   1Using filesort
    SIMPLEEWRporta_catlinkseq_refcategory_idcategory_id8xenforo.EWRporta_categories.category_id,const1Using index
  12. SELECT attachment.*,
    	data.filename, data.file_size, data.file_hash, data.file_path, 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 (425926)
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000275
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrefcontent_type_id_datecontent_type_id_date31const,const5Using index condition
    SIMPLEdataeq_refPRIMARYPRIMARY4xenforo.attachment.data_id1 
  13. SELECT *
    FROM EWRporta_categories
    	INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
    WHERE thread_id = ?
    ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
    Params: 38499
    Run Time: 0.000156
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEEWRporta_categoriesALLPRIMARY   1Using filesort
    SIMPLEEWRporta_catlinkseq_refcategory_idcategory_id8xenforo.EWRporta_categories.category_id,const1Using index
  14. SELECT attachment.*,
    	data.filename, data.file_size, data.file_hash, data.file_path, 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 (425552)
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000233
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrefcontent_type_id_datecontent_type_id_date31const,const3Using index condition
    SIMPLEdataeq_refPRIMARYPRIMARY4xenforo.attachment.data_id1 
  15. SELECT *
    FROM EWRporta_categories
    	INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
    WHERE thread_id = ?
    ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
    Params: 38481
    Run Time: 0.000149
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEEWRporta_categoriesALLPRIMARY   1Using filesort
    SIMPLEEWRporta_catlinkseq_refcategory_idcategory_id8xenforo.EWRporta_categories.category_id,const1Using index
  16. SELECT *
    FROM EWRporta_categories
    	INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
    WHERE thread_id = ?
    ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
    Params: 38339
    Run Time: 0.000134
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEEWRporta_categoriesALLPRIMARY   1Using filesort
    SIMPLEEWRporta_catlinkseq_refcategory_idcategory_id8xenforo.EWRporta_categories.category_id,const1Using index
  17. SELECT *
    FROM EWRporta_categories
    	INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
    WHERE thread_id = ?
    ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
    Params: 38228
    Run Time: 0.000133
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEEWRporta_categoriesALLPRIMARY   1Using filesort
    SIMPLEEWRporta_catlinkseq_refcategory_idcategory_id8xenforo.EWRporta_categories.category_id,const1Using index
  18. SELECT *
    FROM EWRporta_categories
    	INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
    WHERE thread_id = ?
    ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
    Params: 38200
    Run Time: 0.000133
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEEWRporta_categoriesALLPRIMARY   1Using filesort
    SIMPLEEWRporta_catlinkseq_refcategory_idcategory_id8xenforo.EWRporta_categories.category_id,const1Using index
  19. SELECT *
    FROM EWRporta_categories
    	INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
    WHERE thread_id = ?
    ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
    Params: 38176
    Run Time: 0.000131
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEEWRporta_categoriesALLPRIMARY   1Using filesort
    SIMPLEEWRporta_catlinkseq_refcategory_idcategory_id8xenforo.EWRporta_categories.category_id,const1Using index
  20. SELECT *
    FROM EWRporta_categories
    	INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
    WHERE thread_id = ?
    ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
    Params: 38086
    Run Time: 0.000130
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEEWRporta_categoriesALLPRIMARY   1Using filesort
    SIMPLEEWRporta_catlinkseq_refcategory_idcategory_id8xenforo.EWRporta_categories.category_id,const1Using index
  21. SELECT *
    FROM EWRporta_categories
    	INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
    WHERE thread_id = ?
    ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
    Params: 38074
    Run Time: 0.000129
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEEWRporta_categoriesALLPRIMARY   1Using filesort
    SIMPLEEWRporta_catlinkseq_refcategory_idcategory_id8xenforo.EWRporta_categories.category_id,const1Using index
  22. SELECT *
    FROM EWRporta_categories
    	INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
    WHERE thread_id = ?
    ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
    Params: 38061
    Run Time: 0.000128
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEEWRporta_categoriesALLPRIMARY   1Using filesort
    SIMPLEEWRporta_catlinkseq_refcategory_idcategory_id8xenforo.EWRporta_categories.category_id,const1Using index
  23. SELECT COUNT(*) AS total
    	FROM xf_thread
    	LEFT JOIN EWRporta_promotes ON (EWRporta_promotes.thread_id = xf_thread.thread_id)
    
    WHERE (xf_thread.node_id IN ('78') OR EWRporta_promotes.promote_date < ?)
    	AND xf_thread.discussion_state = 'visible'
    	AND IF(EWRporta_promotes.promote_date IS NULL, xf_thread.post_date, EWRporta_promotes.promote_date) < ?
    Params: 1714902332, 1714902332
    Run Time: 0.053303
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_threadALLnode_id_last_post_date,node_id_sticky_state_last_post   23610Using where
    SIMPLEEWRporta_promoteseq_refPRIMARYPRIMARY4xenforo.xf_thread.thread_id1Using where
  24. SELECT *
    	FROM EWRporta_caches
    WHERE block_id = ?
    Params: RecentNews
    Run Time: 0.000218
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEEWRporta_cachesconstPRIMARYPRIMARY77const1 
  25. SELECT *
    	FROM EWRporta_caches
    WHERE block_id = ?
    Params: RecentNews
    Run Time: 0.000128
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEEWRporta_cachesconstPRIMARYPRIMARY77const1 
  26. begin
    Run Time: 0.000075
  27. UPDATE `EWRporta_caches` SET `results` = ?, `date` = ? WHERE (block_id = 'RecentNews')
    Params: a:2:{s:6:"option";a:9:{s:5:"forum";a:1:{i:0;s:2:"78";}s:8:"leftdate";s:1:"1";s:5:"limit";s:2:"10";s:7:"pagenav";s:1:"1";s:6:"social";s:1:"0";s:6:"sticky";s:1:"0";s:8:"truncate";s:4:"1000";s:7:"parseBB";b:1;s:5:"count";i:209;}s:10:"RecentNews";a:10:{i:0;a:67:{s:9:"thread_id";i:38538;s:7:"node_id";i:66;s:5:"title";s:46:"Mod Head Scavenger Hunt in the February Lobby!";s:11:"reply_count";i:11;s:10:"view_count";i:1400;s:7:"user_id";i:26817;s:8:"username";s:14:"WanderingLlama";s:9:"post_date";i:1706843402;s:6:"sticky";i:0;s:16:"discussion_state";s:7:"visible";s:15:"discussion_open";i:1;s:15:"discussion_type";s:0:"";s:13:"first_post_id";i:425926;s:16:"first_post_likes";i:3;s:14:"last_post_date";i:1709073707;s:12:"last_post_id";i:426552;s:17:"last_post_user_id";i:26817;s:18:"last_post_username";s:14:"WanderingLlama";s:9:"prefix_id";i:0;s:4:"tags";s:6:"a:0:{}";s:5:"email";s:27:"chessprogrammer01@gmail.com";s:6:"gender";s:4:"male";s:12:"custom_title";s:15:"Wayfaring Drama";s:11:"language_id";i:1;s:8:"style_id";i:0;s:8:"timezone";s:15:"America/Phoenix";s:7:"visible";i:1;s:16:"activity_visible";i:0;s:13:"user_group_id";i:2;s:19:"secondary_group_ids";s:10:"4,16,19,20";s:22:"display_style_group_id";i:4;s:25:"permission_combination_id";i:195;s:13:"message_count";i:1455;s:20:"conversations_unread";i:0;s:13:"register_date";i:1452118099;s:13:"last_activity";i:1714881132;s:13:"trophy_points";i:1610;s:13:"alerts_unread";i:1;s:11:"avatar_date";i:0;s:12:"avatar_width";i:0;s:13:"avatar_height";i:0;s:8:"gravatar";s:44:"16b1f5950da74ba6910f8ef01964991e@minotar.net";s:10:"user_state";s:5:"valid";s:12:"is_moderator";i:1;s:8:"is_admin";i:1;s:9:"is_banned";i:0;s:10:"like_count";i:9437;s:14:"warning_points";i:0;s:8:"is_staff";i:1;s:17:"minecraft_profile";s:14:"WanderingLlama";s:7:"mc_uuid";s:32:"16b1f5950da74ba6910f8ef01964991e";s:14:"minecraft_uuid";s:36:"16b1f595-0da7-4ba6-910f-8ef01964991e";s:14:"minecraft_xuid";N;s:20:"minecraft_texture_id";N;s:23:"privacy_policy_accepted";i:0;s:14:"terms_accepted";i:0;s:7:"message";s:996:"Hello everyone! This new and improved February lobby will be full of fantastic fun! You will have a chance to win a mending elytra, shulker boxes, and 15 moderator heads in the February lobby scavenger hunt! There are 15 moderator challenges that are scattered around the lobby, with a cool game or adventure for each one! At the end of each challenge/adventure, click the sign saying that you found a moderator's head. You will get a token, which you can use to trade with villagers for any of the 15 moderator heads listed below, a shulker box, and a mending elytra! The villager is located in the sunken shops next to the Hunger Games portal. Depending on how the scavenger hunt is going, clues will be provided. Always remember to push buttons, swim, and walk all around the lobby to find the entrances to each head quest. You will now be able to get and store items in shulker boxes in the lobby! Trade two tokens with the villager to get a shulker box. At the purple/magenta beacon (a...";s:12:"attach_count";i:5;s:10:"node_title";s:13:"Announcements";s:12:"promote_date";i:1706843400;s:12:"promote_icon";s:6:"avatar";s:12:"promote_data";s:1:"0";s:10:"categories";a:0:{}s:5:"month";O:14:"XenForo_Phrase":4:{s:14:"*_phraseName";s:13:"month_2_short";s:10:"*_params";a:0:{}s:23:"*_insertParamsEscaped";b:1;s:23:"*_phraseNameOnInvalid";b:1;}s:3:"day";s:2:"01";s:11:"attachments";a:5:{i:21601;a:20:{s:13:"attachment_id";i:21601;s:7:"data_id";i:21558;s:12:"content_type";s:4:"post";s:10:"content_id";i:425926;s:11:"attach_date";i:1706843332;s:9:"temp_hash";s:0:"";s:12:"unassociated";i:0;s:10:"view_count";i:201;s:8:"filename";s:27:"upload_2024-2-1_20-8-52.png";s:9:"file_size";i:154185;s:9:"file_hash";s:32:"7d7f09400d2d9ea8944fdcf10f431e9d";s:9:"file_path";s:0:"";s:5:"width";i:1848;s:6:"height";i:1011;s:15:"thumbnail_width";i:100;s:16:"thumbnail_height";i:54;s:12:"thumbnailUrl";s:62:"data/attachments/21/21558-7d7f09400d2d9ea8944fdcf10f431e9d.jpg";s:9:"deleteUrl";s:52:"attachments/upload_2024-2-1_20-8-52-png.21601/delete";s:7:"viewUrl";s:46:"attachments/upload_2024-2-1_20-8-52-png.21601/";s:9:"extension";s:3:"png";}i:21602;a:20:{s:13:"attachment_id";i:21602;s:7:"data_id";i:21559;s:12:"content_type";s:4:"post";s:10:"content_id";i:425926;s:11:"attach_date";i:1706843347;s:9:"temp_hash";s:0:"";s:12:"unassociated";i:0;s:10:"view_count";i:197;s:8:"filename";s:26:"upload_2024-2-1_20-9-5.png";s:9:"file_size";i:783866;s:9:"file_hash";s:32:"889da9867651d2fdb0e78d4e9536036a";s:9:"file_path";s:0:"";s:5:"width";i:1848;s:6:"height";i:1011;s:15:"thumbnail_width";i:100;s:16:"thumbnail_height";i:54;s:12:"thumbnailUrl";s:62:"data/attachments/21/21559-889da9867651d2fdb0e78d4e9536036a.jpg";s:9:"deleteUrl";s:51:"attachments/upload_2024-2-1_20-9-5-png.21602/delete";s:7:"viewUrl";s:45:"attachments/upload_2024-2-1_20-9-5-png.21602/";s:9:"extension";s:3:"png";}i:21603;a:20:{s:13:"attachment_id";i:21603;s:7:"data_id";i:21560;s:12:"content_type";s:4:"post";s:10:"content_id";i:425926;s:11:"attach_date";i:1706843362;s:9:"temp_hash";s:0:"";s:12:"unassociated";i:0;s:10:"view_count";i:194;s:8:"filename";s:27:"upload_2024-2-1_20-9-20.png";s:9:"file_size";i:992698;s:9:"file_hash";s:32:"b2eb4e654fc1c88bca59f90d92578b8e";s:9:"file_path";s:0:"";s:5:"width";i:1848;s:6:"height";i:1011;s:15:"thumbnail_width";i:100;s:16:"thumbnail_height";i:54;s:12:"thumbnailUrl";s:62:"data/attachments/21/21560-b2eb4e654fc1c88bca59f90d92578b8e.jpg";s:9:"deleteUrl";s:52:"attachments/upload_2024-2-1_20-9-20-png.21603/delete";s:7:"viewUrl";s:46:"attachments/upload_2024-2-1_20-9-20-png.21603/";s:9:"extension";s:3:"png";}i:21604;a:20:{s:13:"attachment_id";i:21604;s:7:"data_id";i:21561;s:12:"content_type";s:4:"post";s:10:"content_id";i:425926;s:11:"attach_date";i:1706843379;s:9:"temp_hash";s:0:"";s:12:"unassociated";i:0;s:10:"view_count";i:192;s:8:"filename";s:27:"upload_2024-2-1_20-9-37.png";s:9:"file_size";i:731082;s:9:"file_hash";s:32:"555f622a5481565cb0fe295748a3b4d9";s:9:"file_path";s:0:"";s:5:"width";i:1848;s:6:"height";i:1011;s:15:"thumbnail_width";i:100;s:16:"thumbnail_height";i:54;s:12:"thumbnailUrl";s:62:"data/attachments/21/21561-555f622a5481565cb0fe295748a3b4d9.jpg";s:9:"deleteUrl";s:52:"attachments/upload_2024-2-1_20-9-37-png.21604/delete";s:7:"viewUrl";s:46:"attachments/upload_2024-2-1_20-9-37-png.21604/";s:9:"extension";s:3:"png";}i:21605;a:20:{s:13:"attachment_id";i:21605;s:7:"data_id";i:21562;s:12:"content_type";s:4:"post";s:10:"content_id";i:425926;s:11:"attach_date";i:1706843389;s:9:"temp_hash";s:0:"";s:12:"unassociated";i:0;s:10:"view_count";i:196;s:8:"filename";s:27:"upload_2024-2-1_20-9-48.png";s:9:"file_size";i:397263;s:9:"file_hash";s:32:"3e161971aaf1915adce1d19fcfd7e619";s:9:"file_path";s:0:"";s:5:"width";i:1848;s:6:"height";i:1011;s:15:"thumbnail_width";i:100;s:16:"thumbnail_height";i:54;s:12:"thumbnailUrl";s:62:"data/attachments/21/21562-3e161971aaf1915adce1d19fcfd7e619.jpg";s:9:"deleteUrl";s:52:"attachments/upload_2024-2-1_20-9-48-png.21605/delete";s:7:"viewUrl";s:46:"attachments/upload_2024-2-1_20-9-48-png.21605/";s:9:"extension";s:3:"png";}}s:8:"showIcon";b:1;}i:1;a:67:{s:9:"thread_id";i:38499;s:7:"node_id";i:66;s:5:"title";s:31:"Scheduled Maintenance COMPLETE";s:11:"reply_count";i:32;s:10:"view_count";i:2130;s:7:"user_id";i:23659;s:8:"username";s:7:"waseric";s:9:"post_date";i:1705060330;s:6:"sticky";i:0;s:16:"discussion_state";s:7:"visible";s:15:"discussion_open";i:1;s:15:"discussion_type";s:0:"";s:13:"first_post_id";i:425552;s:16:"first_post_likes";i:3;s:14:"last_post_date";i:1708648269;s:12:"last_post_id";i:426409;s:17:"last_post_user_id";i:35043;s:18:"last_post_username";s:8:"AugDog74";s:9:"prefix_id";i:0;s:4:"tags";s:6:"a:0:{}";s:5:"email";s:22:"eric.wasgatt@gmail.com";s:6:"gender";s:4:"male";s:12:"custom_title";s:15:"The hidden hand";s:11:"language_id";i:1;s:8:"style_id";i:0;s:8:"timezone";s:16:"America/New_York";s:7:"visible";i:0;s:16:"activity_visible";i:0;s:13:"user_group_id";i:2;s:19:"secondary_group_ids";s:7:"4,18,20";s:22:"display_style_group_id";i:18;s:25:"permission_combination_id";i:186;s:13:"message_count";i:1658;s:20:"conversations_unread";i:0;s:13:"register_date";i:1430003389;s:13:"last_activity";i:1714871112;s:13:"trophy_points";i:1360;s:13:"alerts_unread";i:0;s:11:"avatar_date";i:0;s:12:"avatar_width";i:0;s:13:"avatar_height";i:0;s:8:"gravatar";s:44:"30ae1ed69c5b403d9b1228928707c26a@minotar.net";s:10:"user_state";s:5:"valid";s:12:"is_moderator";i:1;s:8:"is_admin";i:1;s:9:"is_banned";i:0;s:10:"like_count";i:3592;s:14:"warning_points";i:0;s:8:"is_staff";i:1;s:17:"minecraft_profile";s:7:"waseric";s:7:"mc_uuid";s:32:"30ae1ed69c5b403d9b1228928707c26a";s:14:"minecraft_uuid";s:36:"30ae1ed6-9c5b-403d-9b12-28928707c26a";s:14:"minecraft_xuid";s:16:"2533274948357907";s:20:"minecraft_texture_id";s:64:"5dfb274dcde8dae83f503f2bd3082960cb06123ef96287ffc7dac1e159eee11c";s:23:"privacy_policy_accepted";i:0;s:14:"terms_accepted";i:0;s:7:"message";s:988:"Sandlot will be undergoing some important maintenance today, January 12. [B]Edit: [/B] And we're back! Sandlot is now online. We will start our [B]four hour maintenance[/B] window at [B]10pm US Eastern time (EST)[/B], and will be back online with the normal restart at [B]2am[/B]. [B]Our IP address is changing[/B]. Please restart your Minecraft game any time after the maintenance starts before trying to reconnect. [U]There is nothing else you need to do[/U]. [B]Bedrock Edition users who use our "[U]Method 1 - Using custom network settings[/U]" to connect:[/B] During maintenance, all you need to do is restart minecraft. You will need to change the IP address for your DNS server by January 26. We will update instructions in the next day or two. The new IP address is [B][COLOR=#00b359]15.204.44.34[/COLOR][/B]. The old IP address [B][COLOR=#ff0000]66.70.181.137[/COLOR][/B] (will stop working on Jan 26). [B]During maintenance:[/B] [spoiler='Java Edition users will see']...";s:12:"attach_count";i:3;s:10:"node_title";s:13:"Announcements";s:12:"promote_date";i:1705060320;s:12:"promote_icon";s:6:"avatar";s:12:"promote_data";s:1:"0";s:10:"categories";a:0:{}s:5:"month";O:14:"XenForo_Phrase":4:{s:14:"*_phraseName";s:13:"month_1_short";s:10:"*_params";a:0:{}s:23:"*_insertParamsEscaped";b:1;s:23:"*_phraseNameOnInvalid";b:1;}s:3:"day";s:2:"12";s:11:"attachments";a:3:{i:21549;a:20:{s:13:"attachment_id";i:21549;s:7:"data_id";i:21506;s:12:"content_type";s:4:"post";s:10:"content_id";i:425552;s:11:"attach_date";i:1705070241;s:9:"temp_hash";s:0:"";s:12:"unassociated";i:0;s:10:"view_count";i:251;s:8:"filename";s:32:"Screenshot 2024-01-12 060736.png";s:9:"file_size";i:11503;s:9:"file_hash";s:32:"41cb5d6188afd4a93fd5139721b9afbe";s:9:"file_path";s:0:"";s:5:"width";i:630;s:6:"height";i:97;s:15:"thumbnail_width";i:100;s:16:"thumbnail_height";i:15;s:12:"thumbnailUrl";s:62:"data/attachments/21/21506-41cb5d6188afd4a93fd5139721b9afbe.jpg";s:9:"deleteUrl";s:57:"attachments/screenshot-2024-01-12-060736-png.21549/delete";s:7:"viewUrl";s:51:"attachments/screenshot-2024-01-12-060736-png.21549/";s:9:"extension";s:3:"png";}i:21550;a:20:{s:13:"attachment_id";i:21550;s:7:"data_id";i:21507;s:12:"content_type";s:4:"post";s:10:"content_id";i:425552;s:11:"attach_date";i:1705070241;s:9:"temp_hash";s:0:"";s:12:"unassociated";i:0;s:10:"view_count";i:240;s:8:"filename";s:32:"Screenshot 2024-01-12 061030.png";s:9:"file_size";i:10775;s:9:"file_hash";s:32:"650dd1a2d2f02955e263f753f7d4b798";s:9:"file_path";s:0:"";s:5:"width";i:526;s:6:"height";i:251;s:15:"thumbnail_width";i:100;s:16:"thumbnail_height";i:47;s:12:"thumbnailUrl";s:62:"data/attachments/21/21507-650dd1a2d2f02955e263f753f7d4b798.jpg";s:9:"deleteUrl";s:57:"attachments/screenshot-2024-01-12-061030-png.21550/delete";s:7:"viewUrl";s:51:"attachments/screenshot-2024-01-12-061030-png.21550/";s:9:"extension";s:3:"png";}i:21551;a:20:{s:13:"attachment_id";i:21551;s:7:"data_id";i:21508;s:12:"content_type";s:4:"post";s:10:"content_id";i:425552;s:11:"attach_date";i:1705070241;s:9:"temp_hash";s:0:"";s:12:"unassociated";i:0;s:10:"view_count";i:160;s:8:"filename";s:32:"Screenshot 2024-01-12 060912.png";s:9:"file_size";i:11347;s:9:"file_hash";s:32:"501a401fd82a0019ef20a5dd7a956528";s:9:"file_path";s:0:"";s:5:"width";i:825;s:6:"height";i:551;s:15:"thumbnail_width";i:100;s:16:"thumbnail_height";i:66;s:12:"thumbnailUrl";s:62:"data/attachments/21/21508-501a401fd82a0019ef20a5dd7a956528.jpg";s:9:"deleteUrl";s:57:"attachments/screenshot-2024-01-12-060912-png.21551/delete";s:7:"viewUrl";s:51:"attachments/screenshot-2024-01-12-060912-png.21551/";s:9:"extension";s:3:"png";}}s:8:"showIcon";b:1;}i:2;a:66:{s:9:"thread_id";i:38481;s:7:"node_id";i:66;s:5:"title";s:63:"Congratulations to our new Helpers, Senior Helpers, and Elders!";s:11:"reply_count";i:25;s:10:"view_count";i:2105;s:7:"user_id";i:3269;s:8:"username";s:6:"c0wg0d";s:9:"post_date";i:1703971903;s:6:"sticky";i:0;s:16:"discussion_state";s:7:"visible";s:15:"discussion_open";i:1;s:15:"discussion_type";s:0:"";s:13:"first_post_id";i:425233;s:16:"first_post_likes";i:2;s:14:"last_post_date";i:1704951396;s:12:"last_post_id";i:425509;s:17:"last_post_user_id";i:22713;s:18:"last_post_username";s:13:"Monkey_Chicka";s:9:"prefix_id";i:0;s:4:"tags";s:6:"a:0:{}";s:5:"email";s:24:"cowgodthegreat@gmail.com";s:6:"gender";s:4:"male";s:12:"custom_title";s:0:"";s:11:"language_id";i:1;s:8:"style_id";i:0;s:8:"timezone";s:15:"America/Phoenix";s:7:"visible";i:1;s:16:"activity_visible";i:1;s:13:"user_group_id";i:2;s:19:"secondary_group_ids";s:12:"3,4,16,17,20";s:22:"display_style_group_id";i:17;s:25:"permission_combination_id";i:193;s:13:"message_count";i:10852;s:20:"conversations_unread";i:0;s:13:"register_date";i:1378097275;s:13:"last_activity";i:1714828723;s:13:"trophy_points";i:2505;s:13:"alerts_unread";i:0;s:11:"avatar_date";i:0;s:12:"avatar_width";i:0;s:13:"avatar_height";i:0;s:8:"gravatar";s:44:"eb42d50edc6f4d48b4b570c7bfa77512@minotar.net";s:10:"user_state";s:5:"valid";s:12:"is_moderator";i:1;s:8:"is_admin";i:1;s:9:"is_banned";i:0;s:10:"like_count";i:26181;s:14:"warning_points";i:0;s:8:"is_staff";i:1;s:17:"minecraft_profile";s:6:"c0wg0d";s:7:"mc_uuid";s:32:"eb42d50edc6f4d48b4b570c7bfa77512";s:14:"minecraft_uuid";s:36:"eb42d50e-dc6f-4d48-b4b5-70c7bfa77512";s:14:"minecraft_xuid";N;s:20:"minecraft_texture_id";N;s:23:"privacy_policy_accepted";i:0;s:14:"terms_accepted";i:0;s:7:"message";s:410:"Give a big congratulations to our newest helpers, senior helpers, and elders! You guys all deserve it and we are glad to have you in our Sandlot family! Helpers: [USER=35993]@Erik_Riel[/USER] [USER=29018]@GrimpyHalfhand[/USER] [USER=26460]@lolo5151[/USER] Senior Helpers: [USER=32828]@ElleMouse[/USER] [USER=33421]@Firepyth[/USER] Elders: [USER=33421]@Firepyth[/USER] [USER=27713]@sprainedd[/USER]";s:12:"attach_count";i:0;s:10:"node_title";s:13:"Announcements";s:12:"promote_date";i:1703971860;s:12:"promote_icon";s:6:"avatar";s:12:"promote_data";s:1:"0";s:10:"categories";a:0:{}s:5:"month";O:14:"XenForo_Phrase":4:{s:14:"*_phraseName";s:14:"month_12_short";s:10:"*_params";a:0:{}s:23:"*_insertParamsEscaped";b:1;s:23:"*_phraseNameOnInvalid";b:1;}s:3:"day";s:2:"30";s:8:"showIcon";b:1;}i:3;a:66:{s:9:"thread_id";i:38339;s:7:"node_id";i:66;s:5:"title";s:34:"Holiday Hard Team Event - Join us!";s:11:"reply_count";i:80;s:10:"view_count";i:6338;s:7:"user_id";i:12400;s:8:"username";s:7:"trubuhl";s:9:"post_date";i:1698011663;s:6:"sticky";i:0;s:16:"discussion_state";s:7:"visible";s:15:"discussion_open";i:1;s:15:"discussion_type";s:0:"";s:13:"first_post_id";i:423225;s:16:"first_post_likes";i:3;s:14:"last_post_date";i:1704958800;s:12:"last_post_id";i:425518;s:17:"last_post_user_id";i:23174;s:18:"last_post_username";s:8:"LegoBoyo";s:9:"prefix_id";i:0;s:4:"tags";s:6:"a:0:{}";s:5:"email";s:28:"wulfgar_stormrider@yahoo.com";s:6:"gender";s:4:"male";s:12:"custom_title";s:15:"The Stinky Sock";s:11:"language_id";i:1;s:8:"style_id";i:0;s:8:"timezone";s:12:"Europe/Minsk";s:7:"visible";i:0;s:16:"activity_visible";i:0;s:13:"user_group_id";i:2;s:19:"secondary_group_ids";s:7:"4,19,20";s:22:"display_style_group_id";i:4;s:25:"permission_combination_id";i:191;s:13:"message_count";i:6217;s:20:"conversations_unread";i:0;s:13:"register_date";i:1368424884;s:13:"last_activity";i:1714885755;s:13:"trophy_points";i:1761;s:13:"alerts_unread";i:1;s:11:"avatar_date";i:1677026526;s:12:"avatar_width";i:193;s:13:"avatar_height";i:192;s:8:"gravatar";s:0:"";s:10:"user_state";s:5:"valid";s:12:"is_moderator";i:1;s:8:"is_admin";i:1;s:9:"is_banned";i:0;s:10:"like_count";i:8086;s:14:"warning_points";i:0;s:8:"is_staff";i:1;s:17:"minecraft_profile";s:7:"trubuhl";s:7:"mc_uuid";s:32:"79682b69dbda4539a5f1bc73a4522ece";s:14:"minecraft_uuid";s:36:"79682b69-dbda-4539-a5f1-bc73a4522ece";s:14:"minecraft_xuid";N;s:20:"minecraft_texture_id";N;s:23:"privacy_policy_accepted";i:0;s:14:"terms_accepted";i:0;s:7:"message";s:997:"[IMG]https://i.imgur.com/eV5UYRj.png[/IMG] By popular request we are bringing back Hard Teams for the Holidays, new and improved! Come join everyone in a special Holiday themed world that isn't quite as Hard as usual and join with others on your team to build big things, do Achievements (AACH) to get points for your team and just have fun with everyone. Yes you can even have fun with people NOT on your team! Note: Team Leaders must decide if they want to share any big Auto-farms that are made by their teams. Please post clear signs saying whether farms are Public or Team Only - either are OK! At a minimum we should have an automated team scoring system, more improvements are TBD. We will NOT have separate team chat channels because we decided it's just way more fun for an event when everyone is chatting together. You can expect snow and ice and christmas trees and holiday structures (giant candy canes etc) and who knows what else. There will be four teams you can choose from,...";s:12:"attach_count";i:0;s:10:"node_title";s:13:"Announcements";s:12:"promote_date";i:1698011640;s:12:"promote_icon";s:6:"avatar";s:12:"promote_data";s:1:"0";s:10:"categories";a:0:{}s:5:"month";O:14:"XenForo_Phrase":4:{s:14:"*_phraseName";s:14:"month_10_short";s:10:"*_params";a:0:{}s:23:"*_insertParamsEscaped";b:1;s:23:"*_phraseNameOnInvalid";b:1;}s:3:"day";s:2:"22";s:8:"showIcon";b:1;}i:4;a:66:{s:9:"thread_id";i:38228;s:7:"node_id";i:66;s:5:"title";s:37:"Parkour Grand Reopening on August 19!";s:11:"reply_count";i:14;s:10:"view_count";i:2433;s:7:"user_id";i:26817;s:8:"username";s:14:"WanderingLlama";s:9:"post_date";i:1691943321;s:6:"sticky";i:0;s:16:"discussion_state";s:7:"visible";s:15:"discussion_open";i:1;s:15:"discussion_type";s:0:"";s:13:"first_post_id";i:421416;s:16:"first_post_likes";i:1;s:14:"last_post_date";i:1692396299;s:12:"last_post_id";i:421605;s:17:"last_post_user_id";i:23659;s:18:"last_post_username";s:7:"waseric";s:9:"prefix_id";i:0;s:4:"tags";s:6:"a:0:{}";s:5:"email";s:27:"chessprogrammer01@gmail.com";s:6:"gender";s:4:"male";s:12:"custom_title";s:15:"Wayfaring Drama";s:11:"language_id";i:1;s:8:"style_id";i:0;s:8:"timezone";s:15:"America/Phoenix";s:7:"visible";i:1;s:16:"activity_visible";i:0;s:13:"user_group_id";i:2;s:19:"secondary_group_ids";s:10:"4,16,19,20";s:22:"display_style_group_id";i:4;s:25:"permission_combination_id";i:195;s:13:"message_count";i:1455;s:20:"conversations_unread";i:0;s:13:"register_date";i:1452118099;s:13:"last_activity";i:1714881132;s:13:"trophy_points";i:1610;s:13:"alerts_unread";i:1;s:11:"avatar_date";i:0;s:12:"avatar_width";i:0;s:13:"avatar_height";i:0;s:8:"gravatar";s:44:"16b1f5950da74ba6910f8ef01964991e@minotar.net";s:10:"user_state";s:5:"valid";s:12:"is_moderator";i:1;s:8:"is_admin";i:1;s:9:"is_banned";i:0;s:10:"like_count";i:9437;s:14:"warning_points";i:0;s:8:"is_staff";i:1;s:17:"minecraft_profile";s:14:"WanderingLlama";s:7:"mc_uuid";s:32:"16b1f5950da74ba6910f8ef01964991e";s:14:"minecraft_uuid";s:36:"16b1f595-0da7-4ba6-910f-8ef01964991e";s:14:"minecraft_xuid";N;s:20:"minecraft_texture_id";N;s:23:"privacy_policy_accepted";i:0;s:14:"terms_accepted";i:0;s:7:"message";s:996:"[B]Parkour will have a grand reopening event on August 19 at 3pm EST![/B] [B]Will the leaderboards be reset?[/B] Yes, the leaderboards will be reset. The record times are still documented on forums, however. [B]Will my levels and progress be reset?[/B] Yes. However, you can get more levels by playing courses with your friends! [B]Changes to levels[/B] Easy courses: 1 level reward Red Easy courses: 2 level reward Norm courses: 2 level reward Red Norm courses: 3 level reward Hard courses: 3 level reward Red Hard courses: 4 level reward Cray courses: 4 level reward Red Cray courses: 5-6 level reward. The courses will also have a short reward delay. [B]Seasonal Courses[/B] Courses from the old parkour server will be added on a monthly or seasonal basis. These temporary courses can be found in the normal parkour lobbies with the rest of the courses, but will have a blue sign. Some of these courses may be improved and become regular courses. [B]Color coded course signs.[/B] This...";s:12:"attach_count";i:0;s:10:"node_title";s:13:"Announcements";s:12:"promote_date";i:1691943300;s:12:"promote_icon";s:6:"avatar";s:12:"promote_data";s:1:"0";s:10:"categories";a:0:{}s:5:"month";O:14:"XenForo_Phrase":4:{s:14:"*_phraseName";s:13:"month_8_short";s:10:"*_params";a:0:{}s:23:"*_insertParamsEscaped";b:1;s:23:"*_phraseNameOnInvalid";b:1;}s:3:"day";s:2:"13";s:8:"showIcon";b:1;}i:5;a:66:{s:9:"thread_id";i:38200;s:7:"node_id";i:66;s:5:"title";s:27:"Time for a Parkour Refresh!";s:11:"reply_count";i:16;s:10:"view_count";i:2413;s:7:"user_id";i:26817;s:8:"username";s:14:"WanderingLlama";s:9:"post_date";i:1691207561;s:6:"sticky";i:0;s:16:"discussion_state";s:7:"visible";s:15:"discussion_open";i:1;s:15:"discussion_type";s:0:"";s:13:"first_post_id";i:421018;s:16:"first_post_likes";i:1;s:14:"last_post_date";i:1691514976;s:12:"last_post_id";i:421191;s:17:"last_post_user_id";i:13974;s:18:"last_post_username";s:12:"SupersonicE9";s:9:"prefix_id";i:0;s:4:"tags";s:6:"a:0:{}";s:5:"email";s:27:"chessprogrammer01@gmail.com";s:6:"gender";s:4:"male";s:12:"custom_title";s:15:"Wayfaring Drama";s:11:"language_id";i:1;s:8:"style_id";i:0;s:8:"timezone";s:15:"America/Phoenix";s:7:"visible";i:1;s:16:"activity_visible";i:0;s:13:"user_group_id";i:2;s:19:"secondary_group_ids";s:10:"4,16,19,20";s:22:"display_style_group_id";i:4;s:25:"permission_combination_id";i:195;s:13:"message_count";i:1455;s:20:"conversations_unread";i:0;s:13:"register_date";i:1452118099;s:13:"last_activity";i:1714881132;s:13:"trophy_points";i:1610;s:13:"alerts_unread";i:1;s:11:"avatar_date";i:0;s:12:"avatar_width";i:0;s:13:"avatar_height";i:0;s:8:"gravatar";s:44:"16b1f5950da74ba6910f8ef01964991e@minotar.net";s:10:"user_state";s:5:"valid";s:12:"is_moderator";i:1;s:8:"is_admin";i:1;s:9:"is_banned";i:0;s:10:"like_count";i:9437;s:14:"warning_points";i:0;s:8:"is_staff";i:1;s:17:"minecraft_profile";s:14:"WanderingLlama";s:7:"mc_uuid";s:32:"16b1f5950da74ba6910f8ef01964991e";s:14:"minecraft_uuid";s:36:"16b1f595-0da7-4ba6-910f-8ef01964991e";s:14:"minecraft_xuid";N;s:20:"minecraft_texture_id";N;s:23:"privacy_policy_accepted";i:0;s:14:"terms_accepted";i:0;s:7:"message";s:996:"Parkour will be under maintenance in order to implement all the new changes. There will be another announcement soon about the relaunch. The server is being reset and relaunched, but we will keep the same spawn and nearly all the same courses. [B] Will the leaderboards be reset?[/B] Yes, the leaderboards will be reset. The record times are still documented on forums, however. [B]Will my levels and progress be reset?[/B] Yes. However, you can get more levels by playing courses with your friends! [B]What new changes are there? Color coded course signs.[/B] This has been a feature for a little while now, but course signs in the Easy, Norm, Hard, and Cray lobbies are now visible and are color coded based on their difficulty. Green are the easy courses, yellow are normal/intermediate, and red are harder courses. This is helpful for seeing the difficulty of a course within the Easy, Norm, Hard, and Cray difficulties. [B]Optional tutorial/training course.[/B] Players will no longer...";s:12:"attach_count";i:0;s:10:"node_title";s:13:"Announcements";s:12:"promote_date";i:1691207520;s:12:"promote_icon";s:6:"avatar";s:12:"promote_data";s:1:"0";s:10:"categories";a:0:{}s:5:"month";O:14:"XenForo_Phrase":4:{s:14:"*_phraseName";s:13:"month_8_short";s:10:"*_params";a:0:{}s:23:"*_insertParamsEscaped";b:1;s:23:"*_phraseNameOnInvalid";b:1;}s:3:"day";s:2:"04";s:8:"showIcon";b:1;}i:6;a:66:{s:9:"thread_id";i:38176;s:7:"node_id";i:66;s:5:"title";s:37:"Bedwars Grand Opening on The Sandlot!";s:11:"reply_count";i:20;s:10:"view_count";i:3816;s:7:"user_id";i:30260;s:8:"username";s:10:"MCtwilight";s:9:"post_date";i:1690063370;s:6:"sticky";i:0;s:16:"discussion_state";s:7:"visible";s:15:"discussion_open";i:1;s:15:"discussion_type";s:0:"";s:13:"first_post_id";i:420580;s:16:"first_post_likes";i:1;s:14:"last_post_date";i:1691338070;s:12:"last_post_id";i:421092;s:17:"last_post_user_id";i:3269;s:18:"last_post_username";s:6:"c0wg0d";s:9:"prefix_id";i:0;s:4:"tags";s:6:"a:0:{}";s:5:"email";s:18:"rrjoella@yahoo.com";s:6:"gender";s:6:"female";s:12:"custom_title";s:16:"Ed Shakespearean";s:11:"language_id";i:1;s:8:"style_id";i:0;s:8:"timezone";s:16:"America/New_York";s:7:"visible";i:1;s:16:"activity_visible";i:1;s:13:"user_group_id";i:2;s:19:"secondary_group_ids";s:10:"4,16,19,20";s:22:"display_style_group_id";i:4;s:25:"permission_combination_id";i:197;s:13:"message_count";i:1674;s:20:"conversations_unread";i:0;s:13:"register_date";i:1494120026;s:13:"last_activity";i:1714882564;s:13:"trophy_points";i:2105;s:13:"alerts_unread";i:0;s:11:"avatar_date";i:0;s:12:"avatar_width";i:0;s:13:"avatar_height";i:0;s:8:"gravatar";s:44:"3ebdc1f4c0764549a5fd521b1ebbc3ee@minotar.net";s:10:"user_state";s:5:"valid";s:12:"is_moderator";i:1;s:8:"is_admin";i:1;s:9:"is_banned";i:0;s:10:"like_count";i:36144;s:14:"warning_points";i:0;s:8:"is_staff";i:1;s:17:"minecraft_profile";s:0:"";s:7:"mc_uuid";s:32:"3ebdc1f4c0764549a5fd521b1ebbc3ee";s:14:"minecraft_uuid";s:36:"3ebdc1f4-c076-4549-a5fd-521b1ebbc3ee";s:14:"minecraft_xuid";N;s:20:"minecraft_texture_id";N;s:23:"privacy_policy_accepted";i:0;s:14:"terms_accepted";i:0;s:7:"message";s:993:"Hi, all! After quite a few months, it's time for the grand opening of Bedwars on The Sandlot! What better way to do this than by adding four new Bedwars maps?! First up, we have StarWars, built by [USER=26817]@WanderingLlama[/USER]! When you're playing this map, you'll be transported straight into the world of Star Wars. Relax in the comfort of your very own TIE Fighter, but be wary of the Death Star when you're out gathering emeralds! Either way, you're guaranteed to have an out of this world experience when playing this map. Next, we have OuttaWater, built by [USER=31213]@RainbowRat2004[/USER]! You won't believe what you're 'seaing' when you 'sea' this map. As soon as you step your fins on the sand of this map, you'll be transported under the sea and be playing Bedwars right next to a giant sea turtle! Swim your way to victory alongside seahorses in this awesome aquatic map. Up next, we have ToriiGates, built by [USER=27713]@sprainedd[/USER]! When you join this map, the...";s:12:"attach_count";i:0;s:10:"node_title";s:13:"Announcements";s:12:"promote_date";i:1690063320;s:12:"promote_icon";s:6:"avatar";s:12:"promote_data";s:1:"0";s:10:"categories";a:0:{}s:5:"month";O:14:"XenForo_Phrase":4:{s:14:"*_phraseName";s:13:"month_7_short";s:10:"*_params";a:0:{}s:23:"*_insertParamsEscaped";b:1;s:23:"*_phraseNameOnInvalid";b:1;}s:3:"day";s:2:"22";s:8:"showIcon";b:1;}i:7;a:66:{s:9:"thread_id";i:38086;s:7:"node_id";i:66;s:5:"title";s:41:"Hard Teams Opens Saturday 7/1 at 12pm EST";s:11:"reply_count";i:282;s:10:"view_count";i:16779;s:7:"user_id";i:12400;s:8:"username";s:7:"trubuhl";s:9:"post_date";i:1686766028;s:6:"sticky";i:0;s:16:"discussion_state";s:7:"visible";s:15:"discussion_open";i:1;s:15:"discussion_type";s:0:"";s:13:"first_post_id";i:418991;s:16:"first_post_likes";i:2;s:14:"last_post_date";i:1691161425;s:12:"last_post_id";i:420958;s:17:"last_post_user_id";i:32828;s:18:"last_post_username";s:9:"ElleMouse";s:9:"prefix_id";i:0;s:4:"tags";s:6:"a:0:{}";s:5:"email";s:28:"wulfgar_stormrider@yahoo.com";s:6:"gender";s:4:"male";s:12:"custom_title";s:15:"The Stinky Sock";s:11:"language_id";i:1;s:8:"style_id";i:0;s:8:"timezone";s:12:"Europe/Minsk";s:7:"visible";i:0;s:16:"activity_visible";i:0;s:13:"user_group_id";i:2;s:19:"secondary_group_ids";s:7:"4,19,20";s:22:"display_style_group_id";i:4;s:25:"permission_combination_id";i:191;s:13:"message_count";i:6217;s:20:"conversations_unread";i:0;s:13:"register_date";i:1368424884;s:13:"last_activity";i:1714885755;s:13:"trophy_points";i:1761;s:13:"alerts_unread";i:1;s:11:"avatar_date";i:1677026526;s:12:"avatar_width";i:193;s:13:"avatar_height";i:192;s:8:"gravatar";s:0:"";s:10:"user_state";s:5:"valid";s:12:"is_moderator";i:1;s:8:"is_admin";i:1;s:9:"is_banned";i:0;s:10:"like_count";i:8086;s:14:"warning_points";i:0;s:8:"is_staff";i:1;s:17:"minecraft_profile";s:7:"trubuhl";s:7:"mc_uuid";s:32:"79682b69dbda4539a5f1bc73a4522ece";s:14:"minecraft_uuid";s:36:"79682b69-dbda-4539-a5f1-bc73a4522ece";s:14:"minecraft_xuid";N;s:20:"minecraft_texture_id";N;s:23:"privacy_policy_accepted";i:0;s:14:"terms_accepted";i:0;s:7:"message";s:998:"[B]Hard Teams Event opening Saturday July 1 @Noon eastern time! [/B] Hard will be closed Wednesday night in preparation for the opening of [B]Hard Teams Event[/B] ON July 1 at noon eastern time. Hard will reset with a mostly Vanilla world (we reserve the right to include surprises), and four teams will compete to see which one can win the event! Anyone can join, new players to Hard are welcome as this is the perfect time to join forces with experienced teammates and play on the Hard server. Player scores will be totalled for each team to determine the final placements at the end of July. More players = more scores for that team so recruiting could matter a lot here! Please choose a Team by replying to this message. You may choose any team you want! [B][COLOR=#4da6ff]Team BigIronMouse[/COLOR][/B] - led by [USER=14398]@big_doogle[/USER], [USER=20023]@Ironstance[/USER], and [USER=32828]@ElleMouse[/USER] you can count on having a great time with these Hard server veterans leading...";s:12:"attach_count";i:0;s:10:"node_title";s:13:"Announcements";s:12:"promote_date";i:1686766020;s:12:"promote_icon";s:6:"avatar";s:12:"promote_data";s:1:"0";s:10:"categories";a:0:{}s:5:"month";O:14:"XenForo_Phrase":4:{s:14:"*_phraseName";s:13:"month_6_short";s:10:"*_params";a:0:{}s:23:"*_insertParamsEscaped";b:1;s:23:"*_phraseNameOnInvalid";b:1;}s:3:"day";s:2:"14";s:8:"showIcon";b:1;}i:8;a:66:{s:9:"thread_id";i:38074;s:7:"node_id";i:66;s:5:"title";s:70:"Minecraft: Bedrock Edition is now officially supported on The Sandlot!";s:11:"reply_count";i:33;s:10:"view_count";i:3880;s:7:"user_id";i:3269;s:8:"username";s:6:"c0wg0d";s:9:"post_date";i:1686519278;s:6:"sticky";i:0;s:16:"discussion_state";s:7:"visible";s:15:"discussion_open";i:1;s:15:"discussion_type";s:0:"";s:13:"first_post_id";i:418903;s:16:"first_post_likes";i:0;s:14:"last_post_date";i:1695477345;s:12:"last_post_id";i:422519;s:17:"last_post_user_id";i:36488;s:18:"last_post_username";s:12:".Geoluxe2551";s:9:"prefix_id";i:0;s:4:"tags";s:89:"a:1:{i:2528;a:2:{s:3:"tag";s:15:"bedrock edition";s:7:"tag_url";s:15:"bedrock-edition";}}";s:5:"email";s:24:"cowgodthegreat@gmail.com";s:6:"gender";s:4:"male";s:12:"custom_title";s:0:"";s:11:"language_id";i:1;s:8:"style_id";i:0;s:8:"timezone";s:15:"America/Phoenix";s:7:"visible";i:1;s:16:"activity_visible";i:1;s:13:"user_group_id";i:2;s:19:"secondary_group_ids";s:12:"3,4,16,17,20";s:22:"display_style_group_id";i:17;s:25:"permission_combination_id";i:193;s:13:"message_count";i:10852;s:20:"conversations_unread";i:0;s:13:"register_date";i:1378097275;s:13:"last_activity";i:1714828723;s:13:"trophy_points";i:2505;s:13:"alerts_unread";i:0;s:11:"avatar_date";i:0;s:12:"avatar_width";i:0;s:13:"avatar_height";i:0;s:8:"gravatar";s:44:"eb42d50edc6f4d48b4b570c7bfa77512@minotar.net";s:10:"user_state";s:5:"valid";s:12:"is_moderator";i:1;s:8:"is_admin";i:1;s:9:"is_banned";i:0;s:10:"like_count";i:26181;s:14:"warning_points";i:0;s:8:"is_staff";i:1;s:17:"minecraft_profile";s:6:"c0wg0d";s:7:"mc_uuid";s:32:"eb42d50edc6f4d48b4b570c7bfa77512";s:14:"minecraft_uuid";s:36:"eb42d50e-dc6f-4d48-b4b5-70c7bfa77512";s:14:"minecraft_xuid";N;s:20:"minecraft_texture_id";N;s:23:"privacy_policy_accepted";i:0;s:14:"terms_accepted";i:0;s:7:"message";s:990:"Exciting news! After a very long period of testing, configuring, more testing, some head scratching, and some computer magic from [USER=23659]@waseric[/USER], I am pleased to announce that The Sandlot now supports [B]Minecraft: Bedrock Edition[/B]! This means you can now play on The Sandlot from the following devices: [LIST] [*]Microsoft Windows 10/11 PC (Minecraft for Windows Edition) [*]Nintendo Switch [*]Xbox One S [*]Xbox One X [*]Xbox Series S [*]Xbox Series X [*]PlayStation 4 [*]PlayStation 5 [*]Android phones and tablets [*]Apple iPhone and iPad [*]Amazon Fire tablets [/LIST] Please bear with us as we start this new adventure together. There are likely going to be bugs, quirks, and oddities that we didn't discover during our testing (and some that we did, but don't have solutions for). There is a lot to cover, so let's get started! I will go over all the Sandlot specific details first, and then device/platform details further down in this post. [SIZE=5]What is...";s:12:"attach_count";i:0;s:10:"node_title";s:13:"Announcements";s:12:"promote_date";i:1686519240;s:12:"promote_icon";s:6:"avatar";s:12:"promote_data";s:1:"0";s:10:"categories";a:0:{}s:5:"month";O:14:"XenForo_Phrase":4:{s:14:"*_phraseName";s:13:"month_6_short";s:10:"*_params";a:0:{}s:23:"*_insertParamsEscaped";b:1;s:23:"*_phraseNameOnInvalid";b:1;}s:3:"day";s:2:"11";s:8:"showIcon";b:1;}i:9;a:66:{s:9:"thread_id";i:38061;s:7:"node_id";i:66;s:5:"title";s:33:"Your help is needed in Adventure!";s:11:"reply_count";i:6;s:10:"view_count";i:2902;s:7:"user_id";i:3269;s:8:"username";s:6:"c0wg0d";s:9:"post_date";i:1686245732;s:6:"sticky";i:0;s:16:"discussion_state";s:7:"visible";s:15:"discussion_open";i:1;s:15:"discussion_type";s:0:"";s:13:"first_post_id";i:418801;s:16:"first_post_likes";i:1;s:14:"last_post_date";i:1689875577;s:12:"last_post_id";i:420514;s:17:"last_post_user_id";i:35043;s:18:"last_post_username";s:8:"AugDog74";s:9:"prefix_id";i:0;s:4:"tags";s:74:"a:1:{i:654;a:2:{s:3:"tag";s:9:"adventure";s:7:"tag_url";s:9:"adventure";}}";s:5:"email";s:24:"cowgodthegreat@gmail.com";s:6:"gender";s:4:"male";s:12:"custom_title";s:0:"";s:11:"language_id";i:1;s:8:"style_id";i:0;s:8:"timezone";s:15:"America/Phoenix";s:7:"visible";i:1;s:16:"activity_visible";i:1;s:13:"user_group_id";i:2;s:19:"secondary_group_ids";s:12:"3,4,16,17,20";s:22:"display_style_group_id";i:17;s:25:"permission_combination_id";i:193;s:13:"message_count";i:10852;s:20:"conversations_unread";i:0;s:13:"register_date";i:1378097275;s:13:"last_activity";i:1714828723;s:13:"trophy_points";i:2505;s:13:"alerts_unread";i:0;s:11:"avatar_date";i:0;s:12:"avatar_width";i:0;s:13:"avatar_height";i:0;s:8:"gravatar";s:44:"eb42d50edc6f4d48b4b570c7bfa77512@minotar.net";s:10:"user_state";s:5:"valid";s:12:"is_moderator";i:1;s:8:"is_admin";i:1;s:9:"is_banned";i:0;s:10:"like_count";i:26181;s:14:"warning_points";i:0;s:8:"is_staff";i:1;s:17:"minecraft_profile";s:6:"c0wg0d";s:7:"mc_uuid";s:32:"eb42d50edc6f4d48b4b570c7bfa77512";s:14:"minecraft_uuid";s:36:"eb42d50e-dc6f-4d48-b4b5-70c7bfa77512";s:14:"minecraft_xuid";N;s:20:"minecraft_texture_id";N;s:23:"privacy_policy_accepted";i:0;s:14:"terms_accepted";i:0;s:7:"message";s:997:"Hello everyone! I proposed some changes several years ago to the Adventure server, which you can read about here: [URL]https://www.sandlotminecraft.com/threads/adventure-discussion-feedback-requested.35706/[/URL] I am going to begin implementing these changes soon, and I need your help. One of the things I am planning on doing is "polishing" the Hogwarts map. What this means is that I need everyone who can help to go into Adventure and look for the following list of things, and posting either the coordinates and a description of what you found, or a screenshot with your F3 debug menu on so I can see the coordinates and what you are looking at: [LIST] [*]Monster spawner blocks [*]Floating leaves or blocks that look out of place [*]Blocks like stairs or chests that are sideways/backwards [*]Broken signs or redstone devices [*]Signs with typos on them [*]Areas that seem like they should not be accessible [*]Holes in the barrier/glass wall that shouldn't be there [/LIST] I would...";s:12:"attach_count";i:0;s:10:"node_title";s:13:"Announcements";s:12:"promote_date";i:1686245700;s:12:"promote_icon";s:6:"avatar";s:12:"promote_data";s:1:"0";s:10:"categories";a:0:{}s:5:"month";O:14:"XenForo_Phrase":4:{s:14:"*_phraseName";s:13:"month_6_short";s:10:"*_params";a:0:{}s:23:"*_insertParamsEscaped";b:1;s:23:"*_phraseNameOnInvalid";b:1;}s:3:"day";s:2:"08";s:8:"showIcon";b:1;}}}, 1714902332
    Run Time: 0.000573
  28. commit
    Run Time: 0.000543
  29. SELECT *
    FROM xf_herodev_minecraft_server
    WHERE active = 1
    ORDER BY display_order
    Run Time: 0.000201
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_herodev_minecraft_serverALL    1Using where; Using filesort
  30. SELECT data_value
    FROM xf_data_registry
    WHERE data_key = ?
    Params: dark_postrating_ratings
    Run Time: 0.000152
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  31. SELECT thread.*
    	,
    	user.*, IF(user.username IS NULL, thread.username, user.username) AS username,
    	node.title AS node_title, node.node_name,
    	NULL AS thread_read_date,
    	0 AS thread_is_watched,
    	0 AS user_post_count,
    permission.cache_value AS node_permission_cache,
    	pr_cache.rating_cache
    FROM xf_thread AS thread
    
    	LEFT JOIN xf_user AS user ON
    		(user.user_id = thread.user_id)
    	LEFT JOIN xf_node AS node ON
    		(node.node_id = thread.node_id)
    LEFT JOIN xf_permission_cache_content AS permission
    	ON (permission.permission_combination_id = 1
    		AND permission.content_type = 'node'
    		AND permission.content_id = thread.node_id)
    	left join dark_postrating_post_cache pr_cache ON (thread.first_post_id = pr_cache.post_id)
    WHERE (thread.discussion_state IN ('visible')) AND (thread.last_post_date > 1714815932)
    ORDER BY thread.last_post_date DESC
     LIMIT 7
    Run Time: 0.000764
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadrangelast_post_datelast_post_date4 11Using index condition; Using where
    SIMPLEusereq_refPRIMARYPRIMARY4xenforo.thread.user_id1 
    SIMPLEnodeeq_refPRIMARYPRIMARY4xenforo.thread.node_id1 
    SIMPLEpermissioneq_refPRIMARYPRIMARY35const,const,xenforo.thread.node_id1Using where
    SIMPLEpr_cacheeq_refPRIMARYPRIMARY4xenforo.thread.first_post_id1 
  32. SELECT cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = ?
    	AND content_id = ?
    Params: 1, node, 86
    Run Time: 0.000152
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentconstPRIMARYPRIMARY35const,const,const1 
  33. SELECT cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = ?
    	AND content_id = ?
    Params: 1, node, 30
    Run Time: 0.000118
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentconstPRIMARYPRIMARY35const,const,const1 
  34. SELECT cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = ?
    	AND content_id = ?
    Params: 1, node, 16
    Run Time: 0.000107
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentconstPRIMARYPRIMARY35const,const,const1 
  35. SELECT cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = ?
    	AND content_id = ?
    Params: 1, node, 31
    Run Time: 0.000105
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentconstPRIMARYPRIMARY35const,const,const1 
  36. SELECT cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = ?
    	AND content_id = ?
    Params: 1, node, 91
    Run Time: 0.000105
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentconstPRIMARYPRIMARY35const,const,const1 
  37. SELECT cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = ?
    	AND content_id = ?
    Params: 1, node, 8
    Run Time: 0.000132
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentconstPRIMARYPRIMARY35const,const,const1 
  38. SELECT session_activity.*
    	,
    	user.*
    FROM xf_session_activity AS session_activity
    
    	LEFT JOIN xf_user AS user ON
    		(user.user_id = session_activity.user_id)
    WHERE (session_activity.view_date > 1714901432)
    ORDER BY session_activity.view_date DESC
    Run Time: 0.001635
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEsession_activityrangeview_dateview_date4 130Using where
    SIMPLEusereq_refPRIMARYPRIMARY4xenforo.session_activity.user_id1 
  39. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('page_nav', 'bb_code_tag_code', 'bb_code_tag_php', 'bb_code_tag_html', 'bb_code_tag_quote', 'bb_code_tag_attach', 'bb_code_tag_spoiler', 'EWRblock_RecentNews', 'EWRblock_HtmlBlock', 'EWRblock_MinecraftServerStatus', 'EWRblock_RecentThreads', 'EWRblock_OnlineUsers', 'EWRporta_Portal', 'nat_childlinks')
    	AND style_id = ?
    	AND language_id = ?
    Params: 1, 1
    Run Time: 0.000282
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 14Using where
  40. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('home')
    Params: 1
    Run Time: 0.000118
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledconstPRIMARYPRIMARY106const,const1 
  41. SELECT node.*,
    	permission.cache_value AS node_permission_cache
    FROM xf_node AS node
    LEFT JOIN xf_permission_cache_content AS permission
    	ON (permission.permission_combination_id = ?
    	AND permission.content_type = 'node'
    	AND permission.content_id = node.node_id)
    WHERE node.node_id IN (89, 68, 70, 99, 100, 101, 102, 103, 104, 95, 97, 93)
    ORDER BY node.lft
    ASC
    Params: 1
    Run Time: 0.000351
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnoderangePRIMARYPRIMARY4 12Using where; Using filesort
    SIMPLEpermissioneq_refPRIMARYPRIMARY35const,const,xenforo.node.node_id1Using where
  42. SELECT ban_appeal.*
    	,
    	appeal_review.user_id AS review_user_id, appeal_review.date AS review_date
    FROM xf_liam_cheracc_ban_appeal AS ban_appeal 
    	LEFT JOIN xf_liam_cheracc_ban_appeal_review AS appeal_review ON
    		(appeal_review.appeal_id = ban_appeal.appeal_id)
    
    WHERE (appeal_review.date IS NULL)
    Run Time: 0.004038
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEban_appealALL    636 
    SIMPLEappeal_revieweq_refPRIMARYPRIMARY4xenforo.ban_appeal.appeal_id1Using where; Not exists
  43. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('EWRporta_Navtabs', 'nat_linkstemplate', 'dark_postrating', 'dark_postrating_member', 'dark_postrating_member_totals', 'message_user_info_extra', 'user_criteria_content', 'thread_list_item_icon_key', 'dark_postrating_member_notable_tabs', 'dark_postrating_account_wrapper', 'dark_postrating_navigation_visitor_tab', 'dark_postrating_visitor_panel', 'dark_postrating_member_card', 'dark_postrating_member_info', 'dark_postrating_message_user_info', 'minecraft_EXTRA.css', 'PAGE_CONTAINER')
    	AND style_id = ?
    	AND language_id = ?
    Params: 1, 1
    Run Time: 0.000412
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 17Using where
  44. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('nat_bodyjs')
    	AND style_id = ?
    	AND language_id = ?
    Params: 1, 1
    Run Time: 0.000140
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 

Included Files (124, 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/NodesAsTabs/Listen.php
  33. library/LiamW/ConversationMonitoring/Listener.php
  34. library/Nobita/MinecraftAvatar/Listener.php
  35. library/XenForo/Router.php
  36. library/XenForo/Route/Filter.php
  37. library/XenForo/Route/Interface.php
  38. library/XenForo/Route/ResponseSuffix.php
  39. library/XenForo/Route/Prefix.php
  40. library/XenForo/Route/Prefix/Index.php
  41. library/EWRporta/Listener/Route.php
  42. library/XenForo/RouteMatch.php
  43. library/XenForo/ControllerPublic/Index.php
  44. library/XenForo/ControllerPublic/Abstract.php
  45. library/XenForo/Controller.php
  46. library/EWRporta/Listener/Controller.php
  47. library/Dark/PostRating/EventListener.php
  48. library/XenForo/Input.php
  49. library/XenForo/Session.php
  50. library/XenForo/Helper/Ip.php
  51. library/XenForo/Visitor.php
  52. library/XenForo/Model/User.php
  53. library/EWRporta/Listener/Model.php
  54. library/Dark/PostRating/Model/User.php
  55. library/XenForo/Permission.php
  56. library/XenForo/Helper/Php.php
  57. library/XenForo/Phrase.php
  58. library/XenForo/Locale.php
  59. library/XenForo/ControllerResponse/ReroutePath.php
  60. library/XenForo/ControllerResponse/Abstract.php
  61. library/EWRporta/Route/Portal.php
  62. library/EWRporta/ControllerPublic/Portal.php
  63. library/EWRporta/Model/Perms.php
  64. library/XenForo/ControllerResponse/View.php
  65. library/XenForo/Helper/Cookie.php
  66. library/XenForo/ViewRenderer/HtmlPublic.php
  67. library/XenForo/ViewRenderer/Abstract.php
  68. library/XenForo/Template/Public.php
  69. library/XenForo/Template/Abstract.php
  70. library/EWRporta/ViewPublic/Portal.php
  71. library/XenForo/ViewPublic/Base.php
  72. library/XenForo/View.php
  73. library/EWRporta/Listener/ViewPublic.php
  74. library/EWRporta/ViewPublic/Custom.php
  75. library/EWRporta/Model/Blocks.php
  76. library/EWRporta/Model/Layouts.php
  77. library/EWRporta/Model/Caches.php
  78. library/EWRporta/Model/Options.php
  79. library/EWRporta/Block/RecentNews.php
  80. library/EWRporta/Model/Categories.php
  81. library/XenForo/Model/Attachment.php
  82. library/EWRporta/Model/Attachment.php
  83. library/XenForo/Route/Prefix/Attachments.php
  84. library/XenForo/Helper/String.php
  85. library/XenForo/DataWriter.php
  86. library/EWRporta/DataWriter/Caches.php
  87. library/EWRporta/Listener/DataWriter.php
  88. library/XenForo/Db.php
  89. library/XenForo/BbCode/Parser.php
  90. library/XenForo/BbCode/Formatter/Base.php
  91. library/EWRporta/Listener/BbCode.php
  92. library/EWRporta/BbCode/Formatter.php
  93. library/XenForo/ViewPublic/Helper/Message.php
  94. library/XenForo/BbCode/TextWrapper.php
  95. library/EWRporta/Block/MinecraftServerStatus.php
  96. library/HeroDev/MinecraftStatus/Model/MinecraftServer.php
  97. library/EWRporta/Block/RecentThreads.php
  98. library/XenForo/Model/Thread.php
  99. library/Dark/PostRating/Model/Thread.php
  100. library/Dark/PostRating/Model.php
  101. library/XenForo/Model/PermissionCache.php
  102. library/XenForo/Model/Forum.php
  103. library/EWRporta/Block/OnlineUsers.php
  104. library/XenForo/Model/Session.php
  105. library/Dark/PostRating/Model/Session.php
  106. library/XenForo/Route/Prefix/Members.php
  107. library/EWRporta/Listener/NavTabs.php
  108. library/LiamW/CheraccBanAppeal/Listener.php
  109. library/NodesAsTabs/NavTabs.php
  110. library/NodesAsTabs/Model/Options.php
  111. library/XenForo/Model/Node.php
  112. library/XenForo/Route/Prefix/Pages.php
  113. library/XenForo/Route/Prefix/LinkForums.php
  114. library/XenForo/Route/Prefix/Forums.php
  115. library/LiamW/CheraccBanAppeal/Model/BanAppeal.php
  116. library/XenForo/Route/Prefix/Threads.php
  117. library/EWRporta/Route/Thread.php
  118. library/Nobita/MinecraftAvatar/Template/Helper/Core.php
  119. library/Nobita/MinecraftAvatar/Guard.php
  120. library/Nobita/MinecraftAvatar/Avatar.php
  121. library/XenForo/Model/Avatar.php
  122. library/XenForo/Debug.php
  123. library/EWRporta/Listener/Template.php
  124. library/XenForo/ViewRenderer/Json.php