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.000329
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_data_registry | ALL | PRIMARY | | | | 36 | Using where |
SELECT cache_value
FROM xf_permission_combination
WHERE permission_combination_id = ?
Params: 1
Run Time: 0.000116
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_permission_combination | const | PRIMARY | PRIMARY | 4 | const | 1 | |
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: 483089
Run Time: 0.000150
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | thread | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SIMPLE | user | const | PRIMARY | PRIMARY | 4 | const | 1 | |
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: 59
Run Time: 0.000179
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | forum | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SIMPLE | node | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SIMPLE | permission | const | PRIMARY | PRIMARY | 35 | const,const,const | 1 | |
SELECT post.*
,
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
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 < 20)
AND (post.message_state IN ('visible'))
ORDER BY post.position ASC, post.post_date ASC
Params: 483089
Run Time: 0.001530
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | post | range | thread_id_post_date,thread_id_position | thread_id_position | 8 | | 20 | Using index condition; Using where; Using filesort |
SIMPLE | bb_code_parse_cache | eq_ref | content_type_id | content_type_id | 31 | const,cowboyszone.post.post_id | 1 | Using where |
SIMPLE | user | eq_ref | PRIMARY | PRIMARY | 4 | cowboyszone.post.user_id | 1 | |
SIMPLE | user_profile | eq_ref | PRIMARY | PRIMARY | 4 | cowboyszone.post.user_id | 1 | |
SIMPLE | user_privacy | eq_ref | PRIMARY | PRIMARY | 4 | cowboyszone.post.user_id | 1 | |
SIMPLE | signature_parse_cache | eq_ref | content_type_id | content_type_id | 31 | const,cowboyszone.post.user_id | 1 | Using where |
SIMPLE | session_activity | eq_ref | PRIMARY | PRIMARY | 22 | cowboyszone.post.user_id,func | 1 | Using where |
INSERT DELAYED INTO xf_thread_view
(thread_id)
VALUES
(?)
Params: 483089
Run Time: 0.000059
INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
Params: 95d83303707b2b619c68a1b35ad80eac, , 1656610591
Run Time: 0.000144
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=483089, 1656606991,
Run Time: 0.000071
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', 'thread_view', 'dark_taigachat', 'dark_taigachat_list', 'siropu_custom_tabs_child_list', 'PAGE_CONTAINER')
AND style_id = ?
AND language_id = ?
Params: 1, 1
Run Time: 0.000246
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | range | PRIMARY | PRIMARY | 60 | | 12 | Using where |
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, 11154900, a:1:{i:0;s:359:"Connor Williams is not a pro football player No matter how much you like his story.
Anthony Brown is the in the Breath of Alundis Brice , Daryl Worley , Alan Ball, Jacques Reeves bad .
How is he still on the team.
Jaylon Smith - his act is old , his antics , his lack of lateral speed , his misreads - the time has come.
He’s not a pro football player .";}, 1616548147, 1656606991
Run Time: 0.001088
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, 11154922, a:1:{i:0;s:25:"Jaylon needs to go ASAP .";}, 1616548147, 1656606991
Run Time: 0.000276
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, 11154925, a:1:{i:0;s:70:"All overreactions.
Brown was atrocious but rallied later in the game.";}, 1616548147, 1656606991
Run Time: 0.000595
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, 11154940, a:1:{i:0;s:83:"Agreed.
Release the entire team and shut it down til next year! This is blasphemy!";}, 1616548147, 1656606991
Run Time: 0.000266
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, 11154984, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:42:"DustyRhodes, post: 11154900, member: 41780";s:8:"original";a:2:{i:0;s:52:"[QUOTE="DustyRhodes, post: 11154900, member: 41780"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:357:"Connor Williams is not a pro football player No matter how much you like his story.
Anthony Brown is the in the Breath of Alundis Brice , Daryl Worley , Alan Ball, Jacques Reeves bad .
How is he still on the team.
Jaylon Smith - his act is old , his antics , his lack of lateral speed , his misreads - the time has come.
He’s not a pro football player .";}}i:1;s:196:"
Connor Williams consistently grades as an above average league lineman. Out of 84 snaps he’s going to get overpowered a few times. Vea looked like he saved some in the tank for the last series.";}, 1616548147, 1656606991
Run Time: 0.000234
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, 11155041, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:31:"Ken, post: 11154925, member: 89";s:8:"original";a:2:{i:0;s:41:"[QUOTE="Ken, post: 11154925, member: 89"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:70:"All overreactions.
Brown was atrocious but rallied later in the game.";}}i:1;s:5:"
Stop";}, 1616548147, 1656606991
Run Time: 0.000268
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, 11155059, a:1:{i:0;s:20:"100 % agree on brown";}, 1616548147, 1656606991
Run Time: 0.001624
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, 11155066, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:44:"Parcells4Life, post: 11154984, member: 26083";s:8:"original";a:2:{i:0;s:54:"[QUOTE="Parcells4Life, post: 11154984, member: 26083"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:195:"Connor Williams consistently grades as an above average league lineman. Out of 84 snaps he’s going to get overpowered a few times. Vea looked like he saved some in the tank for the last series.";}}i:1;s:105:"
He’s atrocious - he’s lanky - you don’t fix that .
His penalties at the worst times are egregious.";}, 1616548147, 1656606991
Run Time: 0.000279
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, 11155072, a:1:{i:0;s:88:"Let's tank for LSU CB Derek Stingly Jr.
:lmao:
One game does not make a season. Relax .";}, 1616548147, 1656606991
Run Time: 0.000435
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, 11155107, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:31:"Ken, post: 11154925, member: 89";s:8:"original";a:2:{i:0;s:41:"[QUOTE="Ken, post: 11154925, member: 89"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:70:"All overreactions.
Brown was atrocious but rallied later in the game.";}}i:1;s:655:"
Agreed.
CWill? I couldn't care less about his "story", but he is a NFL caliber OLman. He may be the worst starter on our oline, but he would not be the worst starting olineman on ~30 NFL teams. He's average-to-good, just not great. He went against Suh and Vea and Dak did not get smashed. I mean, that is a good thing, right?
Brown was abused in the 1st half, but didn't play all that bad the 2nd half. I rather play Joseph or Wright out there myself, and I think we will see that sooner than later.
Jaylon ..... I wouldn't cry if he was released or traded, but he made 2 good plays this game and that is an improvement over last year.
:thumbup:";}, 1616548147, 1656606991
Run Time: 0.000292
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, 11155123, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:42:"DustyRhodes, post: 11154900, member: 41780";s:8:"original";a:2:{i:0;s:52:"[QUOTE="DustyRhodes, post: 11154900, member: 41780"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:357:"Connor Williams is not a pro football player No matter how much you like his story.
Anthony Brown is the in the Breath of Alundis Brice , Daryl Worley , Alan Ball, Jacques Reeves bad .
How is he still on the team.
Jaylon Smith - his act is old , his antics , his lack of lateral speed , his misreads - the time has come.
He’s not a pro football player .";}}i:1;s:292:"
This Connor Williams hate is so ignorant. You guys have absolutely no idea what you're looking at. He had one or two bad plays against possibly the best interior DL in the league. He grossly outplayed McGovern but that guy is the new cult hero around here.
Absolute foolishness all around.";}, 1616548147, 1656606991
Run Time: 0.000243
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, 11155145, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:42:"DustyRhodes, post: 11155066, member: 41780";s:8:"original";a:2:{i:0;s:52:"[QUOTE="DustyRhodes, post: 11155066, member: 41780"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:104:"He’s atrocious - he’s lanky - you don’t fix that .
His penalties at the worst times are egregious.";}}i:1;s:268:"
He’s not atrocious according to the guys that actually grade the tape. He does get overpowered a few times per game and I’d rather he hold than let Dak get destroyed.
I’m not saying they shouldn’t look for an upgrade but he’s not Chaz Green or Alex Barron";}, 1616548147, 1656606991
Run Time: 0.000242
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, 11155152, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:42:"DustyRhodes, post: 11155066, member: 41780";s:8:"original";a:2:{i:0;s:52:"[QUOTE="DustyRhodes, post: 11155066, member: 41780"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:104:"He’s atrocious - he’s lanky - you don’t fix that .
His penalties at the worst times are egregious.";}}i:1;s:129:"
I hate that he is lanky, definitely can't fix that.
Had a girlfriend one time that was lanky, she was lanky everywhere she went.";}, 1616548147, 1656606991
Run Time: 0.000607
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, 11155157, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:42:"DustyRhodes, post: 11154900, member: 41780";s:8:"original";a:2:{i:0;s:52:"[QUOTE="DustyRhodes, post: 11154900, member: 41780"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:357:"Connor Williams is not a pro football player No matter how much you like his story.
Anthony Brown is the in the Breath of Alundis Brice , Daryl Worley , Alan Ball, Jacques Reeves bad .
How is he still on the team.
Jaylon Smith - his act is old , his antics , his lack of lateral speed , his misreads - the time has come.
He’s not a pro football player .";}}i:1;s:82:"
Brown is awful - but he is ok as a 4th stringer
no issues with Connor Williams";}, 1616548147, 1656606991
Run Time: 0.000224
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, 11155195, a:1:{i:0;s:16:"Add Greg the Leg";}, 1616548147, 1656606991
Run Time: 0.000220
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, 11155196, a:1:{i:0;s:118:"Anthony Brown should never be on an island with someone of Antonio Browns caliber and speed. Thats a coaching mistake.";}, 1616548147, 1656606991
Run Time: 0.000455
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, 11155215, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:51:"Oz-of-Cowboy-Country, post: 11155072, member: 40896";s:8:"original";a:2:{i:0;s:61:"[QUOTE="Oz-of-Cowboy-Country, post: 11155072, member: 40896"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:87:"Let's tank for LSU CB Derek Stingly Jr.
:lmao:
One game does not make a season. Relax .";}}i:1;s:41:"
I would be ecstatic if you guys got him";}, 1616548147, 1656606991
Run Time: 0.000248
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, 11155223, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:42:"DustyRhodes, post: 11154900, member: 41780";s:8:"original";a:2:{i:0;s:52:"[QUOTE="DustyRhodes, post: 11154900, member: 41780"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:357:"Connor Williams is not a pro football player No matter how much you like his story.
Anthony Brown is the in the Breath of Alundis Brice , Daryl Worley , Alan Ball, Jacques Reeves bad .
How is he still on the team.
Jaylon Smith - his act is old , his antics , his lack of lateral speed , his misreads - the time has come.
He’s not a pro football player .";}}i:1;s:86:"
Lol! Release Jones and take a 10 million dollar loss? I'd rather keep him as a backup";}, 1616548147, 1656606991
Run Time: 0.000236
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, 11155241, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:39:"Ranching, post: 11155223, member: 36670";s:8:"original";a:2:{i:0;s:49:"[QUOTE="Ranching, post: 11155223, member: 36670"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:85:"Lol! Release Jones and take a 10 million dollar loss? I'd rather keep him as a backup";}}i:1;s:115:"
I genuinely don’t remember seeing Jaylon on the field more than once or twice… how much did he actually play?";}, 1616548147, 1656606991
Run Time: 0.000221
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, 11155268, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:42:"DustyRhodes, post: 11154900, member: 41780";s:8:"original";a:2:{i:0;s:52:"[QUOTE="DustyRhodes, post: 11154900, member: 41780"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:357:"Connor Williams is not a pro football player No matter how much you like his story.
Anthony Brown is the in the Breath of Alundis Brice , Daryl Worley , Alan Ball, Jacques Reeves bad .
How is he still on the team.
Jaylon Smith - his act is old , his antics , his lack of lateral speed , his misreads - the time has come.
He’s not a pro football player .";}}i:1;s:73:"
This forum continues to be hilarious after a loss. Thank you. :muttley:";}, 1616548147, 1656606991
Run Time: 0.000445