From 4c91977e38490bed9f736fb2a84778793a937247 Mon Sep 17 00:00:00 2001 From: Alessio Date: Sun, 20 Aug 2023 18:29:55 -0300 Subject: [PATCH] Add parsing of HomeTimeline (not For You) --- pkg/scraper/api_types_v2.go | 72 ++++++++++++++++++- pkg/scraper/api_types_v2_test.go | 18 ++++- .../test_responses/api_v2/home_timeline.json | 1 + 3 files changed, 89 insertions(+), 2 deletions(-) create mode 100644 pkg/scraper/test_responses/api_v2/home_timeline.json diff --git a/pkg/scraper/api_types_v2.go b/pkg/scraper/api_types_v2.go index 7d14bea..f7c8581 100644 --- a/pkg/scraper/api_types_v2.go +++ b/pkg/scraper/api_types_v2.go @@ -428,10 +428,12 @@ func (e APIV2Entry) ToTweetTrove() TweetTrove { ret := NewTweetTrove() parts := strings.Split(e.EntryID, "-") - if parts[0] == "homeConversation" || parts[0] == "conversationthread" || strings.Join(parts[0:2], "-") == "profile-conversation" { + if parts[0] == "homeConversation" || parts[0] == "conversationthread" || + strings.Join(parts[0:2], "-") == "profile-conversation" || strings.Join(parts[0:2], "-") == "home-conversation" { // Process it. // - "profile-conversation": conversation thread on a user feed // - "homeConversation": This looks like it got changed to "profile-conversation" + // - "home-conversation": probably same as above lol-- someone did some refactoring // - "conversationthread": conversation thread in the replies under a TweetDetail view for _, item := range e.Content.Items { if item.Item.ItemContent.ItemType == "TimelineTimelineCursor" { @@ -504,6 +506,11 @@ type APIV2Instruction struct { type APIV2Response struct { Data struct { + Home struct { + HomeTimelineUrt struct { + Instructions []APIV2Instruction `json:"instructions"` + } `json:"home_timeline_urt"` + } `json:"home"` User struct { Result struct { TimelineV2 struct { // "Likes" feed calls this "timeline_v2" for some reason @@ -543,6 +550,12 @@ func (api_response APIV2Response) GetMainInstruction() *APIV2Instruction { return &instructions[i] } } + instructions = api_response.Data.Home.HomeTimelineUrt.Instructions + for i := range instructions { + if instructions[i].Type == "TimelineAddEntries" { + return &instructions[i] + } + } panic("No 'TimelineAddEntries' found") } @@ -924,3 +937,60 @@ func (api API) GetUserLikes(user_id UserID, cursor string) (TweetTrove, error) { func GetUserLikes(user_id UserID, cursor string) (TweetTrove, error) { return the_api.GetUserLikes(user_id, cursor) } + +func (api API) GetHomeTimeline(cursor string) (TweetTrove, error) { + url := "https://twitter.com/i/api/graphql/W4Tpu1uueTGK53paUgxF0Q/HomeTimeline" + body_struct := struct { + Variables GraphqlVariables `json:"variables"` + Features GraphqlFeatures `json:"features"` + QueryID string `json:"queryId"` + }{ + Variables: GraphqlVariables{ + Count: 40, + Cursor: cursor, + IncludePromotedContent: false, + // LatestControlAvailable: true, // TODO: new field? + WithCommunity: true, + // SeenTweetIDs: []string{"...some TweetIDs"}? // TODO: new field? + }, + Features: GraphqlFeatures{ + RWebListsTimelineRedesignEnabled: true, + ResponsiveWebGraphqlExcludeDirectiveEnabled: true, + VerifiedPhoneLabelEnabled: false, + CreatorSubscriptionsTweetPreviewApiEnabled: true, + ResponsiveWebGraphqlTimelineNavigationEnabled: true, + ResponsiveWebGraphqlSkipUserProfileImageExtensionsEnabled: false, + TweetypieUnmentionOptimizationEnabled: true, + ResponsiveWebEditTweetApiEnabled: true, + GraphqlIsTranslatableRWebTweetIsTranslatableEnabled: true, + ViewCountsEverywhereApiEnabled: true, + LongformNotetweetsConsumptionEnabled: true, + TweetAwardsWebTippingEnabled: false, + FreedomOfSpeechNotReachFetchEnabled: false, + StandardizedNudgesMisinfo: true, + TweetWithVisibilityResultsPreferGqlLimitedActionsPolicyEnabled: true, + LongformNotetweetsRichTextReadEnabled: true, + LongformNotetweetsInlineMediaEnabled: true, + ResponsiveWebEnhanceCardsEnabled: false, + }, + QueryID: "W4Tpu1uueTGK53paUgxF0Q", + } + var response APIV2Response + body_bytes, err := json.Marshal(body_struct) + if err != nil { + panic(err) + } + err = api.do_http_POST(url, string(body_bytes), &response) + if err != nil { + panic(err) + } + trove, err := response.ToTweetTrove() + if err != nil { + return TweetTrove{}, err + } + return trove, err +} + +func GetHomeTimeline(cursor string) (TweetTrove, error) { + return the_api.GetHomeTimeline(cursor) +} diff --git a/pkg/scraper/api_types_v2_test.go b/pkg/scraper/api_types_v2_test.go index 9b302ff..2994e92 100644 --- a/pkg/scraper/api_types_v2_test.go +++ b/pkg/scraper/api_types_v2_test.go @@ -1,9 +1,10 @@ package scraper_test import ( + "testing" + "encoding/json" "os" - "testing" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" @@ -867,6 +868,21 @@ func TestTweetDetailWithUnjoinedNontombstoneTweet(t *testing.T) { assert.Equal(t2.ID, t3.InReplyToID) } +func TestParseHomeTimeline(t *testing.T) { + require := require.New(t) + data, err := os.ReadFile("test_responses/api_v2/home_timeline.json") + require.NoError(err) + var response_result APIV2Response + err = json.Unmarshal(data, &response_result) + require.NoError(err) + + trove, err := response_result.ToTweetTrove() + require.NoError(err) + + require.Len(trove.Tweets, 13) + require.Len(trove.Users, 11) +} + func TestParseResultAsLikes(t *testing.T) { assert := assert.New(t) require := require.New(t) diff --git a/pkg/scraper/test_responses/api_v2/home_timeline.json b/pkg/scraper/test_responses/api_v2/home_timeline.json new file mode 100644 index 0000000..7b20d04 --- /dev/null +++ b/pkg/scraper/test_responses/api_v2/home_timeline.json @@ -0,0 +1 @@ +{"data":{"home":{"home_timeline_urt":{"instructions":[{"type":"TimelineAddEntries","entries":[{"entryId":"home-conversation-1693328484486217783","sortIndex":"1693360639948357632","content":{"entryType":"TimelineTimelineModule","__typename":"TimelineTimelineModule","items":[{"entryId":"home-conversation-1693328484486217783-tweet-1693328484486217783","item":{"itemContent":{"itemType":"TimelineTweet","__typename":"TimelineTweet","tweet_results":{"result":{"__typename":"Tweet","rest_id":"1693328484486217783","core":{"user_results":{"result":{"__typename":"User","id":"VXNlcjoxNTk1NTAwMzA3Mzc0ODI5NTY4","rest_id":"1595500307374829568","affiliates_highlighted_label":{},"has_graduated_access":true,"is_blue_verified":false,"profile_image_shape":"Circle","legacy":{"following":true,"can_dm":false,"can_media_tag":true,"created_at":"Wed Nov 23 19:31:41 +0000 2022","default_profile":true,"default_profile_image":false,"description":"1.979.319.552","entities":{"description":{"urls":[]},"url":{"urls":[{"display_url":"spandrell.com","expanded_url":"https://spandrell.com","url":"https://t.co/N0W9vEKbWG","indices":[0,23]}]}},"fast_followers_count":0,"favourites_count":15102,"followers_count":6349,"friends_count":126,"has_custom_timelines":true,"is_translator":false,"listed_count":28,"location":"","media_count":208,"name":"Spandrell","normal_followers_count":6349,"pinned_tweet_ids_str":["1669025729869398016"],"possibly_sensitive":false,"profile_banner_url":"https://pbs.twimg.com/profile_banners/1595500307374829568/1675611539","profile_image_url_https":"https://pbs.twimg.com/profile_images/1613209845444009984/NtjJ3iOC_normal.jpg","profile_interstitial_type":"","screen_name":"spandrell3","statuses_count":8414,"translator_type":"none","url":"https://t.co/N0W9vEKbWG","verified":false,"want_retweets":true,"withheld_in_countries":[]}}}},"edit_control":{"edit_tweet_ids":["1693328484486217783"],"editable_until_msecs":"1692559545000","is_edit_eligible":true,"edits_remaining":"5"},"is_translatable":false,"views":{"count":"1494","state":"EnabledWithCount"},"source":"Twitter Web App","quoted_status_result":{"result":{"__typename":"Tweet","rest_id":"1693322368486097035","core":{"user_results":{"result":{"__typename":"User","id":"VXNlcjoxMTc5Mzk2OTcyMzI0ODAyNTYx","rest_id":"1179396972324802561","affiliates_highlighted_label":{},"has_graduated_access":true,"is_blue_verified":true,"profile_image_shape":"Circle","legacy":{"can_dm":true,"can_media_tag":false,"created_at":"Wed Oct 02 14:05:37 +0000 2019","default_profile":true,"default_profile_image":false,"description":"\"Science denialist\" -Chelsea Clinton; \"One of Twitter's biggest COVID nincompoops\" -JayMan; “well known for Covid minimizing” -long covid spam account","entities":{"description":{"urls":[]},"url":{"urls":[{"display_url":"eugyppius.com","expanded_url":"https://www.eugyppius.com","url":"https://t.co/6px7Md3DEO","indices":[0,23]}]}},"fast_followers_count":0,"favourites_count":84399,"followers_count":54548,"friends_count":723,"has_custom_timelines":true,"is_translator":false,"listed_count":369,"location":"Deutschland","media_count":2597,"name":"eugyppius","normal_followers_count":54548,"pinned_tweet_ids_str":["1693276609548075149"],"possibly_sensitive":false,"profile_banner_url":"https://pbs.twimg.com/profile_banners/1179396972324802561/1630234378","profile_image_url_https":"https://pbs.twimg.com/profile_images/1179397946506432515/ilFi_Wnc_normal.jpg","profile_interstitial_type":"","screen_name":"eugyppius1","statuses_count":34553,"translator_type":"none","url":"https://t.co/6px7Md3DEO","verified":false,"want_retweets":false,"withheld_in_countries":[]}}}},"edit_control":{"edit_tweet_ids":["1693322368486097035"],"editable_until_msecs":"1692558087000","is_edit_eligible":false,"edits_remaining":"5"},"is_translatable":false,"views":{"count":"9946","state":"EnabledWithCount"},"source":"Twitter Web App","legacy":{"bookmark_count":17,"bookmarked":false,"created_at":"Sun Aug 20 18:01:27 +0000 2023","conversation_id_str":"1693322368486097035","display_text_range":[0,254],"entities":{"user_mentions":[],"urls":[],"hashtags":[],"symbols":[]},"favorite_count":233,"favorited":false,"full_text":"The western pandemic response was a political pathology. Any reasonable autocrat would have stopped it. And yet nobody in our diseased state systems could prevent from happening, because of the irrational, complicated, illegible mechanisms which rule us.","is_quote_status":false,"lang":"en","quote_count":6,"reply_count":13,"retweet_count":39,"retweeted":false,"user_id_str":"1179396972324802561","id_str":"1693322368486097035"}}},"legacy":{"bookmark_count":1,"bookmarked":false,"created_at":"Sun Aug 20 18:25:45 +0000 2023","conversation_id_str":"1693328484486217783","display_text_range":[0,58],"entities":{"user_mentions":[],"urls":[],"hashtags":[],"symbols":[]},"favorite_count":41,"favorited":false,"full_text":"The only real white autocrat, Lukashenko, did exactly that","is_quote_status":true,"lang":"en","quote_count":0,"quoted_status_id_str":"1693322368486097035","quoted_status_permalink":{"url":"https://t.co/GZj07GtGyK","expanded":"https://twitter.com/eugyppius1/status/1693322368486097035","display":"twitter.com/eugyppius1/sta…"},"reply_count":3,"retweet_count":2,"retweeted":false,"user_id_str":"1595500307374829568","id_str":"1693328484486217783"}}},"tweetDisplayType":"Tweet"},"feedbackInfo":{"feedbackKeys":["1676572449"],"feedbackMetadata":"FSQ5DAA="},"clientEventInfo":{"component":"suggest_ranked_timeline_tweet","element":"tweet","details":{"timelinesDetails":{"injectionType":"RankedTimelineTweet","controllerData":"DAACDAABDAABCgABAIAgQlAEAAEKAAKAAAAAAAFgCAoACaN5bXjFbe/HCAALAAAAAA8ADAMAAAAQAQAEUEIggAAIYAEAAAAAgAoADtZUTkaSYUP4CgAQMZm6oQbONecAAAAA"}}}}},{"entryId":"home-conversation-1693328484486217783-tweet-1693338093200552142","item":{"itemContent":{"itemType":"TimelineTweet","__typename":"TimelineTweet","tweet_results":{"result":{"__typename":"Tweet","rest_id":"1693338093200552142","core":{"user_results":{"result":{"__typename":"User","id":"VXNlcjoxNTk1NTAwMzA3Mzc0ODI5NTY4","rest_id":"1595500307374829568","affiliates_highlighted_label":{},"has_graduated_access":true,"is_blue_verified":false,"profile_image_shape":"Circle","legacy":{"following":true,"can_dm":false,"can_media_tag":true,"created_at":"Wed Nov 23 19:31:41 +0000 2022","default_profile":true,"default_profile_image":false,"description":"1.979.319.552","entities":{"description":{"urls":[]},"url":{"urls":[{"display_url":"spandrell.com","expanded_url":"https://spandrell.com","url":"https://t.co/N0W9vEKbWG","indices":[0,23]}]}},"fast_followers_count":0,"favourites_count":15102,"followers_count":6349,"friends_count":126,"has_custom_timelines":true,"is_translator":false,"listed_count":28,"location":"","media_count":208,"name":"Spandrell","normal_followers_count":6349,"pinned_tweet_ids_str":["1669025729869398016"],"possibly_sensitive":false,"profile_banner_url":"https://pbs.twimg.com/profile_banners/1595500307374829568/1675611539","profile_image_url_https":"https://pbs.twimg.com/profile_images/1613209845444009984/NtjJ3iOC_normal.jpg","profile_interstitial_type":"","screen_name":"spandrell3","statuses_count":8414,"translator_type":"none","url":"https://t.co/N0W9vEKbWG","verified":false,"want_retweets":true,"withheld_in_countries":[]}}}},"edit_control":{"edit_tweet_ids":["1693338093200552142"],"editable_until_msecs":"1692561836000","is_edit_eligible":false,"edits_remaining":"5"},"is_translatable":false,"views":{"count":"605","state":"EnabledWithCount"},"source":"Twitter Web App","legacy":{"bookmark_count":0,"bookmarked":false,"created_at":"Sun Aug 20 19:03:56 +0000 2023","conversation_id_str":"1693328484486217783","display_text_range":[15,126],"entities":{"user_mentions":[{"id_str":"1554192778367799301","name":"Fabnev","screen_name":"fabnev_hinmur","indices":[0,14]}],"urls":[],"hashtags":[],"symbols":[]},"favorite_count":11,"favorited":false,"full_text":"@fabnev_hinmur Yeah that was inspirational. Autism done right.\n\nItaly was the polar opposite. Improvisation of the worst sort.","in_reply_to_screen_name":"fabnev_hinmur","in_reply_to_status_id_str":"1693337056863195472","in_reply_to_user_id_str":"1554192778367799301","is_quote_status":false,"lang":"en","quote_count":0,"reply_count":1,"retweet_count":1,"retweeted":false,"user_id_str":"1595500307374829568","id_str":"1693338093200552142"}}},"tweetDisplayType":"Tweet"},"feedbackInfo":{"feedbackKeys":["-756647094"],"feedbackMetadata":"FSQ5DAA="},"clientEventInfo":{"component":"suggest_ranked_timeline_tweet","element":"tweet","details":{"timelinesDetails":{"injectionType":"RankedTimelineTweet","controllerData":"DAACDAABDAABCgABAIAgQlAEAAUKAAKAAAAAAAEgCAoACaN5bXjFbe/HCAALAAAAAA8ADAMAAAAQBQAEUEIggAAIIAEAAAAAgAoADtZUTkaSYUP4CgAQMZm6oQbONecAAAAA"}}}}},{"entryId":"home-conversation-1693328484486217783-tweet-1693338574832226780","item":{"itemContent":{"itemType":"TimelineTweet","__typename":"TimelineTweet","tweet_results":{"result":{"__typename":"Tweet","rest_id":"1693338574832226780","core":{"user_results":{"result":{"__typename":"User","id":"VXNlcjoxNTU0MTkyNzc4MzY3Nzk5MzAx","rest_id":"1554192778367799301","affiliates_highlighted_label":{},"has_graduated_access":true,"is_blue_verified":false,"profile_image_shape":"Circle","legacy":{"followed_by":true,"following":true,"can_dm":true,"can_media_tag":true,"created_at":"Mon Aug 01 19:50:19 +0000 2022","default_profile":true,"default_profile_image":false,"description":"UX Dev. @uqbarnetwork 🌺. EScape from Eternal September.","entities":{"description":{"urls":[]}},"fast_followers_count":0,"favourites_count":11902,"followers_count":370,"friends_count":240,"has_custom_timelines":true,"is_translator":false,"listed_count":8,"location":"","media_count":48,"name":"Fabnev","normal_followers_count":370,"pinned_tweet_ids_str":[],"possibly_sensitive":false,"profile_banner_url":"https://pbs.twimg.com/profile_banners/1554192778367799301/1662680755","profile_image_url_https":"https://pbs.twimg.com/profile_images/1690377016883695616/Cili9t14_normal.png","profile_interstitial_type":"","screen_name":"fabnev_hinmur","statuses_count":2129,"translator_type":"none","verified":false,"want_retweets":true,"withheld_in_countries":[]}}}},"edit_control":{"edit_tweet_ids":["1693338574832226780"],"editable_until_msecs":"1692561951000","is_edit_eligible":false,"edits_remaining":"5"},"is_translatable":false,"views":{"count":"124","state":"EnabledWithCount"},"source":"Twitter for Android","legacy":{"bookmark_count":0,"bookmarked":false,"created_at":"Sun Aug 20 19:05:51 +0000 2023","conversation_id_str":"1693328484486217783","display_text_range":[12,97],"entities":{"user_mentions":[{"id_str":"1595500307374829568","name":"Spandrell","screen_name":"spandrell3","indices":[0,11]}],"urls":[],"hashtags":[],"symbols":[]},"favorite_count":4,"favorited":false,"full_text":"@spandrell3 They stayed on brand tho. \"What is the worst decision that we can make as a society?\"","in_reply_to_screen_name":"spandrell3","in_reply_to_status_id_str":"1693338093200552142","in_reply_to_user_id_str":"1595500307374829568","is_quote_status":false,"lang":"en","quote_count":0,"reply_count":0,"retweet_count":0,"retweeted":false,"user_id_str":"1554192778367799301","id_str":"1693338574832226780"}}},"tweetDisplayType":"Tweet"},"feedbackInfo":{"feedbackKeys":["283249402"],"feedbackMetadata":"FSQ5DAA="},"clientEventInfo":{"component":"suggest_ranked_timeline_tweet","element":"tweet","details":{"timelinesDetails":{"injectionType":"RankedTimelineTweet","controllerData":"DAACDAABDAABCgABAIAgYlAEAAUKAAKAAAAAAAEgEAoACaN5bXjFbe/HCAALAAAAAA8ADAMAAAARBQAEUGIggAAQIAEAAAAAgAIKAA7WVE5GkmFD+AoAEDGZuqEGzjXnAAAAAA=="}}}}}],"metadata":{"conversationMetadata":{"allTweetIds":["1693328484486217783","1693337056863195472","1693338093200552142","1693338574832226780"],"enableDeduplication":true}},"displayType":"VerticalConversation","clientEventInfo":{"component":"suggest_ranked_timeline_tweet","details":{"timelinesDetails":{"controllerData":"DAACDAABDAABCgABAIAgAlAEAAEKAAKAAAAAAAEAAAoACaN5bXjFbe/HCAALAAAAAA8ADAMAAAAQAQAEUAIggAAAAAEAAAAAgAoADtZUTkaSYUP4CgAQMZm6oQbONecAAAAA"}}}}},{"entryId":"home-conversation-1693276509337706535","sortIndex":"1693360639948357630","content":{"entryType":"TimelineTimelineModule","__typename":"TimelineTimelineModule","items":[{"entryId":"home-conversation-1693276509337706535-tweet-1693276509337706535","item":{"itemContent":{"itemType":"TimelineTweet","__typename":"TimelineTweet","tweet_results":{"result":{"__typename":"Tweet","rest_id":"1693276509337706535","core":{"user_results":{"result":{"__typename":"User","id":"VXNlcjoxNDA0ODYwNDM4ODAyODQ1Njk5","rest_id":"1404860438802845699","affiliates_highlighted_label":{},"has_graduated_access":true,"is_blue_verified":true,"profile_image_shape":"Circle","legacy":{"can_dm":false,"can_media_tag":false,"created_at":"Tue Jun 15 18:00:29 +0000 2021","default_profile":true,"default_profile_image":false,"description":"Hi beautiful","entities":{"description":{"urls":[]},"url":{"urls":[{"display_url":"patreon.com/nowthen","expanded_url":"http://patreon.com/nowthen","url":"https://t.co/MQBBHCvsBJ","indices":[0,23]}]}},"fast_followers_count":0,"favourites_count":35069,"followers_count":577,"friends_count":299,"has_custom_timelines":true,"is_translator":false,"listed_count":2,"location":"The Port, UK","media_count":600,"name":"melly","normal_followers_count":577,"pinned_tweet_ids_str":[],"possibly_sensitive":false,"profile_banner_url":"https://pbs.twimg.com/profile_banners/1404860438802845699/1689706246","profile_image_url_https":"https://pbs.twimg.com/profile_images/1679261696748134405/nFzqO8PH_normal.jpg","profile_interstitial_type":"","screen_name":"mellybysea","statuses_count":16100,"translator_type":"none","url":"https://t.co/MQBBHCvsBJ","verified":false,"want_retweets":false,"withheld_in_countries":[]}}}},"edit_control":{"edit_tweet_ids":["1693276509337706535"],"editable_until_msecs":"1692547154000","is_edit_eligible":true,"edits_remaining":"5"},"is_translatable":false,"views":{"count":"20302","state":"EnabledWithCount"},"source":"Twitter for iPhone","legacy":{"bookmark_count":25,"bookmarked":false,"created_at":"Sun Aug 20 14:59:14 +0000 2023","conversation_id_str":"1693276509337706535","display_text_range":[0,261],"entities":{"user_mentions":[],"urls":[],"hashtags":[],"symbols":[]},"favorite_count":143,"favorited":false,"full_text":"Some of you won’t like this but a decent bodycount is required for a girl/woman to become satisfied with being a wife and mother. Otherwise there will always be an element of what if. An undercurrent of threat bubbling under the surface of tranquil domesticity…","is_quote_status":false,"lang":"en","quote_count":29,"reply_count":60,"retweet_count":4,"retweeted":false,"user_id_str":"1404860438802845699","id_str":"1693276509337706535"}}},"tweetDisplayType":"Tweet","socialContext":{"type":"TimelineGeneralContext","contextType":"Conversation","text":"Covfefe Anon replied","landingUrl":{"url":"twitter://user?id=887434912529338375","urlType":"DeepLink"}}},"feedbackInfo":{"feedbackKeys":["989274051"],"feedbackMetadata":"FSQ5DAA="},"clientEventInfo":{"component":"suggest_ranked_timeline_tweet","element":"tweet","details":{"timelinesDetails":{"injectionType":"RankedTimelineTweet","controllerData":"DAACDAABDAABCgABAgAAQtAEAAEKAAKAAAAAAABgCAoACaN5bXjFbe/HCAALAAAAAg8ADAMAAAAQAQAE0EIAAAIIYAAAAAAAgAoADtZUTkaSYUP4CgAQMZm6oQbONecAAAAA"}}}}},{"entryId":"home-conversation-1693276509337706535-tweet-1693357934909018160","item":{"itemContent":{"itemType":"TimelineTweet","__typename":"TimelineTweet","tweet_results":{"result":{"__typename":"Tweet","rest_id":"1693357934909018160","core":{"user_results":{"result":{"__typename":"User","id":"VXNlcjo4ODc0MzQ5MTI1MjkzMzgzNzU=","rest_id":"887434912529338375","affiliates_highlighted_label":{},"has_graduated_access":true,"is_blue_verified":true,"profile_image_shape":"Circle","legacy":{"followed_by":true,"following":true,"can_dm":true,"can_media_tag":false,"created_at":"Tue Jul 18 22:12:25 +0000 2017","default_profile":false,"default_profile_image":false,"description":"Not to be confused with 2001 Nobel Peace Prize winner Kofi Annan.\n\n54th Clause of the Magna Carta absolutist.\n\nCommentary from an NRx perspective.","entities":{"description":{"urls":[]}},"fast_followers_count":0,"favourites_count":380853,"followers_count":52954,"friends_count":806,"has_custom_timelines":false,"is_translator":false,"listed_count":220,"location":"","media_count":3914,"name":"Covfefe Anon","normal_followers_count":52954,"pinned_tweet_ids_str":["1623947286324686848"],"possibly_sensitive":false,"profile_banner_url":"https://pbs.twimg.com/profile_banners/887434912529338375/1598514714","profile_image_url_https":"https://pbs.twimg.com/profile_images/1392509603116617731/TDrNeUiZ_normal.jpg","profile_interstitial_type":"","screen_name":"CovfefeAnon","statuses_count":49508,"translator_type":"none","verified":false,"want_retweets":true,"withheld_in_countries":[]}}}},"edit_control":{"edit_tweet_ids":["1693357934909018160"],"editable_until_msecs":"1692566567000","is_edit_eligible":false,"edits_remaining":"5"},"is_translatable":false,"views":{"count":"224","state":"EnabledWithCount"},"source":"Twitter Web App","legacy":{"bookmark_count":0,"bookmarked":false,"created_at":"Sun Aug 20 20:22:47 +0000 2023","conversation_id_str":"1693276509337706535","display_text_range":[12,80],"entities":{"user_mentions":[{"id_str":"1404860438802845699","name":"melly","screen_name":"mellybysea","indices":[0,11]}],"urls":[],"hashtags":[],"symbols":[]},"favorite_count":13,"favorited":false,"full_text":"@mellybysea \"The only way to actually be thin is to balloon up to 300 lbs first\"","in_reply_to_screen_name":"mellybysea","in_reply_to_status_id_str":"1693276509337706535","in_reply_to_user_id_str":"1404860438802845699","is_quote_status":false,"lang":"en","quote_count":0,"reply_count":0,"retweet_count":1,"retweeted":false,"user_id_str":"887434912529338375","id_str":"1693357934909018160"}}},"tweetDisplayType":"Tweet"},"feedbackInfo":{"feedbackKeys":["339382320"],"feedbackMetadata":"FSQ5DAA="},"clientEventInfo":{"component":"suggest_ranked_timeline_tweet","element":"tweet","details":{"timelinesDetails":{"injectionType":"RankedTimelineTweet","controllerData":"DAACDAABDAABCgABAgAAYtAEAAUKAAKAAAAAAAEgAAoACaN5bXjFbe/HCAALAAAAAg8ADAMAAAAZBQAE0GIAAAIAIAEAAAAAgAAAAAAAAAAAgAoADtZUTkaSYUP4CgAQMZm6oQbONecAAAAA"}}}}}],"metadata":{"conversationMetadata":{"allTweetIds":["1693276509337706535","1693357934909018160"],"enableDeduplication":true}},"displayType":"VerticalConversation","clientEventInfo":{"component":"suggest_ranked_timeline_tweet","details":{"timelinesDetails":{"controllerData":"DAACDAABDAABCgABAgAAAtAEAAEKAAKAAAAAAAEAAAoACaN5bXjFbe/HCAALAAAAAg8ADAMAAAAQAQAE0AIAAAIAAAEAAAAAgAoADtZUTkaSYUP4CgAQMZm6oQbONecAAAAA"}}}}},{"entryId":"home-conversation-1693041701030383635","sortIndex":"1693360639948357629","content":{"entryType":"TimelineTimelineModule","__typename":"TimelineTimelineModule","items":[{"entryId":"home-conversation-1693041701030383635-tweet-1693041701030383635","item":{"itemContent":{"itemType":"TimelineTweet","__typename":"TimelineTweet","tweet_results":{"result":{"__typename":"Tweet","rest_id":"1693041701030383635","core":{"user_results":{"result":{"__typename":"User","id":"VXNlcjo0NjgxODg5OA==","rest_id":"46818898","affiliates_highlighted_label":{},"has_graduated_access":true,"is_blue_verified":false,"profile_image_shape":"Circle","legacy":{"can_dm":true,"can_media_tag":false,"created_at":"Sat Jun 13 03:45:36 +0000 2009","default_profile":false,"default_profile_image":false,"description":"the once and future city planner // research director + chief exporter of the revolution @cayimby // buy my book ❤︎","entities":{"description":{"urls":[]},"url":{"urls":[{"display_url":"islandpress.org/books/arbitrar…","expanded_url":"https://islandpress.org/books/arbitrary-lines","url":"https://t.co/LqWpk531vm","indices":[0,23]}]}},"fast_followers_count":0,"favourites_count":56447,"followers_count":41428,"friends_count":1554,"has_custom_timelines":true,"is_translator":false,"listed_count":564,"location":"Los Angeles","media_count":7349,"name":"M. Nolan Gray","normal_followers_count":41428,"pinned_tweet_ids_str":["1539252219538817028"],"possibly_sensitive":false,"profile_banner_url":"https://pbs.twimg.com/profile_banners/46818898/1650599780","profile_image_url_https":"https://pbs.twimg.com/profile_images/1517351710905159681/EWSe9UUx_normal.jpg","profile_interstitial_type":"","screen_name":"mnolangray","statuses_count":42811,"translator_type":"none","url":"https://t.co/LqWpk531vm","verified":false,"want_retweets":false,"withheld_in_countries":[]}}}},"edit_control":{"edit_tweet_ids":["1693041701030383635"],"editable_until_msecs":"1692491171000","is_edit_eligible":false,"edits_remaining":"5"},"is_translatable":false,"views":{"count":"38047","state":"EnabledWithCount"},"source":"Twitter for Android","legacy":{"bookmark_count":42,"bookmarked":false,"created_at":"Sat Aug 19 23:26:11 +0000 2023","conversation_id_str":"1693041701030383635","display_text_range":[0,137],"entities":{"user_mentions":[],"urls":[],"hashtags":[],"symbols":[]},"favorite_count":349,"favorited":false,"full_text":"Male loneliness isn't some thing that's imposed on men. It's the result of a lot of men making stupid, short-sighted lifestyle decisions.","is_quote_status":false,"lang":"en","quote_count":15,"reply_count":26,"retweet_count":35,"retweeted":false,"user_id_str":"46818898","id_str":"1693041701030383635"}}},"tweetDisplayType":"Tweet","socialContext":{"type":"TimelineGeneralContext","contextType":"Conversation","text":"Vatnik (ON HIATUS) replied","landingUrl":{"url":"twitter://user?id=1436899015035998210","urlType":"DeepLink"}}},"feedbackInfo":{"feedbackKeys":["393418877"],"feedbackMetadata":"FSQ5DAA="},"clientEventInfo":{"component":"suggest_ranked_timeline_tweet","element":"tweet","details":{"timelinesDetails":{"injectionType":"RankedTimelineTweet","controllerData":"DAACDAABDAABCgABBAAAQtAEAAEKAAKAAAAAAABgCAoACaN5bXjFbe/HCAALAAAAAw8ADAMAAAAQAQAE0EIAAAQIYAAAAAAAgAoADtZUTkaSYUP4CgAQMZm6oQbONecAAAAA"}}}}},{"entryId":"home-conversation-1693041701030383635-tweet-1693283857926148317","item":{"itemContent":{"itemType":"TimelineTweet","__typename":"TimelineTweet","tweet_results":{"result":{"__typename":"Tweet","rest_id":"1693283857926148317","core":{"user_results":{"result":{"__typename":"User","id":"VXNlcjoxNDM2ODk5MDE1MDM1OTk4MjEw","rest_id":"1436899015035998210","affiliates_highlighted_label":{},"has_graduated_access":true,"is_blue_verified":false,"profile_image_shape":"Circle","legacy":{"followed_by":true,"following":true,"protected":true,"can_dm":true,"can_media_tag":false,"created_at":"Sun Sep 12 03:46:48 +0000 2021","default_profile":true,"default_profile_image":false,"description":"Professional retarde. Aspiring autiste.","entities":{"description":{"urls":[]}},"fast_followers_count":0,"favourites_count":18860,"followers_count":1376,"friends_count":539,"has_custom_timelines":true,"is_translator":false,"listed_count":14,"location":"","media_count":1557,"name":"Vatnik (ON HIATUS)","normal_followers_count":1376,"pinned_tweet_ids_str":["1546681562921664513"],"possibly_sensitive":false,"profile_banner_url":"https://pbs.twimg.com/profile_banners/1436899015035998210/1656741623","profile_image_url_https":"https://pbs.twimg.com/profile_images/1690076085294116864/oxSG4NAW_normal.jpg","profile_interstitial_type":"","screen_name":"0xVatnik","statuses_count":9752,"translator_type":"none","verified":false,"want_retweets":true,"withheld_in_countries":[]}}}},"edit_control":{"edit_tweet_ids":["1693283857926148317"],"editable_until_msecs":"1692548906000","is_edit_eligible":false,"edits_remaining":"5"},"views":{"count":"34","state":"EnabledWithCount"},"source":"Twitter Web App","legacy":{"bookmark_count":0,"bookmarked":false,"created_at":"Sun Aug 20 15:28:26 +0000 2023","conversation_id_str":"1693041701030383635","display_text_range":[12,155],"entities":{"user_mentions":[{"id_str":"46818898","name":"M. Nolan Gray","screen_name":"mnolangray","indices":[0,11]}],"urls":[],"hashtags":[],"symbols":[]},"favorite_count":0,"favorited":false,"full_text":"@mnolangray an economic recession isn't some thing that's imposed on men. It's the result of a lot of men making stupid, short-sighted lifestyle decisions.","in_reply_to_screen_name":"mnolangray","in_reply_to_status_id_str":"1693041701030383635","in_reply_to_user_id_str":"46818898","is_quote_status":false,"lang":"en","quote_count":0,"reply_count":0,"retweet_count":0,"retweeted":false,"user_id_str":"1436899015035998210","id_str":"1693283857926148317"}}},"tweetDisplayType":"Tweet"},"feedbackInfo":{"feedbackKeys":["-523921825"],"feedbackMetadata":"FSQ5DAA="},"clientEventInfo":{"component":"suggest_ranked_timeline_tweet","element":"tweet","details":{"timelinesDetails":{"injectionType":"RankedTimelineTweet","controllerData":"DAACDAABDAABCgABBAAAYtAEAAUKAAKAAAAAAAEgAAoACaN5bXjFbe/HCAALAAAAAw8ADAMAAAAQBQAE0GIAAAQAIAEAAAAAgAoADtZUTkaSYUP4CgAQMZm6oQbONecAAAAA"}}}}}],"metadata":{"conversationMetadata":{"allTweetIds":["1693041701030383635","1693283857926148317"],"enableDeduplication":true}},"displayType":"VerticalConversation","clientEventInfo":{"component":"suggest_ranked_timeline_tweet","details":{"timelinesDetails":{"controllerData":"DAACDAABDAABCgABBAAAAtAEAAEKAAKAAAAAAAEAAAoACaN5bXjFbe/HCAALAAAAAw8ADAMAAAAQAQAE0AIAAAQAAAEAAAAAgAoADtZUTkaSYUP4CgAQMZm6oQbONecAAAAA"}}}}},{"entryId":"tweet-1693339847182963032","sortIndex":"1693360639948357627","content":{"entryType":"TimelineTimelineItem","__typename":"TimelineTimelineItem","itemContent":{"itemType":"TimelineTweet","__typename":"TimelineTweet","tweet_results":{"result":{"__typename":"Tweet","rest_id":"1693339847182963032","core":{"user_results":{"result":{"__typename":"User","id":"VXNlcjoyNzc1MzY4Njc=","rest_id":"277536867","affiliates_highlighted_label":{},"has_graduated_access":true,"is_blue_verified":true,"profile_image_shape":"Circle","legacy":{"following":true,"can_dm":true,"can_media_tag":false,"created_at":"Tue Apr 05 15:29:11 +0000 2011","default_profile":false,"default_profile_image":false,"description":"Surrealist street preacher. Duck. Saint. Member of The Church of Jesus Christ.","entities":{"description":{"urls":[]},"url":{"urls":[{"display_url":"duckstack.substack.com","expanded_url":"http://duckstack.substack.com","url":"https://t.co/50flkkFoLl","indices":[0,23]}]}},"fast_followers_count":0,"favourites_count":124679,"followers_count":3132,"friends_count":309,"has_custom_timelines":true,"is_translator":false,"listed_count":13,"location":"My Tower","media_count":3391,"name":"𝔹⏣𝔹𝔻𝔸𝔻𝕌₡𝕂 🪔","normal_followers_count":3132,"pinned_tweet_ids_str":["1512854317736202243"],"possibly_sensitive":false,"profile_banner_url":"https://pbs.twimg.com/profile_banners/277536867/1542654588","profile_image_url_https":"https://pbs.twimg.com/profile_images/1115687654698278912/5OTbzAIW_normal.png","profile_interstitial_type":"","screen_name":"bobdaduck","statuses_count":34227,"translator_type":"none","url":"https://t.co/50flkkFoLl","verified":false,"want_retweets":true,"withheld_in_countries":[]}}}},"edit_control":{"edit_tweet_ids":["1693339847182963032"],"editable_until_msecs":"1692562254000","is_edit_eligible":true,"edits_remaining":"5"},"is_translatable":false,"views":{"count":"249","state":"EnabledWithCount"},"source":"Twitter for Android","quoted_status_result":{"result":{"__typename":"Tweet","rest_id":"1693318281661157738","core":{"user_results":{"result":{"__typename":"User","id":"VXNlcjoxMjMyODc1ODYxNzA5MzgxNjM3","rest_id":"1232875861709381637","affiliates_highlighted_label":{},"has_graduated_access":true,"is_blue_verified":false,"profile_image_shape":"Circle","legacy":{"can_dm":true,"can_media_tag":false,"created_at":"Thu Feb 27 03:51:46 +0000 2020","default_profile":true,"default_profile_image":false,"description":"boxfan17","entities":{"description":{"urls":[]}},"fast_followers_count":0,"favourites_count":34384,"followers_count":691,"friends_count":2649,"has_custom_timelines":true,"is_translator":false,"listed_count":12,"location":"","media_count":275,"name":"boxfan17","normal_followers_count":691,"pinned_tweet_ids_str":["1674048533752586240"],"possibly_sensitive":false,"profile_banner_url":"https://pbs.twimg.com/profile_banners/1232875861709381637/1673632248","profile_image_url_https":"https://pbs.twimg.com/profile_images/1611111109708111872/ORB12g30_normal.jpg","profile_interstitial_type":"","screen_name":"boxfan17","statuses_count":6139,"translator_type":"none","verified":false,"want_retweets":false,"withheld_in_countries":[]}}}},"edit_control":{"edit_tweet_ids":["1693318281661157738"],"editable_until_msecs":"1692557113000","is_edit_eligible":true,"edits_remaining":"5"},"is_translatable":false,"views":{"count":"428","state":"EnabledWithCount"},"source":"Twitter Web App","quotedRefResult":{"result":{"__typename":"Tweet","rest_id":"1692768323061027082"}},"legacy":{"bookmark_count":0,"bookmarked":false,"created_at":"Sun Aug 20 17:45:13 +0000 2023","conversation_id_str":"1693318281661157738","display_text_range":[0,187],"entities":{"user_mentions":[],"urls":[],"hashtags":[],"symbols":[]},"favorite_count":7,"favorited":false,"full_text":"Most of the biggest bleeding heart leftists I have met in my career were building the latest version of the \"CivilianObliterator Predator Drone platform, now with extra Geneva violations\"","is_quote_status":true,"lang":"en","quote_count":1,"quoted_status_id_str":"1692768323061027082","quoted_status_permalink":{"url":"https://t.co/EDu4158q3F","expanded":"https://twitter.com/EmmaTolkin/status/1692768323061027082","display":"twitter.com/EmmaTolkin/sta…"},"reply_count":0,"retweet_count":0,"retweeted":false,"user_id_str":"1232875861709381637","id_str":"1693318281661157738"}}},"legacy":{"bookmark_count":0,"bookmarked":false,"created_at":"Sun Aug 20 19:10:54 +0000 2023","conversation_id_str":"1693339847182963032","display_text_range":[0,120],"entities":{"user_mentions":[],"urls":[],"hashtags":[],"symbols":[]},"favorite_count":4,"favorited":false,"full_text":"if you think about it, it is obvious that this should be the case, and also that this explains most of modern liberalism","is_quote_status":true,"lang":"en","quote_count":0,"quoted_status_id_str":"1693318281661157738","quoted_status_permalink":{"url":"https://t.co/N5AOiAj1Ru","expanded":"https://twitter.com/boxfan17/status/1693318281661157738","display":"twitter.com/boxfan17/statu…"},"reply_count":0,"retweet_count":0,"retweeted":false,"user_id_str":"277536867","id_str":"1693339847182963032"}}},"tweetDisplayType":"Tweet"},"feedbackInfo":{"feedbackKeys":["2113718992"],"feedbackMetadata":"FSQ5DAA="},"clientEventInfo":{"component":"suggest_ranked_timeline_tweet","element":"tweet","details":{"timelinesDetails":{"injectionType":"RankedTimelineTweet","controllerData":"DAACDAABDAABCgABAAAAQgAEAAEKAAKAAAAAAAEgAAoACaN5bXjFbe/HCAALAAAABQ8ADAMAAAAZAQAEAEIAAAAAIAEAAAAAgAAAAAAAAAAAgAoADtZUTkaSYUP4CgAQMZm6oQbONecAAAAA"}}}}},{"entryId":"tweet-1693335987034693894","sortIndex":"1693360639948357625","content":{"entryType":"TimelineTimelineItem","__typename":"TimelineTimelineItem","itemContent":{"itemType":"TimelineTweet","__typename":"TimelineTweet","tweet_results":{"result":{"__typename":"Tweet","rest_id":"1693335987034693894","core":{"user_results":{"result":{"__typename":"User","id":"VXNlcjozODk1MjE0MjMy","rest_id":"3895214232","affiliates_highlighted_label":{},"has_graduated_access":true,"is_blue_verified":true,"profile_image_shape":"Circle","legacy":{"can_dm":true,"can_media_tag":true,"created_at":"Wed Oct 14 20:28:20 +0000 2015","default_profile":false,"default_profile_image":false,"description":"Misinformation is the bread and butter of the “free thinking high IQ” denizens of Reddit. Home of Watchdog. DMs open for submissions. Ephesians 5:11","entities":{"description":{"urls":[]}},"fast_followers_count":0,"favourites_count":37992,"followers_count":274757,"friends_count":295,"has_custom_timelines":true,"is_translator":false,"listed_count":514,"location":"Tennessee, USA","media_count":6162,"name":"Reddit Lies","normal_followers_count":274757,"pinned_tweet_ids_str":[],"possibly_sensitive":false,"profile_banner_url":"https://pbs.twimg.com/profile_banners/3895214232/1634153219","profile_image_url_https":"https://pbs.twimg.com/profile_images/1438530746164121602/esKsjv3b_normal.jpg","profile_interstitial_type":"","screen_name":"reddit_lies","statuses_count":11965,"translator_type":"none","verified":false,"want_retweets":false,"withheld_in_countries":[]},"super_follow_eligible":true}}},"edit_control":{"edit_tweet_ids":["1693335987034693894"],"editable_until_msecs":"1692561334000","is_edit_eligible":true,"edits_remaining":"5"},"is_translatable":false,"views":{"count":"46503","state":"EnabledWithCount"},"source":"Twitter for iPhone","legacy":{"bookmark_count":38,"bookmarked":false,"created_at":"Sun Aug 20 18:55:34 +0000 2023","conversation_id_str":"1693335987034693894","display_text_range":[0,79],"entities":{"media":[{"display_url":"pic.twitter.com/JGE9I6QskH","expanded_url":"https://twitter.com/reddit_lies/status/1693335987034693894/photo/1","id_str":"1693335977715003392","indices":[80,103],"media_url_https":"https://pbs.twimg.com/media/F3_wGZ0XcAASGKq.jpg","type":"photo","url":"https://t.co/JGE9I6QskH","features":{"large":{"faces":[]},"medium":{"faces":[]},"small":{"faces":[]},"orig":{"faces":[]}},"sizes":{"large":{"h":1394,"w":1107,"resize":"fit"},"medium":{"h":1200,"w":953,"resize":"fit"},"small":{"h":680,"w":540,"resize":"fit"},"thumb":{"h":150,"w":150,"resize":"crop"}},"original_info":{"height":1394,"width":1107,"focus_rects":[{"x":0,"y":0,"w":1107,"h":620},{"x":0,"y":0,"w":1107,"h":1107},{"x":0,"y":0,"w":1107,"h":1262},{"x":0,"y":0,"w":697,"h":1394},{"x":0,"y":0,"w":1107,"h":1394}]}}],"user_mentions":[],"urls":[],"hashtags":[],"symbols":[]},"extended_entities":{"media":[{"display_url":"pic.twitter.com/JGE9I6QskH","expanded_url":"https://twitter.com/reddit_lies/status/1693335987034693894/photo/1","id_str":"1693335977715003392","indices":[80,103],"media_key":"3_1693335977715003392","media_url_https":"https://pbs.twimg.com/media/F3_wGZ0XcAASGKq.jpg","type":"photo","url":"https://t.co/JGE9I6QskH","ext_media_availability":{"status":"Available"},"features":{"large":{"faces":[]},"medium":{"faces":[]},"small":{"faces":[]},"orig":{"faces":[]}},"sizes":{"large":{"h":1394,"w":1107,"resize":"fit"},"medium":{"h":1200,"w":953,"resize":"fit"},"small":{"h":680,"w":540,"resize":"fit"},"thumb":{"h":150,"w":150,"resize":"crop"}},"original_info":{"height":1394,"width":1107,"focus_rects":[{"x":0,"y":0,"w":1107,"h":620},{"x":0,"y":0,"w":1107,"h":1107},{"x":0,"y":0,"w":1107,"h":1262},{"x":0,"y":0,"w":697,"h":1394},{"x":0,"y":0,"w":1107,"h":1394}]}}]},"favorite_count":1373,"favorited":false,"full_text":"Remember when a guy on r/SanDiego heard thunder for the first time in his life? https://t.co/JGE9I6QskH","is_quote_status":false,"lang":"en","possibly_sensitive":false,"possibly_sensitive_editable":true,"quote_count":11,"reply_count":37,"retweet_count":53,"retweeted":false,"user_id_str":"3895214232","id_str":"1693335987034693894"}}},"tweetDisplayType":"Tweet","socialContext":{"type":"TimelineGeneralContext","contextType":"Follow","text":"🔺ʀᴇᴍɴᴀɴᴛ. and Free Northerner follow","landingUrl":{"url":"/2/timeline/social_proof.json","urlType":"UrtEndpoint","urtEndpointOptions":{"title":"Followed by","requestParams":[{"key":"user_id","value":"1458284524761075714"},{"key":"dis","value":"socialproofusers"},{"key":"diid","value":"1480926325091323913,1877198120"}]}}}},"feedbackInfo":{"feedbackKeys":["137632741"],"feedbackMetadata":"FYgBOQwA"},"clientEventInfo":{"component":"suggest_sc_tweet","element":"tweet","details":{"timelinesDetails":{"injectionType":"ScTweet","controllerData":"DAACDAABDAABCgABAAAAQgAEAAEKAAKAAAAAAAAgAAoACaN5bXjFbe/HCAALAAAABw8ADAMAAAAaAQAEAEIAAAAAIAAAAAAAgAQAAAAAAAAAgBAKAA7WVE5GkmFD+AoAEDGZuqEGzjXnAAAAAA=="}}}}},{"entryId":"home-conversation-1693089837497131233","sortIndex":"1693360639948357624","content":{"entryType":"TimelineTimelineModule","__typename":"TimelineTimelineModule","items":[{"entryId":"home-conversation-1693089837497131233-tweet-1693089837497131233","item":{"itemContent":{"itemType":"TimelineTweet","__typename":"TimelineTweet","tweet_results":{"result":{"__typename":"Tweet","rest_id":"1693089837497131233","core":{"user_results":{"result":{"__typename":"User","id":"VXNlcjoxNDYwMjgzOTI1","rest_id":"1460283925","affiliates_highlighted_label":{},"has_graduated_access":true,"is_blue_verified":true,"profile_image_shape":"Circle","legacy":{"can_dm":true,"can_media_tag":false,"created_at":"Sun May 26 17:59:01 +0000 2013","default_profile":false,"default_profile_image":false,"description":"member of technical staff","entities":{"description":{"urls":[]},"url":{"urls":[{"display_url":"roonscape.ai","expanded_url":"http://roonscape.ai","url":"https://t.co/3Q7RKYCnB4","indices":[0,23]}]}},"fast_followers_count":0,"favourites_count":540088,"followers_count":110488,"friends_count":5731,"has_custom_timelines":true,"is_translator":false,"listed_count":1150,"location":"ānanda tāṇḍava","media_count":1926,"name":"roon","normal_followers_count":110488,"pinned_tweet_ids_str":["1658586751064244225"],"possibly_sensitive":false,"profile_banner_url":"https://pbs.twimg.com/profile_banners/1460283925/1587600180","profile_image_url_https":"https://pbs.twimg.com/profile_images/1572784789291401216/1WrwslUF_normal.jpg","profile_interstitial_type":"","screen_name":"tszzl","statuses_count":52900,"translator_type":"none","url":"https://t.co/3Q7RKYCnB4","verified":false,"want_retweets":false,"withheld_in_countries":[]}}}},"edit_control":{"edit_tweet_ids":["1693089837497131233"],"editable_until_msecs":"1692502648000","is_edit_eligible":true,"edits_remaining":"5"},"is_translatable":false,"views":{"count":"111123","state":"EnabledWithCount"},"source":"Twitter for iPhone","legacy":{"bookmark_count":26,"bookmarked":false,"created_at":"Sun Aug 20 02:37:28 +0000 2023","conversation_id_str":"1693089837497131233","display_text_range":[0,92],"entities":{"user_mentions":[],"urls":[],"hashtags":[],"symbols":[]},"favorite_count":596,"favorited":false,"full_text":"honestly von neumann seems a bit overrated as a scientist… what has he done for me recently?","is_quote_status":false,"lang":"en","quote_count":10,"reply_count":97,"retweet_count":12,"retweeted":false,"user_id_str":"1460283925","id_str":"1693089837497131233"}}},"tweetDisplayType":"Tweet","socialContext":{"type":"TimelineGeneralContext","contextType":"Conversation","text":"Vatnik (ON HIATUS) replied","landingUrl":{"url":"twitter://user?id=1436899015035998210","urlType":"DeepLink"}}},"feedbackInfo":{"feedbackKeys":["-258827832"],"feedbackMetadata":"FSQ5DAA="},"clientEventInfo":{"component":"suggest_ranked_timeline_tweet","element":"tweet","details":{"timelinesDetails":{"injectionType":"RankedTimelineTweet","controllerData":"DAACDAABDAABCgABAAAAQpAEAAEKAAKAAAAAAABgCAoACaN5bXjFbe/HCAALAAAACA8ADAMAAAAQAQAEkEIAAAAIYAAAAAAAgAoADtZUTkaSYUP4CgAQMZm6oQbONecAAAAA"}}}}},{"entryId":"home-conversation-1693089837497131233-tweet-1693100006914293792","item":{"itemContent":{"itemType":"TimelineTweet","__typename":"TimelineTweet","tweet_results":{"result":{"__typename":"Tweet","rest_id":"1693100006914293792","core":{"user_results":{"result":{"__typename":"User","id":"VXNlcjoxNDM2ODk5MDE1MDM1OTk4MjEw","rest_id":"1436899015035998210","affiliates_highlighted_label":{},"has_graduated_access":true,"is_blue_verified":false,"profile_image_shape":"Circle","legacy":{"followed_by":true,"following":true,"protected":true,"can_dm":true,"can_media_tag":false,"created_at":"Sun Sep 12 03:46:48 +0000 2021","default_profile":true,"default_profile_image":false,"description":"Professional retarde. Aspiring autiste.","entities":{"description":{"urls":[]}},"fast_followers_count":0,"favourites_count":18860,"followers_count":1376,"friends_count":539,"has_custom_timelines":true,"is_translator":false,"listed_count":14,"location":"","media_count":1557,"name":"Vatnik (ON HIATUS)","normal_followers_count":1376,"pinned_tweet_ids_str":["1546681562921664513"],"possibly_sensitive":false,"profile_banner_url":"https://pbs.twimg.com/profile_banners/1436899015035998210/1656741623","profile_image_url_https":"https://pbs.twimg.com/profile_images/1690076085294116864/oxSG4NAW_normal.jpg","profile_interstitial_type":"","screen_name":"0xVatnik","statuses_count":9752,"translator_type":"none","verified":false,"want_retweets":true,"withheld_in_countries":[]}}}},"edit_control":{"edit_tweet_ids":["1693100006914293792"],"editable_until_msecs":"1692505072000","is_edit_eligible":false,"edits_remaining":"5"},"views":{"count":"283","state":"EnabledWithCount"},"source":"Twitter Web App","legacy":{"bookmark_count":0,"bookmarked":false,"created_at":"Sun Aug 20 03:17:52 +0000 2023","conversation_id_str":"1693089837497131233","display_text_range":[7,150],"entities":{"user_mentions":[{"id_str":"1460283925","name":"roon","screen_name":"tszzl","indices":[0,6]}],"urls":[],"hashtags":[],"symbols":[]},"favorite_count":6,"favorited":false,"full_text":"@tszzl please tell me there's a Hindu analogy to an alternative history where Von Neumann directs MacArthur to launch nuclear war and glass bolshevism","in_reply_to_screen_name":"tszzl","in_reply_to_status_id_str":"1693089837497131233","in_reply_to_user_id_str":"1460283925","is_quote_status":false,"lang":"en","quote_count":0,"reply_count":0,"retweet_count":0,"retweeted":false,"user_id_str":"1436899015035998210","id_str":"1693100006914293792"}}},"tweetDisplayType":"Tweet"},"feedbackInfo":{"feedbackKeys":["705144024"],"feedbackMetadata":"FSQ5DAA="},"clientEventInfo":{"component":"suggest_ranked_timeline_tweet","element":"tweet","details":{"timelinesDetails":{"injectionType":"RankedTimelineTweet","controllerData":"DAACDAABDAABCgABAAAAYpAEAAUKAAKAAAAAAAEgAAoACaN5bXjFbe/HCAALAAAACA8ADAMAAAAQBQAEkGIAAAAAIAEAAAAAgAoADtZUTkaSYUP4CgAQMZm6oQbONecAAAAA"}}}}}],"metadata":{"conversationMetadata":{"allTweetIds":["1693089837497131233","1693100006914293792"],"enableDeduplication":true}},"displayType":"VerticalConversation","clientEventInfo":{"component":"suggest_ranked_timeline_tweet","details":{"timelinesDetails":{"controllerData":"DAACDAABDAABCgABAAAAApAEAAEKAAKAAAAAAAEAAAoACaN5bXjFbe/HCAALAAAACA8ADAMAAAAQAQAEkAIAAAAAAAEAAAAAgAoADtZUTkaSYUP4CgAQMZm6oQbONecAAAAA"}}}}}]},{"type":"TimelineShowAlert","alertType":"NewTweets","triggerDelayMs":240000,"displayDurationMs":-1,"usersResults":[{"result":{"__typename":"User","id":"VXNlcjoxNTU0MTkyNzc4MzY3Nzk5MzAx","rest_id":"1554192778367799301","affiliates_highlighted_label":{},"has_graduated_access":true,"is_blue_verified":false,"profile_image_shape":"Circle","legacy":{"followed_by":true,"following":true,"can_dm":true,"can_media_tag":true,"created_at":"Mon Aug 01 19:50:19 +0000 2022","default_profile":true,"default_profile_image":false,"description":"UX Dev. @uqbarnetwork 🌺. EScape from Eternal September.","entities":{"description":{"urls":[]}},"fast_followers_count":0,"favourites_count":11902,"followers_count":370,"friends_count":240,"has_custom_timelines":true,"is_translator":false,"listed_count":8,"location":"","media_count":48,"name":"Fabnev","normal_followers_count":370,"pinned_tweet_ids_str":[],"possibly_sensitive":false,"profile_banner_url":"https://pbs.twimg.com/profile_banners/1554192778367799301/1662680755","profile_image_url_https":"https://pbs.twimg.com/profile_images/1690377016883695616/Cili9t14_normal.png","profile_interstitial_type":"","screen_name":"fabnev_hinmur","statuses_count":2129,"translator_type":"none","verified":false,"want_retweets":true,"withheld_in_countries":[]}}},{"result":{"__typename":"User","id":"VXNlcjo4ODc0MzQ5MTI1MjkzMzgzNzU=","rest_id":"887434912529338375","affiliates_highlighted_label":{},"has_graduated_access":true,"is_blue_verified":true,"profile_image_shape":"Circle","legacy":{"followed_by":true,"following":true,"can_dm":true,"can_media_tag":false,"created_at":"Tue Jul 18 22:12:25 +0000 2017","default_profile":false,"default_profile_image":false,"description":"Not to be confused with 2001 Nobel Peace Prize winner Kofi Annan.\n\n54th Clause of the Magna Carta absolutist.\n\nCommentary from an NRx perspective.","entities":{"description":{"urls":[]}},"fast_followers_count":0,"favourites_count":380853,"followers_count":52954,"friends_count":806,"has_custom_timelines":false,"is_translator":false,"listed_count":220,"location":"","media_count":3914,"name":"Covfefe Anon","normal_followers_count":52954,"pinned_tweet_ids_str":["1623947286324686848"],"possibly_sensitive":false,"profile_banner_url":"https://pbs.twimg.com/profile_banners/887434912529338375/1598514714","profile_image_url_https":"https://pbs.twimg.com/profile_images/1392509603116617731/TDrNeUiZ_normal.jpg","profile_interstitial_type":"","screen_name":"CovfefeAnon","statuses_count":49508,"translator_type":"none","verified":false,"want_retweets":true,"withheld_in_countries":[]}}},{"result":{"__typename":"User","id":"VXNlcjoxNDM2ODk5MDE1MDM1OTk4MjEw","rest_id":"1436899015035998210","affiliates_highlighted_label":{},"has_graduated_access":true,"is_blue_verified":false,"profile_image_shape":"Circle","legacy":{"followed_by":true,"following":true,"protected":true,"can_dm":true,"can_media_tag":false,"created_at":"Sun Sep 12 03:46:48 +0000 2021","default_profile":true,"default_profile_image":false,"description":"Professional retarde. Aspiring autiste.","entities":{"description":{"urls":[]}},"fast_followers_count":0,"favourites_count":18860,"followers_count":1376,"friends_count":539,"has_custom_timelines":true,"is_translator":false,"listed_count":14,"location":"","media_count":1557,"name":"Vatnik (ON HIATUS)","normal_followers_count":1376,"pinned_tweet_ids_str":["1546681562921664513"],"possibly_sensitive":false,"profile_banner_url":"https://pbs.twimg.com/profile_banners/1436899015035998210/1656741623","profile_image_url_https":"https://pbs.twimg.com/profile_images/1690076085294116864/oxSG4NAW_normal.jpg","profile_interstitial_type":"","screen_name":"0xVatnik","statuses_count":9752,"translator_type":"none","verified":false,"want_retweets":true,"withheld_in_countries":[]}}}],"richText":{"text":"posted","entities":[]},"iconDisplayInfo":{"icon":"UpArrow","tint":"White"},"colorConfig":{"background":"TwitterBlue","border":"White","text":"White"},"displayLocation":"Top"}],"responseObjects":{"feedbackActions":[{"key":"-170978206","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FSQ5HBasx7Ol34Lv%2Fi4AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"90250317","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FSQ5HBa%2BxLixqoTm%2Fi4AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"-1125175339","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FSQ5HBawxda10ef5%2Fy4AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"1040390765","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from fabnev_hinmur","confirmation":"Thanks. You’ll see fewer Tweets from fabnev_hinmur.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FSQVAikcJorAuLGehs2RKwAWgKD2pxMA","hasUndoAction":true}},{"key":"1108613032","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from wigger","confirmation":"Thanks. You’ll see fewer Tweets from wigger.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FYgBFQIpHCaGiu6KBAAWgKD2pxMA","hasUndoAction":true}},{"key":"432613251","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from EricRichards22","confirmation":"Thanks. You’ll see fewer Tweets from EricRichards22.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FQIVAikcJob3oqcGABaAoPanEwA%3D","hasUndoAction":true}},{"key":"-301846030","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from youngwerther123","confirmation":"Thanks. You’ll see fewer Tweets from youngwerther123.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FYgBFQIpHCaCgLPZ%2Bsa7jyYAFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"685696582","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["-1914636611","681569796"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FYgBOSwWioWzraP5jv8uACaMwekGABaAoPanEwA%3D","hasUndoAction":true,"icon":"Frown"}},{"key":"-428078820","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from ScottMGreer","confirmation":"Thanks. You’ll see fewer Tweets from ScottMGreer.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FSQVAikcJsTyg7wEABaAoPanEwA%3D","hasUndoAction":true}},{"key":"-1406439087","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FSQ5HBa6w7r50Kzg%2Fy4AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"1821121746","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FYgBORwWjMGw1ZCA9%2F8uABaAoPanEwA%3D","hasUndoAction":true}},{"key":"-1678496004","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from NipseyHoussle","confirmation":"Thanks. You’ll see fewer Tweets from NipseyHoussle.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FQIVAikcJobAqOH%2Bj%2F39JwAWgKD2pxMA","hasUndoAction":true}},{"key":"1155726106","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["-1805842859","853642114"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FSQ5LBa0x7Dx5LTg%2Fy4AJp7NvagBABaAoPanEwA%3D","hasUndoAction":true,"icon":"Frown"}},{"key":"-1914636611","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from zenpundit","confirmation":"Thanks. You’ll see fewer Tweets from zenpundit.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FYgBFQIpHCaMwekGABaAoPanEwA%3D","hasUndoAction":true}},{"key":"1212407033","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FSQ5HBbmxLbZiqv2%2Fy4AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"1390053150","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FSQ5HBbgwLq9vYSCgC8AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"-1759881859","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FSQ5HBa4x7rVyZ35%2Fy4AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"-513503907","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["-301846030","488337231"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FYgBOSwW5Me2sduf3v8uACaCgLPZ%2Bsa7jyYAFoCg9qcTAA%3D%3D","hasUndoAction":true,"icon":"Frown"}},{"key":"-1895410982","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["-1104084469","168660422"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FYgBOSwWtMWy1aCW%2B%2F4uACaEwKrN%2Fr7biSkAFoCg9qcTAA%3D%3D","hasUndoAction":true,"icon":"Frown"}},{"key":"283249402","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["1040390765","-1759881859"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FSQ5LBa4x7rVyZ35%2Fy4AJorAuLGehs2RKwAWgKD2pxMA","hasUndoAction":true,"icon":"Frown"}},{"key":"-804126492","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from reddit_lies","confirmation":"Thanks. You’ll see fewer Tweets from reddit_lies.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FYgBFQIpHCawguKCHQAWgKD2pxMA","hasUndoAction":true}},{"key":"168660422","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FYgBORwWtMWy1aCW%2B%2F4uABaAoPanEwA%3D","hasUndoAction":true}},{"key":"1695464664","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FSQ5HBbExLqNtOjz%2Fy4AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"-1539439247","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from YockeyTheRock","confirmation":"Thanks. You’ll see fewer Tweets from YockeyTheRock.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FWAVAikcJoDAvOnrlvDSLAAWgKD2pxMA","hasUndoAction":true}},{"key":"-1602911682","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["-1539439247","-240387922","-1385128892"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FWA5LBbYg7q1%2BtT4%2Fy4AJoDAvOnrlvDSLAAWgKD2pxMA","hasUndoAction":true,"icon":"Frown"}},{"key":"-1805842859","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from alpharivelino","confirmation":"Thanks. You’ll see fewer Tweets from alpharivelino.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FSQVAikcJp7NvagBABaAoPanEwA%3D","hasUndoAction":true}},{"key":"33427003","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from jollier_raptor","confirmation":"Thanks. You’ll see fewer Tweets from jollier_raptor.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FQIVAikcJobAo4WrqP2xIwAWgKD2pxMA","hasUndoAction":true}},{"key":"-478324673","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["432613251","641416629"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FQI5LBa%2BxL7x9p3j%2Fy4AJob3oqcGABaAoPanEwA%3D","hasUndoAction":true,"icon":"Frown"}},{"key":"853642114","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FSQ5HBa0x7Dx5LTg%2Fy4AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"-1024654638","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FSQ5HBbOgLPZ8YDd%2Fy4AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"641416629","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FQI5HBa%2BxL7x9p3j%2Fy4AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"137632741","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["-804126492","880152151"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FYgBOSwWjIS1ifmG%2BP8uACawguKCHQAWgKD2pxMA","hasUndoAction":true,"icon":"Frown"}},{"key":"2113718992","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["420806717","-1125175339"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FSQ5LBawxda10ef5%2Fy4AJsaB14gCABaAoPanEwA%3D","hasUndoAction":true,"icon":"Frown"}},{"key":"-1104084469","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from SlumRNA_Dog","confirmation":"Thanks. You’ll see fewer Tweets from SlumRNA_Dog.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FYgBFQIpHCaEwKrN%2Fr7biSkAFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"-656120650","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["-681379086","1203067365"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FQI5LBa%2Bgrethsf0%2Fi4AJoiAvMm9jOb9GAAWgKD2pxMA","hasUndoAction":true,"icon":"Frown"}},{"key":"245749106","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from juyi_io","confirmation":"Thanks. You’ll see fewer Tweets from juyi_io.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FSQVAikcJoCAvZ3M7K6pLgAWgKD2pxMA","hasUndoAction":true}},{"key":"1568334237","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from EricSmallman3","confirmation":"Thanks. You’ll see fewer Tweets from EricSmallman3.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FQIVAikcJoKAsvmV6vepJgAWgKD2pxMA","hasUndoAction":true}},{"key":"2060106630","value":{"feedbackType":"SeeFewer","prompt":"Show fewer reposts from bronzeagemantis","confirmation":"Thanks. You’ll see fewer reposts from bronzeagemantis.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FSQVBCkcJoDAupmxooS4FwAWgKD2pxMA","hasUndoAction":true}},{"key":"-112278032","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=Fe4BORwWtsK09fXuzv8uABaAoPanEwA%3D","hasUndoAction":true}},{"key":"681569796","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FYgBORwWioWzraP5jv8uABaAoPanEwA%3D","hasUndoAction":true}},{"key":"2060335579","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["245749106","-231290864"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FSQ5LBaUgr2NsdaAgC8AJoCAvZ3M7K6pLgAWgKD2pxMA","hasUndoAction":true,"icon":"Frown"}},{"key":"-253078468","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["-1572837442","2076601135"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FYgBOSwW%2FMe0ha2Zv%2F8uACaMwLLZ%2BNDTxykAFoCg9qcTAA%3D%3D","hasUndoAction":true,"icon":"Frown"}},{"key":"1203067365","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FQI5HBa%2Bgrethsf0%2Fi4AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"-1572837442","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from ShirePropaganda","confirmation":"Thanks. You’ll see fewer Tweets from ShirePropaganda.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FYgBFQIpHCaMwLLZ%2BNDTxykAFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"1676572449","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["2105898658","-1328325940"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FSQ5LBbugNDdntL0%2Fy4AJoDA08HwxK2kLAAWgKD2pxMA","hasUndoAction":true,"icon":"Frown"}},{"key":"-1008503721","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FSQ5HBaMxLnpgN3t%2Fy4AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"-523921825","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["1243153463","-1406439087"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FSQ5LBa6w7r50Kzg%2Fy4AJoTAopXRgvLwJwAWgKD2pxMA","hasUndoAction":true,"icon":"Frown"}},{"key":"1243153463","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from 0xVatnik","confirmation":"Thanks. You’ll see fewer Tweets from 0xVatnik.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FSQVAikcJoTAopXRgvLwJwAWgKD2pxMA","hasUndoAction":true}},{"key":"-1385128892","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FWA5HBbYg7q1%2BtT4%2Fy4AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"1575863391","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FSQ5HBakhNHRl4jy%2Fy4AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"-518061229","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FSQ5HBamwLa9n53y%2Fi4AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"192061028","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["1243153463","-170978206"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FSQ5LBasx7Ol34Lv%2Fi4AJoTAopXRgvLwJwAWgKD2pxMA","hasUndoAction":true,"icon":"Frown"}},{"key":"1070626655","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FSQ5HBbCg7mNlI%2BI%2Fy4AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"-120848863","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["33427003","1814701484"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FQI5LBbkhbH5i97J%2Fy4AJobAo4WrqP2xIwAWgKD2pxMA","hasUndoAction":true,"icon":"Frown"}},{"key":"1983392677","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from jacfalcon","confirmation":"Thanks. You’ll see fewer Tweets from jacfalcon.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FQIVAikcJtaA2RAAFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"-1706308589","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FSQ5HBacw9mdxYH5%2Fy4AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"1814701484","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FQI5HBbkhbH5i97J%2Fy4AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"1604425328","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["529443902","1695464664"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FSQ5LBbExLqNtOjz%2Fy4AJpLAvpmvqaeNKQAWgKD2pxMA","hasUndoAction":true,"icon":"Frown"}},{"key":"-543424680","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["1108613032","1161153666"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FYgBOSwWjIG9pfr3%2F%2F8uACaGiu6KBAAWgKD2pxMA","hasUndoAction":true,"icon":"Frown"}},{"key":"-1188318771","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from tszzl","confirmation":"Thanks. You’ll see fewer Tweets from tszzl.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FSQVAikcJqqo0fAKABaAoPanEwA%3D","hasUndoAction":true}},{"key":"2126352145","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from mellybysea","confirmation":"Thanks. You’ll see fewer Tweets from mellybysea.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FSQVAikcJobAvt2GyIj%2FJgAWgKD2pxMA","hasUndoAction":true}},{"key":"529443902","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from remnantposting","confirmation":"Thanks. You’ll see fewer Tweets from remnantposting.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FSQVAikcJpLAvpmvqaeNKQAWgKD2pxMA","hasUndoAction":true}},{"key":"-1054233305","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["-573081703","2060106630","90250317"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FSQ5LBa%2BxLixqoTm%2Fi4AJoDAupmxooS4FwAWgKD2pxMA","hasUndoAction":true,"icon":"Frown"}},{"key":"847582208","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["-1626121773","2125870658"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FSQ5LBb8wt6B9Ybb%2Fy4AJoDApoXJnJ%2FkHAAWgKD2pxMA","hasUndoAction":true,"icon":"Frown"}},{"key":"989274051","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["2126352145","-1024654638"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FSQ5LBbOgLPZ8YDd%2Fy4AJobAvt2GyIj%2FJgAWgKD2pxMA","hasUndoAction":true,"icon":"Frown"}},{"key":"-966610894","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["-1678496004","-62604573"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FQI5LBbAg7jZjqPr%2Fy4AJobAqOH%2Bj%2F39JwAWgKD2pxMA","hasUndoAction":true,"icon":"Frown"}},{"key":"1553555071","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from eugyppius1","confirmation":"Thanks. You’ll see fewer Tweets from eugyppius1.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FQIVAikcJoLAuomG04feIAAWgKD2pxMA","hasUndoAction":true}},{"key":"940123009","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FSQ5HBbAgLSVjN%2BM%2Fy4AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"488337231","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FYgBORwW5Me2sduf3v8uABaAoPanEwA%3D","hasUndoAction":true}},{"key":"393418877","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["-687637066","-518061229"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FSQ5LBamwLa9n53y%2Fi4AJqSZ0ywAFoCg9qcTAA%3D%3D","hasUndoAction":true,"icon":"Frown"}},{"key":"-232330663","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from Howlingmutant0","confirmation":"Thanks. You’ll see fewer Tweets from Howlingmutant0.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=Fe4BFQIpHCaCwL21vZSDnyMAFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"-68710556","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FQI5HBaSg9Ct7Y2G%2Fy4AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"-573081703","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from bronzeagemantis","confirmation":"Thanks. You’ll see fewer Tweets from bronzeagemantis.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FSQVAikcJoDAupmxooS4FwAWgKD2pxMA","hasUndoAction":true}},{"key":"2029136243","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["-232330663","-112278032"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=Fe4BOSwWtsK09fXuzv8uACaCwL21vZSDnyMAFoCg9qcTAA%3D%3D","hasUndoAction":true,"icon":"Frown"}},{"key":"-1141582459","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["-1805842859","-1121411338"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FSQ5LBaIgL6p5Nr4%2Fy4AJp7NvagBABaAoPanEwA%3D","hasUndoAction":true,"icon":"Frown"}},{"key":"-370046748","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from SCHIZO_FREQ","confirmation":"Thanks. You’ll see fewer Tweets from SCHIZO_FREQ.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FSQVAikcJoKAtY3405O4IgAWgKD2pxMA","hasUndoAction":true}},{"key":"-1085466583","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["1553555071","-990587752"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FQI5LBaWgrL9nu7x%2Fy4AJoLAuomG04feIAAWgKD2pxMA","hasUndoAction":true,"icon":"Frown"}},{"key":"-1556445879","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["1103924704","1212407033"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FSQ5LBbmxLbZiqv2%2Fy4AJoDArLWm%2BLylJAAWgKD2pxMA","hasUndoAction":true,"icon":"Frown"}},{"key":"880152151","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FYgBORwWjIS1ifmG%2BP8uABaAoPanEwA%3D","hasUndoAction":true}},{"key":"-2118813687","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["-300941049","1821121746"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FYgBOSwWjMGw1ZCA9%2F8uACai%2F4oPABaAoPanEwA%3D","hasUndoAction":true,"icon":"Frown"}},{"key":"1103924704","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from Mssr_le_Baron","confirmation":"Thanks. You’ll see fewer Tweets from Mssr_le_Baron.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FSQVAikcJoDArLWm%2BLylJAAWgKD2pxMA","hasUndoAction":true}},{"key":"2125870658","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FSQ5HBb8wt6B9Ybb%2Fy4AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"1919934547","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["1568334237","-68710556"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FQI5LBaSg9Ct7Y2G%2Fy4AJoKAsvmV6vepJgAWgKD2pxMA","hasUndoAction":true,"icon":"Frown"}},{"key":"-62604573","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FQI5HBbAg7jZjqPr%2Fy4AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"-1960489878","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from CovfefeAnon","confirmation":"Thanks. You’ll see fewer Tweets from CovfefeAnon.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FSQVAikcJo7Auqm81ubQGAAWgKD2pxMA","hasUndoAction":true}},{"key":"-1484765781","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from Empty_America","confirmation":"Thanks. You’ll see fewer Tweets from Empty_America.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FSQVAikcJoCAsNXQyZHNJAAWgKD2pxMA","hasUndoAction":true}},{"key":"-990587752","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FQI5HBaWgrL9nu7x%2Fy4AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"-1626121773","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from htmx_org","confirmation":"Thanks. You’ll see fewer Tweets from htmx_org.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FSQVAikcJoDApoXJnJ%2FkHAAWgKD2pxMA","hasUndoAction":true}},{"key":"928862523","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FSQ5HBb0hrvdvczp%2Fi4AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"-240387922","value":{"feedbackType":"SeeFewer","prompt":"Show fewer reposts from TintinAdmirer","confirmation":"Thanks. You’ll see fewer reposts from TintinAdmirer.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FWAVBCkcJoLAvcnTja2ALgAWgKD2pxMA","hasUndoAction":true}},{"key":"504291432","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FSQ5HBbMwLjps%2BH0%2Fy4AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"896114936","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["439123946","928862523"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FSQ5LBb0hrvdvczp%2Fi4AJpCAs43e8dyKKQAWgKD2pxMA","hasUndoAction":true,"icon":"Frown"}},{"key":"-929730131","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["-428078820","1575863391"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FSQ5LBakhNHRl4jy%2Fy4AJsTyg7wEABaAoPanEwA%3D","hasUndoAction":true,"icon":"Frown"}},{"key":"2105898658","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from spandrell3","confirmation":"Thanks. You’ll see fewer Tweets from spandrell3.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FSQVAikcJoDA08HwxK2kLAAWgKD2pxMA","hasUndoAction":true}},{"key":"-687637066","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from mnolangray","confirmation":"Thanks. You’ll see fewer Tweets from mnolangray.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FSQVAikcJqSZ0ywAFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"339382320","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["-1960489878","1390053150"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FSQ5LBbgwLq9vYSCgC8AJo7Auqm81ubQGAAWgKD2pxMA","hasUndoAction":true,"icon":"Frown"}},{"key":"1161153666","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FYgBORwWjIG9pfr3%2F%2F8uABaAoPanEwA%3D","hasUndoAction":true}},{"key":"-681379086","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from feelsdesperate","confirmation":"Thanks. You’ll see fewer Tweets from feelsdesperate.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FQIVAikcJoiAvMm9jOb9GAAWgKD2pxMA","hasUndoAction":true}},{"key":"439123946","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from skooookum","confirmation":"Thanks. You’ll see fewer Tweets from skooookum.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FSQVAikcJpCAs43e8dyKKQAWgKD2pxMA","hasUndoAction":true}},{"key":"-490307609","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["-370046748","504291432"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FSQ5LBbMwLjps%2BH0%2Fy4AJoKAtY3405O4IgAWgKD2pxMA","hasUndoAction":true,"icon":"Frown"}},{"key":"269896630","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FQI5HBbQxNG91fXg%2Fi4AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"-258827832","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["-1188318771","1070626655"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FSQ5LBbCg7mNlI%2BI%2Fy4AJqqo0fAKABaAoPanEwA%3D","hasUndoAction":true,"icon":"Frown"}},{"key":"-1121411338","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FSQ5HBaIgL6p5Nr4%2Fy4AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"420806717","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from bobdaduck","confirmation":"Thanks. You’ll see fewer Tweets from bobdaduck.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FSQVAikcJsaB14gCABaAoPanEwA%3D","hasUndoAction":true}},{"key":"2076601135","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FYgBORwW%2FMe0ha2Zv%2F8uABaAoPanEwA%3D","hasUndoAction":true}},{"key":"-756647094","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["2105898658","-1706308589"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FSQ5LBacw9mdxYH5%2Fy4AJoDA08HwxK2kLAAWgKD2pxMA","hasUndoAction":true,"icon":"Frown"}},{"key":"-231290864","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FSQ5HBaUgr2NsdaAgC8AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"-135528196","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["-1484765781","-1008503721"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FSQ5LBaMxLnpgN3t%2Fy4AJoCAsNXQyZHNJAAWgKD2pxMA","hasUndoAction":true,"icon":"Frown"}},{"key":"1336229780","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["1983392677","269896630"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FQI5LBbQxNG91fXg%2Fi4AJtaA2RAAFoCg9qcTAA%3D%3D","hasUndoAction":true,"icon":"Frown"}},{"key":"-300941049","value":{"feedbackType":"SeeFewer","prompt":"Show fewer posts from wyatttoday","confirmation":"Thanks. You’ll see fewer Tweets from wyatttoday.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=SeeFewer&action_metadata=FYgBFQIpHCai%2F4oPABaAoPanEwA%3D","hasUndoAction":true}},{"key":"-1328325940","value":{"feedbackType":"NotRelevant","prompt":"This post isn’t relevant","confirmation":"Thanks. You’ll see fewer posts like this.","feedbackUrl":"/2/timeline/feedback.json?feedback_type=NotRelevant&action_metadata=FSQ5HBbugNDdntL0%2Fy4AFoCg9qcTAA%3D%3D","hasUndoAction":true}},{"key":"705144024","value":{"feedbackType":"DontLike","prompt":"Not interested in this post","confirmation":"Thanks. X will use this to make your timeline better.","childKeys":["1243153463","940123009"],"feedbackUrl":"/2/timeline/feedback.json?feedback_type=DontLike&action_metadata=FSQ5LBbAgLSVjN%2BM%2Fy4AJoTAopXRgvLwJwAWgKD2pxMA","hasUndoAction":true,"icon":"Frown"}}]},"metadata":{"scribeConfig":{"page":"for_you"}}}}}}